1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: filedlg.h
|
|
|
|
// Purpose: wxFileDialog class
|
1999-10-05 22:10:56 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-05 22:10:56 +00:00
|
|
|
// Created: 10/05/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-05 22:10:56 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FILEDLG_H_
|
|
|
|
#define _WX_FILEDLG_H_
|
|
|
|
|
2003-07-19 17:22:05 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// wxFileDialog
|
|
|
|
//-------------------------------------------------------------------------
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxFileDialog: public wxFileDialogBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFileDialog)
|
|
|
|
public:
|
2002-08-20 05:00:48 +00:00
|
|
|
wxFileDialog( wxWindow* pParent
|
|
|
|
,const wxString& rsMessage = wxFileSelectorPromptStr
|
2003-07-19 17:22:05 +00:00
|
|
|
,const wxString& rsDefaultDir = wxEmptyString
|
|
|
|
,const wxString& rsDefaultFile = wxEmptyString
|
2002-08-20 05:00:48 +00:00
|
|
|
,const wxString& rsWildCard = wxFileSelectorDefaultWildcardStr
|
2006-05-28 23:32:12 +00:00
|
|
|
,long lStyle = wxFD_DEFAULT_STYLE
|
|
|
|
,const wxPoint& rPos = wxDefaultPosition,
|
|
|
|
const wxSize& sz = wxDefaultSize,
|
|
|
|
const wxString& name = wxFileDialogNameStr
|
2002-08-20 05:00:48 +00:00
|
|
|
);
|
|
|
|
|
2003-07-19 17:22:05 +00:00
|
|
|
virtual void GetPaths(wxArrayString& rasPath) const;
|
1999-07-29 05:11:30 +00:00
|
|
|
|
|
|
|
int ShowModal();
|
1999-10-05 22:10:56 +00:00
|
|
|
|
|
|
|
protected:
|
2003-07-19 17:22:05 +00:00
|
|
|
wxArrayString m_fileNames;
|
2002-08-20 05:00:48 +00:00
|
|
|
}; // end of CLASS wxFileDialog
|
1999-07-29 05:11:30 +00:00
|
|
|
|
2003-06-14 13:31:49 +00:00
|
|
|
#endif // _WX_FILEDLG_H_
|