home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / samples / sample15 / sample15.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-10  |  464 b   |  20 lines

  1. #define INCL_OOL
  2. #include "ool.h"
  3.  
  4. #include "resource.h"
  5.  
  6. class XMenuBar;
  7.  
  8. class MyServer: public XMDIServer
  9. {
  10.    public:
  11.       MyServer():XMDIServer(IDM_MENU, "Sample 15: MDI Application", XFrameWindow::defaultStyle | FRM_ICON | FRM_TASKLIST | FRM_CENTER | FRM_MENU | FRM_ACCELTABLE)
  12.       {
  13.          XRect rect(100, 100, 500, 400);
  14.          SetSize( &rect);
  15.       }
  16.       void SetEmptyMenu(XMenuBar*);
  17.       BOOL DoCommand( LONG command);
  18. };
  19.  
  20.