1/*
2	JSDSlider.h
3	Dr.H.Reh
4	27.11.2004
5
6	Based on source code from Be Inc. RIP
7	Copyright 1995 Be Incorporated, All Rights Reserved.
8*/
9
10#ifndef __JSD_SLIDER_H
11#define __JSD_SLIDER_H
12
13#include <Slider.h>
14#include <String.h>
15
16
17class JSDSlider : public BSlider
18{
19public:
20						JSDSlider(const char* name, const char* label,
21							BMessage* msg, int32 min, int32 max);
22
23	virtual				~JSDSlider();
24	virtual const char* UpdateText() const;
25
26private:
27	mutable	BString		fResult;
28};
29
30#endif
31