]> Dogcows Code - chaz/openbox/commitdiff
set desktop names on startup
authorDana Jansens <danakj@orodu.net>
Sat, 4 Jan 2003 02:03:30 +0000 (02:03 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 4 Jan 2003 02:03:30 +0000 (02:03 +0000)
src/client.cc
src/rootwindow.cc
src/rootwindow.hh
src/screen.cc

index 15f44349d75ca210e9e0dc698c3f47d38d41313f..d150cf8b4b54f391333432c5d6ff6af684e4378f 100644 (file)
@@ -539,7 +539,8 @@ void OBClient::setWMState(long state)
 
 void OBClient::setDesktop(long target)
 {
-  assert(target >= 0);
+  printf("Setting desktop %ld\n", target);
+  assert(target >= 0 || target == (signed)0xffffffff);
   //assert(target == 0xffffffff || target < MAX);
 
   // XXX: move the window to the new desktop (and set root property)
index 364f614471d186a562544b7cc9200c677860a490..771cc79903abfeddba5fcf3d503031f9abec2d51 100644 (file)
@@ -38,9 +38,8 @@ void OBRootWindow::updateDesktopNames()
                      otk::OBProperty::net_desktop_names,
                      otk::OBProperty::utf8, &num, &_names))
     _names.clear();
-  for (int i = 0; i < numWorkspaces; ++i)
-    if (i <= static_cast<int>(_names.size()))
-      _names.push_back("Unnamed workspace");
+  while ((signed)_names.size() < numWorkspaces)
+    _names.push_back("Unnamed");
 }
 
 
@@ -74,10 +73,18 @@ void OBRootWindow::clientMessageHandler(const XClientMessageEvent &e)
 
   //const otk::OBProperty *property = Openbox::instance->property();
   
-  // XXX: so many client messages to handle here!
+  // XXX: so many client messages to handle here! ..or not.. they go to clients
 }
 
 
+void OBRootWindow::setDesktopNames(const otk::OBProperty::StringVect &names)
+{
+  _names = names;
+  const otk::OBProperty *property = Openbox::instance->property();
+  property->set(_info->rootWindow(), otk::OBProperty::net_desktop_names,
+                otk::OBProperty::utf8, names);
+}
+
 void OBRootWindow::setDesktopName(int i, const std::string &name)
 {
   const int numWorkspaces = 1; // XXX: change this to the number of workspaces!
index 180f239c5baeb301d9c6422931556237c97ec748..5ff386e1dd99254afc5532ce0723e7cb8ef02f19 100644 (file)
@@ -53,6 +53,9 @@ public:
   //! Destroys the OBRootWindow object
   virtual ~OBRootWindow();
 
+  //! Sets the name of all desktops
+  void setDesktopNames(const otk::OBProperty::StringVect &names);
+  
   //! Sets the name of a desktop
   /*!
     @param i The index of the desktop to set the name for (base 0)
index c121c20f582ac5a88ab92f9ea8a4b839a90a1e9a..fcbe2ea6a4991dae3115e0b7f97ae9af84fa77bf 100644 (file)
@@ -93,7 +93,7 @@ OBScreen::OBScreen(int screen)
   // set up notification of netwm support
   setSupportedAtoms();
 
-  // Set the netwm atoms for geomtery and viewport
+  // Set the netwm properties for geometry and viewport
   unsigned long geometry[] = { _info->width(),
                                _info->height() };
   Openbox::instance->property()->set(_info->rootWindow(),
@@ -106,6 +106,11 @@ OBScreen::OBScreen(int screen)
                                      otk::OBProperty::Atom_Cardinal,
                                      viewport, 2);
 
+  // Set the net_desktop_names property
+  std::vector<std::string> names;
+  python_get_stringlist("desktop_names", &names);
+  _root.setDesktopNames(names);
+  
   // create the window which gets focus when no clients get it
   XSetWindowAttributes attr;
   attr.override_redirect = true;
This page took 0.026737 seconds and 4 git commands to generate.