34e54532e10f7bc60e3904603661abce093014aa
[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
22 #include "dcpomatic_button.h"
23 #include "dir_picker_ctrl.h"
24 #include "static_text.h"
25 #include "wx_ptr.h"
26 #include "wx_util.h"
27 #include <dcp/warnings.h>
28 LIBDCP_DISABLE_WARNINGS
29 #include <wx/filepicker.h>
30 #include <wx/stdpaths.h>
31 #include <wx/wx.h>
32 LIBDCP_ENABLE_WARNINGS
33 #include <boost/filesystem.hpp>
34
35
36 using namespace std;
37 using namespace boost;
38
39
40 DirPickerCtrl::DirPickerCtrl (wxWindow* parent)
41         : wxPanel (parent)
42 {
43         _sizer = new wxBoxSizer (wxHORIZONTAL);
44
45         _folder = new StaticText (this, wxT(""));
46         wxFont font = _folder->GetFont ();
47         font.SetStyle (wxFONTSTYLE_ITALIC);
48         _folder->SetFont (font);
49         _sizer->Add (_folder, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
50         _browse = new Button (this, _("Browse..."));
51         _sizer->Add (_browse, 0);
52
53         SetSizer (_sizer);
54
55         _browse->Bind (wxEVT_BUTTON, boost::bind (&DirPickerCtrl::browse_clicked, this));
56 }
57
58 void
59 DirPickerCtrl::SetPath (wxString p)
60 {
61         _path = p;
62
63         if (_path == wxStandardPaths::Get().GetDocumentsDir()) {
64                 _folder->SetLabel (_("My Documents"));
65         } else {
66                 _folder->SetLabel (_path);
67         }
68
69         wxCommandEvent ev (wxEVT_DIRPICKER_CHANGED, wxID_ANY);
70         GetEventHandler()->ProcessEvent (ev);
71
72         _sizer->Layout ();
73         SetMinSize (wxSize (max (400, _sizer->GetSize().GetWidth()), -1));
74
75         Changed ();
76 }
77
78 wxString
79 DirPickerCtrl::GetPath () const
80 {
81         return _path;
82 }
83
84 void
85 DirPickerCtrl::browse_clicked ()
86 {
87         auto d = make_wx<wxDirDialog>(this);
88         if (d->ShowModal () == wxID_OK) {
89                 SetPath (d->GetPath ());
90         }
91 }