git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1229 a95241bf-73f2-0310-859d-f6bbb57e9c96
30 lines
484 B
C++
30 lines
484 B
C++
#ifndef TIME_H
|
|
#define TIME_H
|
|
|
|
#include <Application.h>
|
|
|
|
#include "TimeWindow.h"
|
|
#include "TimeSettings.h"
|
|
|
|
class TimeApplication : public BApplication
|
|
{
|
|
public:
|
|
TimeApplication();
|
|
virtual ~TimeApplication();
|
|
|
|
void MessageReceived(BMessage *message);
|
|
BPoint WindowCorner() const {return fSettings->WindowCorner(); }
|
|
void SetWindowCorner(BPoint corner);
|
|
|
|
void AboutRequested(void);
|
|
|
|
private:
|
|
|
|
static const char kTimeApplicationSig[];
|
|
|
|
TimeSettings *fSettings;
|
|
|
|
};
|
|
|
|
#endif
|