aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-01-19 12:00:46 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-01-19 12:00:46 (GMT)
commitdb4ec8cf20b4e72cd32d0632a5ab6a8584d2515a (patch)
treef89bd2773b284aed8c1bbb7f9e5d1fe64d694070 /src/Screen.hh
parent7b055cc54a2db2398a7da012b57f0dcbc9f85a35 (diff)
downloadfluxbox-db4ec8cf20b4e72cd32d0632a5ab6a8584d2515a.zip
fluxbox-db4ec8cf20b4e72cd32d0632a5ab6a8584d2515a.tar.bz2
move position and geometry windows into their own class
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 99c23ff..a503285 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -30,6 +30,7 @@
30#include "RootTheme.hh" 30#include "RootTheme.hh"
31#include "WinButtonTheme.hh" 31#include "WinButtonTheme.hh"
32#include "FbWinFrameTheme.hh" 32#include "FbWinFrameTheme.hh"
33#include "OSDWindow.hh"
33 34
34#include "FbTk/MenuTheme.hh" 35#include "FbTk/MenuTheme.hh"
35#include "FbTk/EventHandler.hh" 36#include "FbTk/EventHandler.hh"
@@ -496,11 +497,9 @@ private:
496 497
497 FbTk::MultLayers m_layermanager; 498 FbTk::MultLayers m_layermanager;
498 499
499 bool root_colormap_installed, managed, geom_visible, pos_visible; 500 bool root_colormap_installed, managed;
500 501
501 GC opGC; 502 GC opGC;
502 Pixmap geom_pixmap, pos_pixmap;
503
504 503
505 504
506 std::auto_ptr<FbTk::ImageControl> m_image_control; 505 std::auto_ptr<FbTk::ImageControl> m_image_control;
@@ -532,7 +531,8 @@ private:
532 std::auto_ptr<RootTheme> m_root_theme; 531 std::auto_ptr<RootTheme> m_root_theme;
533 532
534 FbRootWindow m_root_window; 533 FbRootWindow m_root_window;
535 FbTk::FbWindow m_geom_window, m_pos_window, m_dummy_window; 534 OSDWindow m_geom_window, m_pos_window;
535 FbTk::FbWindow m_dummy_window;
536 536
537 struct ScreenResource { 537 struct ScreenResource {
538 ScreenResource(FbTk::ResourceManager &rm, const std::string &scrname, 538 ScreenResource(FbTk::ResourceManager &rm, const std::string &scrname,