X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fappwidget.cc;h=8b157225fd09031477d6e5a5965c9157ab6d1941;hb=4ffa9585a5c6a1c3572a9b1d3a914ed5fbde855d;hp=d1ae736959e4a3507c0ecba69c43df290ef9167c;hpb=c7e157e53c862140858230b2b23aeb39f9f9c1ed;p=chaz%2Fopenbox diff --git a/otk/appwidget.cc b/otk/appwidget.cc index d1ae7369..8b157225 100644 --- a/otk/appwidget.cc +++ b/otk/appwidget.cc @@ -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 @@ -14,20 +13,16 @@ 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); - _wm_protocols = Property::atoms.wm_protocols; - _wm_delete = Property::atoms.wm_protocols; - // set WM Protocols on the window Atom protocols[2]; - protocols[0] = _wm_protocols; - protocols[1] = _wm_delete; + protocols[0] = Property::atoms.wm_protocols; + protocols[1] = Property::atoms.wm_delete_window; XSetWMProtocols(**display, window(), protocols, 2); } @@ -35,25 +30,25 @@ 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) { EventHandler::clientMessageHandler(e); - if (e.message_type == _wm_protocols && - static_cast(e.data.l[0]) == _wm_delete) + if (e.message_type == Property::atoms.wm_protocols && + static_cast(e.data.l[0]) == Property::atoms.wm_delete_window) hide(); }