1 /*
2  * Copyright (C) 2017-2018 Robin Gareus <robin@gareus.org>
3  * Copyright (C) 2017 Johannes Mueller <github@johannes-mueller.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #include <gtkmm/box.h>
21 #include <gtkmm/frame.h>
22 #include <gtkmm/label.h>
23 #include <gtkmm/stock.h>
24 
25 #include "ardour/session.h"
26 
27 #include "save_template_dialog.h"
28 
29 #include "pbd/i18n.h"
30 
31 using namespace Gtk;
32 using namespace ARDOUR;
33 
SaveTemplateDialog(const std::string & name,const std::string & desc)34 SaveTemplateDialog::SaveTemplateDialog (const std::string& name, const std::string& desc)
35 	: ArdourDialog (_("Save as template"))
36 {
37 	_name_entry.get_buffer()->set_text (name);
38 	_description_editor.get_buffer()->set_text (desc);
39 	_description_editor.set_wrap_mode (Gtk::WRAP_WORD);
40 	_description_editor.set_size_request(400, 300);
41 
42 	HBox* hb = manage (new HBox);
43 	hb->set_spacing (8);
44 	Label* lb = manage (new Label(_("Template name:")));
45 	hb->pack_start (*lb, false, true);
46 	hb->pack_start (_name_entry, true, true);
47 
48 	Frame* fd = manage (new Frame(_("Description:")));
49 	fd->add (_description_editor);
50 
51 	get_vbox()->set_spacing (8);
52 	get_vbox()->pack_start (*fd);
53 	get_vbox()->pack_start (*hb);
54 
55 	add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
56 	add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
57 
58 	show_all_children ();
59 }
60 
61 
62 std::string
get_template_name() const63 SaveTemplateDialog::get_template_name () const
64 {
65 	return _name_entry.get_buffer()->get_text();
66 }
67 
68 std::string
get_description() const69 SaveTemplateDialog::get_description () const
70 {
71 	std::string desc_txt = _description_editor.get_buffer()->get_text ();
72 	std::string::reverse_iterator wss = desc_txt.rbegin();
73 	while (wss != desc_txt.rend() && isspace (*wss)) {
74 		desc_txt.erase (--(wss++).base());
75 	}
76 
77 	return desc_txt;
78 }
79