Use a separate file (in a configurable location) to store cinema / screen certificate...
[dcpomatic.git] / src / wx / file_picker_ctrl.cc
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "file_picker_ctrl.h"
21 #include "wx_util.h"
22 #include <wx/wx.h>
23 #include <wx/stdpaths.h>
24 #include <wx/filepicker.h>
25 #include <boost/filesystem.hpp>
26
27 using namespace std;
28 using namespace boost;
29
30 FilePickerCtrl::FilePickerCtrl (wxWindow* parent, wxString prompt, wxString wildcard)
31         : wxPanel (parent)
32         , _prompt (prompt)
33         , _wildcard (wildcard)
34 {
35         _sizer = new wxBoxSizer (wxHORIZONTAL);
36
37         wxClientDC dc (parent);
38         wxSize size = dc.GetTextExtent (wxT ("This is the length of the file label it should be quite long"));
39         size.SetHeight (-1);
40
41         _file = new wxButton (this, wxID_ANY, _("(None)"), wxDefaultPosition, size, wxBU_LEFT);
42         _sizer->Add (_file, 1, wxEXPAND, 0);
43
44         SetSizerAndFit (_sizer);
45
46         _file->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&FilePickerCtrl::browse_clicked, this));
47 }
48
49 void
50 FilePickerCtrl::SetPath (wxString p)
51 {
52         _path = p;
53
54         if (!_path.IsEmpty ()) {
55                 _file->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf().string()));
56         } else {
57                 _file->SetLabel (_("(None)"));
58         }
59
60         wxCommandEvent ev (wxEVT_COMMAND_FILEPICKER_CHANGED, wxID_ANY);
61         GetEventHandler()->ProcessEvent (ev);
62 }
63
64 wxString
65 FilePickerCtrl::GetPath () const
66 {
67         return _path;
68 }
69
70 void
71 FilePickerCtrl::browse_clicked ()
72 {
73         wxFileDialog* d = new wxFileDialog (this, _prompt, wxEmptyString, wxEmptyString, _wildcard);
74         d->SetPath (_path);
75         if (d->ShowModal () == wxID_OK) {
76                 SetPath (d->GetPath ());
77         }
78         d->Destroy ();
79 }