aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrame.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-09-24 14:02:25 (GMT)
committerrathnor <rathnor>2003-09-24 14:02:25 (GMT)
commitfeb7462e381b4015bc736e90da87dc7cc5711b1a (patch)
treee028335ecbc02b1e79128247293003b2ce5afc29 /src/FbWinFrame.hh
parentbec4f7c894677a92d9210a1b1e511afd4cee5e5e (diff)
downloadfluxbox-feb7462e381b4015bc736e90da87dc7cc5711b1a.zip
fluxbox-feb7462e381b4015bc736e90da87dc7cc5711b1a.tar.bz2
Fix updates to mwm_hints, and make configure request move and resize atomic
Diffstat (limited to 'src/FbWinFrame.hh')
-rw-r--r--src/FbWinFrame.hh9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/FbWinFrame.hh b/src/FbWinFrame.hh
index 23b004b..f57ce32 100644
--- a/src/FbWinFrame.hh
+++ b/src/FbWinFrame.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: FbWinFrame.hh,v 1.20 2003/09/14 10:32:31 fluxgen Exp $ 22// $Id: FbWinFrame.hh,v 1.21 2003/09/24 14:02:25 rathnor Exp $
23 23
24#ifndef FBWINFRAME_HH 24#ifndef FBWINFRAME_HH
25#define FBWINFRAME_HH 25#define FBWINFRAME_HH
@@ -80,7 +80,12 @@ public:
80 void resize(unsigned int width, unsigned int height); 80 void resize(unsigned int width, unsigned int height);
81 /// resize client to specified size and resize frame to it 81 /// resize client to specified size and resize frame to it
82 void resizeForClient(unsigned int width, unsigned int height); 82 void resizeForClient(unsigned int width, unsigned int height);
83 void moveResize(int x, int y, unsigned int width, unsigned int height); 83
84 // for when there needs to be an atomic move+resize operation
85 void moveResizeForClient(int x, int y, unsigned int width, unsigned int height, bool move = true, bool resize = true);
86
87 // can elect to ignore move or resize (mainly for use of move/resize individual functions
88 void moveResize(int x, int y, unsigned int width, unsigned int height, bool move = true, bool resize = true);
84 89
85 /// set focus/unfocus style 90 /// set focus/unfocus style
86 void setFocus(bool newvalue); 91 void setFocus(bool newvalue);