home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xglfldlg.h < prev    next >
C/C++ Source or Header  |  1998-03-15  |  1KB  |  32 lines

  1. #ifndef __XGLIBFILEDIALOG_H__
  2. #define __XGLIBFILEDIALOG_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XGLibFileDialog                       */
  8. /*                       derived from: XFileDialog                           */
  9. /*                        last update: 3/98                                  */
  10. /*                      programmed by: Mathias Hasselmann                    */
  11. /*                                     mhasselm@arco.met.fu-berlin.de        */
  12. /*===========================================================================*/
  13.  
  14. #include "xfiledlg.h"
  15.  
  16. class XResourceLibrary;
  17.  
  18. #define FD_OPTIONSBUTTON FDS_APPLYBUTTON
  19.  
  20. class _export_ XGLibFileDialog: public XFileDialog {
  21.    private:
  22.       XResourceLibrary* pResLib;
  23.       FNWP* pDlgProc;
  24.       struct _XBitmapFilter* pFilter;
  25.    public:
  26.       XGLibFileDialog( const XWindow * owner, const char * filename ="*", const char * title = NULL, const char * fileType = NULL, const LONG options = FD_OPEN | FD_CENTER);
  27.       ~XGLibFileDialog ();
  28.       XBitmapFilter* GetFilter () { return pFilter; }
  29. };
  30.  
  31. #endif
  32.