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 ;
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);
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),
{
assert(event_dispatcher);
assert(style);
- create(create_mask);
+ create(override_redirect);
_event_dispatcher->registerHandler(_window, this);
setStyle(_style); // let the widget initialize stuff
}
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();
_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;
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();
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);
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())),
{
otk::OtkWidget::focus();
update();
- _handle.update();
}
//! The event mask to grab on frame windows
static const long event_mask = EnterWindowMask | LeaveWindowMask;
-
+
private:
OBClient *_client;
const otk::ScreenInfo *_screen;