diff options
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Window.hh b/src/Window.hh index ac44606..9e9fdce 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -240,13 +240,13 @@ public: | |||
240 | void restore(WinClient *client, bool remap); | 240 | void restore(WinClient *client, bool remap); |
241 | void restore(bool remap); | 241 | void restore(bool remap); |
242 | /// move frame to x, y | 242 | /// move frame to x, y |
243 | void move(int x, int y, int gravity = ForgetGravity); | 243 | void move(int x, int y); |
244 | /// resize frame to width, height | 244 | /// resize frame to width, height |
245 | void resize(unsigned int width, unsigned int height); | 245 | void resize(unsigned int width, unsigned int height); |
246 | /// move and resize frame to pox x,y and size width, height | 246 | /// move and resize frame to pox x,y and size width, height |
247 | void moveResize(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity, bool send_event = false); | 247 | void moveResize(int x, int y, unsigned int width, unsigned int height, bool send_event = false); |
248 | /// move to pos x,y and resize client window to size width, height | 248 | /// move to pos x,y and resize client window to size width, height |
249 | void moveResizeForClient(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity); | 249 | void moveResizeForClient(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity, unsigned int client_bw = 0); |
250 | void setWorkspace(int n); | 250 | void setWorkspace(int n); |
251 | void changeBlackboxHints(const BlackboxHints &bh); | 251 | void changeBlackboxHints(const BlackboxHints &bh); |
252 | void updateFunctions(); | 252 | void updateFunctions(); |
@@ -448,7 +448,7 @@ private: | |||
448 | void updateBlackboxHintsFromClient(const WinClient &client); | 448 | void updateBlackboxHintsFromClient(const WinClient &client); |
449 | void updateRememberStateFromClient(WinClient &client); | 449 | void updateRememberStateFromClient(WinClient &client); |
450 | void saveBlackboxAttribs(); | 450 | void saveBlackboxAttribs(); |
451 | void associateClientWindow(bool use_attrs = false, int x = 0, int y = 0, unsigned int width = 1, unsigned int height = 1); | 451 | void associateClientWindow(bool use_attrs = false, int x = 0, int y = 0, unsigned int width = 1, unsigned int height = 1, int gravity = ForgetGravity, unsigned int client_bw = 0); |
452 | 452 | ||
453 | void setState(unsigned long stateval, bool setting_up); | 453 | void setState(unsigned long stateval, bool setting_up); |
454 | 454 | ||