search for: triggeredgeenterbind

Displaying 1 result from an estimated 1 matches for "triggeredgeenterbind".

2007 Jun 19
1
[PATCH] Added screen edge trigger delay setting.
...ion *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; + } + } + } + + option = compGetDisplayOptions (d, &nOption); + if (triggerEdgeEnterBindings(d, + option, nOption, + state, edge, + argument, nArgument)) + { +...