diff options
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/Window.hh b/src/Window.hh index 0f6c75b..f55b307 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.49 2003/02/17 22:41:24 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.50 2003/02/18 15:11:11 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -34,6 +34,7 @@ | |||
34 | #include "FbWinFrame.hh" | 34 | #include "FbWinFrame.hh" |
35 | #include "EventHandler.hh" | 35 | #include "EventHandler.hh" |
36 | #include "XLayerItem.hh" | 36 | #include "XLayerItem.hh" |
37 | #include "LayerMenu.hh" | ||
37 | 38 | ||
38 | #include <X11/Xlib.h> | 39 | #include <X11/Xlib.h> |
39 | #include <X11/Xutil.h> | 40 | #include <X11/Xutil.h> |
@@ -58,6 +59,7 @@ class ImageControl; | |||
58 | class XLayer; | 59 | class XLayer; |
59 | }; | 60 | }; |
60 | 61 | ||
62 | |||
61 | /// Creates the window frame and handles any window event for it | 63 | /// Creates the window frame and handles any window event for it |
62 | class FluxboxWindow : public FbTk::TimeoutHandler, public FbTk::EventHandler { | 64 | class FluxboxWindow : public FbTk::TimeoutHandler, public FbTk::EventHandler { |
63 | public: | 65 | public: |
@@ -223,11 +225,14 @@ public: | |||
223 | Window getFrameWindow() const { return m_frame.window().window(); } | 225 | Window getFrameWindow() const { return m_frame.window().window(); } |
224 | Window getClientWindow() const { return client.window; } | 226 | Window getClientWindow() const { return client.window; } |
225 | 227 | ||
228 | FbTk::FbWindow &getFbWindow() { return m_frame.window(); } | ||
229 | const FbTk::FbWindow &getFbWindow() const { return m_frame.window(); } | ||
230 | |||
226 | FbTk::Menu &getWindowmenu() { return m_windowmenu; } | 231 | FbTk::Menu &getWindowmenu() { return m_windowmenu; } |
227 | const FbTk::Menu &getWindowmenu() const { return m_windowmenu; } | 232 | const FbTk::Menu &getWindowmenu() const { return m_windowmenu; } |
228 | 233 | ||
229 | FbTk::Menu &getLayermenu() { return m_layermenu; } | 234 | FbTk::Menu *getLayermenu() { return m_layermenu; } |
230 | const FbTk::Menu &getLayermenu() const { return m_layermenu; } | 235 | const FbTk::Menu *getLayermenu() const { return m_layermenu; } |
231 | 236 | ||
232 | const std::string &getTitle() const { return client.title; } | 237 | const std::string &getTitle() const { return client.title; } |
233 | const std::string &getIconTitle() const { return client.icon_title; } | 238 | const std::string &getIconTitle() const { return client.icon_title; } |
@@ -341,7 +346,8 @@ private: | |||
341 | BaseDisplay::BlackboxAttributes blackbox_attrib; | 346 | BaseDisplay::BlackboxAttributes blackbox_attrib; |
342 | 347 | ||
343 | Time lastButtonPressTime; | 348 | Time lastButtonPressTime; |
344 | FbTk::Menu m_windowmenu, m_layermenu; | 349 | FbTk::Menu m_windowmenu; |
350 | LayerMenu<FluxboxWindow> *m_layermenu; | ||
345 | 351 | ||
346 | timeval lastFocusTime; | 352 | timeval lastFocusTime; |
347 | 353 | ||
@@ -403,5 +409,10 @@ private: | |||
403 | 409 | ||
404 | }; | 410 | }; |
405 | 411 | ||
412 | template <> | ||
413 | void LayerMenuItem<FluxboxWindow>::click(int button, int time) { | ||
414 | m_object->moveToLayer(m_layernum); | ||
415 | } | ||
416 | |||
406 | 417 | ||
407 | #endif // WINDOW_HH | 418 | #endif // WINDOW_HH |