home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / CIT.v4 / citra / CITInteger.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  617 b   |  38 lines

  1. //
  2. //                    CITInteger include
  3. //
  4. //                          StormC
  5. //
  6. //                     version 2002.01.25
  7. //
  8.  
  9. #ifndef CIT_INTEGER_H
  10. #define CIT_INTEGER_H TRUE
  11.  
  12. #ifndef CIT_INPUT_H
  13. #include "CITInput.h"
  14. #endif
  15.  
  16. class CITInteger:public CITInput
  17. {
  18.   public:
  19.     CITInteger();
  20.     ~CITInteger();
  21.  
  22.     void Minimum(LONG min);
  23.     void Maximum(LONG max);
  24.     void Arrows(BOOL b = TRUE);
  25.     void Number(LONG num);
  26.     int  Number();
  27.     
  28.   protected:
  29.     virtual Object* NewObjectA(TagItem* tags);
  30.     
  31.   private:
  32.     void setTag(int index,ULONG attr,ULONG val);
  33.   
  34.     TagItem* integerTag;
  35. };
  36.  
  37. #endif
  38.