]> Dogcows Code - chaz/openbox/blobdiff - src/frame.hh
move screen.cc/hh to bbscreen.cc/hh
[chaz/openbox] / src / frame.hh
index 7814ed3563e608862680549b8142bbecbbdd4f34..f163298180e6249f999f060044cd130953e41dee 100644 (file)
@@ -9,14 +9,14 @@ extern "C" {
 #include <X11/Xlib.h>
 }
 
-#include <string>
-
 #include "client.hh"
 #include "otk/strut.hh"
 #include "otk/rect.hh"
 #include "otk/screeninfo.hh"
 #include "otk/style.hh"
 
+#include <string>
+
 namespace ob {
 
 //! Holds and decorates a frame around an OBClient (client window)
@@ -104,6 +104,16 @@ public:
   //! Returns the frame's most-parent window, which is a child of the root
   //! window
   inline Window window() const { return _window; }
+
+  inline Window titlebar() const { return _titlebar; }
+  inline Window label() const { return _label; }
+  inline Window buttonIconify() const { return _button_iconify; }
+  inline Window buttonMax() const { return _button_max; }
+  inline Window buttonStick() const { return _button_stick; }
+  inline Window buttonClose() const { return _button_close; }
+  inline Window handle() const { return _handle; }
+  inline Window gripLeft() const { return _grip_left; }
+  inline Window gripRight() const { return _grip_right; }
 };
 
 }
This page took 0.021074 seconds and 4 git commands to generate.