diff options
author | fluxgen <fluxgen> | 2003-05-14 14:37:06 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-14 14:37:06 (GMT) |
commit | 615ec14ab26bdff2458457a26c5adfe743154873 (patch) | |
tree | 3c9b11ceca1b8a45c223ae07b8cd14cc8cb60fb9 /src/fluxbox.hh | |
parent | 4195e26d01a37e7e3b131da2b196941c3ce78b12 (diff) | |
download | fluxbox-615ec14ab26bdff2458457a26c5adfe743154873.zip fluxbox-615ec14ab26bdff2458457a26c5adfe743154873.tar.bz2 |
added better shape support
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index a3c4f81..e0cfc6c 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.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: fluxbox.hh,v 1.58 2003/05/13 00:18:28 fluxgen Exp $ | 25 | // $Id: fluxbox.hh,v 1.59 2003/05/14 14:35:39 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef FLUXBOX_HH | 27 | #ifndef FLUXBOX_HH |
28 | #define FLUXBOX_HH | 28 | #define FLUXBOX_HH |
@@ -189,7 +189,8 @@ public: | |||
189 | typedef std::vector<Fluxbox::Titlebar> TitlebarList; | 189 | typedef std::vector<Fluxbox::Titlebar> TitlebarList; |
190 | /// @return whether the timestamps on the menu changed | 190 | /// @return whether the timestamps on the menu changed |
191 | bool menuTimestampsChanged() const; | 191 | bool menuTimestampsChanged() const; |
192 | 192 | bool haveShape() const { return m_have_shape; } | |
193 | int shapeEventbase() const { return m_shape_eventbase; } | ||
193 | private: | 194 | private: |
194 | struct cursor { | 195 | struct cursor { |
195 | Cursor session, move, ll_angle, lr_angle; | 196 | Cursor session, move, ll_angle, lr_angle; |
@@ -273,6 +274,8 @@ private: | |||
273 | bool m_shutdown; | 274 | bool m_shutdown; |
274 | int m_server_grabs; | 275 | int m_server_grabs; |
275 | int m_randr_event_type; ///< the type number of randr event | 276 | int m_randr_event_type; ///< the type number of randr event |
277 | int m_shape_eventbase; ///< event base for shape events | ||
278 | bool m_have_shape; ///< if shape is supported by server | ||
276 | const char *m_RC_PATH; | 279 | const char *m_RC_PATH; |
277 | const char *m_RC_INIT_FILE; | 280 | const char *m_RC_INIT_FILE; |
278 | }; | 281 | }; |