X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fapplication.cc;h=afe06f803a41b5048604ca4f49e112dd8330fe67;hb=d2dcef46752df01312cbb3c5a89b3227c6959087;hp=efe86d153a21490decf652ab396bc9cdaf765c17;hpb=77882b46dbeb1f626f052e2eb3cb200d44f3e3ff;p=chaz%2Fopenbox diff --git a/otk/application.cc b/otk/application.cc index efe86d15..afe06f80 100644 --- a/otk/application.cc +++ b/otk/application.cc @@ -1,48 +1,41 @@ // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- -#ifdef HAVE_CONFIG_H -# include "../config.h" -#endif +#include "config.h" #include "application.hh" #include "eventhandler.hh" -#include "widget.hh" #include "timer.hh" #include "property.hh" #include "rendercolor.hh" +#include "renderstyle.hh" +#include "display.hh" -extern "C" { -#ifdef HAVE_STDLIB_H -# include -#endif -} - +#include #include namespace otk { +extern void initialize(); +extern void destroy(); + Application::Application(int argc, char **argv) : EventDispatcher(), - _display(), _dockable(false), _appwidget_count(0) { (void)argc; (void)argv; - Timer::initialize(); - RenderColor::initialize(); - Property::initialize(); - _style = new RenderStyle(DefaultScreen(*_display), ""); // XXX: get a path! - + otk::initialize(); + + _screen = DefaultScreen(**display); + loadStyle(); } Application::~Application() { - delete _style; - RenderColor::destroy(); - Timer::destroy(); + otk::destroy(); } void Application::loadStyle(void)