Basics of in-place i18n with support for wxStaticText and wxCheckBox.
[dcpomatic.git] / src / wx / dir_picker_ctrl.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "dir_picker_ctrl.h"
22 #include "wx_util.h"
23 #include "static_text.h"
24 #include <wx/wx.h>
25 #include <wx/stdpaths.h>
26 #include <wx/filepicker.h>
27 #include <boost/filesystem.hpp>
28
29 using namespace std;
30 using namespace boost;
31
32 DirPickerCtrl::DirPickerCtrl (wxWindow* parent)
33         : wxPanel (parent)
34 {
35         _sizer = new wxBoxSizer (wxHORIZONTAL);
36
37         _folder = new StaticText (this, wxT(""));
38         _sizer->Add (_folder, 1, wxEXPAND | wxALL, 6);
39         _browse = new wxButton (this, wxID_ANY, _("Browse..."));
40         _sizer->Add (_browse, 0);
41
42         SetSizer (_sizer);
43
44         _browse->Bind (wxEVT_BUTTON, boost::bind (&DirPickerCtrl::browse_clicked, this));
45 }
46
47 void
48 DirPickerCtrl::SetPath (wxString p)
49 {
50         _path = p;
51
52         if (_path == wxStandardPaths::Get().GetDocumentsDir()) {
53                 _folder->SetLabel (_("My Documents"));
54         } else {
55                 _folder->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf().string()));
56         }
57
58         wxCommandEvent ev (wxEVT_DIRPICKER_CHANGED, wxID_ANY);
59         GetEventHandler()->ProcessEvent (ev);
60
61         _sizer->Layout ();
62         SetMinSize (wxSize (max (400, _sizer->GetSize().GetWidth()), -1));
63 }
64
65 wxString
66 DirPickerCtrl::GetPath () const
67 {
68         return _path;
69 }
70
71 void
72 DirPickerCtrl::browse_clicked ()
73 {
74         wxDirDialog* d = new wxDirDialog (this);
75         if (d->ShowModal () == wxID_OK) {
76                 SetPath (d->GetPath ());
77         }
78         d->Destroy ();
79 }