summaryrefslogtreecommitdiff
path: root/otk/application.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-11 19:17:13 +0000
committerDana Jansens <danakj@orodu.net>2003-01-11 19:17:13 +0000
commit8f8acc24933830d4f5784616b9b0c5896bde0b93 (patch)
treee34d995f6ef854e3ac2b365326ffabf3dad265da /otk/application.hh
parent684405eec8553918b62e334bffe29eb4712ec95c (diff)
rm prefixes for all elements in the otk namepsace
Diffstat (limited to 'otk/application.hh')
-rw-r--r--otk/application.hh17
1 files changed, 9 insertions, 8 deletions
diff --git a/otk/application.hh b/otk/application.hh
index 63fb4195..220185ad 100644
--- a/otk/application.hh
+++ b/otk/application.hh
@@ -1,3 +1,4 @@
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __application_hh
#define __application_hh
@@ -10,14 +11,14 @@
namespace otk {
-class OtkAppWidget;
+class AppWidget;
-class OtkApplication : public OtkEventDispatcher {
+class Application : public EventDispatcher {
public:
- OtkApplication(int argc, char **argv);
- virtual ~OtkApplication();
+ Application(int argc, char **argv);
+ virtual ~Application();
virtual void run(void);
// more bummy cool functionality
@@ -25,21 +26,21 @@ public:
void setDockable(bool dockable) { _dockable = dockable; }
inline bool isDockable(void) const { return _dockable; }
- inline otk::Style *getStyle(void) const { return _style; }
+ inline Style *getStyle(void) const { return _style; }
// more accessors
private:
void loadStyle(void);
- OBTimerQueueManager *_timer_manager;
- BImageControl *_img_ctrl;
+ TimerQueueManager *_timer_manager;
+ ImageControl *_img_ctrl;
Configuration *_style_conf;
Style *_style;
bool _dockable;
int _appwidget_count;
- friend class OtkAppWidget;
+ friend class AppWidget;
};
}