home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xmodlg.h < prev    next >
C/C++ Source or Header  |  1997-08-12  |  1KB  |  29 lines

  1. #ifndef __XMLESSDIALOG_H__
  2. #define __XMLESSDIALOG_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XModelessDialog                       */
  8. /*                       derived from: XDialog                               */
  9. /*                        last update: 4/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14.  
  15. #include "XDialog.h"
  16. class XResource;
  17. class XResourceLibrary;
  18.  
  19. class _export_ XModelessDialog: public XDialog
  20. {
  21.    friend MRESULT EXPENTRY ModelessDProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
  22.       void CreateDialog( const ULONG id, const XResourceLibrary * res, const XWindow * owner=NULL, const BOOL center = TRUE);
  23.    public:
  24.       XModelessDialog( const XResource * res, const XWindow * owner=NULL, const BOOL center = TRUE);
  25.       XModelessDialog( const ULONG id, const XWindow * owner=NULL, const BOOL center = TRUE);
  26. };
  27.  
  28. #endif
  29.