diff options
author | fluxgen <fluxgen> | 2003-01-05 22:58:11 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-01-05 22:58:11 (GMT) |
commit | 459f2563d2470712a969cf48f6a1474b364dd3c4 (patch) | |
tree | ce25767b246b439387a101871dac664f4d19e6a8 /src/FbTk/FbWindow.hh | |
parent | b36851a47620c6035b2987bdff72f0ba26afe580 (diff) | |
download | fluxbox_paul-459f2563d2470712a969cf48f6a1474b364dd3c4.zip fluxbox_paul-459f2563d2470712a969cf48f6a1474b364dd3c4.tar.bz2 |
added border size
Diffstat (limited to 'src/FbTk/FbWindow.hh')
-rw-r--r-- | src/FbTk/FbWindow.hh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/FbTk/FbWindow.hh b/src/FbTk/FbWindow.hh index 00c3026..0f4ff5e 100644 --- a/src/FbTk/FbWindow.hh +++ b/src/FbTk/FbWindow.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbWindow.hh,v 1.5 2002/12/25 11:29:34 fluxgen Exp $ | 22 | // $Id: FbWindow.hh,v 1.6 2003/01/05 22:55:14 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBTK_FBWINDOW_HH | 24 | #ifndef FBTK_FBWINDOW_HH |
25 | #define FBTK_FBWINDOW_HH | 25 | #define FBTK_FBWINDOW_HH |
@@ -76,6 +76,7 @@ public: | |||
76 | int y() const { return m_y; } | 76 | int y() const { return m_y; } |
77 | size_t width() const { return m_width; } | 77 | size_t width() const { return m_width; } |
78 | size_t height() const { return m_height; } | 78 | size_t height() const { return m_height; } |
79 | size_t borderWidth() const { return m_border_width; } | ||
79 | int screenNumber() const; | 80 | int screenNumber() const; |
80 | /// compare X window | 81 | /// compare X window |
81 | bool operator == (Window win) const { return m_window == win; } | 82 | bool operator == (Window win) const { return m_window == win; } |
@@ -93,9 +94,10 @@ private: | |||
93 | static Display *s_display; | 94 | static Display *s_display; |
94 | const FbWindow *m_parent; | 95 | const FbWindow *m_parent; |
95 | int m_screen_num; | 96 | int m_screen_num; |
96 | Window m_window; ///< X window | 97 | Window m_window; ///< the X window |
97 | int m_x, m_y; ///< position | 98 | int m_x, m_y; ///< position of window |
98 | size_t m_width, m_height; | 99 | size_t m_width, m_height; ///< size of window |
100 | size_t m_border_width; // border size | ||
99 | }; | 101 | }; |
100 | 102 | ||
101 | bool operator == (Window win, const FbWindow &fbwin); | 103 | bool operator == (Window win, const FbWindow &fbwin); |