]> Dogcows Code - chaz/openbox/blobdiff - otk/focuswidget.cc
fixed bugs, got otkapp to select on a fd, modded widget to make use of otkapp, press...
[chaz/openbox] / otk / focuswidget.cc
index 6ad19c6e822f8ae3770362e3a42968d3011739a9..ffbaeb7e09bd995b4596eec63b99500bd06f18e4 100644 (file)
@@ -8,6 +8,13 @@ OtkFocusWidget::OtkFocusWidget(OtkWidget *parent, Direction direction)
   _focus_texture = parent->getTexture();
 }
 
+OtkFocusWidget::OtkFocusWidget(OtkApplication *app, Direction direction,
+                               Cursor cursor, int bevel_width)
+  : OtkWidget(app, direction, cursor, bevel_width),
+    _unfocus_texture(0), _focused(true)
+{
+}
+
 OtkFocusWidget::OtkFocusWidget(Style *style, Direction direction,
                                Cursor cursor, int bevel_width)
   : OtkWidget(style, direction, cursor, bevel_width),
@@ -15,6 +22,10 @@ OtkFocusWidget::OtkFocusWidget(Style *style, Direction direction,
 {
 }
 
+OtkFocusWidget::~OtkFocusWidget()
+{
+}
+
 void OtkFocusWidget::focus(void)
 {
   if (_focused)
This page took 0.02354 seconds and 4 git commands to generate.