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;
|
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
class EditorGroupTabs : public GroupTabs, public EditorComponent
|
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 {
|
2011-11-18 10:35:58 -05:00
|
|
|
return get_height();
|
2009-06-21 18:17:17 -04:00
|
|
|
}
|
2010-07-19 17:47:07 -04:00
|
|
|
void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *);
|
|
|
|
PBD::PropertyList default_properties () const;
|
2012-06-25 08:46:13 -04:00
|
|
|
ARDOUR::RouteSortOrderKey order_key () const;
|
2010-07-19 17:47:07 -04:00
|
|
|
ARDOUR::RouteList selected_routes () const;
|
|
|
|
void sync_order_keys ();
|
2009-06-20 09:44:47 -04:00
|
|
|
};
|