home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / ClassFree / CFbuttonclass / CFbutton.h < prev    next >
C/C++ Source or Header  |  1998-05-30  |  489b  |  20 lines

  1. #ifndef CFBUTTON_H
  2. #define CFBUTTON_H
  3. /* Public definitions for CFbuttonclass */
  4.  
  5. #define CFbuttonClassName "CFbuttonclass"
  6.  
  7. #define CFBU_Dummy          (TAG_USER + 0x3a000)
  8. #define CFBU_Textposflags   (CFBU_Dummy + 0x0001)
  9. #define CFBU_Imageposflags  (CFBU_Dummy + 0x0002)
  10. #define CFBU_Textrestraint  (CFBU_Dummy + 0x0003)
  11.  
  12.  
  13.  
  14. #define POS_CENTER       0
  15. #define POS_HORLEFT     (1L<<0)
  16. #define POS_HORRIGHT    (1L<<1)
  17. #define POS_VERTOP      (1L<<2)
  18. #define POS_VERBOTTOM   (1L<<3)
  19.  
  20. #endif