diff options
author | rathnor <rathnor> | 2003-09-24 14:02:25 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-09-24 14:02:25 (GMT) |
commit | feb7462e381b4015bc736e90da87dc7cc5711b1a (patch) | |
tree | e028335ecbc02b1e79128247293003b2ce5afc29 /src/FbWinFrame.hh | |
parent | bec4f7c894677a92d9210a1b1e511afd4cee5e5e (diff) | |
download | fluxbox-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.hh | 9 |
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); |