all repos — openbox @ bf404e092be46801b1a78f9a71e10d0d00b75894

openbox fork - make it a bit more like ryudo

make the frame window override-redirect
Dana Jansens danakj@orodu.net
commit

bf404e092be46801b1a78f9a71e10d0d00b75894

parent

e3b50c2d137ba194073dc062edf73e79c18b7fe8

5 files changed, 14 insertions(+), 14 deletions(-)

jump to
M otk/otk_wrap.ccotk/otk_wrap.cc

@@ -1862,7 +1862,7 @@ otk::Style *arg2 = (otk::Style *) 0 ;

int arg3 = (int) otk::OtkWidget::Horizontal ; Cursor arg4 = (Cursor) 0 ; int arg5 = (int) 1 ; - unsigned long arg6 = (unsigned long) 0 ; + bool arg6 = (bool) false ; otk::OtkWidget *result; Cursor *argp4 ; PyObject * obj0 = 0 ;

@@ -1878,7 +1878,7 @@ if ((SWIG_ConvertPtr(obj3,(void **) &argp4, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail;

arg4 = *argp4; } if (obj5) { - arg6 = (unsigned long) PyInt_AsLong(obj5); + arg6 = (bool) PyInt_AsLong(obj5); if (PyErr_Occurred()) SWIG_fail; } result = (otk::OtkWidget *)new otk::OtkWidget(arg1,arg2,(otk::OtkWidget::Direction )arg3,arg4,arg5,arg6);
M otk/widget.ccotk/widget.cc

@@ -35,7 +35,7 @@ }

OtkWidget::OtkWidget(OtkEventDispatcher *event_dispatcher, Style *style, Direction direction, Cursor cursor, int bevel_width, - unsigned long create_mask) + bool override_redirect) : OtkEventHandler(), _dirty(false),_focused(false), _parent(0), _style(style), _direction(direction), _cursor(cursor),

@@ -48,7 +48,7 @@ _event_dispatcher(event_dispatcher)

{ assert(event_dispatcher); assert(style); - create(create_mask); + create(override_redirect); _event_dispatcher->registerHandler(_window, this); setStyle(_style); // let the widget initialize stuff }

@@ -68,7 +68,7 @@

XDestroyWindow(otk::OBDisplay::display, _window); } -void OtkWidget::create(unsigned long mask) +void OtkWidget::create(bool override_redirect) { const ScreenInfo *scr_info = otk::OBDisplay::screenInfo(_screen); Window p_window = _parent ? _parent->window() : scr_info->rootWindow();

@@ -76,15 +76,17 @@

_rect.setRect(0, 0, 1, 1); // just some initial values XSetWindowAttributes attrib_create; - unsigned long create_mask = CWBackPixmap | CWBorderPixel | CWEventMask | - mask; + unsigned long create_mask = CWBackPixmap | CWBorderPixel | CWEventMask; attrib_create.background_pixmap = None; attrib_create.colormap = scr_info->colormap(); - attrib_create.override_redirect = true; // not used by default attrib_create.event_mask = ButtonPressMask | ButtonReleaseMask | ButtonMotionMask | ExposureMask | StructureNotifyMask; + if (override_redirect) { + create_mask |= CWOverrideRedirect; + attrib_create.override_redirect = true; + } if (_cursor) { create_mask |= CWCursor;
M otk/widget.hhotk/widget.hh

@@ -28,7 +28,7 @@

OtkWidget(otk::OtkWidget *parent, Direction = Horizontal); OtkWidget(otk::OtkEventDispatcher *event_dispatcher, otk::Style *style, Direction direction = Horizontal, Cursor cursor = 0, - int bevel_width = 1, unsigned long create_mask = 0); + int bevel_width = 1, bool override_redirect = false); virtual ~OtkWidget();

@@ -126,7 +126,7 @@ bool _dirty;

bool _focused; virtual void adjust(void); - virtual void create(unsigned long mask = 0); + virtual void create(bool override_redirect = false); virtual void adjustHorz(void); virtual void adjustVert(void); virtual void internalResize(int width, int height);
M src/frame.ccsrc/frame.cc

@@ -24,8 +24,7 @@

const long OBFrame::event_mask; OBFrame::OBFrame(OBClient *client, otk::Style *style) - : otk::OtkWidget(Openbox::instance, style, Horizontal, 0, 1, - CWOverrideRedirect), + : otk::OtkWidget(Openbox::instance, style, Horizontal, 0, 1, true), OBWidget(Type_Frame), _client(client), _screen(otk::OBDisplay::screenInfo(client->screen())),

@@ -106,7 +105,6 @@ void OBFrame::focus()

{ otk::OtkWidget::focus(); update(); - _handle.update(); }
M src/frame.hhsrc/frame.hh

@@ -34,7 +34,7 @@ public:

//! The event mask to grab on frame windows static const long event_mask = EnterWindowMask | LeaveWindowMask; - + private: OBClient *_client; const otk::ScreenInfo *_screen;