本文整理汇总了C++中BScreen::addWindow方法的典型用法代码示例。如果您正苦于以下问题:C++ BScreen::addWindow方法的具体用法?C++ BScreen::addWindow怎么用?C++ BScreen::addWindow使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BScreen
的用法示例。
在下文中一共展示了BScreen::addWindow方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: process_event
void Blackbox::process_event(XEvent *e) {
switch (e->type) {
case MapRequest: {
#ifdef DEBUG
fprintf(stderr, "Blackbox::process_event(): MapRequest for 0x%lx\n",
e->xmaprequest.window);
#endif // DEBUG
BlackboxWindow *win = findWindow(e->xmaprequest.window);
if (win) {
if ((!activeScreen() || activeScreen() == win->screen()) &&
(win->isTransient() || _resource.focusNewWindows()))
win->activate();
} else {
BScreen *screen = findScreen(e->xmaprequest.parent);
if (! screen) {
/*
we got a map request for a window who's parent isn't root. this
can happen in only one circumstance:
a client window unmapped a managed window, and then remapped it
somewhere between unmapping the client window and reparenting it
to root.
regardless of how it happens, we need to find the screen that
the window is on
*/
XWindowAttributes wattrib;
if (! XGetWindowAttributes(XDisplay(), e->xmaprequest.window,
&wattrib)) {
// failed to get the window attributes, perhaps the window has
// now been destroyed?
break;
}
screen = findScreen(wattrib.root);
assert(screen != 0); // this should never happen
}
screen->addWindow(e->xmaprequest.window);
}
break;
}
case ConfigureRequest: {
BlackboxWindow *win = findWindow(e->xconfigurerequest.window);
if (win) {
// a window wants to resize
win->configureRequestEvent(&e->xconfigurerequest);
break;
}
Slit *slit =
dynamic_cast<Slit *>(findEventHandler(e->xconfigurerequest.parent));
if (slit) {
// something in the slit wants to resize
slit->configureRequestEvent(&e->xconfigurerequest);
break;
}
/*
handle configure requests for windows that have no EventHandlers
by simply configuring them as requested.
note: the event->window parameter points to the window being
configured, and event->parent points to the window that received
the event (in this case, the root window, since
SubstructureRedirect has been selected).
*/
XWindowChanges xwc;
xwc.x = e->xconfigurerequest.x;
xwc.y = e->xconfigurerequest.y;
xwc.width = e->xconfigurerequest.width;
xwc.height = e->xconfigurerequest.height;
xwc.border_width = e->xconfigurerequest.border_width;
xwc.sibling = e->xconfigurerequest.above;
xwc.stack_mode = e->xconfigurerequest.detail;
XConfigureWindow(XDisplay(),
e->xconfigurerequest.window,
e->xconfigurerequest.value_mask,
&xwc);
break;
}
case FocusIn: {
#ifdef FOCUS_DEBUG
printf("FocusIn : window %8lx mode %s detail %s\n",
e->xfocus.window, Mode[e->xfocus.mode], Detail[e->xfocus.detail]);
#endif
if (e->xfocus.mode == NotifyGrab
|| (e->xfocus.detail != NotifyNonlinearVirtual
&& e->xfocus.detail != NotifyVirtual)) {
/*
don't process FocusIns when:
1. they are the result of a grab
2. the new focus window isn't an ancestor or inferior of the
old focus window (NotifyNonlinearVirtual and NotifyVirtual)
//.........这里部分代码省略.........