/* StatusSlider.h * * Philip Harrison * Started: 5/14/2004 * Version: 0.1 */ #ifndef STATUS_SLIDER #define STATUS_SLIDER //#define BEOS_R5_COMPATIBLE #include class StatusSlider: public BSlider { public: StatusSlider(const char* name, const char* label, char* statusPrefix, BMessage* message, int32 minValue, int32 maxValue); virtual const char* UpdateText() const; private: char* fStatusPrefix; char* fTemp; char fStr[128]; }; #endif