2 * Copyright 2004-2011, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
6 * John Scipione <jscipione@gmail.com>
19 class ClockView
: public BView
{
21 ClockView(const char* name
);
24 virtual void AttachedToWindow();
25 virtual void MessageReceived(BMessage
* message
);
27 bool CheckCanRevert();
32 BCheckBox
* fShowClock
;
33 BCheckBox
* fShowSeconds
;
34 BCheckBox
* fShowDayOfWeek
;
35 BCheckBox
* fShowTimeZone
;
37 int32 fCachedShowClock
;
38 int32 fCachedShowSeconds
;
39 int32 fCachedShowDayOfWeek
;
40 int32 fCachedShowTimeZone
;
44 #endif // _CLOCK_VIEW_H