home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / spinbutton.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  435b  |  27 lines

  1. #ifndef _SPINBUTTON_H_
  2. #define _SPINBUTTON_H_
  3.  
  4. #ifndef _FACTORYWINDOW_H_
  5. #include <pm/FactoryWindow.h>
  6. #endif
  7.  
  8. @interface SpinButton : FactoryWindow <Archiving>
  9. {
  10. }
  11.  
  12. - initWithId: (ULONG) anId andFlags: (ULONG) flags in: (Window *) parent;
  13.  
  14. /*
  15.  * Methods for protocol "Archiving"
  16.  */
  17.  
  18. - read: (TypedStream *) aStream;
  19. - write: (TypedStream *) aStream;
  20. - awake;
  21.  
  22. - createInPMWindow: (HWND) hwnd;
  23.  
  24. @end
  25.  
  26. #endif
  27.