xref: /haiku/src/preferences/screen/RefreshWindow.h (revision c5d10f7ae552b82c0089fc147de0d9b5fbc5c20b)
1 /*
2  * Copyright 2001-2006, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Rafael Romo
7  *		Stefano Ceccherini (burton666@libero.it)
8  *		Axel Dörfler, axeld@pinc-software.de
9  */
10 #ifndef REFRESH_WINDOW_H
11 #define REFRESH_WINDOW_H
12 
13 
14 #include <Window.h>
15 
16 class BSlider;
17 
18 
19 class RefreshWindow : public BWindow {
20 	public:
21 		RefreshWindow(BPoint position, float current, float min, float max);
22 
23 		virtual void MessageReceived(BMessage* message);
24 		virtual void WindowActivated(bool active);
25 
26 	private:
27 		BSlider* fRefreshSlider;
28 };
29 
30 #endif	// REFRESH_WINDOW_H
31