add plural forms for pt to gtk2_ardour/po/pt.po
[ardour.git] / gtk2_ardour / editor_group_tabs.cc
index 04f61aaeef42d6447dd8ec922d26883c335bf47a..04f88542bafd180d893d229f4b11d0380ce86120 100644 (file)
 
 */
 
+#include "gtkmm2ext/utils.h"
+
 #include "ardour/route_group.h"
-#include "editor_group_tabs.h"
+
+#include "canvas/colors.h"
+
 #include "editor.h"
+#include "editor_group_tabs.h"
+#include "editor_route_groups.h"
+#include "editor_routes.h"
+#include "rgb_macros.h"
 #include "route_time_axis.h"
+#include "ui_config.h"
 #include "utils.h"
-#include "editor_route_groups.h"
+
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace ARDOUR;
+using namespace ARDOUR_UI_UTILS;
 
 EditorGroupTabs::EditorGroupTabs (Editor* e)
-       : GroupTabs (e)
+       : EditorComponent (e)
 {
 
 }
@@ -59,7 +70,9 @@ EditorGroupTabs::compute_tabs () const
 
                        tab.from = y;
                        tab.group = g;
-                       tab.colour = (*i)->color ();
+                       if (g) {
+                               tab.color = group_color (g);
+                       }
                }
 
                y += (*i)->effective_height ();
@@ -76,29 +89,36 @@ EditorGroupTabs::compute_tabs () const
 void
 EditorGroupTabs::draw_tab (cairo_t* cr, Tab const & tab) const
 {
-       double const arc_radius = _width;
+       double const arc_radius = get_width();
+       double r, g, b, a;
 
        if (tab.group && tab.group->is_active()) {
-               cairo_set_source_rgba (cr, tab.colour.get_red_p (), tab.colour.get_green_p (), tab.colour.get_blue_p (), 1);
+               ArdourCanvas::color_to_rgba (tab.color, r, g, b, a);
        } else {
-               cairo_set_source_rgba (cr, 1, 1, 1, 0.2);
+               ArdourCanvas::color_to_rgba (UIConfiguration::instance().color ("inactive group tab"), r, g, b, a);
        }
-       
+
+       a = 1.0;
+
+       cairo_set_source_rgba (cr, r, g, b, a);
        cairo_move_to (cr, 0, tab.from + arc_radius);
-       cairo_arc (cr, _width, tab.from + arc_radius, arc_radius, M_PI, 3 * M_PI / 2);
-       cairo_line_to (cr, _width, tab.to);
-       cairo_arc (cr, _width, tab.to - arc_radius, arc_radius, M_PI / 2, M_PI);
+       cairo_arc (cr, get_width(), tab.from + arc_radius, arc_radius, M_PI, 3 * M_PI / 2);
+       cairo_line_to (cr, get_width(), tab.to);
+       cairo_arc (cr, get_width(), tab.to - arc_radius, arc_radius, M_PI / 2, M_PI);
        cairo_line_to (cr, 0, tab.from + arc_radius);
        cairo_fill (cr);
 
        if (tab.group) {
-               pair<string, double> const f = fit_to_pixels (cr, tab.group->name(), tab.to - tab.from - arc_radius * 2);
-               
+               pair<string, double> const f = Gtkmm2ext::fit_to_pixels (cr, tab.group->name(), tab.to - tab.from - arc_radius * 2);
+
                cairo_text_extents_t ext;
                cairo_text_extents (cr, tab.group->name().c_str(), &ext);
-               
-               cairo_set_source_rgb (cr, 1, 1, 1);
-               cairo_move_to (cr, _width - ext.height / 2, tab.from + (f.second + tab.to - tab.from) / 2);
+
+               ArdourCanvas::Color c = ArdourCanvas::contrasting_text_color (ArdourCanvas::rgba_to_color (r, g, b, a));
+               ArdourCanvas::color_to_rgba (c, r, g, b, a);
+
+               cairo_set_source_rgb (cr, r, g, b);
+               cairo_move_to (cr, get_width() - ext.height / 2, tab.from + (f.second + tab.to - tab.from) / 2);
                cairo_save (cr);
                cairo_rotate (cr, - M_PI / 2);
                cairo_show_text (cr, f.first.c_str());
@@ -117,7 +137,7 @@ EditorGroupTabs::routes_for_tab (Tab const * t) const
 {
        RouteList routes;
        int32_t y = 0;
-       
+
        for (TrackViewList::iterator i = _editor->track_views.begin(); i != _editor->track_views.end(); ++i) {
 
                if ((*i)->marked_for_display() == false) {
@@ -146,14 +166,29 @@ EditorGroupTabs::routes_for_tab (Tab const * t) const
 }
 
 
-Gtk::Menu*
-EditorGroupTabs::get_menu (RouteGroup *g)
+void
+EditorGroupTabs::add_menu_items (Gtk::Menu* m, RouteGroup* g)
 {
-       return _editor->_route_groups->menu (g);
+       using namespace Gtk::Menu_Helpers;
+
+       if (g) {
+               MenuList& items = m->items ();
+               items.push_back (MenuElem (_("Fit to Window"), sigc::bind (sigc::mem_fun (*_editor, &Editor::fit_route_group), g)));
+       }
 }
 
-RouteGroup *
-EditorGroupTabs::new_route_group () const
+RouteList
+EditorGroupTabs::selected_routes () const
 {
-       return _editor->_route_groups->new_route_group ();
+       RouteList rl;
+
+       for (TrackSelection::iterator i = _editor->get_selection().tracks.begin(); i != _editor->get_selection().tracks.end(); ++i) {
+               RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (*i);
+               if (rtv) {
+                       rl.push_back (rtv->route());
+               }
+       }
+
+       return rl;
 }
+