assert() to help find some possible causes of #2991. Fix some confusion with GTK...
[ardour.git] / gtk2_ardour / route_group_menu.cc
1 /*
2     Copyright (C) 2009 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 #include <gtkmm/menu.h>
21 #include <gtkmm/stock.h>
22 #include "ardour/session.h"
23 #include "ardour/route_group.h"
24 #include "route_group_menu.h"
25 #include "route_group_dialog.h"
26 #include "i18n.h"
27
28 using namespace Gtk;
29 using namespace ARDOUR;
30
31 RouteGroupMenu::RouteGroupMenu (Session* s, RouteGroup::Property p)
32         : SessionHandlePtr (s)
33         , _default_properties (p)
34         , _inhibit_group_selected (false)
35         , _selected_route_group (0)
36 {
37         rebuild (0);
38 }
39
40 void
41 RouteGroupMenu::rebuild (RouteGroup* curr)
42 {
43         using namespace Menu_Helpers;
44
45         _selected_route_group = curr;
46
47         _inhibit_group_selected = true;
48
49         items().clear ();
50
51         items().push_back (MenuElem (_("New group..."), sigc::mem_fun (*this, &RouteGroupMenu::new_group)));
52         items().push_back (SeparatorElem ());
53
54         RadioMenuItem::Group group;
55         items().push_back (RadioMenuElem (group, _("No group"), sigc::bind (sigc::mem_fun (*this, &RouteGroupMenu::set_group), (RouteGroup *) 0)));
56
57         if (curr == 0) {
58                 static_cast<RadioMenuItem*> (&items().back())->set_active ();
59         }
60
61         if (_session) {
62                 _session->foreach_route_group (sigc::bind (sigc::mem_fun (*this, &RouteGroupMenu::add_item), curr, &group));
63         }
64
65         _inhibit_group_selected = false;
66 }
67
68 void
69 RouteGroupMenu::add_item (RouteGroup* rg, RouteGroup* curr, RadioMenuItem::Group* group)
70 {
71         using namespace Menu_Helpers;
72
73         items().push_back (RadioMenuElem (*group, rg->name(), sigc::bind (sigc::mem_fun(*this, &RouteGroupMenu::set_group), rg)));
74
75         if (rg == curr) {
76                 static_cast<RadioMenuItem*> (&items().back())->set_active ();
77         }
78 }
79
80 void
81 RouteGroupMenu::set_group (RouteGroup* g)
82 {
83         if (g == _selected_route_group) {
84                 /* cut off the signal_toggled that GTK emits for an option that is being un-selected
85                    when a new option is being selected instead
86                 */
87                 return;
88         }
89         
90         if (!_inhibit_group_selected) {
91                 GroupSelected (g);
92         }
93
94         _selected_route_group = g;
95 }
96
97 void
98 RouteGroupMenu::new_group ()
99 {
100         if (!_session) {
101                 return;
102         }
103
104         RouteGroup* g = new RouteGroup (*_session, "", RouteGroup::Active, _default_properties);
105
106         RouteGroupDialog d (g, Gtk::Stock::NEW);
107         int const r = d.do_run ();
108
109         if (r == Gtk::RESPONSE_OK) {
110                 _session->add_route_group (g);
111                 set_group (g);
112         } else {
113                 delete g;
114         }
115 }