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

  1. #ifndef _ACTIONWINDOW_H_
  2. #define _ACTIONWINDOW_H_
  3.  
  4. #ifndef _WINDOW_H_
  5. #include <pm/Window.h>
  6. #endif
  7.  
  8. #ifndef _LIST_H_
  9. #include <pm/List.h>
  10. #endif
  11.  
  12. #ifndef _OS2TYPES_H_
  13. #include <pm/OS2Types.h>
  14. #endif
  15.  
  16. @interface ActionWindow : Window
  17. {
  18.   List *commandBindings;
  19. }
  20.  
  21. - init;
  22. - free;
  23.  
  24. - bindCommand: (ULONG) command withObject: anObject selector: (SEL) aSel;
  25. - findCommandBinding: (ULONG) command;
  26. - (MRESULT) execCommand: (ULONG) command;
  27.  
  28. @end
  29.  
  30. #endif
  31.