]> Dogcows Code - chaz/openbox/blobdiff - src/Screen.h
make a new autoRaiseDelay value take effect without having to restart
[chaz/openbox] / src / Screen.h
index c59a2e95d33e90c2248782980329696dbb52c47d..24baba1f1dd8d963f09a8ed860500b3c15508d0b 100644 (file)
 
 #include <list>
 #include <vector>
-typedef std::list<Rootmenu *> menuList;
-typedef std::list<Netizen *> netList;
-typedef std::vector<Workspace *> wkspList;
-typedef std::vector<std::string> wkspNameList;
 
 // forward declaration
 class BScreen;
@@ -116,8 +112,11 @@ private:
   Iconmenu *iconmenu;
   Rootmenu *rootmenu;
 
+  typedef std::list<Rootmenu *> menuList;
   menuList rootmenuList;
+  typedef std::list<Netizen *> netList;
   netList netizenList;
+  typedef std::list<OpenboxWindow *> winList;
   winList iconList;     // winList is declared in Workspace.h
 
 #ifdef    SLIT
@@ -131,7 +130,9 @@ private:
   unsigned int geom_w, geom_h;
   unsigned long event_mask;
 
+  typedef std::vector<std::string> wkspNameList;
   wkspNameList workspaceNames;
+  typedef std::vector<Workspace *> wkspList;
   wkspList workspacesList;
 
   struct resource {
@@ -196,7 +197,7 @@ public:
 
   Rect availableArea() const;
   
-  inline Workspace *getWorkspace(int w) {
+  inline Workspace *getWorkspace(unsigned int w) {
     ASSERT(w < workspacesList.size());
     return workspacesList[w];
   }
This page took 0.020503 seconds and 4 git commands to generate.