Merge edit and mix groups to just being route groups. Add properties to route groups...
[ardour.git] / gtk2_ardour / group_tabs.h
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 "cairo_widget.h"
22
23 namespace ARDOUR {
24         class Session;
25         class RouteGroup;
26 }
27
28 class Editor;
29
30 class GroupTabs : public CairoWidget
31 {
32 public:
33         GroupTabs ();
34
35         void set_session (ARDOUR::Session *);
36
37 private:
38         virtual ARDOUR::RouteGroup* click_to_route_group (GdkEventButton* ev) = 0;
39         virtual void render (cairo_t *) = 0;
40         
41         void on_size_request (Gtk::Requisition *);
42         bool on_button_press_event (GdkEventButton *);
43
44         void edit_group (ARDOUR::RouteGroup *);
45         void remove_group (ARDOUR::RouteGroup *);
46
47         ARDOUR::Session* _session;
48         Gtk::Menu* _menu;
49 };