search for: otherscreengrabexist

Displaying 8 results from an estimated 8 matches for "otherscreengrabexist".

2007 May 03
2
Bug in otherScreenGrabExist?
...checked for (maybe other cases too) If nobody shouts I shall commit it because the behaviour in my plugin is now as expected. -------------- next part -------------- diff --git a/src/screen.c b/src/screen.c index 7dcc452..959b72f 100644 --- a/src/screen.c +++ b/src/screen.c @@ -2427,7 +2427,7 @@ otherScreenGrabExist (CompScreen *s, ...) va_end (ap); - if (!name) + if (name) return TRUE; } }
2007 Mar 24
1
[PATCH] Swither activate event
Hi, To fix the conflict between animation's "focus fade" and switcher, I had to add an activate event to switcher, since in animation.c I need to have an indication of the period from the moment alt-tab is pressed to the moment the windows settle down back on the desktop. otherScreenGrabExist doesn't work for this since it doesn't cover the period between the moment the user releases alt and the moment the windows settle down back on the desktop. Regards, Erkin -------------- next part -------------- A non-text attachment was scrubbed... Name: switcher_activate_event.patch Type...
2007 Jan 05
1
Question about extending screengrabs
Hi, I have a question regarding screengrabs: At the moment, a lot of interaction between the plugins is done by checking for screen grabs of other plugins with the function otherScreenGrabExist. But pushing a screen grab means grabbing keyboard and mouse pointer, so no user interaction with the desktop is possible. However, some plugins (such as showdesktop) need user interaction with the desktop while still being able to prevent other plugin actions (e.g. no rotate while showdesktop)....
2007 Mar 05
1
[PATCH] Grab state & Last state remembering
...e needed for group (and probably other plugins), which I currently solved locally (inside group), but believe that it would make sense to put them inside core: - A function screenGrabExists This function, as the name implies, checks if a certain plugin has a screen grab. It's pretty similar to otherScreenGrabExists and could share a lot of code with it. We need this kind of functionality in group to distinguish between user initiated / non user initiated window moves / resizes; but I can imagine that this kind of function could come in handy to other plugins as well. - A fixed byte ordering image loading In...
2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
...PTION_EDGE_DELAY].value.i; + if (delay > 0) + { + /* if any plugin, such as move, already has a screen + grab, we most likely don't want to delay screen edge + triggering, as it would delay e.g. edge flipping */ + for (s = d->screens; s; s = s->next) + if (otherScreenGrabExist (s, 0)) + { + delay = 0; + break; + } + } + state = CompActionStateInitEdge; + if (edgeWindow && + edgeWindow != event->xcrossing.window && + d->edgeDelayHandle) + { + void *closure; + + closure = compRemov...
2007 May 07
6
meta data update
The switch to the new metadata system is almost complete. All plugins in the fdo repo except plane and ini have been converted. I'll probably go ahead and convert those plugins as well sometime soon unless the original authors of those plugins tells me not to. The horrible gconf-dump plugin has been removed and replaced by a simple xslt stylesheet. gconf schemas are now generated from the xml
2007 Aug 03
4
[ANNOUNCE] compiz-0.5.2
...formatting and variable naming If event->len is 0 then send NULL instead of event->name Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/app/compiz Merge branch 'master' of git://git.freedesktop.org/git/xorg/app/compiz Added comment about otherScreenGrabExist Merge branch 'master' of git://git.freedesktop.org/git/xorg/app/compiz Update ini to use metadata Merge branch 'master' of git://git.freedesktop.org/git/xorg/app/compiz Send a blank string if shortDesc or longDesc are NULL Typo Use active window r...
2007 Oct 01
4
[ANNOUNCE] compiz-0.6.0
...t to return the closure Fix typo in function name Change CompAction private to be a CompPrivate Remove trailing whitespace Code formatting Code formatting and variable naming If event->len is 0 then send NULL instead of event->name Added comment about otherScreenGrabExist Update ini to use metadata Send a blank string if shortDesc or longDesc are NULL Typo Use active window rather than the action window for scale_group Make minimize, maximize, unmaximize and close window actions Handle cases where there is no trailing newline in t...