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:
@@ -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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user