Displaying 3 results from an estimated 3 matches for "setscreenoptionforplugin".
2007 Apr 11
2
Patch for ini plugin
...t screenPrivateIndex;
@@ -91,30 +83,60 @@ typedef struct _IniDisplay {
IniFileData *fileData;
} IniDisplay;
+/*
+ * IniScreeen
+ */
typedef struct _IniScreen {
InitPluginForScreenProc initPluginForScreen;
SetScreenOptionProc setScreenOption;
SetScreenOptionForPluginProc setScreenOptionForPlugin;
} IniScreen;
-static void
-initActionProxy (IniActionProxy *a)
-{
- a->type = 0;
-
- a->nSet = 0;
-
- a->key.keycode = 0;
- a->key.modifiers = 0;
+/*
+ * IniAction
+ */
+static char * validActionTypes[] = {
+ "key",
+ "button...
2007 Mar 19
0
Plane cleanup
Here's a cleanup patch for plane.
Unless i'm missing something, wrapping setScreenOptionForPlugin is useless
and there's an unused variable.
Gerd.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: plane-cleanup.diff
Type: text/x-patch
Size: 1987 bytes
Desc: not available
Url : http://lists.freedesktop.org/archives/compiz/attachments/20070319/73393154/plane...
2008 Feb 07
1
[ANNOUNCE] compiz-0.7.0
...n initialization of
Re-write object initialization code to properly handle
Add name to object info struct.
Add compObjectTypeName function.
Add nameObject function to object interface.
Move file watch interface to core object.
Remove setDisplayOptionForPlugin and setScreenOptionForPlugin
Add findObject function to object interface.
Add parent to object struct.
Use 'base' as default name for base object instead of 'object'.
Fix typo.
Allow key and button options in objects that are descendants
Allow key and button options in object...