store some/most of the TreeViewColumn pointers for EditorRoutes in the parent object

This commit is contained in:
Paul Davis 2020-01-13 21:26:12 -07:00
parent 4b9d6ff498
commit 659683c686
2 changed files with 24 additions and 7 deletions

View file

@ -163,6 +163,14 @@ private:
Gtk::TreeModelColumn<bool> active;
};
Gtk::TreeViewColumn* rec_state_column;
Gtk::TreeViewColumn* rec_safe_column;
Gtk::TreeViewColumn* input_active_column;
Gtk::TreeViewColumn* mute_state_column;
Gtk::TreeViewColumn* solo_state_column;
Gtk::TreeViewColumn* solo_safe_state_column;
Gtk::TreeViewColumn* solo_isolate_state_column;
Gtk::ScrolledWindow _scroller;
Gtk::TreeView _display;
Glib::RefPtr<Gtk::ListStore> _model;