2004-11-28 18:57:49 +00: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 19:56:34 +00:00
|
|
|
JSDSlider(const char* name, const char* label,
|
|
|
|
BMessage* msg, int32 min, int32 max);
|
2008-07-26 22:36:01 +00:00
|
|
|
|
|
|
|
virtual ~JSDSlider();
|
|
|
|
virtual const char* UpdateText() const;
|
2010-10-16 19:56:34 +00:00
|
|
|
|
2004-11-28 18:57:49 +00:00
|
|
|
private:
|
2008-07-26 22:36:01 +00:00
|
|
|
mutable BString fResult;
|
2004-11-28 18:57:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|