* extend test with sliders containing min/ max labels

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28857 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich
2009-01-08 16:12:23 +00:00
parent e6753e37c6
commit 45735be6c9
+21 -3
View File
@@ -8,14 +8,32 @@ public:
:BWindow(BRect(50, 50, 250, 360), "window", B_TITLED_WINDOW, B_ASYNCHRONOUS_CONTROLS) :BWindow(BRect(50, 50, 250, 360), "window", B_TITLED_WINDOW, B_ASYNCHRONOUS_CONTROLS)
{ {
BChannelSlider *slider = new BChannelSlider(BRect(10, 10, 20, 20), BChannelSlider *slider = new BChannelSlider(BRect(10, 10, 20, 20),
"vertical slider", "vertical slider", new BMessage('test'), 4); "vertical slider", "Verticalp", new BMessage('test'), 4);
slider->SetOrientation(B_VERTICAL); slider->SetOrientation(B_VERTICAL);
AddChild(slider); AddChild(slider);
slider->ResizeToPreferred(); slider->ResizeToPreferred();
BChannelSlider *horizontal = new BChannelSlider(BRect(100, 20, 136, 30),
"horizontal slider", "horizontal slider", new BMessage('test'), 3); slider = new BChannelSlider(BRect(10, 10, 20, 20), "vertical slider",
"Verticalp", new BMessage('test'), B_VERTICAL, 4);
AddChild(slider);
slider->SetLimitLabels("Wminp", "Wmaxp");
slider->ResizeToPreferred();
slider->MoveBy(slider->Bounds().Width() + 10.0, 0.0);
BChannelSlider *horizontal = new BChannelSlider(BRect(150, 10, 160, 20),
"horizontal slider", "Horizontal", new BMessage('test'), 3);
AddChild(horizontal); AddChild(horizontal);
horizontal->ResizeToPreferred(); horizontal->ResizeToPreferred();
horizontal = new BChannelSlider(BRect(150, 10, 160, 20),
"horizontal slider", "Horizontalp", new BMessage('test'),
B_HORIZONTAL, 3);
AddChild(horizontal);
horizontal->SetLimitLabels("Wminp", "Wmaxp");
horizontal->ResizeToPreferred();
horizontal->MoveBy(0.0, horizontal->Bounds().Height() + 10.0);
ResizeTo(horizontal->Frame().right + 10, slider->Frame().bottom + 10);
} }
virtual bool QuitRequested() { be_app->PostMessage(B_QUIT_REQUESTED); return BWindow::QuitRequested() ; } virtual bool QuitRequested() { be_app->PostMessage(B_QUIT_REQUESTED); return BWindow::QuitRequested() ; }