2009-06-21 15:59:56 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2009 Paul Davis
|
2009-06-21 15:59:56 -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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtkmm/menu.h>
|
2009-07-03 14:37:15 -04:00
|
|
|
#include "editor_component.h"
|
2009-06-21 15:59:56 -04:00
|
|
|
#include "cairo_widget.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
class RouteGroup;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Editor;
|
|
|
|
|
2009-06-22 11:47:48 -04:00
|
|
|
/** Parent class for tabs which represent route groups as coloured tabs;
|
|
|
|
* Currently used on the left-hand side of the editor and at the top of the mixer.
|
|
|
|
*/
|
2010-07-19 17:47:07 -04:00
|
|
|
class GroupTabs : public CairoWidget, public ARDOUR::SessionHandlePtr
|
2009-06-21 15:59:56 -04:00
|
|
|
{
|
|
|
|
public:
|
2010-07-19 17:47:07 -04:00
|
|
|
GroupTabs ();
|
|
|
|
virtual ~GroupTabs ();
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
void set_session (ARDOUR::Session *);
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
/** @param g Route group, or 0.
|
|
|
|
* @return Menu to be popped up on right-click over the given route group.
|
|
|
|
*/
|
|
|
|
Gtk::Menu* get_menu (ARDOUR::RouteGroup* g);
|
|
|
|
|
|
|
|
void run_new_group_dialog (ARDOUR::RouteList const &);
|
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
struct Tab {
|
2009-12-01 10:32:42 -05:00
|
|
|
Tab () : group (0) {}
|
|
|
|
|
|
|
|
double from;
|
|
|
|
double to;
|
2009-06-22 11:47:48 -04:00
|
|
|
Gdk::Color colour; ///< colour
|
|
|
|
ARDOUR::RouteGroup* group; ///< route group
|
2009-06-21 18:17:17 -04:00
|
|
|
};
|
|
|
|
|
2009-06-21 15:59:56 -04:00
|
|
|
private:
|
2009-06-22 11:47:48 -04:00
|
|
|
/** Compute all the tabs for this widget.
|
|
|
|
* @return Tabs.
|
|
|
|
*/
|
2009-06-21 18:17:17 -04:00
|
|
|
virtual std::list<Tab> compute_tabs () const = 0;
|
2009-06-22 11:47:48 -04:00
|
|
|
|
|
|
|
/** Draw a tab.
|
|
|
|
* @param cr Cairo context.
|
|
|
|
* @param t Tab.
|
|
|
|
*/
|
|
|
|
virtual void draw_tab (cairo_t* cr, Tab const & t) const = 0;
|
|
|
|
|
|
|
|
/** @param x x coordinate
|
|
|
|
* @param y y coordinate
|
|
|
|
* @return x or y, depending on which is the primary coordinate for this widget.
|
|
|
|
*/
|
2009-06-21 18:17:17 -04:00
|
|
|
virtual double primary_coordinate (double, double) const = 0;
|
2009-06-22 11:47:48 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
virtual ARDOUR::RouteList routes_for_tab (Tab const * t) const = 0;
|
2009-06-22 11:47:48 -04:00
|
|
|
|
|
|
|
/** @return Size of the widget along the primary axis */
|
2009-06-21 18:17:17 -04:00
|
|
|
virtual double extent () const = 0;
|
2009-06-22 11:47:48 -04:00
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
virtual void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *) {}
|
|
|
|
virtual PBD::PropertyList default_properties () const = 0;
|
|
|
|
virtual std::string order_key () const = 0;
|
|
|
|
virtual ARDOUR::RouteList selected_routes () const = 0;
|
|
|
|
virtual void sync_order_keys () = 0;
|
|
|
|
|
|
|
|
void new_from_selection ();
|
|
|
|
void new_from_rec_enabled ();
|
|
|
|
void new_from_soloed ();
|
|
|
|
ARDOUR::RouteGroup* create_and_add_group () const;
|
|
|
|
void collect (ARDOUR::RouteGroup *);
|
|
|
|
void set_activation (ARDOUR::RouteGroup *, bool);
|
|
|
|
void edit_group (ARDOUR::RouteGroup *);
|
2011-01-03 21:36:29 -05:00
|
|
|
void subgroup (ARDOUR::RouteGroup *, bool, ARDOUR::Placement);
|
2010-07-19 17:47:07 -04:00
|
|
|
void activate_all ();
|
|
|
|
void disable_all ();
|
2010-07-19 19:26:40 -04:00
|
|
|
void remove_group (ARDOUR::RouteGroup *);
|
2010-07-19 17:47:07 -04:00
|
|
|
|
2009-06-21 18:17:17 -04:00
|
|
|
void render (cairo_t *);
|
2009-06-21 15:59:56 -04:00
|
|
|
void on_size_request (Gtk::Requisition *);
|
|
|
|
bool on_button_press_event (GdkEventButton *);
|
2009-06-21 18:17:17 -04:00
|
|
|
bool on_motion_notify_event (GdkEventMotion *);
|
|
|
|
bool on_button_release_event (GdkEventButton *);
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2009-12-01 10:32:42 -05:00
|
|
|
Tab * click_to_tab (double, std::list<Tab>::iterator *, std::list<Tab>::iterator *);
|
2009-06-21 15:59:56 -04:00
|
|
|
|
2010-07-19 17:47:07 -04:00
|
|
|
Gtk::Menu* _menu;
|
2009-06-22 11:47:48 -04:00
|
|
|
std::list<Tab> _tabs; ///< current list of tabs
|
|
|
|
Tab* _dragging; ///< tab being dragged, or 0
|
2009-12-01 10:32:42 -05:00
|
|
|
bool _dragging_new_tab; ///< true if we're dragging a new tab
|
2009-06-22 11:47:48 -04:00
|
|
|
bool _drag_moved; ///< true if there has been movement during any current drag
|
2009-12-01 10:32:42 -05:00
|
|
|
double _drag_fixed; ///< the position of the fixed end of the tab being dragged
|
|
|
|
double _drag_moving; ///< the position of the moving end of the tab being dragged
|
|
|
|
double _drag_offset; ///< offset from the mouse to the end of the tab being dragged
|
|
|
|
double _drag_min; ///< minimum position for drag
|
|
|
|
double _drag_max; ///< maximum position for drag
|
|
|
|
double _drag_first; ///< first mouse pointer position during drag
|
2009-06-21 15:59:56 -04:00
|
|
|
};
|