summaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-09 06:09:10 +0000
committerDana Jansens <danakj@orodu.net>2002-07-09 06:09:10 +0000
commit0c04fb5260a535d8457febca9bf05669a85b1c12 (patch)
treed05b710b428a5baf61f2f60b0cc7ca0704ffaafc /src/Screen.hh
parent8e34bfcfcbd7bfc9913f40a23016f30c63803611 (diff)
synch with bb-cvs.
add window resize zones. the resource has been renamed from windowZones to resizeZones.
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 4de9daa2..36a9f3cc 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -156,7 +156,8 @@ private:
int toolbar_placement, toolbar_width_percent, placement_policy,
edge_snap_threshold, row_direction, col_direction;
- unsigned int handle_width, bevel_width, frame_width, border_width;
+ unsigned int handle_width, bevel_width, frame_width, border_width,
+ resize_zones;
#ifdef HAVE_STRFTIME
std::string strftime_format;
@@ -241,6 +242,8 @@ public:
{ return resource.frame_width; }
inline unsigned int getBorderWidth(void) const
{ return resource.border_width; }
+ inline unsigned int getResizeZones(void) const
+ { return resource.resize_zones; }
inline unsigned int getCurrentWorkspaceID(void)
{ return current_workspace->getID(); }
@@ -276,6 +279,7 @@ public:
void saveHideToolbar(bool h);
void saveWindowToWindowSnap(bool s);
void saveWindowCornerSnap(bool s);
+ void saveResizeZones(unsigned int z);
inline void iconUpdate(void) { iconmenu->update(); }
#ifdef HAVE_STRFTIME