summaryrefslogtreecommitdiff
path: root/otk/widget.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-04 04:49:53 +0000
committerDana Jansens <danakj@orodu.net>2003-01-04 04:49:53 +0000
commitc33ccf60cba94249b4a4d1e1832aa0ea0e28a22c (patch)
tree57758b3418f14f4694f9a25e91faafd9f9bc7c7c /otk/widget.hh
parentabd445719b29a78e2ce8f848afd50d9dcde40df4 (diff)
make the frame window override-redirect
Diffstat (limited to 'otk/widget.hh')
-rw-r--r--otk/widget.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/otk/widget.hh b/otk/widget.hh
index 7c508fcd..8d3bfb23 100644
--- a/otk/widget.hh
+++ b/otk/widget.hh
@@ -28,7 +28,7 @@ public:
OtkWidget(otk::OtkWidget *parent, Direction = Horizontal);
OtkWidget(otk::OtkEventDispatcher *event_dispatcher, otk::Style *style,
Direction direction = Horizontal, Cursor cursor = 0,
- int bevel_width = 1);
+ int bevel_width = 1, unsigned long create_mask = 0);
virtual ~OtkWidget();
@@ -126,7 +126,7 @@ protected:
bool _focused;
virtual void adjust(void);
- virtual void create(void);
+ virtual void create(unsigned long mask = 0);
virtual void adjustHorz(void);
virtual void adjustVert(void);
virtual void internalResize(int width, int height);