diff options
author | fluxgen <fluxgen> | 2001-12-17 00:46:15 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2001-12-17 00:46:15 (GMT) |
commit | b6ae55efd12beacf9261f0c84549c9625f243560 (patch) | |
tree | 26c79b86817a5c4c0296c5b3d016075333802184 /src/Screen.hh | |
parent | 98eb553afa016c54b6aeff157bc2240c02603e94 (diff) | |
download | fluxbox-b6ae55efd12beacf9261f0c84549c9625f243560.zip fluxbox-b6ae55efd12beacf9261f0c84549c9625f243560.tar.bz2 |
Merge with pekdon
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 95f53c1..9c2b5af 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -168,6 +168,10 @@ public: | |||
168 | { return resource.row_direction; } | 168 | { return resource.row_direction; } |
169 | inline const int &getColPlacementDirection(void) const | 169 | inline const int &getColPlacementDirection(void) const |
170 | { return resource.col_direction; } | 170 | { return resource.col_direction; } |
171 | inline const unsigned int &getTabWidth(void) const | ||
172 | { return resource.tab_width; } | ||
173 | inline const unsigned int &getTabHeight(void) const | ||
174 | { return resource.tab_height; } | ||
171 | inline const int getTabPlacement(void) | 175 | inline const int getTabPlacement(void) |
172 | { return resource.tab_placement; } | 176 | { return resource.tab_placement; } |
173 | inline const int getTabAlignment(void) | 177 | inline const int getTabAlignment(void) |
@@ -193,6 +197,8 @@ public: | |||
193 | inline void saveFullMax(Bool f) { resource.full_max = f; } | 197 | inline void saveFullMax(Bool f) { resource.full_max = f; } |
194 | inline void saveFocusNew(Bool f) { resource.focus_new = f; } | 198 | inline void saveFocusNew(Bool f) { resource.focus_new = f; } |
195 | inline void saveFocusLast(Bool f) { resource.focus_last = f; } | 199 | inline void saveFocusLast(Bool f) { resource.focus_last = f; } |
200 | inline void saveTabWidth(unsigned int w) { resource.tab_width = w; } | ||
201 | inline void saveTabHeight(unsigned int h) { resource.tab_height = h; } | ||
196 | inline void saveTabPlacement(unsigned int p) { resource.tab_placement = p; } | 202 | inline void saveTabPlacement(unsigned int p) { resource.tab_placement = p; } |
197 | inline void saveTabAlignment(unsigned int a) { resource.tab_alignment = a; } | 203 | inline void saveTabAlignment(unsigned int a) { resource.tab_alignment = a; } |
198 | inline void saveTabRotateVertical(Bool r) | 204 | inline void saveTabRotateVertical(Bool r) |
@@ -309,7 +315,7 @@ private: | |||
309 | int workspaces, toolbar_placement, toolbar_width_percent, placement_policy, | 315 | int workspaces, toolbar_placement, toolbar_width_percent, placement_policy, |
310 | edge_snap_threshold, row_direction, col_direction; | 316 | edge_snap_threshold, row_direction, col_direction; |
311 | 317 | ||
312 | unsigned int tab_placement, tab_alignment; | 318 | unsigned int tab_placement, tab_alignment, tab_width, tab_height; |
313 | 319 | ||
314 | #ifdef SLIT | 320 | #ifdef SLIT |
315 | Bool slit_on_top, slit_auto_hide; | 321 | Bool slit_on_top, slit_auto_hide; |