home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 038 / dho_9a.zip / SLIDER.H < prev    next >
Text File  |  1994-10-12  |  637b  |  33 lines

  1. // Developer Helper Object Set, (C) 1994 Thomas E. Bednarz, Jr.
  2. //  All rights reserved
  3.  
  4. #ifndef __SLIDER_H__
  5. #define __SLIDER_H__
  6. #define INCL_WIN
  7. #define INCL_WINSTDSLIDER
  8.  
  9. #include<os2.h>
  10. #include"object.h"
  11. #include"winbase.h"
  12. #include"control.h"
  13.  
  14. class TSlider : public TControl
  15. {
  16.  
  17.    public:
  18.       TSlider(TWinBase *parent, ULONG resource);
  19.       virtual ~TSlider();
  20.  
  21.       virtual const char *getClassName();
  22.  
  23.       void placeAtTick(SHORT no);
  24.       void tickSize(SHORT pix);
  25.       void setTickText(SHORT tick, CHAR *text);
  26.  
  27.       USHORT getSliderPos();
  28.  
  29.       void DetentShaftCenter();
  30. };
  31.  
  32. #endif
  33.