First draft of a template management dialog
[ardour.git] / gtk2_ardour / template_dialog.h
1 /*
2     Copyright (C) 2010 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 #ifndef __gtk2_ardour_template_dialog_h__
22 #define __gtk2_ardour_template_dialog_h__
23
24 #include <vector>
25
26 #include <gtkmm/liststore.h>
27 #include <gtkmm/treeview.h>
28
29 #include "ardour_dialog.h"
30
31 class TemplateDialog : public ArdourDialog
32 {
33 public:
34         TemplateDialog ();
35         ~TemplateDialog () {}
36
37 private:
38         void setup_session_templates ();
39
40         void row_selection_changed ();
41         void render_template_names (Gtk::CellRenderer* rnd, const Gtk::TreeModel::iterator& it);
42         void validate_edit (const Glib::ustring& path_string, const Glib::ustring& new_name);
43         void start_edit ();
44
45         bool key_event (GdkEventKey* ev);
46
47         void rename_template (Gtk::TreeModel::iterator& item, const Glib::ustring& new_name);
48         void delete_selected_template ();
49
50         struct SessionTemplateColumns : public Gtk::TreeModel::ColumnRecord {
51                 SessionTemplateColumns () {
52                         add (name);
53                         add (path);
54                 }
55
56                 Gtk::TreeModelColumn<std::string> name;
57                 Gtk::TreeModelColumn<std::string> path;
58         };
59
60         SessionTemplateColumns _session_template_columns;
61         Glib::RefPtr<Gtk::ListStore>  _session_template_model;
62
63         Gtk::TreeView _session_template_treeview;
64         Gtk::CellRendererText _validating_cellrenderer;
65         Gtk::TreeView::Column _validated_column;
66
67         Gtk::Button _remove_button;
68         Gtk::Button _rename_button;
69 };
70
71 #endif /* __gtk2_ardour_template_dialog_h__ */