Initial checkin of Time preference panel.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@913 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Andrew McCall
2002-08-28 18:46:25 +00:00
parent 6ea3dc7148
commit a51a3bf754
10 changed files with 343 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
TimeView.cpp
*/
#include <InterfaceDefs.h>
#include "TimeView.h"
#include "TimeMessages.h"
TimeView::TimeView(BRect rect)
: BBox(rect, "time_view",
B_FOLLOW_ALL, B_WILL_DRAW | B_FRAME_EVENTS | B_NAVIGABLE_JUMP,
B_PLAIN_BORDER)
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
}
void TimeView::Draw(BRect updateFrame)
{
inherited::Draw(updateFrame);
}