diff options
author | fluxgen <fluxgen> | 2003-06-18 13:55:17 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-06-18 13:55:17 (GMT) |
commit | e3ab62fed1e63be3e7f6b81c316b15097638faf6 (patch) | |
tree | 563a2d45e6e33de08f2b899bbe775f9b2a5a755b /src/Window.hh | |
parent | 501168b557f4c21ca10dfdaad7776c125968363a (diff) | |
download | fluxbox_pavel-e3ab62fed1e63be3e7f6b81c316b15097638faf6.zip fluxbox_pavel-e3ab62fed1e63be3e7f6b81c316b15097638faf6.tar.bz2 |
added strut support
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/Window.hh b/src/Window.hh index b5b86fa..59a9084 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.78 2003/06/15 18:34:48 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.79 2003/06/18 13:55:16 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -44,9 +44,10 @@ | |||
44 | class WinClient; | 44 | class WinClient; |
45 | class FbWinFrameTheme; | 45 | class FbWinFrameTheme; |
46 | class BScreen; | 46 | class BScreen; |
47 | class Strut; | ||
48 | |||
47 | class TextButton; | 49 | class TextButton; |
48 | class FbWinFrame; | 50 | class FbWinFrame; |
49 | |||
50 | namespace FbTk { | 51 | namespace FbTk { |
51 | class MenuTheme; | 52 | class MenuTheme; |
52 | class ImageControl; | 53 | class ImageControl; |
@@ -242,6 +243,9 @@ public: | |||
242 | DECORM_LAST = (1<<11) // useful for getting "All" | 243 | DECORM_LAST = (1<<11) // useful for getting "All" |
243 | }; | 244 | }; |
244 | 245 | ||
246 | void setStrut(Strut *strut); | ||
247 | void clearStrut(); | ||
248 | |||
245 | unsigned int decorationMask() const; | 249 | unsigned int decorationMask() const; |
246 | void setDecorationMask(unsigned int mask); | 250 | void setDecorationMask(unsigned int mask); |
247 | 251 | ||
@@ -441,6 +445,8 @@ private: | |||
441 | m_last_button_y; ///< last known y position of the mouse button | 445 | m_last_button_y; ///< last known y position of the mouse button |
442 | std::auto_ptr<FbWinFrame> m_frame; | 446 | std::auto_ptr<FbWinFrame> m_frame; |
443 | 447 | ||
448 | Strut *m_strut; | ||
449 | |||
444 | FbTk::XLayerItem m_layeritem; | 450 | FbTk::XLayerItem m_layeritem; |
445 | int m_layernum; | 451 | int m_layernum; |
446 | 452 | ||