]>
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 | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifndef __GTKFILEDLGH__ |
11 | #define __GTKFILEDLGH__ | |
12 | ||
4e1901b7 RR |
13 | #include "wx/generic/filedlgg.h" |
14 | ||
c801d85f | 15 | //------------------------------------------------------------------------- |
f74172ab | 16 | // wxFileDialog |
c801d85f KB |
17 | //------------------------------------------------------------------------- |
18 | ||
20123d49 | 19 | class WXDLLIMPEXP_CORE wxFileDialog: public wxGenericFileDialog |
c801d85f | 20 | { |
0e1399b3 VZ |
21 | public: |
22 | wxFileDialog() { } | |
23 | ||
24 | wxFileDialog(wxWindow *parent, | |
25 | const wxString& message = wxFileSelectorPromptStr, | |
f74172ab VZ |
26 | const wxString& defaultDir = wxEmptyString, |
27 | const wxString& defaultFile = wxEmptyString, | |
0e1399b3 | 28 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, |
ff3e84ff VZ |
29 | long style = wxFD_DEFAULT_STYLE, |
30 | const wxPoint& pos = wxDefaultPosition, | |
31 | const wxSize& sz = wxDefaultSize, | |
32 | const wxString& name = wxFileDialogNameStr); | |
f8bc53eb | 33 | |
a552d120 | 34 | virtual ~wxFileDialog() {} |
f8bc53eb JS |
35 | |
36 | virtual wxString GetPath() const; | |
9755e73b | 37 | virtual void GetPaths(wxArrayString& paths) const; |
f8bc53eb JS |
38 | virtual wxString GetDirectory() const; |
39 | virtual wxString GetFilename() const; | |
9755e73b | 40 | virtual void GetFilenames(wxArrayString& files) const; |
f8bc53eb JS |
41 | virtual int GetFilterIndex() const; |
42 | ||
9755e73b VS |
43 | virtual void SetMessage(const wxString& message); |
44 | virtual void SetPath(const wxString& path); | |
45 | virtual void SetDirectory(const wxString& dir); | |
46 | virtual void SetFilename(const wxString& name); | |
47 | virtual void SetWildcard(const wxString& wildCard); | |
48 | virtual void SetFilterIndex(int filterIndex); | |
f8bc53eb | 49 | |
4e1901b7 RR |
50 | virtual int ShowModal(); |
51 | virtual bool Show( bool show = true ); | |
52 | ||
a552d120 | 53 | |
4e1901b7 | 54 | |
6f02a879 | 55 | protected: |
5b2e23bf RR |
56 | // override this from wxTLW since the native |
57 | // form doesn't have any m_wxwindow | |
58 | virtual void DoSetSize(int x, int y, | |
59 | int width, int height, | |
60 | int sizeFlags = wxSIZE_AUTO); | |
61 | ||
62 | ||
f8bc53eb | 63 | private: |
20e05ffb | 64 | DECLARE_DYNAMIC_CLASS(wxFileDialog) |
4e1901b7 | 65 | DECLARE_EVENT_TABLE() |
f8bc53eb | 66 | void OnFakeOk( wxCommandEvent &event ); |
c801d85f KB |
67 | }; |
68 | ||
b600ed13 | 69 | #endif // __GTKFILEDLGH__ |