]> Dogcows Code - chaz/openbox/blobdiff - src/Slit.h
make a new autoRaiseDelay value take effect without having to restart
[chaz/openbox] / src / Slit.h
index f7feb6b16560a76b05e3f97ef27077f7698585b2..b07d9c6ca611b281a94c304ff61fb4d3b9466589 100644 (file)
@@ -27,8 +27,8 @@
 #include <X11/Xutil.h>
 
 #include "Basemenu.h"
-#include "LinkedList.h"
 #include "Geometry.h"
+#include <list>
 
 // forward declaration
 class Slit;
@@ -105,7 +105,8 @@ private:
   Resource &config;
   BTimer *timer;
 
-  LinkedList<SlitClient> *clientList;
+  typedef std::list<SlitClient *> slitClientList;
+  slitClientList clientList;
   Slitmenu *slitmenu;
 
   struct frame {
@@ -133,6 +134,7 @@ public:
   inline const Point &origin() const { return frame.area.origin(); }
   inline const Size &size() const { return frame.area.size(); }
   inline const Rect &area() const { return frame.area; }
+  inline const Point &hiddenOrigin() const { return frame.hidden; }
 
   void addClient(Window);
   void removeClient(SlitClient *, Bool = True);
This page took 0.025068 seconds and 4 git commands to generate.