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