]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dirdlg.h | |
3 | // Purpose: wxDirDialog base class | |
4 | // Author: Robert Roebling | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Robert Roebling | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows Licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_DIRDLG_H_BASE_ |
13 | #define _WX_DIRDLG_H_BASE_ | |
c801d85f | 14 | |
1e6feb95 VZ |
15 | #if wxUSE_DIRDLG |
16 | ||
48013bb0 GD |
17 | #include "wx/dialog.h" |
18 | ||
1044a386 JS |
19 | // ---------------------------------------------------------------------------- |
20 | // constants | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
63ec432b MR |
23 | extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogNameStr[]; |
24 | extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogDefaultFolderStr[]; | |
25 | extern WXDLLEXPORT_DATA(const wxChar) wxDirSelectorPromptStr[]; | |
26 | ||
1044a386 | 27 | |
30dfe2ff JS |
28 | #ifdef __WXWINCE__ |
29 | #define wxDD_DEFAULT_STYLE \ | |
30 | (wxDEFAULT_DIALOG_STYLE | wxDD_NEW_DIR_BUTTON) | |
31 | #else | |
32 | #define wxDD_DEFAULT_STYLE \ | |
33 | (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON) | |
34 | #endif | |
e78d4a23 | 35 | |
b50747ea RR |
36 | //------------------------------------------------------------------------- |
37 | // wxDirDialogBase | |
38 | //------------------------------------------------------------------------- | |
e78d4a23 VZ |
39 | |
40 | class WXDLLEXPORT wxDirDialogBase : public wxDialog | |
41 | { | |
42 | public: | |
43 | wxDirDialogBase(wxWindow *parent, | |
b50747ea | 44 | const wxString& title = wxDirSelectorPromptStr, |
e78d4a23 VZ |
45 | const wxString& defaultPath = wxEmptyString, |
46 | long style = wxDD_DEFAULT_STYLE, | |
47 | const wxPoint& pos = wxDefaultPosition, | |
48 | const wxSize& sz = wxDefaultSize, | |
b50747ea | 49 | const wxString& name = wxDirDialogNameStr) |
1fb351fa WS |
50 | : wxDialog(parent, wxID_ANY, title, pos, sz, style, name) |
51 | , m_path(defaultPath) | |
52 | {} | |
b50747ea | 53 | wxDirDialogBase() {} |
e78d4a23 | 54 | |
b50747ea | 55 | virtual ~wxDirDialogBase() {} |
e78d4a23 | 56 | |
b50747ea RR |
57 | virtual void SetMessage(const wxString& message) { m_message = message; } |
58 | virtual void SetPath(const wxString& path) { m_path = path; } | |
59 | virtual void SetStyle(long style) { SetWindowStyle(style); } | |
60 | ||
61 | virtual wxString GetMessage() const { return m_message; } | |
62 | virtual wxString GetPath() const { return m_path; } | |
63 | virtual long GetStyle() const { return GetWindowStyle(); } | |
64 | ||
65 | protected: | |
66 | wxString m_message; | |
67 | wxString m_path; | |
e78d4a23 VZ |
68 | }; |
69 | ||
e78d4a23 | 70 | |
ba7463d8 | 71 | // Universal and non-port related switches with need for generic implementation |
67f6e901 | 72 | #if defined(__WXMSW__) && (defined(__WXUNIVERSAL__) || \ |
67f6e901 RD |
73 | defined(__SALFORDC__) || \ |
74 | !wxUSE_OLE || \ | |
75 | (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS)) | |
ba7463d8 | 76 | |
4a70a30b | 77 | #include "wx/generic/dirdlgg.h" |
ba7463d8 | 78 | #define wxDirDialog wxGenericDirDialog |
9b141468 | 79 | |
bcfced36 JS |
80 | // MS PocketPC or MS Smartphone |
81 | #elif defined(__WXMSW__) && defined(__WXWINCE__) && !defined(__HANDHELDPC__) | |
9b141468 WS |
82 | |
83 | #include "wx/generic/dirdlgg.h" | |
84 | #define wxDirDialog wxGenericDirDialog | |
ba7463d8 WS |
85 | |
86 | // Native MSW | |
87 | #elif defined(__WXMSW__) | |
88 | ||
89 | #include "wx/msw/dirdlg.h" | |
90 | ||
d7313bdc | 91 | // Native GTK for gtk2.x and generic for gtk1.x |
b50747ea RR |
92 | #elif defined(__WXGTK__) |
93 | ||
d7313bdc | 94 | #if defined( __WXGTK20__ ) |
b50747ea RR |
95 | #include "wx/gtk/dirdlg.h" |
96 | #define wxDirDialog wxDirDialogGTK | |
d7313bdc JJ |
97 | #else |
98 | #include "wx/generic/dirdlgg.h" | |
99 | #define wxDirDialog wxGenericDirDialog | |
100 | #endif | |
b50747ea | 101 | |
ba7463d8 | 102 | // Native Mac |
34138703 | 103 | #elif defined(__WXMAC__) |
ba7463d8 | 104 | |
10eb1f1e | 105 | #include "wx/mac/dirdlg.h" |
c801d85f | 106 | |
937f314d VZ |
107 | // Native Cocoa |
108 | #elif defined(__WXCOCOA__) | |
109 | ||
110 | #include "wx/cocoa/dirdlg.h" | |
111 | ||
ba7463d8 WS |
112 | // Other ports use generic implementation |
113 | #elif defined(__WXMOTIF__) || \ | |
ba7463d8 WS |
114 | defined(__WXX11__) || \ |
115 | defined(__WXMGL__) || \ | |
116 | defined(__WXCOCOA__) || \ | |
117 | defined(__WXPM__) | |
118 | ||
119 | #include "wx/generic/dirdlgg.h" | |
e78d4a23 | 120 | #define wxDirDialog wxGenericDirDialog |
ba7463d8 | 121 | |
e78d4a23 VZ |
122 | #endif |
123 | ||
10eb1f1e VZ |
124 | // ---------------------------------------------------------------------------- |
125 | // common ::wxDirSelector() function | |
126 | // ---------------------------------------------------------------------------- | |
127 | ||
10eb1f1e VZ |
128 | WXDLLEXPORT wxString |
129 | wxDirSelector(const wxString& message = wxDirSelectorPromptStr, | |
130 | const wxString& defaultPath = wxEmptyString, | |
e78d4a23 | 131 | long style = wxDD_DEFAULT_STYLE, |
10eb1f1e VZ |
132 | const wxPoint& pos = wxDefaultPosition, |
133 | wxWindow *parent = NULL); | |
134 | ||
1e6feb95 VZ |
135 | #endif // wxUSE_DIRDLG |
136 | ||
c801d85f | 137 | #endif |
34138703 | 138 | // _WX_DIRDLG_H_BASE_ |