home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / spmio10.zip / gcc2 / pmio / eventwin.h < prev    next >
C/C++ Source or Header  |  1994-06-10  |  524b  |  20 lines

  1. #ifndef include_eventwin_h
  2. #define include_eventwin_h
  3.  
  4. #include <msgs.h>
  5. #include <eventq.h>
  6.  
  7. class PMEventWindow: public MessageWindow
  8. {
  9. protected:
  10.   virtual MRESULT msg_char (unsigned short flags, unsigned char repeat_count,
  11.                 unsigned char scancode, unsigned short charcode,
  12.                 unsigned short virtualkeycode);
  13. public:
  14.   PMIOEventQ * const q;
  15.   PMEventWindow (const char *afontspec, int event_buffer_size = 32,
  16.          int init_width = 80, int init_height = 25);
  17. };
  18.  
  19. #endif /* include_eventwin_h */
  20.