all repos — openbox @ 9e99a9a1e21b7b7214b17a759e58efd00b254551

openbox fork - make it a bit more like ryudo

sync with bb cvs
Dana Jansens danakj@orodu.net
commit

9e99a9a1e21b7b7214b17a759e58efd00b254551

parent

b21cf8b33520e44611657e2876131b67dc0472d6

M src/Rootmenu.ccsrc/Rootmenu.cc

@@ -61,6 +61,11 @@

if (! item->function()) return; + if (! (getScreen()->getRootmenu()->isTorn() || isTorn()) && + item->function() != BScreen::Reconfigure && + item->function() != BScreen::SetStyle) + hide(); + switch (item->function()) { case BScreen::Execute: if (item->exec())

@@ -88,9 +93,4 @@ case BScreen::Reconfigure:

getScreen()->getBlackbox()->reconfigure(); return; } - - if (! (getScreen()->getRootmenu()->isTorn() || isTorn()) && - item->function() != BScreen::Reconfigure && - item->function() != BScreen::SetStyle) - hide(); }
M src/Screen.ccsrc/Screen.cc

@@ -1015,41 +1015,38 @@ }

void BScreen::changeWorkspaceID(unsigned int id) { - if (! current_workspace) return; + if (! current_workspace || id == current_workspace->getID()) return; + + BlackboxWindow *focused = blackbox->getFocusedWindow(); + if (focused && focused->getScreen() == this) { + assert(focused->isStuck() || + focused->getWorkspaceNumber() == current_workspace->getID()); - if (id != current_workspace->getID()) { - BlackboxWindow *focused = blackbox->getFocusedWindow(); - if (focused && focused->getScreen() == this && ! focused->isStuck()) { - if (focused->getWorkspaceNumber() != current_workspace->getID()) { - fprintf(stderr, "%s is on the wrong workspace, aborting\n", - focused->getTitle()); - abort(); - } - current_workspace->setLastFocusedWindow(focused); - } else { - // if no window had focus, no need to store a last focus - current_workspace->setLastFocusedWindow((BlackboxWindow *) 0); - } - // when we switch workspaces, unfocus whatever was focused - blackbox->setFocusedWindow((BlackboxWindow *) 0); + current_workspace->setLastFocusedWindow(focused); + } else { + // if no window had focus, no need to store a last focus + current_workspace->setLastFocusedWindow((BlackboxWindow *) 0); + } + + // when we switch workspaces, unfocus whatever was focused + blackbox->setFocusedWindow((BlackboxWindow *) 0); - current_workspace->hideAll(); - workspacemenu->setItemSelected(current_workspace->getID() + 2, False); + current_workspace->hideAll(); + workspacemenu->setItemSelected(current_workspace->getID() + 2, False); - current_workspace = getWorkspace(id); + current_workspace = getWorkspace(id); - xatom->setValue(getRootWindow(), XAtom::net_current_desktop, - XAtom::cardinal, id); + xatom->setValue(getRootWindow(), XAtom::net_current_desktop, + XAtom::cardinal, id); - workspacemenu->setItemSelected(current_workspace->getID() + 2, True); - toolbar->redrawWorkspaceLabel(True); + workspacemenu->setItemSelected(current_workspace->getID() + 2, True); + toolbar->redrawWorkspaceLabel(True); - current_workspace->showAll(); + current_workspace->showAll(); - if (resource.focus_last && current_workspace->getLastFocusedWindow()) { - XSync(blackbox->getXDisplay(), False); - current_workspace->getLastFocusedWindow()->setInputFocus(); - } + if (resource.focus_last && current_workspace->getLastFocusedWindow()) { + XSync(blackbox->getXDisplay(), False); + current_workspace->getLastFocusedWindow()->setInputFocus(); } updateNetizenCurrentWorkspace();
M src/Toolbar.ccsrc/Toolbar.cc

@@ -96,7 +96,6 @@ hide_timer->setTimeout(blackbox->getAutoRaiseDelay());

editing = False; new_name_pos = 0; - frame.grab_x = frame.grab_y = 0; toolbarmenu = new Toolbarmenu(this);
M src/Toolbar.hhsrc/Toolbar.hh

@@ -90,7 +90,7 @@ Pixmap base, label, wlabel, clk, button, pbutton;

Window window, workspace_label, window_label, clock, psbutton, nsbutton, pwbutton, nwbutton; - int x_hidden, y_hidden, hour, minute, grab_x, grab_y; + int x_hidden, y_hidden, hour, minute; unsigned int window_label_w, workspace_label_w, clock_w, button_w, bevel_w, label_h;
M src/Workspace.ccsrc/Workspace.cc

@@ -102,39 +102,19 @@

// pass focus to the next appropriate window if ((w->isFocused() || w == lastfocus) && ! screen->getBlackbox()->doShutdown()) { - BlackboxWindow *newfocus = 0; - if (w->isTransient()) { - newfocus = w->getTransientFor(); - if (newfocus && - (newfocus->isIconic() || // do not focus icons - newfocus->getWorkspaceNumber() != id)) // or other workspaces - newfocus = 0; - } - if (! newfocus && ! stackingList.empty()) - newfocus = stackingList.front(); - - assert(newfocus != w); // this would be very wrong. - if (id == screen->getCurrentWorkspaceID()) { - /* - if the window is on the visible workspace, then try focus it, and fall - back to the default focus target if the window won't focus. - */ - if (! (newfocus && newfocus->setInputFocus())) - screen->getBlackbox()->setFocusedWindow(0); - } else if (lastfocus == w) { - /* - If this workspace is not the current one do not assume that - w == lastfocus. If a sticky window is removed on a workspace other - than where it originated, it will fire the removeWindow on a - non-visible workspace. - */ - - /* - If the window isn't on the visible workspace, don't focus the new one, - just mark it to be focused when the workspace comes into view. - */ - setLastFocusedWindow(newfocus); + // The window is on the visible workspace + focusFallback(w); + } else { + // The window is not on the visible workspace. + if (lastfocus == w) { + // The window was the last-focus target, so we need to replace it. + setLastFocusedWindow(stackingList.front()); + } + // if the window focused on the current workspace, then reapply that + // workspace's focus too + if (w->isFocused()) + screen->getCurrentWorkspace()->focusFallback(w); } }

@@ -154,6 +134,37 @@ if (i == 0)

cascade_x = cascade_y = 32; return i; +} + + +void Workspace::focusFallback(const BlackboxWindow *old_window) { + BlackboxWindow *newfocus = 0; + + // if it's a transient, then try to focus its parent + if (old_window && old_window->isTransient()) { + newfocus = old_window->getTransientFor(); + + if (! newfocus || + newfocus->isIconic() || // do not focus icons + newfocus->getWorkspaceNumber() != id || // or other workspaces + ! newfocus->setInputFocus()) + newfocus = 0; + } + + if (! newfocus) { + BlackboxWindowList::iterator it = stackingList.begin(), + end = stackingList.end(); + for (; it != end; ++it) { + BlackboxWindow *tmp = *it; + if (tmp && tmp->setInputFocus()) { + // we found our new focus target + newfocus = tmp; + break; + } + } + } + + screen->getBlackbox()->setFocusedWindow(newfocus); }
M src/Workspace.hhsrc/Workspace.hh

@@ -87,6 +87,7 @@ BlackboxWindow* getNextWindowInList(BlackboxWindow *w);

BlackboxWindow* getPrevWindowInList(BlackboxWindow *w); BlackboxWindow* getTopWindowOnStack(void) const; void sendWindowList(Netizen &n); + void focusFallback(const BlackboxWindow *old_window); bool isCurrent(void) const; bool isLastWindow(const BlackboxWindow* w) const;
M src/blackbox.ccsrc/blackbox.cc

@@ -328,10 +328,18 @@

BlackboxWindow *win = searchWindow(e->xmaprequest.window); if (win) { + bool focus = False; if (win->isIconic()) { win->deiconify(); - win->setInputFocus(); + focus = True; } + if (win->isShaded()) { + win->shade(); + focus = True; + } + + if (focus && (win->isTransient() || win->getScreen()->doFocusNew())) + win->setInputFocus(); } else { BScreen *screen = searchScreen(e->xmaprequest.parent);
M util/bsetroot.ccutil/bsetroot.cc

@@ -49,8 +49,8 @@

I18n i18n; bsetroot::bsetroot(int argc, char **argv, char *dpy_name) - : BaseDisplay(argv[0], dpy_name) -{ + : BaseDisplay(argv[0], dpy_name) { + grad = fore = back = (char *) 0; bool mod = False, sol = False, grd = False;

@@ -97,8 +97,9 @@ grd = True;

} else if (! strcmp("-display", argv[i])) { // -display passed through tests ealier... we just skip it now i++; - } else + } else { usage(); + } } if ((mod + sol + grd) != True) {