Merge 1.0 in.
[dcpomatic.git] / src / wx / dir_picker_ctrl.cc
1 /*
2     Copyright (C) 2012 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 <wx/wx.h>
21 #include <wx/stdpaths.h>
22 #include <wx/filepicker.h>
23 #include <boost/filesystem.hpp>
24 #include "dir_picker_ctrl.h"
25 #include "wx_util.h"
26
27 using namespace std;
28 using namespace boost;
29
30 DirPickerCtrl::DirPickerCtrl (wxWindow* parent)
31         : wxPanel (parent)
32         , _parent (parent)
33 {
34         _sizer = new wxBoxSizer (wxHORIZONTAL);
35
36         _folder = new wxStaticText (this, wxID_ANY, wxT ("This is the length of the folder label"));
37         _sizer->Add (_folder, 1, wxEXPAND | wxALL, 6);
38         _browse = new wxButton (this, wxID_ANY, _("Browse..."));
39         _sizer->Add (_browse, 0);
40
41         SetSizerAndFit (_sizer);
42
43         _browse->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DirPickerCtrl::browse_clicked, this));
44 }
45
46 void
47 DirPickerCtrl::SetPath (wxString p)
48 {
49         _path = p;
50                 
51         if (_path == wxStandardPaths::Get().GetDocumentsDir()) {
52                 _folder->SetLabel (_("My Documents"));
53         } else {
54                 _folder->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf().string()));
55         }
56
57         wxCommandEvent ev (wxEVT_COMMAND_DIRPICKER_CHANGED, wxID_ANY);
58         GetEventHandler()->ProcessEvent (ev);
59 }
60
61 wxString
62 DirPickerCtrl::GetPath () const
63 {
64         return _path;
65 }
66
67 void
68 DirPickerCtrl::browse_clicked ()
69 {
70         wxDirDialog* d = new wxDirDialog (this);
71         if (d->ShowModal () == wxID_OK) {
72                 SetPath (d->GetPath ());
73         }
74         d->Destroy ();
75 }