Added class JSDSlider by Dr.H.Reh.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10275 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Pfeiffer
2004-11-28 18:57:49 +00:00
parent 25d65010fc
commit f0307bad5c
3 changed files with 82 additions and 0 deletions
@@ -0,0 +1,31 @@
/*
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:
JSDSlider(BRect frame, const char* name, const char *label, BMessage *msg,
int32 min, int32 max, thumb_style t);
~JSDSlider();
char* UpdateText() const;
private:
BString* fResult;
};
#endif