]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
2b5f62a0 | 2 | // Name: wx/msw/filedlg.h |
2bda0e17 KB |
3 | // Purpose: wxFileDialog class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_FILEDLG_H_ |
13 | #define _WX_FILEDLG_H_ | |
2bda0e17 | 14 | |
f74172ab VZ |
15 | //------------------------------------------------------------------------- |
16 | // wxFileDialog | |
17 | //------------------------------------------------------------------------- | |
2bda0e17 | 18 | |
53a2db12 | 19 | class WXDLLIMPEXP_CORE wxFileDialog: public wxFileDialogBase |
2bda0e17 | 20 | { |
2bda0e17 | 21 | public: |
2b5f62a0 VZ |
22 | wxFileDialog(wxWindow *parent, |
23 | const wxString& message = wxFileSelectorPromptStr, | |
24 | const wxString& defaultDir = wxEmptyString, | |
25 | const wxString& defaultFile = wxEmptyString, | |
26 | const wxString& wildCard = wxFileSelectorDefaultWildcardStr, | |
ff3e84ff VZ |
27 | long style = wxFD_DEFAULT_STYLE, |
28 | const wxPoint& pos = wxDefaultPosition, | |
29 | const wxSize& sz = wxDefaultSize, | |
30 | const wxString& name = wxFileDialogNameStr); | |
2bda0e17 | 31 | |
f74172ab | 32 | virtual void GetPaths(wxArrayString& paths) const; |
89654c9a | 33 | virtual void GetFilenames(wxArrayString& files) const; |
6fa6d659 VZ |
34 | #ifndef __WXWINCE__ |
35 | virtual bool SupportsExtraControl() const { return true; } | |
6fa6d659 | 36 | void MSWOnInitDialogHook(WXHWND hwnd); |
d6dae1b4 | 37 | #endif // __WXWINCE__ |
c61f4f6d | 38 | |
2b5f62a0 | 39 | virtual int ShowModal(); |
ba681060 | 40 | |
0a7b0229 VZ |
41 | // wxMSW-specific implementation from now on |
42 | // ----------------------------------------- | |
43 | ||
44 | // called from the hook procedure on CDN_INITDONE reception | |
45 | virtual void MSWOnInitDone(WXHWND hDlg); | |
46 | ||
0b11099d | 47 | protected: |
dcbbda54 | 48 | |
9b141468 | 49 | #if !(defined(__SMARTPHONE__) && defined(__WXWINCE__)) |
0b11099d | 50 | virtual void DoMoveWindow(int x, int y, int width, int height); |
0a7b0229 | 51 | virtual void DoCentre(int dir); |
0b11099d VZ |
52 | virtual void DoGetSize( int *width, int *height ) const; |
53 | virtual void DoGetPosition( int *x, int *y ) const; | |
9b141468 | 54 | #endif // !(__SMARTPHONE__ && __WXWINCE__) |
0b11099d | 55 | |
f74172ab | 56 | private: |
c61f4f6d | 57 | wxArrayString m_fileNames; |
0a7b0229 VZ |
58 | |
59 | // remember if our SetPosition() or Centre() (which requires special | |
60 | // treatment) was called | |
0b11099d | 61 | bool m_bMovedWindow; |
0a7b0229 | 62 | int m_centreDir; // nothing to do if 0 |
c61f4f6d | 63 | |
c61f4f6d | 64 | DECLARE_DYNAMIC_CLASS(wxFileDialog) |
c0c133e1 | 65 | wxDECLARE_NO_COPY_CLASS(wxFileDialog); |
2bda0e17 KB |
66 | }; |
67 | ||
b600ed13 | 68 | #endif // _WX_FILEDLG_H_ |
c61f4f6d | 69 |