boost filesystem hack.
[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 <boost/filesystem.hpp>
23 #include "dir_picker_ctrl.h"
24 #include "wx_util.h"
25
26 using namespace std;
27 using namespace boost;
28
29 DirPickerCtrl::DirPickerCtrl (wxWindow* parent)
30         : wxPanel (parent)
31         , _parent (parent)
32 {
33         _sizer = new wxBoxSizer (wxHORIZONTAL);
34
35         _folder = new wxStaticText (this, wxID_ANY, wxT ("This is the length of the folder label"));
36         _sizer->Add (_folder, 1, wxEXPAND | wxALL, 6);
37         _browse = new wxButton (this, wxID_ANY, _("Browse..."));
38         _sizer->Add (_browse, 0);
39
40         SetSizerAndFit (_sizer);
41
42         _browse->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (DirPickerCtrl::browse_clicked), 0, this);
43
44         /* Do this after the fit so that our folder label stays long */
45         SetPath (wxStandardPaths::Get().GetDocumentsDir());
46 }
47
48 void
49 DirPickerCtrl::SetPath (wxString p)
50 {
51         _path = p;
52                 
53         if (_path == wxStandardPaths::Get().GetDocumentsDir()) {
54                 _folder->SetLabel (_("My Documents"));
55         } else {
56 #if BOOST_FILESYSTEM_VERSION == 3               
57                 _folder->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf().string()));
58 #else
59                 _folder->SetLabel (std_to_wx (filesystem::path (wx_to_std (_path)).leaf()));
60 #endif          
61         }
62 }
63
64 wxString
65 DirPickerCtrl::GetPath () const
66 {
67         return _path;
68 }
69
70 void
71 DirPickerCtrl::browse_clicked (wxCommandEvent &)
72 {
73         wxDirDialog* d = new wxDirDialog (this);
74         d->ShowModal ();
75         SetPath (d->GetPath ());
76         d->Destroy ();
77 }