]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dirdlg.h
Applied patch [ 1382552 ] Fixes GDI-ressource leak in wxStaticBitmap
[wxWidgets.git] / include / wx / dirdlg.h
... / ...
CommitLineData
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
12#ifndef _WX_DIRDLG_H_BASE_
13#define _WX_DIRDLG_H_BASE_
14
15#if wxUSE_DIRDLG
16
17#include "wx/dialog.h"
18
19// ----------------------------------------------------------------------------
20// constants
21// ----------------------------------------------------------------------------
22
23extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogNameStr[];
24extern WXDLLEXPORT_DATA(const wxChar) wxDirDialogDefaultFolderStr[];
25extern WXDLLEXPORT_DATA(const wxChar) wxDirSelectorPromptStr[];
26
27
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
35
36/*
37 The interface (TODO: make the other classes really derive from it!) is
38 something like this:
39
40class WXDLLEXPORT wxDirDialogBase : public wxDialog
41{
42public:
43 wxDirDialogBase(wxWindow *parent,
44 const wxString& title = wxFileSelectorPromptStr,
45 const wxString& defaultPath = wxEmptyString,
46 long style = wxDD_DEFAULT_STYLE,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& sz = wxDefaultSize,
49 const wxString& name = _T("dirdialog"));
50
51 void SetMessage(const wxString& message);
52 void SetPath(const wxString& path);
53 void SetStyle(long style);
54
55 wxString GetMessage() const;
56 wxString GetPath() const;
57 long GetStyle() const;
58};
59
60*/
61
62// Universal and non-port related switches with need for generic implementation
63#if defined(__WXMSW__) && (defined(__WXUNIVERSAL__) || \
64 defined(__SALFORDC__) || \
65 !wxUSE_OLE || \
66 (defined (__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS))
67
68 #include "wx/generic/dirdlgg.h"
69 #define wxDirDialog wxGenericDirDialog
70
71// MS PocketPC or MS Smartphone
72#elif defined(__WXMSW__) && defined(__WXWINCE__) && !defined(__HANDHELDPC__)
73
74 #include "wx/generic/dirdlgg.h"
75 #define wxDirDialog wxGenericDirDialog
76
77// Native MSW
78#elif defined(__WXMSW__)
79
80 #include "wx/msw/dirdlg.h"
81
82// Native Mac
83#elif defined(__WXMAC__)
84
85 #include "wx/mac/dirdlg.h"
86
87// Other ports use generic implementation
88#elif defined(__WXMOTIF__) || \
89 defined(__WXGTK__) || \
90 defined(__WXX11__) || \
91 defined(__WXMGL__) || \
92 defined(__WXCOCOA__) || \
93 defined(__WXPM__)
94
95 #include "wx/generic/dirdlgg.h"
96 #define wxDirDialog wxGenericDirDialog
97
98#endif
99
100// ----------------------------------------------------------------------------
101// common ::wxDirSelector() function
102// ----------------------------------------------------------------------------
103
104WXDLLEXPORT wxString
105wxDirSelector(const wxString& message = wxDirSelectorPromptStr,
106 const wxString& defaultPath = wxEmptyString,
107 long style = wxDD_DEFAULT_STYLE,
108 const wxPoint& pos = wxDefaultPosition,
109 wxWindow *parent = NULL);
110
111#endif // wxUSE_DIRDLG
112
113#endif
114 // _WX_DIRDLG_H_BASE_