]> Dogcows Code - chaz/openbox/commitdiff
some more things to happen when changing styles on a frame
authorDana Jansens <danakj@orodu.net>
Sun, 10 Nov 2002 04:28:43 +0000 (04:28 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 10 Nov 2002 04:28:43 +0000 (04:28 +0000)
src/frame.cc

index 601bbe3950fcc9eeec64dce3d1cca123597fc076..29bb62e926a5755ff6a4ca34dd712e64b927a07b 100644 (file)
@@ -52,9 +52,14 @@ void OBFrame::loadStyle(const otk::Style *style)
   _size.left = _size.top = _size.bottom = _size.right = 2;
 
   if (replace) {
+    resize();
+    
     XSetWindowBorderWidth(otk::OBDisplay::display, _window,
                           _style->getBorderWidth());
 
+    XMoveWindow(otk::OBDisplay::display, _client->window(),
+                _size.left, _size.top);
+
     // XXX: make everything redraw
   }
 }
@@ -65,8 +70,6 @@ void OBFrame::resize()
   XResizeWindow(otk::OBDisplay::display, _window,
                 _size.left + _size.right + _client->area().width(),
                 _size.top + _size.bottom + _client->area().height());
-  XMoveWindow(otk::OBDisplay::display, _client->window(),
-              _size.left, _size.top);
   // XXX: more is gunna have to happen here
 }
 
@@ -88,7 +91,8 @@ void OBFrame::grabClient()
   // reparent the client to the frame
   XSelectInput(otk::OBDisplay::display, _client->window(),
                OBClient::event_mask & ~StructureNotifyMask);
-  XReparentWindow(otk::OBDisplay::display, _client->window(), _window, 0, 0);
+  XReparentWindow(otk::OBDisplay::display, _client->window(), _window,
+                  _size.left, _size.top);
   XSelectInput(otk::OBDisplay::display, _client->window(),
                OBClient::event_mask);
 
This page took 0.022453 seconds and 4 git commands to generate.