RouteDialog: Move built-in types into template list experiment
[ardour.git] / gtk2_ardour / script_selector.cc
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #include <gtkmm/frame.h>
20 #include <gtkmm/stock.h>
21 #include <gtkmm/table.h>
22
23 #include "gtkmm2ext/utils.h"
24
25 #include "script_selector.h"
26 #include "pbd/i18n.h"
27
28 using namespace std;
29 using namespace Gtk;
30 using namespace ARDOUR;
31
32 ScriptSelector::ScriptSelector (std::string title, LuaScriptInfo::ScriptType type)
33         : ArdourDialog (title)
34         , _type ("", Gtk::ALIGN_START, Gtk::ALIGN_CENTER)
35         , _author ("", Gtk::ALIGN_START, Gtk::ALIGN_CENTER)
36         , _description ("", Gtk::ALIGN_START, Gtk::ALIGN_START)
37         , _scripts (LuaScripting::instance ().scripts (type))
38         , _script_type (type)
39 {
40         Gtk::Label* l;
41
42         Table* t = manage (new Table (3, 2));
43         t->set_spacings (6);
44
45         int ty = 0;
46
47         l = manage (new Label (_("<b>Type:</b>"), Gtk::ALIGN_END, Gtk::ALIGN_CENTER, false));
48         l->set_use_markup ();
49         t->attach (*l, 0, 1, ty, ty+1, FILL|EXPAND, SHRINK);
50         t->attach (_type, 1, 2, ty, ty+1, FILL|EXPAND, SHRINK);
51         ++ty;
52
53         l = manage (new Label (_("<b>Author:</b>"), Gtk::ALIGN_END, Gtk::ALIGN_CENTER, false));
54         l->set_use_markup ();
55         t->attach (*l, 0, 1, ty, ty+1, FILL|EXPAND, SHRINK);
56         t->attach (_author, 1, 2, ty, ty+1, FILL|EXPAND, SHRINK);
57         ++ty;
58
59         Frame* f = manage(new Frame (_("Description")));
60         f->add (_description);
61         t->attach (*f, 0, 2, ty, ty+1);
62         ++ty;
63
64         _description.set_padding (5, 5);
65         _description.set_line_wrap();
66
67         get_vbox()->set_spacing (6);
68         get_vbox()->pack_start (_script_combo, false, false);
69         get_vbox()->pack_start (*t, true, true);
70
71         Button *r = Gtk::manage (new Gtk::Button (Stock::REFRESH));
72         r->signal_clicked().connect (sigc::mem_fun (*this, &ScriptSelector::refresh));
73         get_action_area()->pack_start(*r);
74
75         add_button (Stock::CANCEL, RESPONSE_CANCEL);
76         _add = add_button (Stock::ADD, RESPONSE_ACCEPT);
77         set_default_response (RESPONSE_ACCEPT);
78
79         _add->set_sensitive (false);
80         _combocon = _script_combo.signal_changed().connect (sigc::mem_fun (*this, &ScriptSelector::script_combo_changed));
81
82         setup_list ();
83         show_all ();
84 }
85
86 void
87 ScriptSelector::setup_list ()
88 {
89         _combocon.block();
90         vector<string> script_names;
91         for (LuaScriptList::const_iterator s = _scripts.begin(); s != _scripts.end(); ++s) {
92                 script_names.push_back ((*s)->name);
93         }
94
95         Gtkmm2ext::set_popdown_strings (_script_combo, script_names);
96         if (script_names.size() > 0) {
97                 _script_combo.set_active(0);
98                 script_combo_changed ();
99         }
100         _combocon.unblock();
101 }
102
103 void
104 ScriptSelector::script_combo_changed ()
105 {
106         int i = _script_combo.get_active_row_number();
107         _script = _scripts[i];
108
109         _type.set_text(LuaScriptInfo::type2str (_script->type));
110         _author.set_text (_script->author);
111         _description.set_text (_script->description);
112
113         _add->set_sensitive (Glib::file_test(_script->path, Glib::FILE_TEST_EXISTS));
114 }
115
116 void
117 ScriptSelector::refresh ()
118 {
119         LuaScripting::instance ().refresh ();
120         _script.reset ();
121         _scripts = LuaScripting::instance ().scripts (_script_type);
122         setup_list ();
123 }
124
125 ///////////////////////////////////////////////////////////////////////////////
126
127 SessionScriptManager::SessionScriptManager (std::string title, const std::vector<std::string> &names)
128         : ArdourDialog (title)
129 {
130         assert (names.size() > 0);
131         Gtkmm2ext::set_popdown_strings (_names_combo, names);
132         _names_combo.set_active(0);
133
134         Gtk::Label* l;
135         l = manage (new Label (_("Select Script to unload")));
136
137         get_vbox()->set_spacing (6);
138         get_vbox()->pack_start (*l, false, false);
139         get_vbox()->pack_start (_names_combo, false, false);
140
141         add_button (Stock::CANCEL, RESPONSE_CANCEL);
142         add_button (Stock::REMOVE, RESPONSE_ACCEPT);
143         set_default_response (RESPONSE_CANCEL);
144
145         show_all ();
146 }
147
148 ///////////////////////////////////////////////////////////////////////////////
149
150
151 ScriptParameterDialog::ScriptParameterDialog (std::string title,
152                 const LuaScriptInfoPtr& spi,
153                 const std::vector<std::string> &names,
154                 LuaScriptParamList& lsp)
155         : ArdourDialog (title)
156         , _existing_names (names)
157         , _lsp (lsp)
158 {
159         Gtk::Label* l;
160
161         Table* t = manage (new Table (4, 3));
162         t->set_spacings (6);
163
164         _name_entry.set_text (spi->name);
165         _name_entry.signal_changed().connect (sigc::mem_fun (*this, &ScriptParameterDialog::update_sensitivity));
166
167         int ty = 0;
168
169         l = manage (new Label (_("<b>Name:</b>"), Gtk::ALIGN_END, Gtk::ALIGN_CENTER, false));
170         l->set_use_markup ();
171         t->attach (*l, 0, 1, ty, ty+1);
172         t->attach (_name_entry, 1, 2, ty, ty+1);
173         ++ty;
174
175         if (_lsp.size () > 0) {
176                 l = manage (new Label (_("<b>Instance Parameters</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
177                 l->set_use_markup ();
178                 t->attach (*l, 0, 2, ty, ty+1);
179                 ++ty;
180         }
181
182         for (size_t i = 0; i < _lsp.size (); ++i) {
183                 Entry* e = manage (new Entry());
184                 if (_lsp[i]->optional) {
185                         CheckButton* c = manage (new CheckButton (_lsp[i]->title));
186                         c->set_active (!_lsp[i]->dflt.empty());
187                         c->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &ScriptParameterDialog::active_changed), i, c, e));
188                         t->attach (*c, 0, 1, ty, ty+1);
189                 } else {
190                         Label* l = manage (new Label (_lsp[i]->title, Gtk::ALIGN_LEFT));
191                         t->attach (*l, 0, 1, ty, ty+1);
192                 }
193
194                 e->set_text (_lsp[i]->dflt);
195                 e->set_sensitive (!_lsp[i]->dflt.empty());
196                 e->signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &ScriptParameterDialog::value_changed), i, e));
197
198                 t->attach (*e, 1, 2, ty, ty+1);
199                 ++ty;
200         }
201
202         add_button (Stock::CANCEL, RESPONSE_CANCEL);
203         _add = add_button (Stock::ADD, RESPONSE_ACCEPT);
204         set_default_response (RESPONSE_ACCEPT);
205
206         get_vbox()->pack_start (*t, true, true);
207         show_all ();
208         update_sensitivity ();
209 }
210
211 bool
212 ScriptParameterDialog::need_interation () const
213 {
214         if (_lsp.size () > 0) {
215                 return false;
216         }
217         if (!parameters_ok ()) {
218                 return false;
219         }
220         return true;
221 }
222
223 bool
224 ScriptParameterDialog::parameters_ok () const
225 {
226         std::string n = _name_entry.get_text ();
227         if (n.empty() || std::find (_existing_names.begin(), _existing_names.end(), n) != _existing_names.end()) {
228                 return false;
229         }
230
231         for (size_t i = 0; i < _lsp.size(); ++i) {
232                 if (!_lsp[i]->optional && _lsp[i]->value.empty()) {
233                         return false;
234                 }
235         }
236         return true;
237 }
238
239 void
240 ScriptParameterDialog::update_sensitivity ()
241 {
242         _add->set_sensitive (parameters_ok ());
243 }
244
245 void
246 ScriptParameterDialog::active_changed (int i, Gtk::CheckButton* c, Gtk::Entry* e)
247 {
248         bool en = c->get_active ();
249         _lsp[i]->is_set = en;
250         e->set_sensitive (en);
251 }
252
253 void
254 ScriptParameterDialog::value_changed (int i, Gtk::Entry* e)
255 {
256         _lsp[i]->value = e->get_text ();
257 }