2009-06-20 09:47:10 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2009 Paul Davis
|
2009-06-20 09:47:10 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-06-21 15:59:56 -04:00
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
#include "group_tabs.h"
|
2009-06-20 09:44:47 -04:00
|
|
|
|
|
|
|
class Editor;
|
|
|
|
|
2009-06-21 15:59:56 -04:00
|
|
|
class EditorGroupTabs : public GroupTabs
|
2009-06-20 09:44:47 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EditorGroupTabs (Editor *);
|
|
|
|
|
|
|
|
private:
|
2009-06-21 18:17:17 -04:00
|
|
|
std::list<Tab> compute_tabs () const;
|
|
|
|
void draw_tab (cairo_t *, Tab const &) const;
|
|
|
|
double primary_coordinate (double, double) const;
|
2009-12-01 10:32:42 -05:00
|
|
|
ARDOUR::RouteList routes_for_tab (Tab const *) const;
|
2009-06-21 18:17:17 -04:00
|
|
|
double extent () const {
|
|
|
|
return _height;
|
|
|
|
}
|
2009-06-21 21:25:21 -04:00
|
|
|
Gtk::Menu* get_menu (ARDOUR::RouteGroup* g);
|
2009-12-01 10:32:42 -05:00
|
|
|
ARDOUR::RouteGroup* new_route_group () const;
|
2009-06-20 09:44:47 -04:00
|
|
|
};
|