diff options
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index a2f8592..4ee147c 100644 --- a/src/Screen.hh +++ b/src/Screen.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: Screen.hh,v 1.110 2003/06/24 15:01:54 fluxgen Exp $ | 25 | // $Id: Screen.hh,v 1.111 2003/06/24 16:29:54 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -30,9 +30,9 @@ | |||
30 | #include "Resource.hh" | 30 | #include "Resource.hh" |
31 | #include "Subject.hh" | 31 | #include "Subject.hh" |
32 | #include "MultLayers.hh" | 32 | #include "MultLayers.hh" |
33 | #include "ToolbarHandler.hh" | ||
34 | #include "FbRootWindow.hh" | 33 | #include "FbRootWindow.hh" |
35 | #include "NotCopyable.hh" | 34 | #include "NotCopyable.hh" |
35 | #include "fluxbox.hh" | ||
36 | 36 | ||
37 | #include <X11/Xlib.h> | 37 | #include <X11/Xlib.h> |
38 | #include <X11/Xresource.h> | 38 | #include <X11/Xresource.h> |
@@ -46,6 +46,7 @@ | |||
46 | 46 | ||
47 | class Netizen; | 47 | class Netizen; |
48 | class Toolbar; | 48 | class Toolbar; |
49 | class ToolbarHandler; | ||
49 | class FbWinFrameTheme; | 50 | class FbWinFrameTheme; |
50 | class RootTheme; | 51 | class RootTheme; |
51 | class WinButtonTheme; | 52 | class WinButtonTheme; |
@@ -105,8 +106,8 @@ public: | |||
105 | inline Slit *slit() { return m_slit.get(); } | 106 | inline Slit *slit() { return m_slit.get(); } |
106 | inline const Slit *slit() const { return m_slit.get(); } | 107 | inline const Slit *slit() const { return m_slit.get(); } |
107 | 108 | ||
108 | inline const Toolbar *toolbar() const { return m_toolbarhandler->getToolbar(); } | 109 | const Toolbar *toolbar() const; |
109 | inline Toolbar *toolbar() { return m_toolbarhandler->getToolbar(); } | 110 | Toolbar *toolbar(); |
110 | 111 | ||
111 | inline const ToolbarHandler &toolbarHandler() const { return *m_toolbarhandler; } | 112 | inline const ToolbarHandler &toolbarHandler() const { return *m_toolbarhandler; } |
112 | inline ToolbarHandler &toolbarHandler() { return *m_toolbarhandler; } | 113 | inline ToolbarHandler &toolbarHandler() { return *m_toolbarhandler; } |
@@ -161,7 +162,6 @@ public: | |||
161 | /// @return the resource value of number of workspace | 162 | /// @return the resource value of number of workspace |
162 | inline int getNumberOfWorkspaces() const { return *resource.workspaces; } | 163 | inline int getNumberOfWorkspaces() const { return *resource.workspaces; } |
163 | 164 | ||
164 | inline ToolbarHandler::ToolbarMode toolbarMode() const { return *resource.toolbar_mode; } | ||
165 | inline int getPlacementPolicy() const { return resource.placement_policy; } | 165 | inline int getPlacementPolicy() const { return resource.placement_policy; } |
166 | inline int getEdgeSnapThreshold() const { return *resource.edge_snap_threshold; } | 166 | inline int getEdgeSnapThreshold() const { return *resource.edge_snap_threshold; } |
167 | inline int getRowPlacementDirection() const { return resource.row_direction; } | 167 | inline int getRowPlacementDirection() const { return resource.row_direction; } |
@@ -172,9 +172,6 @@ public: | |||
172 | inline void saveFocusModel(Fluxbox::FocusModel model) { resource.focus_model = model; } | 172 | inline void saveFocusModel(Fluxbox::FocusModel model) { resource.focus_model = model; } |
173 | inline void saveWorkspaces(int w) { *resource.workspaces = w; } | 173 | inline void saveWorkspaces(int w) { *resource.workspaces = w; } |
174 | 174 | ||
175 | |||
176 | inline void saveToolbarMode(ToolbarHandler::ToolbarMode m) { *resource.toolbar_mode = m; } | ||
177 | |||
178 | inline void savePlacementPolicy(int p) { resource.placement_policy = p; } | 175 | inline void savePlacementPolicy(int p) { resource.placement_policy = p; } |
179 | inline void saveRowPlacementDirection(int d) { resource.row_direction = d; } | 176 | inline void saveRowPlacementDirection(int d) { resource.row_direction = d; } |
180 | inline void saveColPlacementDirection(int d) { resource.col_direction = d; } | 177 | inline void saveColPlacementDirection(int d) { resource.col_direction = d; } |
@@ -414,9 +411,6 @@ private: | |||
414 | 411 | ||
415 | int placement_policy, row_direction, col_direction; | 412 | int placement_policy, row_direction, col_direction; |
416 | 413 | ||
417 | FbTk::Resource<ToolbarHandler::ToolbarMode> toolbar_mode; | ||
418 | |||
419 | |||
420 | std::string strftime_format; | 414 | std::string strftime_format; |
421 | 415 | ||
422 | bool clock24hour; | 416 | bool clock24hour; |