fix commentary
[ardour.git] / gtk2_ardour / save_template_dialog.cc
1 /*
2     Copyright (C) 2017 Paul Davis
3     Author: Johannes Mueller
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
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <gtkmm/box.h>
22 #include <gtkmm/frame.h>
23 #include <gtkmm/label.h>
24 #include <gtkmm/stock.h>
25
26 #include "ardour/session.h"
27
28 #include "save_template_dialog.h"
29
30 #include "pbd/i18n.h"
31
32 using namespace Gtk;
33 using namespace ARDOUR;
34
35 SaveTemplateDialog::SaveTemplateDialog (const std::string& name, const std::string& desc)
36         : ArdourDialog (_("Save as template"))
37 {
38         _name_entry.get_buffer()->set_text (name);
39         _description_editor.get_buffer()->set_text (desc);
40         _description_editor.set_wrap_mode (Gtk::WRAP_WORD);
41         _description_editor.set_size_request(400, 300);
42
43         HBox* hb = manage (new HBox);
44         hb->set_spacing (8);
45         Label* lb = manage (new Label(_("Template name:")));
46         hb->pack_start (*lb, false, true);
47         hb->pack_start (_name_entry, true, true);
48
49         Frame* fd = manage (new Frame(_("Description:")));
50         fd->add (_description_editor);
51
52         get_vbox()->set_spacing (8);
53         get_vbox()->pack_start (*fd);
54         get_vbox()->pack_start (*hb);
55
56         add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
57         add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_ACCEPT);
58
59         show_all_children ();
60 }
61
62
63 std::string
64 SaveTemplateDialog::get_template_name () const
65 {
66         return _name_entry.get_buffer()->get_text();
67 }
68
69 std::string
70 SaveTemplateDialog::get_description () const
71 {
72         std::string desc_txt = _description_editor.get_buffer()->get_text ();
73         std::string::reverse_iterator wss = desc_txt.rbegin();
74         while (wss != desc_txt.rend() && isspace (*wss)) {
75                 desc_txt.erase (--(wss++).base());
76         }
77
78         return desc_txt;
79 }