]> Dogcows Code - chaz/openbox/blobdiff - otk/appwidget.cc
layout fixes, give widgets a default texture, etc.
[chaz/openbox] / otk / appwidget.cc
index c62a0d924720ae936956d1ab888385f632fa5539..8b157225fd09031477d6e5a5965c9157ab6d1941 100644 (file)
@@ -1,12 +1,11 @@
 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
 
-#ifdef HAVE_CONFIG_H
-# include "../config.h"
-#endif
+#include "config.h"
 
 #include "appwidget.hh"
 #include "application.hh"
 #include "property.hh"
+#include "renderstyle.hh"
 
 extern "C" {
 #include <X11/Xlib.h>
@@ -14,9 +13,8 @@ extern "C" {
 
 namespace otk {
 
-AppWidget::AppWidget(Application *app, Direction direction,
-                     Cursor cursor, int bevel_width)
-  : Widget(app, app->getStyle(), direction, cursor, bevel_width),
+AppWidget::AppWidget(Application *app, Direction direction, int bevel)
+  : Widget(app->screen(), app, direction, bevel),
     _application(app)
 {
   assert(app);
@@ -32,18 +30,18 @@ AppWidget::~AppWidget()
 {
 }
 
-void AppWidget::show(void)
+void AppWidget::show()
 {
-  Widget::show(true);
-
+  if (!visible())
   _application->_appwidget_count++;
+  Widget::show(true);
 }
 
-void AppWidget::hide(void)
+void AppWidget::hide()
 {
+  if (visible())
+    _application->_appwidget_count--;
   Widget::hide();
-
-  _application->_appwidget_count--;
 }
 
 void AppWidget::clientMessageHandler(const XClientMessageEvent &e)
This page took 0.026903 seconds and 4 git commands to generate.