]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_DIRDLG_H_BASE_ |
2 | #define _WX_DIRDLG_H_BASE_ | |
c801d85f | 3 | |
1e6feb95 VZ |
4 | #if wxUSE_DIRDLG |
5 | ||
1044a386 JS |
6 | // ---------------------------------------------------------------------------- |
7 | // constants | |
8 | // ---------------------------------------------------------------------------- | |
9 | ||
10 | WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr; | |
11 | WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr; | |
12 | WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString; | |
13 | ||
2049ba38 | 14 | #if defined(__WXMSW__) |
b64f0a5f | 15 | #if defined(__WIN16__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS) || defined(__SALFORDC__) |
1e6d9499 JS |
16 | #include "wx/generic/dirdlgg.h" |
17 | #else | |
c801d85f | 18 | #include "wx/msw/dirdlg.h" |
1e6d9499 | 19 | #endif |
2049ba38 | 20 | #elif defined(__WXMOTIF__) |
d7a15103 | 21 | #include "wx/generic/dirdlgg.h" |
2049ba38 | 22 | #elif defined(__WXGTK__) |
0659e7ee | 23 | #include "wx/generic/dirdlgg.h" |
b4e76e0d RR |
24 | #elif defined(__WXQT__) |
25 | #include "wx/qt/dirdlg.h" | |
34138703 | 26 | #elif defined(__WXMAC__) |
6e040042 | 27 | #ifdef __DARWIN__ |
03e11df5 GD |
28 | #include "wx/generic/dirdlgg.h" |
29 | #else | |
34138703 | 30 | #include "wx/mac/dirdlg.h" |
03e11df5 | 31 | #endif |
1777b9bb DW |
32 | #elif defined(__WXPM__) |
33 | #include "wx/os2/dirdlg.h" | |
34138703 JS |
34 | #elif defined(__WXSTUBS__) |
35 | #include "wx/stubs/dirdlg.h" | |
c801d85f KB |
36 | #endif |
37 | ||
1e6feb95 VZ |
38 | #endif // wxUSE_DIRDLG |
39 | ||
c801d85f | 40 | #endif |
34138703 | 41 | // _WX_DIRDLG_H_BASE_ |