Supporters update.
[dcpomatic.git] / src / wx / templates_dialog.cc
1 /*
2     Copyright (C) 2016-2021 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
22 #include "dcpomatic_button.h"
23 #include "rename_template_dialog.h"
24 #include "templates_dialog.h"
25 #include "wx_util.h"
26 #include "lib/config.h"
27 #include <dcp/warnings.h>
28 LIBDCP_DISABLE_WARNINGS
29 #include <wx/wx.h>
30 LIBDCP_ENABLE_WARNINGS
31
32
33 using std::string;
34 using boost::bind;
35 #if BOOST_VERSION >= 106100
36 using namespace boost::placeholders;
37 #endif
38
39
40 TemplatesDialog::TemplatesDialog (wxWindow* parent)
41         : wxDialog (parent, wxID_ANY, _("Templates"))
42 {
43         _sizer = new wxBoxSizer (wxVERTICAL);
44         SetSizer (_sizer);
45
46         auto hs = new wxBoxSizer (wxHORIZONTAL);
47         _list = new wxListCtrl(this, wxID_ANY, wxDefaultPosition, wxSize(400, 300), wxLC_REPORT | wxLC_SINGLE_SEL);
48
49         wxListItem ip;
50         ip.SetId (0);
51         ip.SetText (_("Template"));
52         ip.SetWidth (200);
53         _list->InsertColumn (0, ip);
54
55         hs->Add (_list, 1, wxEXPAND, DCPOMATIC_SIZER_GAP);
56
57         {
58                 auto s = new wxBoxSizer (wxVERTICAL);
59                 _rename = new Button (this, _("Rename..."));
60                 s->Add(_rename, 0, wxTOP | wxBOTTOM | wxEXPAND, 2);
61                 _remove = new Button (this, _("Remove"));
62                 s->Add(_remove, 0, wxTOP | wxBOTTOM | wxEXPAND, 2);
63                 hs->Add (s, 0, wxLEFT, DCPOMATIC_SIZER_X_GAP);
64         }
65
66         _sizer->Add (hs, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
67
68         auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
69         if (buttons) {
70                 _sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
71         }
72
73         _rename->Bind (wxEVT_BUTTON, bind(&TemplatesDialog::rename_clicked, this));
74         _remove->Bind (wxEVT_BUTTON, bind(&TemplatesDialog::remove_clicked, this));
75
76         _list->Bind (wxEVT_LIST_ITEM_SELECTED, bind(&TemplatesDialog::selection_changed, this));
77         _list->Bind (wxEVT_LIST_ITEM_DESELECTED, bind(&TemplatesDialog::selection_changed, this));
78         _list->Bind (wxEVT_SIZE, bind(&TemplatesDialog::resized, this, _1));
79         _config_connection = Config::instance()->Changed.connect (bind(&TemplatesDialog::refresh, this));
80
81         Fit();
82
83         refresh ();
84         selection_changed ();
85 }
86
87
88 void
89 TemplatesDialog::refresh ()
90 {
91         _list->DeleteAllItems ();
92
93         for (auto i: Config::instance()->templates()) {
94                 wxListItem list_item;
95                 int const n = _list->GetItemCount ();
96                 list_item.SetId (n);
97                 _list->InsertItem (list_item);
98                 _list->SetItem (n, 0, std_to_wx (i));
99         }
100 }
101
102
103 void
104 TemplatesDialog::layout ()
105 {
106         _sizer->Layout ();
107 }
108
109
110 void
111 TemplatesDialog::selection_changed ()
112 {
113         int const i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
114         _rename->Enable (i >= 0);
115         _remove->Enable (i >= 0);
116 }
117
118
119 void
120 TemplatesDialog::rename_clicked ()
121 {
122         int item = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
123         if (item == -1) {
124                 return;
125         }
126
127         wxListItem li;
128         li.m_itemId = item;
129         li.m_col = 0;
130         li.m_mask = wxLIST_MASK_TEXT;
131         _list->GetItem (li);
132
133         RenameTemplateDialog dialog(this);
134         dialog.set(li.m_text);
135         if (dialog.ShowModal() != wxID_OK) {
136                 return;
137         }
138
139         if (!dialog.get().IsEmpty()) {
140                 Config::instance()->rename_template(wx_to_std(li.m_text), wx_to_std(dialog.get()));
141                 _list->SetItem(item, 0, dialog.get());
142         } else {
143                 error_dialog (this, _("Template names must not be empty."));
144         }
145 }
146
147
148 void
149 TemplatesDialog::remove_clicked ()
150 {
151         int i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
152         if (i == -1) {
153                 return;
154         }
155
156         wxListItem li;
157         li.m_itemId = i;
158         li.m_col = 0;
159         li.m_mask = wxLIST_MASK_TEXT;
160         _list->GetItem (li);
161
162         Config::instance()->delete_template (wx_to_std(li.m_text));
163         _list->DeleteItem (i);
164
165         selection_changed ();
166 }
167
168
169 void
170 TemplatesDialog::resized (wxSizeEvent& ev)
171 {
172         _list->SetColumnWidth (0, GetSize().GetWidth());
173         ev.Skip ();
174 }