]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/filedlg.h | |
3 | // Purpose: wxFileDialog class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_FILEDLG_H_ | |
13 | #define _WX_FILEDLG_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "filedlg.h" | |
17 | #endif | |
18 | ||
19 | //------------------------------------------------------------------------- | |
20 | // wxFileDialog | |
21 | //------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxFileDialog: public wxFileDialogBase | |
24 | { | |
25 | public: | |
26 | wxFileDialog(wxWindow *parent, | |
27 | const wxString& message = wxFileSelectorPromptStr, | |
28 | const wxString& defaultDir = wxEmptyString, | |
29 | const wxString& defaultFile = wxEmptyString, | |
30 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, | |
31 | long style = 0, | |
32 | const wxPoint& pos = wxDefaultPosition); | |
33 | ||
34 | virtual void SetPath(const wxString& path); | |
35 | virtual void GetPaths(wxArrayString& paths) const; | |
36 | virtual void GetFilenames(wxArrayString& files) const; | |
37 | ||
38 | virtual int ShowModal(); | |
39 | ||
40 | protected: | |
41 | ||
42 | #if !(defined(__SMARTPHONE__) && defined(__WXWINCE__)) | |
43 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
44 | virtual void DoGetSize( int *width, int *height ) const; | |
45 | virtual void DoGetPosition( int *x, int *y ) const; | |
46 | #endif // !(__SMARTPHONE__ && __WXWINCE__) | |
47 | ||
48 | private: | |
49 | wxArrayString m_fileNames; | |
50 | bool m_bMovedWindow; | |
51 | ||
52 | DECLARE_DYNAMIC_CLASS(wxFileDialog) | |
53 | DECLARE_NO_COPY_CLASS(wxFileDialog) | |
54 | }; | |
55 | ||
56 | #endif // _WX_FILEDLG_H_ | |
57 |