47b5dbca06a7e8ade9bb710d7de8076a2312c508
[dcpomatic.git] / src / wx / file_picker_ctrl.cc
1 /*
2     Copyright (C) 2012-2015 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 "file_picker_ctrl.h"
22 #include "wx_util.h"
23 #include "dcpomatic_button.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 FilePickerCtrl::FilePickerCtrl (wxWindow* parent, wxString prompt, wxString wildcard, bool open)
33         : wxPanel (parent)
34         , _prompt (prompt)
35         , _wildcard (wildcard)
36         , _open (open)
37 {
38         _sizer = new wxBoxSizer (wxHORIZONTAL);
39
40         wxClientDC dc (parent);
41         wxSize size = dc.GetTextExtent (wxT ("This is the length of the file label it should be quite long"));
42         size.SetHeight (-1);
43
44         _file = new Button (this, _("(None)"), wxDefaultPosition, size, wxBU_LEFT);
45         _sizer->Add (_file, 1, wxEXPAND, 0);
46
47         SetSizerAndFit (_sizer);
48         _file->Bind (wxEVT_BUTTON, boost::bind (&FilePickerCtrl::browse_clicked, this));
49 }
50
51 void
52 FilePickerCtrl::SetPath (wxString p)
53 {
54         _path = p;
55
56         if (!_path.IsEmpty ()) {
57                 _file->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf().string()));
58         } else {
59                 _file->SetLabel (_("(None)"));
60         }
61
62         wxCommandEvent ev (wxEVT_FILEPICKER_CHANGED, wxID_ANY);
63         GetEventHandler()->ProcessEvent (ev);
64 }
65
66 wxString
67 FilePickerCtrl::GetPath () const
68 {
69         return _path;
70 }
71
72 void
73 FilePickerCtrl::browse_clicked ()
74 {
75         wxFileDialog* d = new wxFileDialog (this, _prompt, wxEmptyString, wxEmptyString, _wildcard, _open ? wxFD_OPEN : wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
76         d->SetPath (_path);
77         if (d->ShowModal () == wxID_OK) {
78                 SetPath (d->GetPath ());
79         }
80         d->Destroy ();
81 }
82
83 void
84 FilePickerCtrl::SetWildcard (wxString w)
85 {
86         _wildcard = w;
87 }