xref: /haiku/src/apps/poorman/StatusSlider.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
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 char*	UpdateText() const;
27 private:
28 	char *	StatusPrefix;
29 	char *	temp;
30 	char 	str[128];
31 };
32 
33 #endif
34