X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fgroup_tabs.h;h=c780b1777daf87fd0f75272c15fdc2039b59ef8e;hb=7496a856c7785888327146c9934e5db23ba5f155;hp=0d83a553c177ae2a29337d62c2756034e43bd765;hpb=5399425f534e2d96d07cf29f427bfa0f39d904b7;p=ardour.git diff --git a/gtk2_ardour/group_tabs.h b/gtk2_ardour/group_tabs.h index 0d83a553c1..c780b1777d 100644 --- a/gtk2_ardour/group_tabs.h +++ b/gtk2_ardour/group_tabs.h @@ -1,21 +1,26 @@ /* - Copyright (C) 2009 Paul Davis - - 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. + * Copyright (C) 2009-2011 Carl Hetherington + * Copyright (C) 2009-2011 David Robillard + * Copyright (C) 2009-2017 Paul Davis + * Copyright (C) 2014-2017 Robin Gareus + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ -*/ +#ifndef __gtk_ardour_group_tabs_h__ +#define __gtk_ardour_group_tabs_h__ #include #include "editor_component.h" @@ -27,6 +32,7 @@ namespace ARDOUR { } class Editor; +class RouteGroupDialog; /** Parent class for tabs which represent route groups as colored tabs; * Currently used on the left-hand side of the editor and at the top of the mixer. @@ -44,15 +50,15 @@ public: void set_session (ARDOUR::Session *); /** @param g Route group, or 0. - * @return Menu to be popped up on right-click over the given route group. + * @return Menu to be popped up on right-click over the given route group. */ - Gtk::Menu* get_menu (ARDOUR::RouteGroup* g); + Gtk::Menu* get_menu (ARDOUR::RouteGroup* g, bool tabArea = false); - void run_new_group_dialog (ARDOUR::RouteList const &); + void run_new_group_dialog (ARDOUR::RouteList const *, bool with_master); - static void set_group_color (ARDOUR::RouteGroup *, Gdk::Color); + static void set_group_color (ARDOUR::RouteGroup *, uint32_t); static std::string group_gui_id (ARDOUR::RouteGroup *); - static Gdk::Color group_color (ARDOUR::RouteGroup *); + static uint32_t group_color (ARDOUR::RouteGroup *); protected: @@ -61,13 +67,13 @@ protected: double from; double to; - Gdk::Color color; ///< color + uint32_t color; ///< color ARDOUR::RouteGroup* group; ///< route group }; private: - static void emit_gui_changed_for_members (ARDOUR::RouteGroup *); - + static void emit_gui_changed_for_members (boost::shared_ptr); + /** Compute all the tabs for this widget. * @return Tabs. */ @@ -77,7 +83,7 @@ private: * @param cr Cairo context. * @param t Tab. */ - virtual void draw_tab (cairo_t* cr, Tab const & t) const = 0; + virtual void draw_tab (cairo_t* cr, Tab const & t) = 0; /** @param x x coordinate * @param y y coordinate @@ -91,24 +97,27 @@ private: virtual double extent () const = 0; virtual void add_menu_items (Gtk::Menu *, ARDOUR::RouteGroup *) {} - virtual PBD::PropertyList default_properties () 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 add_new_from_items (Gtk::Menu_Helpers::MenuList&); + + void new_from_selection (bool with_master); + void new_from_rec_enabled (bool with_master); + void new_from_soloed (bool with_master); + + void new_group_dialog_finished (int, RouteGroupDialog*, ARDOUR::RouteList const *, bool with_master) const; + void edit_group_dialog_finished (int, RouteGroupDialog*) const; + void collect (ARDOUR::RouteGroup *); void set_activation (ARDOUR::RouteGroup *, bool); void edit_group (ARDOUR::RouteGroup *); void subgroup (ARDOUR::RouteGroup *, bool, ARDOUR::Placement); - void un_subgroup (ARDOUR::RouteGroup *); + void un_subgroup (ARDOUR::RouteGroup *); void activate_all (); void disable_all (); void remove_group (ARDOUR::RouteGroup *); - void render (cairo_t *, cairo_rectangle_t*); + void render (Cairo::RefPtr const&, cairo_rectangle_t*); void on_size_request (Gtk::Requisition *); bool on_button_press_event (GdkEventButton *); bool on_motion_notify_event (GdkEventMotion *); @@ -120,6 +129,16 @@ private: void route_added_to_route_group (ARDOUR::RouteGroup *, boost::weak_ptr); void route_removed_from_route_group (ARDOUR::RouteGroup *, boost::weak_ptr); + void assign_group_to_master (uint32_t which, ARDOUR::RouteGroup*, bool rename_master) const; + void unassign_group_to_master (uint32_t which, ARDOUR::RouteGroup*) const; + void assign_selection_to_master (uint32_t which); + void assign_recenabled_to_master (uint32_t which); + void assign_soloed_to_master (uint32_t which); + void assign_some_to_master (uint32_t which, ARDOUR::RouteList, std::string vcaname = ""); + + ARDOUR::RouteList get_soloed (); + ARDOUR::RouteList get_rec_enabled (); + Gtk::Menu* _menu; std::list _tabs; ///< current list of tabs Tab* _dragging; ///< tab being dragged, or 0 @@ -137,3 +156,5 @@ private: /** colors that have been used for new route group tabs */ static std::list _used_colors; }; + +#endif // __gtk_ardour_group_tabs_h__