2 * Copyright 2008 Karsten Heimrich, host.haiku@gmx.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 #ifndef _CALENDAR_MENU_WINDOW_H_
6 #define _CALENDAR_MENU_WINDOW_H_
20 using BPrivate::BCalendarView
;
22 class CalendarMenuWindow
: public BWindow
{
24 CalendarMenuWindow(BPoint where
);
25 virtual ~CalendarMenuWindow();
28 virtual void WindowActivated(bool active
);
29 virtual void MessageReceived(BMessage
* message
);
32 void _UpdateDate(const BDate
& date
);
33 BButton
* _SetupButton(const char* label
, uint32 what
,
37 BStringView
* fYearLabel
;
38 BStringView
* fMonthLabel
;
39 BCalendarView
* fCalendarView
;
40 bool fSuppressFirstClose
;
44 #endif /* _CALENDAR_MENU_WINDOW_H_ */