]> Dogcows Code - chaz/openbox/blob - src/frame.hh
put an S on the stick button
[chaz/openbox] / src / frame.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __frame_hh
3 #define __frame_hh
4
5 /*! @file frame.hh
6 */
7
8 extern "C" {
9 #include <X11/Xlib.h>
10 }
11
12 #include "client.hh"
13 #include "otk/strut.hh"
14 #include "otk/rect.hh"
15 #include "otk/screeninfo.hh"
16 #include "otk/style.hh"
17 #include "otk/widget.hh"
18 #include "otk/button.hh"
19 #include "otk/focuswidget.hh"
20 #include "otk/focuslabel.hh"
21
22 #include <string>
23
24 namespace ob {
25
26 //! Holds and decorates a frame around an OBClient (client window)
27 /*!
28 */
29 class OBFrame : public otk::OtkWidget {
30 private:
31 OBClient *_client;
32 const otk::ScreenInfo *_screen;
33
34 //! The style to use for size and display the decorations
35 otk::Style *_style;
36
37 //! The size of the frame on each side of the client window
38 otk::Strut _size;
39
40 // decoration windows
41 otk::OtkFocusWidget _plate; // sits entirely under the client window
42 otk::OtkFocusWidget _titlebar;
43 otk::OtkButton _button_close;
44 otk::OtkButton _button_iconify;
45 otk::OtkButton _button_max;
46 otk::OtkButton _button_stick;
47 otk::OtkFocusLabel _label;
48 otk::OtkFocusWidget _handle;
49 otk::OtkButton _grip_left;
50 otk::OtkButton _grip_right;
51
52 //! The decorations to display on the window.
53 /*!
54 This is by default the same value as in the OBClient::decorations, but it
55 is duplicated here so that it can be overridden per-window by the user.
56 */
57 OBClient::DecorationFlags _decorations;
58
59 //! Creates the base frame window
60 Window createFrame();
61 //! Creates a child frame decoration element window
62 Window createChild(Window parent, Cursor cursor);
63
64 //! Reparents the client window from the root window onto the frame
65 void grabClient();
66 //! Reparents the client window back to the root window
67 /*!
68 @param remap Re-map the client window when we're done reparenting?
69 */
70 void releaseClient(bool remap);
71
72 public:
73 //! Constructs an OBFrame object, and reparents the client to itself
74 /*!
75 @param client The client window which will be decorated by the new OBFrame
76 @param style The style to use to decorate the frame
77 */
78 OBFrame(OBClient *client, otk::Style *style);
79 //! Destroys the OBFrame object
80 virtual ~OBFrame();
81
82 //! Set the style to decorate the frame with
83 virtual void setStyle(otk::Style *style);
84
85 //! Update the frame to match the client
86 void adjust();
87 //! Shape the frame window to the client window
88 void adjustShape();
89 };
90
91 }
92
93 #endif // __frame_hh
This page took 0.036348 seconds and 4 git commands to generate.