1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog class
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILEDLG_H_
13 #define _WX_FILEDLG_H_
15 #include "wx/dialog.h"
21 WXDLLEXPORT_DATA(extern const char*) wxFileSelectorPromptStr
;
22 WXDLLEXPORT_DATA(extern const char*) wxFileSelectorDefaultWildcardStr
;
24 class WXDLLEXPORT wxFileDialog
: public wxDialog
26 DECLARE_DYNAMIC_CLASS(wxFileDialog
)
28 wxFileDialog(wxWindow
*parent
, const wxString
& message
= wxFileSelectorPromptStr
,
29 const wxString
& defaultDir
= "", const wxString
& defaultFile
= "", const wxString
& wildCard
= wxFileSelectorDefaultWildcardStr
,
30 long style
= 0, const wxPoint
& pos
= wxDefaultPosition
);
32 inline void SetMessage(const wxString
& message
) { m_message
= message
; }
33 inline void SetPath(const wxString
& path
) { m_path
= path
; }
34 inline void SetDirectory(const wxString
& dir
) { m_dir
= dir
; }
35 inline void SetFilename(const wxString
& name
) { m_fileName
= name
; }
36 inline void SetWildcard(const wxString
& wildCard
) { m_wildCard
= wildCard
; }
37 inline void SetStyle(long style
) { m_dialogStyle
= style
; }
38 inline void SetFilterIndex(int filterIndex
) { m_filterIndex
= filterIndex
; }
40 inline wxString
GetMessage() const { return m_message
; }
41 inline wxString
GetPath() const { return m_path
; }
42 inline wxString
GetDirectory() const { return m_dir
; }
43 inline wxString
GetFilename() const { return m_fileName
; }
44 inline wxString
GetWildcard() const { return m_wildCard
; }
45 inline long GetStyle() const { return m_dialogStyle
; }
46 inline int GetFilterIndex() const { return m_filterIndex
; }
55 wxString m_path
; // Full path
63 #define wxOVERWRITE_PROMPT 0x0004
64 #define wxHIDE_READONLY 0x0008
65 #define wxFILE_MUST_EXIST 0x0010
67 // File selector - backward compatibility
68 WXDLLEXPORT wxString
wxFileSelector( const char *message
= wxFileSelectorPromptStr
69 ,const char *default_path
= NULL
70 ,const char *default_filename
= NULL
71 ,const char *default_extension
= NULL
72 ,const char *wildcard
= wxFileSelectorDefaultWildcardStr
74 ,wxWindow
*parent
= NULL
79 // An extended version of wxFileSelector
80 WXDLLEXPORT wxString
wxFileSelectorEx( const char *message
= wxFileSelectorPromptStr
81 ,const char *default_path
= NULL
82 ,const char *default_filename
= NULL
83 ,int *indexDefaultExtension
= NULL
84 ,const char *wildcard
= wxFileSelectorDefaultWildcardStr
86 ,wxWindow
*parent
= NULL
91 // Generic file load dialog
92 WXDLLEXPORT wxString
wxLoadFileSelector( const char *what
93 ,const char *extension
94 ,const char *default_name
= NULL
95 ,wxWindow
*parent
= NULL
98 // Generic file save dialog
99 WXDLLEXPORT wxString
wxSaveFileSelector( const char *what
100 ,const char *extension
101 ,const char *default_name
= NULL
102 ,wxWindow
*parent
= NULL