2004-11-28 21:57:49 +03:00
|
|
|
/*
|
|
|
|
JSDSlider.h
|
|
|
|
Dr.H.Reh
|
|
|
|
27.11.2004
|
|
|
|
|
|
|
|
Based on source code from Be Inc. RIP
|
|
|
|
Copyright 1995 Be Incorporated, All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __JSD_SLIDER_H
|
|
|
|
#define __JSD_SLIDER_H
|
|
|
|
|
|
|
|
#include <Slider.h>
|
|
|
|
#include <String.h>
|
|
|
|
|
|
|
|
|
|
|
|
class JSDSlider : public BSlider
|
|
|
|
{
|
|
|
|
public:
|
2010-10-16 23:56:34 +04:00
|
|
|
JSDSlider(const char* name, const char* label,
|
|
|
|
BMessage* msg, int32 min, int32 max);
|
2008-07-27 02:36:01 +04:00
|
|
|
|
|
|
|
virtual ~JSDSlider();
|
|
|
|
virtual const char* UpdateText() const;
|
2010-10-16 23:56:34 +04:00
|
|
|
|
2004-11-28 21:57:49 +03:00
|
|
|
private:
|
2008-07-27 02:36:01 +04:00
|
|
|
mutable BString fResult;
|
2004-11-28 21:57:49 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|