diff options
author | markt <markt> | 2007-12-11 19:31:24 (GMT) |
---|---|---|
committer | markt <markt> | 2007-12-11 19:31:24 (GMT) |
commit | daca07edafc2e75eb9ee04d35fe80759308a8583 (patch) | |
tree | 380465a1d1c3e0bd2ae18a0d509fa7aa9d4f4526 /src/FbWinFrameTheme.hh | |
parent | 474e2017454d3c6492eb9f428aee039d36d76e05 (diff) | |
download | fluxbox_pavel-daca07edafc2e75eb9ee04d35fe80759308a8583.zip fluxbox_pavel-daca07edafc2e75eb9ee04d35fe80759308a8583.tar.bz2 |
added edge resize modes
Diffstat (limited to 'src/FbWinFrameTheme.hh')
-rw-r--r-- | src/FbWinFrameTheme.hh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FbWinFrameTheme.hh b/src/FbWinFrameTheme.hh index 04d6ee4..a48f8b6 100644 --- a/src/FbWinFrameTheme.hh +++ b/src/FbWinFrameTheme.hh | |||
@@ -78,6 +78,10 @@ public: | |||
78 | inline Cursor lowerRightAngleCursor() const { return m_cursor_lower_right_angle; } | 78 | inline Cursor lowerRightAngleCursor() const { return m_cursor_lower_right_angle; } |
79 | inline Cursor upperLeftAngleCursor() const { return m_cursor_upper_left_angle; } | 79 | inline Cursor upperLeftAngleCursor() const { return m_cursor_upper_left_angle; } |
80 | inline Cursor upperRightAngleCursor() const { return m_cursor_upper_right_angle; } | 80 | inline Cursor upperRightAngleCursor() const { return m_cursor_upper_right_angle; } |
81 | inline Cursor leftSideCursor() const { return m_cursor_left_side; } | ||
82 | inline Cursor rightSideCursor() const { return m_cursor_right_side; } | ||
83 | inline Cursor topSideCursor() const { return m_cursor_top_side; } | ||
84 | inline Cursor bottomSideCursor() const { return m_cursor_bottom_side; } | ||
81 | 85 | ||
82 | inline Shape::ShapePlace shapePlace() const { return *m_shape_place; } | 86 | inline Shape::ShapePlace shapePlace() const { return *m_shape_place; } |
83 | inline const BorderTheme &border() const { return m_border; } | 87 | inline const BorderTheme &border() const { return m_border; } |
@@ -114,6 +118,10 @@ private: | |||
114 | Cursor m_cursor_lower_right_angle; | 118 | Cursor m_cursor_lower_right_angle; |
115 | Cursor m_cursor_upper_left_angle; | 119 | Cursor m_cursor_upper_left_angle; |
116 | Cursor m_cursor_upper_right_angle; | 120 | Cursor m_cursor_upper_right_angle; |
121 | Cursor m_cursor_left_side; | ||
122 | Cursor m_cursor_right_side; | ||
123 | Cursor m_cursor_top_side; | ||
124 | Cursor m_cursor_bottom_side; | ||
117 | unsigned char m_focused_alpha; | 125 | unsigned char m_focused_alpha; |
118 | unsigned char m_unfocused_alpha; | 126 | unsigned char m_unfocused_alpha; |
119 | 127 | ||