From 209b7f212d18078c82f0faab4094dcd7d8e36850 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 10 Nov 2002 04:28:43 +0000 Subject: [PATCH] some more things to happen when changing styles on a frame --- src/frame.cc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/frame.cc b/src/frame.cc index 601bbe39..29bb62e9 100644 --- a/src/frame.cc +++ b/src/frame.cc @@ -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); -- 2.39.2