home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / classlib.zip / pm.zip / usr / include / pm / button.h < prev    next >
C/C++ Source or Header  |  1994-08-31  |  379b  |  25 lines

  1. #ifndef _BUTTON_H_
  2. #define _BUTTON_H_
  3.  
  4. #ifndef _WINDOW_H_
  5. #include <pm/Window.h>
  6. #endif
  7.  
  8. @interface Button : Window
  9. {
  10. }
  11.  
  12. - initWithId: (USHORT) anId andFlags: (ULONG) flags in: (Window *) parent;
  13.  
  14. // methods for access to PM messages
  15. - clickdown;
  16. - clickup;
  17. - (USHORT) checked;
  18. - (BOOL) highlighted;
  19. - check;
  20. - checkIndeterminate;
  21. - uncheck;
  22. @end
  23.  
  24. #endif
  25.