if user has edited name entry in add route dialog, type changes should not reset it.
[ardour.git] / gtk2_ardour / add_route_dialog.h
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (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., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk_ardour_add_route_dialog_h__
21 #define __gtk_ardour_add_route_dialog_h__
22
23 #include <string>
24
25 #include <gtkmm/entry.h>
26 #include <gtkmm/dialog.h>
27 #include <gtkmm/frame.h>
28 #include <gtkmm/radiobutton.h>
29 #include <gtkmm/adjustment.h>
30 #include <gtkmm/spinbutton.h>
31 #include <gtkmm/button.h>
32 #include <gtkmm/combobox.h>
33 #include <gtkmm/comboboxtext.h>
34 #include <gtkmm/treemodel.h>
35 #include <gtkmm/liststore.h>
36
37 #include "ardour/plugin.h"
38 #include "ardour/types.h"
39 #include "ardour/template_utils.h"
40
41 #include "ardour_dialog.h"
42 #include "instrument_selector.h"
43 #include "route_dialogs.h"
44
45 class Editor;
46 class RouteGroupDialog;
47
48 class AddRouteDialog : public ArdourDialog
49 {
50 public:
51         AddRouteDialog ();
52         ~AddRouteDialog ();
53
54         enum ResponseId {
55                 Add,
56                 AddAndClose,
57         };
58
59         enum TypeWanted {
60                 AudioTrack,
61                 MidiTrack,
62                 MixedTrack,
63                 AudioBus,
64                 MidiBus,
65                 VCAMaster,
66         };
67         TypeWanted type_wanted() const;
68
69         ARDOUR::ChanCount channels ();
70         int count ();
71
72         std::string name_template () const;
73         bool name_template_is_default () const;
74         std::string track_template ();
75         ARDOUR::PluginInfoPtr requested_instrument ();
76
77         ARDOUR::TrackMode mode();
78         ARDOUR::RouteGroup* route_group ();
79
80         RouteDialogs::InsertAt insert_at();
81         bool use_strict_io();
82
83 private:
84         Gtk::Entry name_template_entry;
85         Gtk::ComboBoxText track_bus_combo;
86         Gtk::Adjustment routes_adjustment;
87         Gtk::SpinButton routes_spinner;
88         Gtk::ComboBoxText channel_combo;
89         Gtk::Label configuration_label;
90         Gtk::Label mode_label;
91         Gtk::Label instrument_label;
92         Gtk::ComboBoxText mode_combo;
93         Gtk::ComboBoxText route_group_combo;
94         InstrumentSelector instrument_combo;
95         Gtk::ComboBoxText insert_at_combo;
96         Gtk::ComboBoxText strict_io_combo;
97
98         std::vector<ARDOUR::TemplateInfo> route_templates;
99
100         void track_type_chosen ();
101         void refill_channel_setups ();
102         void refill_route_groups ();
103         void refill_track_modes ();
104         void add_route_group (ARDOUR::RouteGroup *);
105         void group_changed ();
106         void channel_combo_changed ();
107         bool channel_separator (const Glib::RefPtr<Gtk::TreeModel> &m, const Gtk::TreeModel::iterator &i);
108         bool route_separator (const Glib::RefPtr<Gtk::TreeModel> &m, const Gtk::TreeModel::iterator &i);
109         void maybe_update_name_template_entry ();
110
111         void reset_template_option_visibility ();
112         void new_group_dialog_finished (int, RouteGroupDialog*);
113         void on_show ();
114         void on_response (int);
115
116         struct ChannelSetup {
117                 std::string name;
118                 std::string template_path;
119                 uint32_t    channels;
120         };
121
122         typedef std::vector<ChannelSetup> ChannelSetups;
123         ChannelSetups channel_setups;
124
125         static std::vector<std::string> channel_combo_strings;
126         static std::vector<std::string> bus_mode_strings;
127
128         bool name_edited_by_user;
129         void name_template_entry_insertion (Glib::ustring const &,int*);
130         void name_template_entry_deletion (int, int);
131 };
132
133 #endif /* __gtk_ardour_add_route_dialog_h__ */