Displaying 1 result from an estimated 1 matches for "unmapwindow".
2006 Oct 13
1
[PATCH] Extra Notifications
...->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);
updateClientListForScreen (w->screen);
+
+ (*w->screen->windowUnmapNotify) (w);
}
static int
@@ -2355,6 +2363,26 @@ focusWindow (CompWindow *w)
}
void
+windowCreateNotify (CompWindow *w)
+{
+}
+
+void
+windowDestro...