aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-15 18:56:42 (GMT)
committerfluxgen <fluxgen>2003-04-15 18:56:42 (GMT)
commit7de46de6beaab57bc13d61efcc217b2c669220b1 (patch)
treeb27bbe19c48d1ffca3d4ca0549346724534e50d5
parent5e9d9bbed51a00f07e4aaf0b194b8574f0fa596b (diff)
downloadfluxbox-7de46de6beaab57bc13d61efcc217b2c669220b1.zip
fluxbox-7de46de6beaab57bc13d61efcc217b2c669220b1.tar.bz2
added resizeClient and sendConfigureNotify
-rw-r--r--src/Window.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Window.hh b/src/Window.hh
index c246e9f..6245b0a 100644
--- a/src/Window.hh
+++ b/src/Window.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: Window.hh,v 1.55 2003/04/15 14:39:15 fluxgen Exp $ 25// $Id: Window.hh,v 1.56 2003/04/15 18:56:42 fluxgen Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -347,7 +347,9 @@ private:
347 void downsize(); 347 void downsize();
348 void right_fixsize(int *x = 0, int *y = 0); 348 void right_fixsize(int *x = 0, int *y = 0);
349 void left_fixsize(int *x = 0, int *y = 0); 349 void left_fixsize(int *x = 0, int *y = 0);
350 350 void resizeClient(WinClient &client, unsigned int width, unsigned int height);
351 /// sends configurenotify to all clients
352 void sendConfigureNotify();
351 // state and hint signals 353 // state and hint signals
352 WinSubject m_hintsig, m_statesig, m_layersig, m_workspacesig, m_diesig; 354 WinSubject m_hintsig, m_statesig, m_layersig, m_workspacesig, m_diesig;
353 355