1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing wxGenericDirCtrl
5 // Author: Wlodzimierz 'ABX' Skiba
8 // Copyright: (c) 2006 wxWindows team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
29 // for all others, include the necessary headers
34 #include "wx/statbox.h"
35 #include "wx/radiobox.h"
36 #include "wx/checkbox.h"
37 #include "wx/button.h"
38 #include "wx/filedlg.h"
41 #include "wx/generic/dirctrlg.h"
43 #include "wx/wupdlock.h"
44 #include "wx/stdpaths.h"
45 #include "wx/filename.h"
49 #include "icons/dirctrl.xpm"
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
58 DirCtrlPage_Reset
= wxID_HIGHEST
,
63 static const wxString stdPaths
[] =
74 wxT("&user local data")
92 // ----------------------------------------------------------------------------
93 // CheckBoxWidgetsPage
94 // ----------------------------------------------------------------------------
96 class DirCtrlWidgetsPage
: public WidgetsPage
99 DirCtrlWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
100 virtual ~DirCtrlWidgetsPage() {}
102 virtual wxControl
*GetWidget() const { return m_dirCtrl
; }
103 virtual void RecreateWidget() { CreateDirCtrl(); }
105 // lazy creation of the content
106 virtual void CreateContent();
110 void OnButtonSetPath(wxCommandEvent
& event
);
111 void OnButtonReset(wxCommandEvent
& event
);
112 void OnStdPath(wxCommandEvent
& event
);
113 void OnCheckBox(wxCommandEvent
& event
);
114 void OnRadioBox(wxCommandEvent
& event
);
115 void OnSelChanged(wxTreeEvent
& event
);
117 // reset the control parameters
120 // (re)create the m_dirCtrl
121 void CreateDirCtrl();
126 // the control itself and the sizer it is in
127 wxGenericDirCtrl
*m_dirCtrl
;
129 // the text entries for command parameters
132 wxRadioBox
*m_radioStdPath
;
135 wxCheckBox
*m_chkDirOnly
,
143 wxCheckBox
*m_fltr
[3];
146 DECLARE_EVENT_TABLE()
147 DECLARE_WIDGETS_PAGE(DirCtrlWidgetsPage
)
150 // ----------------------------------------------------------------------------
152 // ----------------------------------------------------------------------------
154 BEGIN_EVENT_TABLE(DirCtrlWidgetsPage
, WidgetsPage
)
155 EVT_BUTTON(DirCtrlPage_Reset
, DirCtrlWidgetsPage::OnButtonReset
)
156 EVT_BUTTON(DirCtrlPage_SetPath
, DirCtrlWidgetsPage::OnButtonSetPath
)
157 EVT_CHECKBOX(wxID_ANY
, DirCtrlWidgetsPage::OnCheckBox
)
158 EVT_RADIOBOX(wxID_ANY
, DirCtrlWidgetsPage::OnRadioBox
)
159 EVT_DIRCTRL_CHANGED(DirCtrlPage_Ctrl
, DirCtrlWidgetsPage::OnSelChanged
)
162 // ============================================================================
164 // ============================================================================
166 IMPLEMENT_WIDGETS_PAGE(DirCtrlWidgetsPage
, wxT("DirCtrl"),
170 DirCtrlWidgetsPage::DirCtrlWidgetsPage(WidgetsBookCtrl
*book
,
171 wxImageList
*imaglist
)
172 :WidgetsPage(book
, imaglist
, dirctrl_xpm
)
177 void DirCtrlWidgetsPage::CreateContent()
179 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
182 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
, wxT("Dir control details"));
184 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
186 sizerLeft
->Add( CreateSizerWithTextAndButton( DirCtrlPage_SetPath
, wxT("Set &path"), wxID_ANY
, &m_path
),
187 0, wxALL
| wxALIGN_RIGHT
, 5 );
189 wxSizer
*sizerUseFlags
=
190 new wxStaticBoxSizer(wxVERTICAL
, this, wxT("&Flags"));
191 m_chkDirOnly
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_DIR_ONLY"));
192 m_chk3D
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_3D_INTERNAL"));
193 m_chkFirst
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_SELECT_FIRST"));
194 m_chkFilters
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_SHOW_FILTERS"));
195 m_chkLabels
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_EDIT_LABELS"));
196 m_chkMulti
= CreateCheckBoxAndAddToSizer(sizerUseFlags
, wxT("wxDIRCTRL_MULTIPLE"));
197 sizerLeft
->Add(sizerUseFlags
, wxSizerFlags().Expand().Border());
199 wxSizer
*sizerFilters
=
200 new wxStaticBoxSizer(wxVERTICAL
, this, wxT("&Filters"));
201 m_fltr
[0] = CreateCheckBoxAndAddToSizer(sizerFilters
, wxString::Format(wxT("all files (%s)|%s"),
202 wxFileSelectorDefaultWildcardStr
, wxFileSelectorDefaultWildcardStr
));
203 m_fltr
[1] = CreateCheckBoxAndAddToSizer(sizerFilters
, wxT("C++ files (*.cpp; *.h)|*.cpp;*.h"));
204 m_fltr
[2] = CreateCheckBoxAndAddToSizer(sizerFilters
, wxT("PNG images (*.png)|*.png"));
205 sizerLeft
->Add(sizerFilters
, wxSizerFlags().Expand().Border());
207 wxButton
*btn
= new wxButton(this, DirCtrlPage_Reset
, wxT("&Reset"));
208 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
210 // keep consistency between enum and labels of radiobox
211 wxCOMPILE_TIME_ASSERT( stdPathMax
== WXSIZEOF(stdPaths
), EnumForRadioBoxMismatch
);
214 m_radioStdPath
= new wxRadioBox(this, wxID_ANY
, wxT("Standard path"),
215 wxDefaultPosition
, wxDefaultSize
,
216 WXSIZEOF(stdPaths
), stdPaths
, 1);
219 m_dirCtrl
= new wxGenericDirCtrl(
222 wxDirDialogDefaultFolderStr
,
228 // the 3 panes panes compose the window
229 sizerTop
->Add(sizerLeft
, 0, (wxALL
& ~wxLEFT
), 10);
230 sizerTop
->Add(m_radioStdPath
, 0, wxGROW
| wxALL
, 10);
231 sizerTop
->Add(m_dirCtrl
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
233 // final initializations
239 void DirCtrlWidgetsPage::Reset()
241 m_path
->SetValue(m_dirCtrl
->GetPath());
244 void DirCtrlWidgetsPage::CreateDirCtrl()
246 wxWindowUpdateLocker
noUpdates(this);
248 wxGenericDirCtrl
*dirCtrl
= new wxGenericDirCtrl(
251 wxDirDialogDefaultFolderStr
,
254 ( m_chkDirOnly
->IsChecked() ? wxDIRCTRL_DIR_ONLY
: 0 ) |
255 ( m_chk3D
->IsChecked() ? wxDIRCTRL_3D_INTERNAL
: 0 ) |
256 ( m_chkFirst
->IsChecked() ? wxDIRCTRL_SELECT_FIRST
: 0 ) |
257 ( m_chkFilters
->IsChecked() ? wxDIRCTRL_SHOW_FILTERS
: 0 ) |
258 ( m_chkLabels
->IsChecked() ? wxDIRCTRL_EDIT_LABELS
: 0 ) |
259 ( m_chkMulti
->IsChecked() ? wxDIRCTRL_MULTIPLE
: 0)
263 for (int i
= 0; i
< 3; ++i
)
265 if (m_fltr
[i
]->IsChecked())
267 if (!filter
.IsEmpty())
269 filter
+= m_fltr
[i
]->GetLabel();
272 dirCtrl
->SetFilter(filter
);
274 // update sizer's child window
275 GetSizer()->Replace(m_dirCtrl
, dirCtrl
, true);
277 // update our pointer
281 // relayout the sizer
282 GetSizer()->Layout();
285 // ----------------------------------------------------------------------------
287 // ----------------------------------------------------------------------------
289 void DirCtrlWidgetsPage::OnButtonSetPath(wxCommandEvent
& WXUNUSED(event
))
291 m_dirCtrl
->SetPath(m_path
->GetValue());
294 void DirCtrlWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
301 void DirCtrlWidgetsPage::OnCheckBox(wxCommandEvent
& WXUNUSED(event
))
306 void DirCtrlWidgetsPage::OnRadioBox(wxCommandEvent
& WXUNUSED(event
))
310 wxTheApp
->SetAppName(wxT("widgets"));
311 wxStandardPathsBase
& stdp
= wxStandardPaths::Get();
313 switch ( m_radioStdPath
->GetSelection() )
322 path
= stdp
.GetConfigDir();
326 path
= stdp
.GetDataDir();
329 case stdPathDocuments
:
330 path
= stdp
.GetDocumentsDir();
333 case stdPathLocalData
:
334 path
= stdp
.GetLocalDataDir();
338 path
= stdp
.GetPluginsDir();
341 case stdPathResources
:
342 path
= stdp
.GetResourcesDir();
345 case stdPathUserConfig
:
346 path
= stdp
.GetUserConfigDir();
349 case stdPathUserData
:
350 path
= stdp
.GetUserDataDir();
353 case stdPathUserLocalData
:
354 path
= stdp
.GetUserLocalDataDir();
358 m_dirCtrl
->SetPath(path
);
360 // Notice that we must use wxFileName comparison instead of simple wxString
361 // comparison as the paths returned may differ by case only.
362 if ( wxFileName(m_dirCtrl
->GetPath()) != path
)
364 wxLogMessage("Failed to go to \"%s\", the current path is \"%s\".",
365 path
, m_dirCtrl
->GetPath());
369 void DirCtrlWidgetsPage::OnSelChanged(wxTreeEvent
& event
)
373 wxLogMessage("Selection changed to \"%s\"",
374 m_dirCtrl
->GetPath(event
.GetItem()));
380 #endif // wxUSE_DIRDLG