]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: filedlg.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling | |
46327813 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifndef __GTKFILEDLGH__ | |
12 | #define __GTKFILEDLGH__ | |
13 | ||
12028905 | 14 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
c801d85f KB |
15 | #pragma interface |
16 | #endif | |
17 | ||
c801d85f | 18 | //------------------------------------------------------------------------- |
f74172ab | 19 | // wxFileDialog |
c801d85f KB |
20 | //------------------------------------------------------------------------- |
21 | ||
f74172ab | 22 | class wxFileDialog: public wxFileDialogBase |
c801d85f | 23 | { |
0e1399b3 VZ |
24 | public: |
25 | wxFileDialog() { } | |
26 | ||
27 | wxFileDialog(wxWindow *parent, | |
28 | const wxString& message = wxFileSelectorPromptStr, | |
f74172ab VZ |
29 | const wxString& defaultDir = wxEmptyString, |
30 | const wxString& defaultFile = wxEmptyString, | |
0e1399b3 VZ |
31 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, |
32 | long style = 0, | |
33 | const wxPoint& pos = wxDefaultPosition); | |
2748d251 | 34 | |
f74172ab | 35 | virtual void SetPath(const wxString& path); |
20e05ffb RR |
36 | |
37 | private: | |
38 | DECLARE_DYNAMIC_CLASS(wxFileDialog) | |
c801d85f KB |
39 | }; |
40 | ||
b600ed13 | 41 | #endif // __GTKFILEDLGH__ |