Displaying 3 results from an estimated 3 matches for "compsetbooloption".
2006 Nov 11
2
switcher patch do disable window list
...don't see anything.
While making this patch, a question come into my head, nobody know on
compiz.biz and some people are as curious as me.
Two code example:
/**********/
case SWITCH_SCREEN_OPTION_MIPMAP:
case SWITCH_SCREEN_OPTION_ICON:
case SWITCH_SCREEN_OPTION_MINIMIZED:
if (compSetBoolOption (o, value))
return TRUE;
break;
/**********/
/**********/
case SWITCH_SCREEN_OPTION_BRINGTOFRONT:
if (compSetBoolOption (o, value))
{
ss->bringToFront = o->value.b;
return TRUE;
}
/**********/
At first look...
2006 Oct 25
2
[PATCH] Edge buttons
...ght + geometry[i].y0,
+ geometry[i].ww * s->width + geometry[i].w0,
+ geometry[i].hh * s->height + geometry[i].h0);
+ }
+}
+
CompOption *
compGetScreenOptions (CompScreen *screen,
int *count)
@@ -192,6 +249,13 @@ setScreenOption (CompScreen *screen
if (compSetBoolOption (o, value))
return TRUE;
break;
+ case COMP_SCREEN_OPTION_EDGE_SIZE:
+ if (compSetIntOption (o, value))
+ {
+ updateScreenEdges (screen);
+ return TRUE;
+ }
+ break;
case COMP_SCREEN_OPTION_REFRESH_RATE:
if (screen->opt[COMP_SCR...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...eometry[i].w0,
> + geometry[i].hh * s->height + geometry[i].h0);
> + }
> +}
> +
> CompOption *
> compGetScreenOptions (CompScreen *screen,
> int *count)
> @@ -192,6 +249,13 @@ setScreenOption (CompScreen *screen
> if (compSetBoolOption (o, value))
> return TRUE;
> break;
> + case COMP_SCREEN_OPTION_EDGE_SIZE:
> + if (compSetIntOption (o, value))
> + {
> + updateScreenEdges (screen);
> + return TRUE;
> + }
> + break;
> case COMP_S...