xref: /haiku/src/apps/poorman/StatusSlider.h (revision 3be9edf8da228afd9fec0390f408c964766122aa)
1 /* StatusSlider.h
2  *
3  *	Philip Harrison
4  *	Started: 5/14/2004
5  *	Version: 0.1
6  */
7 
8 #ifndef STATUS_SLIDER
9 #define STATUS_SLIDER
10 
11 //#define BEOS_R5_COMPATIBLE
12 
13 #include <Slider.h>
14 
15 
16 class StatusSlider: public BSlider
17 {
18 public:
19 		StatusSlider(BRect frame,
20 					const char *name,
21 					const char *label,
22 					char *statusPrefix,
23 					BMessage *message,
24 					int32 minValue,
25 					int32 maxValue);
26 virtual const char*	UpdateText() const;
27 private:
28 	char *	StatusPrefix;
29 	char *	temp;
30 	char 	str[128];
31 };
32 
33 #endif
34