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         auto d = new RenameTemplateDialog (this);
134         d->set (li.m_text);
135         if (d->ShowModal() == wxID_OK) {
136                 if (!d->get().IsEmpty()) {
137                         Config::instance()->rename_template (wx_to_std (li.m_text), wx_to_std (d->get ()));
138                         _list->SetItem (item, 0, d->get());
139                 } else {
140                         error_dialog (this, _("Template names must not be empty."));
141                 }
142         }
143         d->Destroy ();
144 }
145
146
147 void
148 TemplatesDialog::remove_clicked ()
149 {
150         int i = _list->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
151         if (i == -1) {
152                 return;
153         }
154
155         wxListItem li;
156         li.m_itemId = i;
157         li.m_col = 0;
158         li.m_mask = wxLIST_MASK_TEXT;
159         _list->GetItem (li);
160
161         Config::instance()->delete_template (wx_to_std(li.m_text));
162         _list->DeleteItem (i);
163
164         selection_changed ();
165 }
166
167
168 void
169 TemplatesDialog::resized (wxSizeEvent& ev)
170 {
171         _list->SetColumnWidth (0, GetSize().GetWidth());
172         ev.Skip ();
173 }