1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog base header
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILEDLG_H_BASE_
13 #define _WX_FILEDLG_H_BASE_
19 #include "wx/dialog.h"
20 #include "wx/arrstr.h"
22 //----------------------------------------------------------------------------
24 //----------------------------------------------------------------------------
27 The flags below must coexist with the following flags in m_windowStyle
28 #define wxCAPTION 0x20000000
29 #define wxMAXIMIZE 0x00002000
30 #define wxCLOSE_BOX 0x00001000
31 #define wxSYSTEM_MENU 0x00000800
32 wxBORDER_NONE = 0x00200000
33 #define wxRESIZE_BORDER 0x00000040
40 wxFD_OVERWRITE_PROMPT
= 0x0004,
41 wxFD_FILE_MUST_EXIST
= 0x0010,
42 wxFD_MULTIPLE
= 0x0020,
43 wxFD_CHANGE_DIR
= 0x0080,
47 #if WXWIN_COMPATIBILITY_2_6
52 wxOVERWRITE_PROMPT
= wxFD_OVERWRITE_PROMPT
,
53 wxFILE_MUST_EXIST
= wxFD_FILE_MUST_EXIST
,
54 wxMULTIPLE
= wxFD_MULTIPLE
,
55 wxCHANGE_DIR
= wxFD_CHANGE_DIR
59 #define wxFD_DEFAULT_STYLE wxFD_OPEN
61 extern WXDLLEXPORT_DATA(const char) wxFileDialogNameStr
[];
62 extern WXDLLEXPORT_DATA(const char) wxFileSelectorPromptStr
[];
63 extern WXDLLEXPORT_DATA(const char) wxFileSelectorDefaultWildcardStr
[];
65 //----------------------------------------------------------------------------
67 //----------------------------------------------------------------------------
69 class WXDLLEXPORT wxFileDialogBase
: public wxDialog
72 wxFileDialogBase () { Init(); }
74 wxFileDialogBase(wxWindow
*parent
,
75 const wxString
& message
= wxFileSelectorPromptStr
,
76 const wxString
& defaultDir
= wxEmptyString
,
77 const wxString
& defaultFile
= wxEmptyString
,
78 const wxString
& wildCard
= wxFileSelectorDefaultWildcardStr
,
79 long style
= wxFD_DEFAULT_STYLE
,
80 const wxPoint
& pos
= wxDefaultPosition
,
81 const wxSize
& sz
= wxDefaultSize
,
82 const wxString
& name
= wxFileDialogNameStr
)
85 Create(parent
, message
, defaultDir
, defaultFile
, wildCard
, style
, pos
, sz
, name
);
88 bool Create(wxWindow
*parent
,
89 const wxString
& message
= wxFileSelectorPromptStr
,
90 const wxString
& defaultDir
= wxEmptyString
,
91 const wxString
& defaultFile
= wxEmptyString
,
92 const wxString
& wildCard
= wxFileSelectorDefaultWildcardStr
,
93 long style
= wxFD_DEFAULT_STYLE
,
94 const wxPoint
& pos
= wxDefaultPosition
,
95 const wxSize
& sz
= wxDefaultSize
,
96 const wxString
& name
= wxFileDialogNameStr
);
98 bool HasFdFlag(int flag
) const { return HasFlag(flag
); }
100 virtual void SetMessage(const wxString
& message
) { m_message
= message
; }
101 virtual void SetPath(const wxString
& path
) { m_path
= path
; }
102 virtual void SetDirectory(const wxString
& dir
) { m_dir
= dir
; }
103 virtual void SetFilename(const wxString
& name
) { m_fileName
= name
; }
104 virtual void SetWildcard(const wxString
& wildCard
) { m_wildCard
= wildCard
; }
105 virtual void SetFilterIndex(int filterIndex
) { m_filterIndex
= filterIndex
; }
107 virtual wxString
GetMessage() const { return m_message
; }
108 virtual wxString
GetPath() const { return m_path
; }
109 virtual void GetPaths(wxArrayString
& paths
) const { paths
.Empty(); paths
.Add(m_path
); }
110 virtual wxString
GetDirectory() const { return m_dir
; }
111 virtual wxString
GetFilename() const { return m_fileName
; }
112 virtual void GetFilenames(wxArrayString
& files
) const { files
.Empty(); files
.Add(m_fileName
); }
113 virtual wxString
GetWildcard() const { return m_wildCard
; }
114 virtual int GetFilterIndex() const { return m_filterIndex
; }
118 #if WXWIN_COMPATIBILITY_2_6
120 wxDEPRECATED( long GetStyle() const );
121 wxDEPRECATED( void SetStyle(long style
) );
123 #endif // WXWIN_COMPATIBILITY_2_6
126 // Append first extension to filePath from a ';' separated extensionList
127 // if filePath = "path/foo.bar" just return it as is
128 // if filePath = "foo[.]" and extensionList = "*.jpg;*.png" return "foo.jpg"
129 // if the extension is "*.j?g" (has wildcards) or "jpg" then return filePath
130 static wxString
AppendExtension(const wxString
&filePath
,
131 const wxString
&extensionList
);
136 wxString m_path
; // Full path
143 DECLARE_DYNAMIC_CLASS(wxFileDialogBase
)
144 DECLARE_NO_COPY_CLASS(wxFileDialogBase
)
147 //----------------------------------------------------------------------------
148 // wxFileDialog convenience functions
149 //----------------------------------------------------------------------------
151 // File selector - backward compatibility
153 wxFileSelector(const wxString
& message
= wxFileSelectorPromptStr
,
154 const wxString
& default_path
= wxEmptyString
,
155 const wxString
& default_filename
= wxEmptyString
,
156 const wxString
& default_extension
= wxEmptyString
,
157 const wxString
& wildcard
= wxFileSelectorDefaultWildcardStr
,
159 wxWindow
*parent
= NULL
,
160 int x
= wxDefaultCoord
, int y
= wxDefaultCoord
);
162 // An extended version of wxFileSelector
164 wxFileSelectorEx(const wxString
& message
= wxFileSelectorPromptStr
,
165 const wxString
& default_path
= wxEmptyString
,
166 const wxString
& default_filename
= wxEmptyString
,
167 int *indexDefaultExtension
= NULL
,
168 const wxString
& wildcard
= wxFileSelectorDefaultWildcardStr
,
170 wxWindow
*parent
= NULL
,
171 int x
= wxDefaultCoord
, int y
= wxDefaultCoord
);
173 // Ask for filename to load
175 wxLoadFileSelector(const wxString
& what
,
176 const wxString
& extension
,
177 const wxString
& default_name
= wxEmptyString
,
178 wxWindow
*parent
= NULL
);
180 // Ask for filename to save
182 wxSaveFileSelector(const wxString
& what
,
183 const wxString
& extension
,
184 const wxString
& default_name
= wxEmptyString
,
185 wxWindow
*parent
= NULL
);
188 #if defined (__WXUNIVERSAL__)
189 #define wxHAS_GENERIC_FILEDIALOG
190 #include "wx/generic/filedlgg.h"
191 #elif defined(__WXMSW__)
192 #include "wx/msw/filedlg.h"
193 #elif defined(__WXMOTIF__)
194 #include "wx/motif/filedlg.h"
195 #elif defined(__WXGTK20__)
196 #include "wx/gtk/filedlg.h" // GTK+ > 2.4 has native version
197 #elif defined(__WXGTK__)
198 #include "wx/gtk1/filedlg.h"
199 #elif defined(__WXMAC__)
200 #include "wx/mac/filedlg.h"
201 #elif defined(__WXCOCOA__)
202 #include "wx/cocoa/filedlg.h"
203 #elif defined(__WXPM__)
204 #include "wx/os2/filedlg.h"
207 #endif // wxUSE_FILEDLG
209 #endif // _WX_FILEDLG_H_BASE_