* not zoomable, minimizable

no hide shortcut, this will hide deskbar too



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27242 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich 2008-08-30 14:25:12 +00:00
parent 35c6651cfd
commit c984125a2d
1 changed files with 3 additions and 1 deletions

View File

@ -79,12 +79,14 @@ enum {
CalendarMenuWindow::CalendarMenuWindow(BPoint where, bool euroDate) CalendarMenuWindow::CalendarMenuWindow(BPoint where, bool euroDate)
: BWindow(BRect(0.0, 0.0, 100.0, 130.0), "", B_BORDERED_WINDOW, : BWindow(BRect(0.0, 0.0, 100.0, 130.0), "", B_BORDERED_WINDOW,
B_AUTO_UPDATE_SIZE_LIMITS | B_ASYNCHRONOUS_CONTROLS | B_CLOSE_ON_ESCAPE), B_AUTO_UPDATE_SIZE_LIMITS | B_ASYNCHRONOUS_CONTROLS | B_CLOSE_ON_ESCAPE |
B_NOT_MINIMIZABLE | B_NOT_ZOOMABLE),
fYearLabel(NULL), fYearLabel(NULL),
fMonthLabel(NULL), fMonthLabel(NULL),
fCalendarView(NULL), fCalendarView(NULL),
fSuppressFirstClose(true) fSuppressFirstClose(true)
{ {
RemoveShortcut('H', B_COMMAND_KEY | B_CONTROL_KEY);
AddShortcut('W', B_COMMAND_KEY, new BMessage(B_QUIT_REQUESTED)); AddShortcut('W', B_COMMAND_KEY, new BMessage(B_QUIT_REQUESTED));
fYearLabel = new BStringView("year", ""); fYearLabel = new BStringView("year", "");