aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-02-22 16:09:44 (GMT)
committerrathnor <rathnor>2003-02-22 16:09:44 (GMT)
commitb1cb6bcf66c00b555711e0fcdf35277667fb4a13 (patch)
tree6c7ad1844ae8f33ad4e0c1349751c130599906e6 /src/Screen.hh
parentcc2f023a22db212b4097d7756379bb6b9e866b11 (diff)
downloadfluxbox-b1cb6bcf66c00b555711e0fcdf35277667fb4a13.zip
fluxbox-b1cb6bcf66c00b555711e0fcdf35277667fb4a13.tar.bz2
fix autoraise to be saved as separate init option
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 a30ca40..9488f3c 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.70 2003/02/22 15:10:43 rathnor Exp $ 25// $Id: Screen.hh,v 1.71 2003/02/22 16:09:44 rathnor Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -87,7 +87,7 @@ public:
87 inline bool isSloppyWindowGrouping() const { return *resource.sloppy_window_grouping; } 87 inline bool isSloppyWindowGrouping() const { return *resource.sloppy_window_grouping; }
88 inline bool isWorkspaceWarping() const { return *resource.workspace_warping; } 88 inline bool isWorkspaceWarping() const { return *resource.workspace_warping; }
89 inline bool isDesktopWheeling() const { return *resource.desktop_wheeling; } 89 inline bool isDesktopWheeling() const { return *resource.desktop_wheeling; }
90 inline bool doAutoRaise() const { return resource.auto_raise; } 90 inline bool doAutoRaise() const { return *resource.auto_raise; }
91 inline bool doImageDither() const { return *resource.image_dither; } 91 inline bool doImageDither() const { return *resource.image_dither; }
92 inline bool doMaxOverSlit() const { return *resource.max_over_slit; } 92 inline bool doMaxOverSlit() const { return *resource.max_over_slit; }
93 inline bool doOpaqueMove() const { return *resource.opaque_move; } 93 inline bool doOpaqueMove() const { return *resource.opaque_move; }
@@ -382,10 +382,10 @@ private:
382 sloppy_window_grouping, workspace_warping, 382 sloppy_window_grouping, workspace_warping,
383 desktop_wheeling, show_window_pos, 383 desktop_wheeling, show_window_pos,
384 focus_last, focus_new, 384 focus_last, focus_new,
385 antialias; 385 antialias, auto_raise;
386 Resource<std::string> rootcommand; 386 Resource<std::string> rootcommand;
387 Resource<Fluxbox::FocusModel> focus_model; 387 Resource<Fluxbox::FocusModel> focus_model;
388 bool auto_raise, ordered_dither; 388 bool ordered_dither;
389 Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold, 389 Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold,
390 tab_width, tab_height; 390 tab_width, tab_height;
391 Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum; 391 Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum;