]>
Commit | Line | Data |
---|---|---|
b600ed13 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.h | |
3 | // Purpose: wxFileDialog base header | |
4 | // Author: Robert Roebling | |
5 | // Modified by: | |
6 | // Created: 8/17/99 | |
7 | // Copyright: (c) Robert Roebling | |
8 | // RCS-ID: | |
65571936 | 9 | // Licence: wxWindows licence |
b600ed13 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_FILEDLG_H_BASE_ |
13 | #define _WX_FILEDLG_H_BASE_ | |
c801d85f | 14 | |
1e6feb95 VZ |
15 | #if wxUSE_FILEDLG |
16 | ||
12028905 | 17 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
b600ed13 VZ |
18 | #pragma interface "filedlg.h" |
19 | #endif | |
20 | ||
f74172ab | 21 | #include "wx/dialog.h" |
a9711a4d | 22 | #include "wx/arrstr.h" |
f74172ab | 23 | |
b600ed13 | 24 | //---------------------------------------------------------------------------- |
f74172ab | 25 | // wxFileDialog data |
b600ed13 VZ |
26 | //---------------------------------------------------------------------------- |
27 | ||
c61f4f6d VZ |
28 | enum |
29 | { | |
3f6638b8 VZ |
30 | wxOPEN = 0x0001, |
31 | wxSAVE = 0x0002, | |
32 | wxOVERWRITE_PROMPT = 0x0004, | |
21416306 | 33 | #if WXWIN_COMPATIBILITY_2_4 |
3f6638b8 | 34 | wxHIDE_READONLY = 0x0008, |
21416306 | 35 | #endif |
3f6638b8 VZ |
36 | wxFILE_MUST_EXIST = 0x0010, |
37 | wxMULTIPLE = 0x0020, | |
38 | wxCHANGE_DIR = 0x0040 | |
c61f4f6d VZ |
39 | }; |
40 | ||
16cba29d WS |
41 | extern WXDLLEXPORT_DATA(const wxChar*) wxFileSelectorPromptStr; |
42 | extern WXDLLEXPORT_DATA(const wxChar*) wxFileSelectorDefaultWildcardStr; | |
b600ed13 | 43 | |
f74172ab VZ |
44 | //---------------------------------------------------------------------------- |
45 | // wxFileDialogBase | |
46 | //---------------------------------------------------------------------------- | |
47 | ||
48 | class WXDLLEXPORT wxFileDialogBase: public wxDialog | |
49 | { | |
50 | public: | |
6463b9f5 | 51 | wxFileDialogBase () {} |
f74172ab VZ |
52 | |
53 | wxFileDialogBase(wxWindow *parent, | |
54 | const wxString& message = wxFileSelectorPromptStr, | |
55 | const wxString& defaultDir = wxEmptyString, | |
56 | const wxString& defaultFile = wxEmptyString, | |
57 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, | |
58 | long style = 0, | |
59 | const wxPoint& pos = wxDefaultPosition); | |
60 | ||
61 | virtual void SetMessage(const wxString& message) { m_message = message; } | |
62 | virtual void SetPath(const wxString& path) { m_path = path; } | |
63 | virtual void SetDirectory(const wxString& dir) { m_dir = dir; } | |
64 | virtual void SetFilename(const wxString& name) { m_fileName = name; } | |
65 | virtual void SetWildcard(const wxString& wildCard) { m_wildCard = wildCard; } | |
66 | virtual void SetStyle(long style) { m_dialogStyle = style; } | |
67 | virtual void SetFilterIndex(int filterIndex) { m_filterIndex = filterIndex; } | |
68 | ||
69 | virtual wxString GetMessage() const { return m_message; } | |
70 | virtual wxString GetPath() const { return m_path; } | |
71 | virtual void GetPaths(wxArrayString& paths) const { paths.Empty(); paths.Add(m_path); } | |
72 | virtual wxString GetDirectory() const { return m_dir; } | |
73 | virtual wxString GetFilename() const { return m_fileName; } | |
74 | virtual void GetFilenames(wxArrayString& files) const { files.Empty(); files.Add(m_fileName); } | |
75 | virtual wxString GetWildcard() const { return m_wildCard; } | |
76 | virtual long GetStyle() const { return m_dialogStyle; } | |
77 | virtual int GetFilterIndex() const { return m_filterIndex; } | |
78 | ||
79 | // Utility functions | |
80 | ||
9e152a55 | 81 | #if WXWIN_COMPATIBILITY_2_4 |
f74172ab VZ |
82 | // Parses the wildCard, returning the number of filters. |
83 | // Returns 0 if none or if there's a problem, | |
84 | // The arrays will contain an equal number of items found before the error. | |
85 | // wildCard is in the form: | |
86 | // "All files (*)|*|Image Files (*.jpeg *.png)|*.jpg;*.png" | |
eecb33b0 WS |
87 | wxDEPRECATED( static int ParseWildcard(const wxString& wildCard, |
88 | wxArrayString& descriptions, | |
89 | wxArrayString& filters) ); | |
9e152a55 | 90 | #endif // WXWIN_COMPATIBILITY_2_4 |
b600ed13 | 91 | |
f74172ab VZ |
92 | // Append first extension to filePath from a ';' separated extensionList |
93 | // if filePath = "path/foo.bar" just return it as is | |
94 | // if filePath = "foo[.]" and extensionList = "*.jpg;*.png" return "foo.jpg" | |
95 | // if the extension is "*.j?g" (has wildcards) or "jpg" then return filePath | |
96 | static wxString AppendExtension(const wxString &filePath, | |
97 | const wxString &extensionList); | |
98 | ||
99 | protected: | |
100 | wxString m_message; | |
101 | long m_dialogStyle; | |
102 | wxWindow *m_parent; | |
103 | wxString m_dir; | |
104 | wxString m_path; // Full path | |
105 | wxString m_fileName; | |
106 | wxString m_wildCard; | |
107 | int m_filterIndex; | |
108 | ||
109 | private: | |
110 | DECLARE_DYNAMIC_CLASS(wxFileDialogBase) | |
111 | DECLARE_NO_COPY_CLASS(wxFileDialogBase) | |
112 | }; | |
113 | ||
b600ed13 VZ |
114 | //---------------------------------------------------------------------------- |
115 | // wxFileDialog convenience functions | |
116 | //---------------------------------------------------------------------------- | |
117 | ||
118 | // File selector - backward compatibility | |
119 | WXDLLEXPORT wxString | |
120 | wxFileSelector(const wxChar *message = wxFileSelectorPromptStr, | |
121 | const wxChar *default_path = NULL, | |
122 | const wxChar *default_filename = NULL, | |
123 | const wxChar *default_extension = NULL, | |
124 | const wxChar *wildcard = wxFileSelectorDefaultWildcardStr, | |
125 | int flags = 0, | |
126 | wxWindow *parent = NULL, | |
a62848fd | 127 | int x = wxDefaultCoord, int y = wxDefaultCoord); |
b600ed13 VZ |
128 | |
129 | // An extended version of wxFileSelector | |
130 | WXDLLEXPORT wxString | |
131 | wxFileSelectorEx(const wxChar *message = wxFileSelectorPromptStr, | |
132 | const wxChar *default_path = NULL, | |
133 | const wxChar *default_filename = NULL, | |
134 | int *indexDefaultExtension = NULL, | |
135 | const wxChar *wildcard = wxFileSelectorDefaultWildcardStr, | |
136 | int flags = 0, | |
137 | wxWindow *parent = NULL, | |
a62848fd | 138 | int x = wxDefaultCoord, int y = wxDefaultCoord); |
b600ed13 VZ |
139 | |
140 | // Ask for filename to load | |
141 | WXDLLEXPORT wxString | |
142 | wxLoadFileSelector(const wxChar *what, | |
143 | const wxChar *extension, | |
144 | const wxChar *default_name = (const wxChar *)NULL, | |
145 | wxWindow *parent = (wxWindow *) NULL); | |
146 | ||
147 | // Ask for filename to save | |
148 | WXDLLEXPORT wxString | |
149 | wxSaveFileSelector(const wxChar *what, | |
150 | const wxChar *extension, | |
151 | const wxChar *default_name = (const wxChar *) NULL, | |
152 | wxWindow *parent = (wxWindow *) NULL); | |
153 | ||
154 | ||
099d4217 CE |
155 | #if defined (__WXUNIVERSAL__) |
156 | #include "wx/generic/filedlgg.h" | |
157 | #elif defined(__WXMSW__) | |
c801d85f | 158 | #include "wx/msw/filedlg.h" |
2049ba38 | 159 | #elif defined(__WXMOTIF__) |
34138703 | 160 | #include "wx/motif/filedlg.h" |
2049ba38 | 161 | #elif defined(__WXGTK__) |
9755e73b | 162 | #include "wx/gtk/filedlg.h" |
83df96d6 | 163 | #elif defined(__WXX11__) |
7266b672 | 164 | #include "wx/generic/filedlgg.h" |
4a70a30b VS |
165 | #elif defined(__WXMGL__) |
166 | #include "wx/generic/filedlgg.h" | |
34138703 JS |
167 | #elif defined(__WXMAC__) |
168 | #include "wx/mac/filedlg.h" | |
0201182b | 169 | #elif defined(__WXCOCOA__) |
f31424db | 170 | #include "wx/cocoa/filedlg.h" |
1777b9bb DW |
171 | #elif defined(__WXPM__) |
172 | #include "wx/os2/filedlg.h" | |
c801d85f KB |
173 | #endif |
174 | ||
1e6feb95 | 175 | #endif // wxUSE_FILEDLG |
ba681060 | 176 | |
b600ed13 | 177 | #endif // _WX_FILEDLG_H_BASE_ |