X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2FScreen.cc;h=dac5d6f8938421579ec4b3b2bb86761f66257a3d;hb=9aaf4f8de762a540780aaef54d15802762dc4130;hp=567516e7dc6fb91eae9c82f46dcc3e6e2c215ef5;hpb=b2e9af88862bc2c084c542fdf5cbfb5049cca1fd;p=chaz%2Fopenbox diff --git a/src/Screen.cc b/src/Screen.cc index 567516e7..dac5d6f8 100644 --- a/src/Screen.cc +++ b/src/Screen.cc @@ -241,7 +241,6 @@ BScreen::BScreen(Blackbox *bb, unsigned int scrn) : ScreenInfo(bb, scrn) { } saveWorkspaceNames(); - updateDesktopNames(); updateNetizenWorkspaceCount(); workspacemenu->insert(i18n(IconSet, IconIcons, "Icons"), iconmenu); @@ -254,8 +253,6 @@ BScreen::BScreen(Blackbox *bb, unsigned int scrn) : ScreenInfo(bb, scrn) { workspacemenu->setItemSelected(2, True); - removeWorkspaceNames(); // do not need them any longer - toolbar = new Toolbar(this); slit = new Slit(this); @@ -365,10 +362,6 @@ BScreen::~BScreen(void) { } -void BScreen::removeWorkspaceNames(void) { - workspaceNames.clear(); -} - void BScreen::saveSloppyFocus(bool s) { resource.sloppy_focus = s; @@ -515,14 +508,17 @@ void BScreen::saveClock24Hour(Bool c) { void BScreen::saveWorkspaceNames() { + XAtom::StringVect nameList; + unsigned long numnames = (unsigned) -1; string names; - WorkspaceList::iterator it = workspacesList.begin(); - const WorkspaceList::iterator last = workspacesList.end() - 1; - const WorkspaceList::iterator end = workspacesList.end(); - for (; it != end; ++it) { - names += (*it)->getName(); - if (it != last) - names += ','; + + if (numnames > 0 && + xatom->getValue(getRootWindow(), XAtom::net_desktop_names, XAtom::utf8, + numnames, nameList)) { + for (unsigned int i = 0; i < nameList.size(); ++i) { + if (i > 0) names += ","; + names += nameList[i]; + } } config->setValue(screenstr + "workspaceNames", names); } @@ -606,17 +602,20 @@ void BScreen::load_rc(void) { else resource.col_direction = TopBottom; + XAtom::StringVect workspaceNames; if (config->getValue(screenstr + "workspaceNames", s)) { string::const_iterator it = s.begin(), end = s.end(); while(1) { string::const_iterator tmp = it; // current string.begin() it = std::find(tmp, end, ','); // look for comma between tmp and end - addWorkspaceName(string(tmp, it)); // s[tmp:it] + workspaceNames.push_back(string(tmp, it)); // s[tmp:it] if (it == end) break; ++it; } } + xatom->setValue(getRootWindow(), XAtom::net_desktop_names, XAtom::utf8, + workspaceNames); resource.sloppy_focus = true; resource.auto_raise = false; @@ -1026,7 +1025,6 @@ unsigned int BScreen::addWorkspace(void) { Workspace *wkspc = new Workspace(this, workspacesList.size()); workspacesList.push_back(wkspc); saveWorkspaces(getWorkspaceCount()); - saveWorkspaceNames(); workspacemenu->insert(wkspc->getName(), wkspc->getMenu(), wkspc->getID() + 2); @@ -1034,7 +1032,6 @@ unsigned int BScreen::addWorkspace(void) { toolbar->reconfigure(); - updateDesktopNames(); updateNetizenWorkspaceCount(); return workspacesList.size(); @@ -1059,8 +1056,6 @@ unsigned int BScreen::removeLastWorkspace(void) { delete wkspc; saveWorkspaces(getWorkspaceCount()); - saveWorkspaceNames(); - updateDesktopNames(); toolbar->reconfigure(); @@ -1222,8 +1217,8 @@ void BScreen::manageWindow(Window w) { // desktop windows cant do anything, so we remove all the normal window // stuff from them, they are only kept around so that we can keep them on // the bottom of the z-order - addDesktopWindow(win->getClientWindow()); win->restore(True); + addDesktopWindow(win->getClientWindow()); delete win; return; } @@ -1308,6 +1303,7 @@ void BScreen::updateWorkArea(void) { } xatom->setValue(getRootWindow(), XAtom::net_workarea, XAtom::cardinal, dims, 4 * workspacesList.size()); + delete [] dims; } else xatom->setValue(getRootWindow(), XAtom::net_workarea, XAtom::cardinal, 0, 0); @@ -1440,40 +1436,6 @@ void BScreen::lowerDesktops(void) { } -void BScreen::addWorkspaceName(const string& name) { - workspaceNames.push_back(name); - updateDesktopNames(); -} - - -void BScreen::updateDesktopNames(){ - XAtom::StringVect names; - - WorkspaceList::iterator it = workspacesList.begin(); - const WorkspaceList::iterator end = workspacesList.end(); - for (; it != end; ++it) - names.push_back((*it)->getName()); - - xatom->setValue(getRootWindow(), XAtom::net_desktop_names, - XAtom::utf8, names); -} - - -/* - * I would love to kill this function and the accompanying workspaceNames - * list. However, we have a chicken and egg situation. The names are read - * in during load_rc() which happens before the workspaces are created. - * The current solution is to read the names into a list, then use the list - * later for constructing the workspaces. It is only used during initial - * BScreen creation. - */ -const string BScreen::getNameOfWorkspace(unsigned int id) { - if (id < workspaceNames.size()) - return workspaceNames[id]; - return string(""); -} - - void BScreen::reassociateWindow(BlackboxWindow *w, unsigned int wkspc_id, bool ignore_sticky) { if (! w) return; @@ -2209,9 +2171,10 @@ void BScreen::toggleFocusModel(FocusModel model) { if (model == SloppyFocus) { saveSloppyFocus(True); } else { + // we're cheating here to save writing the config file 3 times + resource.auto_raise = False; + resource.click_raise = False; saveSloppyFocus(False); - saveAutoRaise(False); - saveClickRaise(False); } updateFocusModel();