]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dirdlg.h
made wxListbook events more consistent with wxNotebook ones (patch 1001271)
[wxWidgets.git] / include / wx / dirdlg.h
CommitLineData
34138703
JS
1#ifndef _WX_DIRDLG_H_BASE_
2#define _WX_DIRDLG_H_BASE_
c801d85f 3
1e6feb95
VZ
4#if wxUSE_DIRDLG
5
48013bb0
GD
6#include "wx/dialog.h"
7
1044a386
JS
8// ----------------------------------------------------------------------------
9// constants
10// ----------------------------------------------------------------------------
11
12WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr;
13WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr;
e78d4a23 14WXDLLEXPORT_DATA(extern const wxChar*) wxDirSelectorPromptStr;
1044a386 15
e78d4a23
VZ
16#define wxDD_DEFAULT_STYLE \
17 (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxDD_NEW_DIR_BUTTON)
18
19/*
20 The interface (TODO: make the other classes really derive from it!) is
21 something like this:
22
23class WXDLLEXPORT wxDirDialogBase : public wxDialog
24{
25public:
26 wxDirDialogBase(wxWindow *parent,
27 const wxString& title = wxFileSelectorPromptStr,
28 const wxString& defaultPath = wxEmptyString,
29 long style = wxDD_DEFAULT_STYLE,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& sz = wxDefaultSize,
32 const wxString& name = _T("dirdialog"));
33
34 void SetMessage(const wxString& message);
35 void SetPath(const wxString& path);
36 void SetStyle(long style);
37
38 wxString GetMessage() const;
39 wxString GetPath() const;
40 long GetStyle() const;
41};
42
43*/
44
ba7463d8 45// Universal and non-port related switches with need for generic implementation
67f6e901
RD
46#if defined(__WXMSW__) && (defined(__WXUNIVERSAL__) || \
47 defined(__WXWINCE__) || \
48 defined(__SALFORDC__) || \
49 !wxUSE_OLE || \
50 (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS))
ba7463d8 51
4a70a30b 52 #include "wx/generic/dirdlgg.h"
ba7463d8
WS
53 #define wxDirDialog wxGenericDirDialog
54
55// Native MSW
56#elif defined(__WXMSW__)
57
58 #include "wx/msw/dirdlg.h"
59
60// Native Mac
34138703 61#elif defined(__WXMAC__)
ba7463d8 62
10eb1f1e 63 #include "wx/mac/dirdlg.h"
c801d85f 64
ba7463d8
WS
65// Other ports use generic implementation
66#elif defined(__WXMOTIF__) || \
67 defined(__WXGTK__) || \
68 defined(__WXX11__) || \
69 defined(__WXMGL__) || \
70 defined(__WXCOCOA__) || \
71 defined(__WXPM__)
72
73 #include "wx/generic/dirdlgg.h"
e78d4a23 74 #define wxDirDialog wxGenericDirDialog
ba7463d8 75
e78d4a23
VZ
76#endif
77
10eb1f1e
VZ
78// ----------------------------------------------------------------------------
79// common ::wxDirSelector() function
80// ----------------------------------------------------------------------------
81
10eb1f1e
VZ
82WXDLLEXPORT wxString
83wxDirSelector(const wxString& message = wxDirSelectorPromptStr,
84 const wxString& defaultPath = wxEmptyString,
e78d4a23 85 long style = wxDD_DEFAULT_STYLE,
10eb1f1e
VZ
86 const wxPoint& pos = wxDefaultPosition,
87 wxWindow *parent = NULL);
88
1e6feb95
VZ
89#endif // wxUSE_DIRDLG
90
c801d85f 91#endif
34138703 92 // _WX_DIRDLG_H_BASE_