Displaying 3 results from an estimated 3 matches for "mapnum".
Did you mean:
magnum
2007 Apr 09
2
Paint chanegs block dbus and fuse plugins
...intAttrib *attrib,
const CompTransform *transform,
Region region,
unsigned int mask)
{
Bool status;
INACTIVE_SCREEN (w->screen);
INACTIVE_WINDOW (w);
WindowPaintAttrib fAttrib = *attrib;
if (iw->managed
&& w->mapNum
&& (w->screen->display->activeWindow != w->id))
{
Bool painted = FALSE;
if (fAttrib.opacity != iw->inactiveOpacity)
{
fAttrib.opacity = iw->inactiveOpacity;
painted = TRUE;
}
if (fAttrib.brightness != iw->inactiveBrightness)...
2006 Oct 13
1
[PATCH] Extra Notifications
...++w->attrib.height - 1,
w->attrib.border_width);
+
+ (*w->screen->windowCreateNotify) (w);
}
void
@@ -1819,6 +1821,8 @@ removeWindow (CompWindow *w)
void
destroyWindow (CompWindow *w)
{
+ (*w->screen->windowDestroyNotify) (w);
+
w->id = 1;
w->mapNum = 0;
@@ -1943,6 +1947,8 @@ mapWindow (CompWindow *w)
w->attrib.width, ++w->attrib.height - 1,
w->attrib.border_width);
}
+
+ (*w->screen->windowMapNotify) (w);
}
void
@@ -1984,6 +1990,8 @@ unmapWindow (CompWindow *w)
updateWorkareaForScreen (w->screen);...
2007 Nov 26
0
[PATCH] Update client list when destroying shaded windows
---
src/window.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/window.c b/src/window.c
index 568373d..2133aed 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2227,6 +2227,11 @@ destroyWindow (CompWindow *w)
w->id = 1;
w->mapNum = 0;
+ if (w->shaded)
+ {
+ updateClientListForScreen (w->screen);
+ }
+
w->destroyRefCnt--;
if (w->destroyRefCnt)
return;
--
1.5.2.5
--dDRMvlgZJXvWKvBx
Content-Type: text/x-diff; charset=us-ascii
Content-Disposition: attachment; filename="0003-Avoid-stack...