Add missing files.
[ardour.git] / gtk2_ardour / visibility_group.h
1 /*
2     Copyright (C) 2011 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
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 __ardour_visibility_group__
22 #define __ardour_visibility_group__
23
24 #include <gtkmm/liststore.h>
25 #include "pbd/signals.h"
26
27 class XMLNode;
28 class XMLProperty;
29
30 /** A class to manage a group of widgets where the visibility of each
31  *  can be configured by the user.  The class can generate a menu to
32  *  set up visibility, and save and restore visibility state to XML.
33  */
34
35 class VisibilityGroup
36 {
37 public:
38         VisibilityGroup (std::string const &);
39         
40         void add (Gtk::Widget *, std::string const &, std::string const &, bool visible = true);
41         Gtk::Menu* menu ();
42         Gtk::Widget* list_view ();
43         bool button_press_event (GdkEventButton *);
44         void update ();
45         void set_state (XMLNode const &);
46         void set_state (std::string);
47         std::string get_state_name () const;
48         std::string get_state_value () const;
49
50         PBD::Signal0<void> VisibilityChanged;
51         
52 private:
53
54         struct Member {
55                 Gtk::Widget* widget;
56                 std::string  id;
57                 std::string  name;
58                 bool         visible;
59         };
60
61         class ModelColumns : public Gtk::TreeModelColumnRecord {
62         public:
63                 ModelColumns () {
64                         add (_visible);
65                         add (_name);
66                         add (_iterator);
67                 }
68
69                 Gtk::TreeModelColumn<bool> _visible;
70                 Gtk::TreeModelColumn<std::string> _name;
71                 Gtk::TreeModelColumn<std::vector<Member>::iterator> _iterator;
72         };
73
74         void toggle (std::vector<Member>::iterator);
75         void list_view_visible_changed (std::string const &);
76         void update_list_view ();
77
78         std::vector<Member> _members;
79         std::string _xml_property_name;
80         ModelColumns _model_columns;
81         Glib::RefPtr<Gtk::ListStore> _model;
82         bool _ignore_list_view_change;
83 };
84
85 #endif