1999-07-29 01:11:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: filedlg.h
|
|
|
|
// Purpose: wxFileDialog class
|
1999-10-05 18:10:56 -04:00
|
|
|
// Author: David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Modified by:
|
1999-10-05 18:10:56 -04:00
|
|
|
// Created: 10/05/99
|
1999-07-29 01:11:30 -04:00
|
|
|
// RCS-ID: $Id$
|
1999-10-05 18:10:56 -04:00
|
|
|
// Copyright: (c) David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FILEDLG_H_
|
|
|
|
#define _WX_FILEDLG_H_
|
|
|
|
|
2003-07-19 13:22:05 -04:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxFileDialog
|
|
|
|
//-------------------------------------------------------------------------
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2003-07-19 13:22:05 -04:00
|
|
|
class WXDLLEXPORT wxFileDialog: public wxFileDialogBase
|
1999-07-29 01:11:30 -04:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFileDialog)
|
|
|
|
public:
|
2002-08-20 01:00:48 -04:00
|
|
|
wxFileDialog( wxWindow* pParent
|
|
|
|
,const wxString& rsMessage = wxFileSelectorPromptStr
|
2003-07-19 13:22:05 -04:00
|
|
|
,const wxString& rsDefaultDir = wxEmptyString
|
|
|
|
,const wxString& rsDefaultFile = wxEmptyString
|
2002-08-20 01:00:48 -04:00
|
|
|
,const wxString& rsWildCard = wxFileSelectorDefaultWildcardStr
|
|
|
|
,long lStyle = 0
|
|
|
|
,const wxPoint& rPos = wxDefaultPosition
|
|
|
|
);
|
|
|
|
|
2003-07-19 13:22:05 -04:00
|
|
|
virtual void GetPaths(wxArrayString& rasPath) const;
|
1999-07-29 01:11:30 -04:00
|
|
|
|
|
|
|
int ShowModal();
|
1999-10-05 18:10:56 -04:00
|
|
|
|
|
|
|
protected:
|
2003-07-19 13:22:05 -04:00
|
|
|
wxArrayString m_fileNames;
|
2002-08-20 01:00:48 -04:00
|
|
|
}; // end of CLASS wxFileDialog
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2003-06-14 09:31:49 -04:00
|
|
|
#endif // _WX_FILEDLG_H_
|