summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_route_groups.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-07-12 23:41:19 +0000
committerCarl Hetherington <carl@carlh.net>2011-07-12 23:41:19 +0000
commit84e10e93d148e0b81d6a84592855753339b5a617 (patch)
treefa7f11460c2b74a905a672aeecec4cfacb7f2522 /gtk2_ardour/editor_route_groups.h
parentc6ed2df2dbc30fcf5f89eabcd04d43cb2f9071a3 (diff)
Re-order route group editor list columns to match up with the order in the route group dialogue, and add a couple of missing checkbuttons to the editor group list.
git-svn-id: svn://localhost/ardour2/branches/3.0@9857 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_route_groups.h')
-rw-r--r--gtk2_ardour/editor_route_groups.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/gtk2_ardour/editor_route_groups.h b/gtk2_ardour/editor_route_groups.h
index b6bfb6c1cf..ea3a7f2b85 100644
--- a/gtk2_ardour/editor_route_groups.h
+++ b/gtk2_ardour/editor_route_groups.h
@@ -38,25 +38,29 @@ private:
struct Columns : public Gtk::TreeModel::ColumnRecord {
Columns () {
- add (is_visible);
+ add (text);
add (gain);
- add (record);
+ add (gain_relative);
add (mute);
add (solo);
+ add (record);
add (select);
add (edits);
- add (text);
+ add (active_state);
+ add (is_visible);
add (routegroup);
}
- Gtk::TreeModelColumn<bool> is_visible;
+ Gtk::TreeModelColumn<std::string> text;
Gtk::TreeModelColumn<bool> gain;
- Gtk::TreeModelColumn<bool> record;
+ Gtk::TreeModelColumn<bool> gain_relative;
Gtk::TreeModelColumn<bool> mute;
Gtk::TreeModelColumn<bool> solo;
+ Gtk::TreeModelColumn<bool> record;
Gtk::TreeModelColumn<bool> select;
Gtk::TreeModelColumn<bool> edits;
- Gtk::TreeModelColumn<std::string> text;
+ Gtk::TreeModelColumn<bool> active_state;
+ Gtk::TreeModelColumn<bool> is_visible;
Gtk::TreeModelColumn<ARDOUR::RouteGroup*> routegroup;
};