Add leaf parameter to DirPickerCtrl.
[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, bool leaf)
40         : wxPanel (parent)
41         , _leaf(leaf)
42 {
43         _sizer = new wxBoxSizer (wxHORIZONTAL);
44
45         _folder = new StaticText(this, wxT(""), wxDefaultPosition, wxDefaultSize, wxST_ELLIPSIZE_END);
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                 if (_leaf) {
67                         _folder->SetLabel(std_to_wx(boost::filesystem::path(wx_to_std(_path)).filename().string()));
68                 } else {
69                         _folder->SetLabel(_path);
70                 }
71         }
72
73         wxCommandEvent ev (wxEVT_DIRPICKER_CHANGED, wxID_ANY);
74         GetEventHandler()->ProcessEvent (ev);
75
76         _sizer->Layout ();
77         SetMinSize (wxSize (max (400, _sizer->GetSize().GetWidth()), -1));
78
79         Changed ();
80 }
81
82 wxString
83 DirPickerCtrl::GetPath () const
84 {
85         return _path;
86 }
87
88 void
89 DirPickerCtrl::browse_clicked ()
90 {
91         auto d = make_wx<wxDirDialog>(this);
92         if (d->ShowModal () == wxID_OK) {
93                 SetPath (d->GetPath ());
94         }
95 }