1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/*
Copyright (C) 2025 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
DCP-o-matic is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
DCP-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
#include "locations_preferences_page.h"
#include "wx_util.h"
#include <wx/filepicker.h>
#include <wx/gbsizer.h>
#include <wx/wx.h>
using boost::bind;
#if BOOST_VERSION >= 106100
using namespace boost::placeholders;
#endif
using namespace dcpomatic::preferences;
LocationsPage::LocationsPage(wxSize panel_size, int border)
: Page(panel_size, border)
{
}
wxString
LocationsPage::GetName() const
{
return _("Locations");
}
#ifdef DCPOMATIC_OSX
wxBitmap
LocationsPage::GetLargeIcon() const
{
return wxBitmap(icon_path("locations"), wxBITMAP_TYPE_PNG);
}
#endif
void
LocationsPage::setup()
{
int r = 0;
auto table = new wxGridBagSizer(DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
_panel->GetSizer()->Add(table, 1, wxALL | wxEXPAND, _border);
add_label_to_sizer(table, _panel, _("Content directory"), true, wxGBPosition(r, 0));
_content_directory = new wxDirPickerCtrl(_panel, wxID_ANY, wxEmptyString, char_to_wx(wxDirSelectorPromptStr), wxDefaultPosition, wxSize(300, -1));
table->Add(_content_directory, wxGBPosition(r, 1));
++r;
add_label_to_sizer(table, _panel, _("Playlist directory"), true, wxGBPosition(r, 0));
_playlist_directory = new wxDirPickerCtrl(_panel, wxID_ANY, wxEmptyString, char_to_wx(wxDirSelectorPromptStr), wxDefaultPosition, wxSize(300, -1));
table->Add(_playlist_directory, wxGBPosition(r, 1));
++r;
add_label_to_sizer(table, _panel, _("KDM directory"), true, wxGBPosition(r, 0));
_kdm_directory = new wxDirPickerCtrl(_panel, wxID_ANY, wxEmptyString, char_to_wx(wxDirSelectorPromptStr), wxDefaultPosition, wxSize(300, -1));
table->Add(_kdm_directory, wxGBPosition(r, 1));
++r;
_content_directory->Bind(wxEVT_DIRPICKER_CHANGED, bind(&LocationsPage::content_directory_changed, this));
_playlist_directory->Bind(wxEVT_DIRPICKER_CHANGED, bind(&LocationsPage::playlist_directory_changed, this));
_kdm_directory->Bind(wxEVT_DIRPICKER_CHANGED, bind(&LocationsPage::kdm_directory_changed, this));
}
void
LocationsPage::config_changed()
{
auto config = Config::instance();
if (config->player_content_directory()) {
checked_set(_content_directory, *config->player_content_directory());
}
if (config->player_playlist_directory()) {
checked_set(_playlist_directory, *config->player_playlist_directory());
}
if (config->player_kdm_directory()) {
checked_set(_kdm_directory, *config->player_kdm_directory());
}
}
void
LocationsPage::content_directory_changed()
{
Config::instance()->set_player_content_directory(wx_to_std(_content_directory->GetPath()));
}
void
LocationsPage::playlist_directory_changed()
{
Config::instance()->set_player_playlist_directory(wx_to_std(_playlist_directory->GetPath()));
}
void
LocationsPage::kdm_directory_changed()
{
Config::instance()->set_player_kdm_directory(wx_to_std(_kdm_directory->GetPath()));
}
|