haiku/src/apps/clock/cl_wind.h

32 lines
502 B
C++

/*
* Copyright 1999, Be Incorporated. All Rights Reserved.
* This file may be used under the terms of the Be Sample Code License.
*
*/
#ifndef _CLOCK_WINDOW_H
#define _CLOCK_WINDOW_H
#include <Window.h>
class TOnscreenView;
class TClockWindow : public BWindow {
public:
TClockWindow(BRect rect, const char* name);
virtual ~TClockWindow();
virtual bool QuitRequested();
private:
void _InitWindow();
private:
TOnscreenView *fOnScreenView;
};
#endif // _CLOCK_WINDOW_H