aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-01-05 16:54:34 (GMT)
committermarkt <markt>2007-01-05 16:54:34 (GMT)
commit8930a711ee101c1a02f579a2ee8ebbe39065c085 (patch)
treecce01b032cb6c7e76e820590490e7c08ab758112 /src/fluxbox.hh
parent64fcedda00205f0c0b9464967f06322d4c7afa91 (diff)
downloadfluxbox-8930a711ee101c1a02f579a2ee8ebbe39065c085.zip
fluxbox-8930a711ee101c1a02f579a2ee8ebbe39065c085.tar.bz2
only grab keybindings on screens managed by fluxbox
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index c80459a..3f4a00a 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -196,6 +196,9 @@ public:
196 /// get screen from number 196 /// get screen from number
197 BScreen *findScreen(int num); 197 BScreen *findScreen(int num);
198 198
199 typedef std::list<BScreen *> ScreenList;
200 const ScreenList screenList() const { return m_screen_list; }
201
199 /// @return whether the timestamps on the menu changed 202 /// @return whether the timestamps on the menu changed
200 bool menuTimestampsChanged() const; 203 bool menuTimestampsChanged() const;
201 bool haveShape() const { return m_have_shape; } 204 bool haveShape() const { return m_have_shape; }
@@ -269,7 +272,6 @@ private:
269 std::multimap<Window, WinClient *> m_group_search; 272 std::multimap<Window, WinClient *> m_group_search;
270 273
271 std::list<MenuTimestamp *> m_menu_timestamps; 274 std::list<MenuTimestamp *> m_menu_timestamps;
272 typedef std::list<BScreen *> ScreenList;
273 ScreenList m_screen_list; 275 ScreenList m_screen_list;
274 276
275 FluxboxWindow *m_masked_window; 277 FluxboxWindow *m_masked_window;