search for: getplugins

Displaying 3 results from an estimated 3 matches for "getplugins".

Did you mean: gemplugins
2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
...indings (CompDisplay *d, } static Bool +triggerAllEdgeEnterBindings (CompDisplay *d, + CompActionState state, + unsigned int edge, + CompOption *argument, + int nArgument) +{ + CompOption *option; + int nOption; + CompPlugin *p; + + for (p = getPlugins(); p; p = p->next) + { + if (p->vTable->getDisplayOptions) + { + option = (*p->vTable->getDisplayOptions) (p, d, &nOption); + if (triggerEdgeEnterBindings (d, + option, nOption, + state, edge, + argument, nArgument)) + { + return TRUE; + } +...
2007 May 17
0
[PATCH] Add getCoreInfo function
...0 deletions(-) diff --git a/plugins/dbus.c b/plugins/dbus.c index 46ded89..664fbf1 100644 --- a/plugins/dbus.c +++ b/plugins/dbus.c @@ -47,6 +47,7 @@ static CompMetadata dbusMetadata; #define COMPIZ_DBUS_LIST_MEMBER_NAME "list" #define COMPIZ_DBUS_GET_PLUGINS_MEMBER_NAME "getPlugins" #define COMPIZ_DBUS_GET_PLUGIN_METADATA_MEMBER_NAME "getPluginMetadata" +#define COMPIZ_DBUS_GET_CORE_INFO_MEMBER_NAME "getCoreInfo" #define COMPIZ_DBUS_CHANGED_SIGNAL_NAME "changed" #define COMPIZ_DBUS_PLUGINS_CHANGED_SIGNAL_NAME "pluginsC...
2006 Dec 31
2
[ANNOUNCE] compiz-0.3.6
...overlay window and make usage of the composite overlay window for output default. Add file notification API. * New Plugins Inotify plugin: Implements file notification API using inotify. * Updated Plugins Dbus plugin: A "GetPlugins" method has been added and it can be used to retrieve a list of available plugins. A 'GetPluginMetadata' method has been added and it returns metadata for available plugins. Switcher plugin: Add support for switc...