do not sort MIDI regions by layer since they are all transparent
[ardour.git] / gtk2_ardour / editor_summary.cc
index a56a97e0dd5cdeaa34495c4c83ecbd8876247e47..6740ef92eb7385d21a8c138c496784dbacec8706 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2009 Paul Davis 
+    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
@@ -35,91 +35,56 @@ using namespace ARDOUR;
  *  @param e Editor to represent.
  */
 EditorSummary::EditorSummary (Editor* e)
-       : _editor (e),
-         _session (0),
-         _pixmap (0),
-         _regions_dirty (true),
-         _width (512),
-         _height (32),
+       : EditorComponent (e),
          _x_scale (1),
          _y_scale (1),
          _last_playhead (-1),
          _move_dragging (false),
          _moved (false),
          _zoom_dragging (false)
-         
+
 {
-       
+
 }
 
-/** Set the session.
+/** Connect to a session.
  *  @param s Session.
  */
 void
-EditorSummary::set_session (Session* s)
+EditorSummary::connect_to_session (Session* s)
 {
-       _session = s;
+       EditorComponent::connect_to_session (s);
 
        Region::RegionPropertyChanged.connect (sigc::hide (mem_fun (*this, &EditorSummary::set_dirty)));
 
-       _session->RegionRemoved.connect (sigc::hide (mem_fun (*this, &EditorSummary::set_dirty)));
-       _session->EndTimeChanged.connect (mem_fun (*this, &EditorSummary::set_dirty));
-       _session->StartTimeChanged.connect (mem_fun (*this, &EditorSummary::set_dirty));
+       _session_connections.push_back (_session->RegionRemoved.connect (sigc::hide (mem_fun (*this, &EditorSummary::set_dirty))));
+       _session_connections.push_back (_session->EndTimeChanged.connect (mem_fun (*this, &EditorSummary::set_dirty)));
+       _session_connections.push_back (_session->StartTimeChanged.connect (mem_fun (*this, &EditorSummary::set_dirty)));
        _editor->playhead_cursor->PositionChanged.connect (mem_fun (*this, &EditorSummary::playhead_position_changed));
 
        set_dirty ();
 }
 
-/** Destroy */
-EditorSummary::~EditorSummary ()
-{
-       if (_pixmap) {
-               gdk_pixmap_unref (_pixmap);
-       }
-}
-
 /** Handle an expose event.
  *  @param event Event from GTK.
  */
 bool
 EditorSummary::on_expose_event (GdkEventExpose* event)
 {
-       /* Render the regions pixmap */
-       
-       Gdk::Rectangle const exposure (
-               event->area.x, event->area.y, event->area.width, event->area.height
-               );
-
-       Gdk::Rectangle r = exposure;
-       Gdk::Rectangle content (0, 0, _width, _height);
-       bool intersects;
-       r.intersect (content, intersects);
-       
-       if (intersects) {
-
-               GdkPixmap* p = get_pixmap (get_window()->gobj ());
-
-               gdk_draw_drawable (
-                       get_window()->gobj(),
-                       get_style()->get_fg_gc (Gtk::STATE_NORMAL)->gobj(),
-                       p,
-                       r.get_x(),
-                       r.get_y(),
-                       r.get_x(),
-                       r.get_y(),
-                       r.get_width(),
-                       r.get_height()
-                       );
+       CairoWidget::on_expose_event (event);
+
+       if (_session == 0) {
+               return false;
        }
 
        cairo_t* cr = gdk_cairo_create (get_window()->gobj());
 
        /* Render the view rectangle */
-       
+
        pair<double, double> x;
        pair<double, double> y;
        get_editor (&x, &y);
-       
+
        cairo_move_to (cr, x.first, y.first);
        cairo_line_to (cr, x.second, y.first);
        cairo_line_to (cr, x.second, y.second);
@@ -144,31 +109,8 @@ EditorSummary::on_expose_event (GdkEventExpose* event)
        _last_playhead = p;
 
        cairo_destroy (cr);
-       
-       return true;
-}
-
-/** @param drawable GDK drawable.
- *  @return pixmap for the regions.
- */
-GdkPixmap *
-EditorSummary::get_pixmap (GdkDrawable* drawable)
-{
-       if (_regions_dirty) {
-
-               if (_pixmap) {
-                       gdk_pixmap_unref (_pixmap);
-               }
-               _pixmap = gdk_pixmap_new (drawable, _width, _height, -1);
-
-               cairo_t* cr = gdk_cairo_create (_pixmap);
-               render (cr);
-               cairo_destroy (cr);
 
-               _regions_dirty = false;
-       }
-
-       return _pixmap;
+       return true;
 }
 
 /** Render the required regions to a cairo context.
@@ -177,18 +119,18 @@ EditorSummary::get_pixmap (GdkDrawable* drawable)
 void
 EditorSummary::render (cairo_t* cr)
 {
-       if (_session == 0) {
-               return;
-       }
-
        /* background */
-       
+
        cairo_set_source_rgb (cr, 0, 0, 0);
        cairo_rectangle (cr, 0, 0, _width, _height);
        cairo_fill (cr);
 
+       if (_session == 0) {
+               return;
+       }
+
        /* compute total height of all tracks */
-       
+
        int h = 0;
        int max_height = 0;
        for (PublicEditor::TrackViewList::const_iterator i = _editor->track_views.begin(); i != _editor->track_views.end(); ++i) {
@@ -206,6 +148,7 @@ EditorSummary::render (cairo_t* cr)
 
        if (max_height * _y_scale > tallest_region_pixels) {
                _y_scale = static_cast<double> (tallest_region_pixels) / max_height;
+
        }
 
        /* render regions */
@@ -241,22 +184,12 @@ EditorSummary::render_region (RegionView* r, cairo_t* cr, nframes_t start, doubl
 {
        uint32_t const c = r->get_fill_color ();
        cairo_set_source_rgb (cr, UINT_RGBA_R (c) / 255.0, UINT_RGBA_G (c) / 255.0, UINT_RGBA_B (c) / 255.0);
-                       
+
        cairo_move_to (cr, (r->region()->position() - start) * _x_scale, y);
        cairo_line_to (cr, ((r->region()->position() - start + r->region()->length())) * _x_scale, y);
        cairo_stroke (cr);
 }
 
-/** Set the summary so that the whole thing will be re-rendered next time it is required */
-void
-EditorSummary::set_dirty ()
-{
-       ENSURE_GUI_THREAD (mem_fun (*this, &EditorSummary::set_dirty));
-
-       _regions_dirty = true;
-       queue_draw ();
-}
-
 /** Set the summary so that just the overlays (viewbox, playhead etc.) will be re-rendered */
 void
 EditorSummary::set_overlays_dirty ()
@@ -273,22 +206,9 @@ EditorSummary::on_size_request (Gtk::Requisition *req)
 {
        /* Use a dummy, small width and the actual height that we want */
        req->width = 64;
-       req->height = _height;
+       req->height = 32;
 }
 
-/** Handle a size allocation.
- *  @param alloc GTK allocation.
- */
-void
-EditorSummary::on_size_allocate (Gtk::Allocation& alloc)
-{
-       Gtk::EventBox::on_size_allocate (alloc);
-
-       _width = alloc.get_width ();
-       _height = alloc.get_height ();
-
-       set_dirty ();
-}
 
 void
 EditorSummary::centre_on_click (GdkEventButton* ev)
@@ -299,7 +219,7 @@ EditorSummary::centre_on_click (GdkEventButton* ev)
 
        double const w = xr.second - xr.first;
        double const h = yr.second - yr.first;
-       
+
        xr.first = ev->x - w / 2;
        xr.second = ev->x + w / 2;
        yr.first = ev->y - h / 2;
@@ -332,63 +252,58 @@ EditorSummary::on_button_press_event (GdkEventButton* ev)
 {
        if (ev->button == 1) {
 
-               if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) {
+               pair<double, double> xr;
+               pair<double, double> yr;
+               get_editor (&xr, &yr);
+
+               _start_editor_x = xr;
+               _start_editor_y = yr;
+               _start_mouse_x = ev->x;
+               _start_mouse_y = ev->y;
+
+               if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
+
+                       /* primary-modifier-click: start a zoom drag */
+
+                       double const hx = (xr.first + xr.second) * 0.5;
+                       _zoom_left = ev->x < hx;
+                       _zoom_dragging = true;
+                       _editor->_dragging_playhead = true;
+
+
+                       /* In theory, we could support vertical dragging, which logically
+                          might scale track heights in order to make the editor reflect
+                          the dragged viewbox.  However, having tried this:
+                          a) it's hard to do
+                          b) it's quite slow
+                          c) it doesn't seem particularly useful, especially with the
+                          limited height of the summary
+
+                          So at the moment we don't support that...
+                       */
+
+
+               } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) {
 
                        /* secondary-modifier-click: locate playhead */
                        if (_session) {
                                _session->request_locate (ev->x / _x_scale + _session->current_start_frame());
                        }
 
+               } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
+
+                       centre_on_click (ev);
+
                } else {
-               
-                       pair<double, double> xr;
-                       pair<double, double> yr;
-                       get_editor (&xr, &yr);
-                       
-                       if (xr.first <= ev->x && ev->x <= xr.second && yr.first <= ev->y && ev->y <= yr.second) {
-                               
-                               _start_editor_x = xr;
-                               _start_editor_y = yr;
-                               _start_mouse_x = ev->x;
-                               _start_mouse_y = ev->y;
-                               
-                               if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
-                                       
-                                       /* modifier-click inside the view rectangle: start a zoom drag */
-                                       
-                                       double const hx = (xr.first + xr.second) * 0.5;
-                                       _zoom_left = ev->x < hx;
-                                       _zoom_dragging = true;
-                                       _editor->_dragging_playhead = true;
-                                       
-                                       /* In theory, we could support vertical dragging, which logically
-                                          might scale track heights in order to make the editor reflect
-                                          the dragged viewbox.  However, having tried this:
-                                          a) it's hard to do
-                                          b) it's quite slow
-                                          c) it doesn't seem particularly useful, especially with the
-                                          limited height of the summary
-                                          
-                                          So at the moment we don't support that...
-                                       */
-                                       
-                               } else {
-                                       
-                                       /* ordinary click inside the view rectangle: start a move drag */
-                                       
-                                       _move_dragging = true;
-                                       _moved = false;
-                                       _editor->_dragging_playhead = true;
-                               }
-                               
-                       } else {
-                       
-                               /* click outside the view rectangle: centre the view around the mouse click */
-                               centre_on_click (ev);
-                       }
+
+                       /* ordinary click: start a move drag */
+
+                       _move_dragging = true;
+                       _moved = false;
+                       _editor->_dragging_playhead = true;
                }
        }
-       
+
        return true;
 }
 
@@ -407,7 +322,7 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev)
 {
        pair<double, double> xr = _start_editor_x;
        pair<double, double> yr = _start_editor_y;
-       
+
        if (_move_dragging) {
 
                _moved = true;
@@ -416,7 +331,7 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev)
                xr.second += ev->x - _start_mouse_x;
                yr.first += ev->y - _start_mouse_y;
                yr.second += ev->y - _start_mouse_y;
-               
+
                set_editor (xr, yr);
 
        } else if (_zoom_dragging) {
@@ -431,17 +346,13 @@ EditorSummary::on_motion_notify_event (GdkEventMotion* ev)
 
                set_editor (xr, yr);
        }
-               
+
        return true;
 }
 
 bool
-EditorSummary::on_button_release_event (GdkEventButton* ev)
+EditorSummary::on_button_release_event (GdkEventButton*)
 {
-       if (_move_dragging && !_moved) {
-               centre_on_click (ev);
-       }
-
        _move_dragging = false;
        _zoom_dragging = false;
        _editor->_dragging_playhead = false;
@@ -452,15 +363,15 @@ bool
 EditorSummary::on_scroll_event (GdkEventScroll* ev)
 {
        /* mouse wheel */
-       
+
        pair<double, double> xr;
        pair<double, double> yr;
        get_editor (&xr, &yr);
 
        double const amount = 8;
-               
+
        if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
-               
+
                if (ev->direction == GDK_SCROLL_UP) {
                        xr.first += amount;
                        xr.second += amount;
@@ -470,7 +381,7 @@ EditorSummary::on_scroll_event (GdkEventScroll* ev)
                }
 
        } else {
-               
+
                if (ev->direction == GDK_SCROLL_DOWN) {
                        yr.first += amount;
                        yr.second += amount;
@@ -478,9 +389,9 @@ EditorSummary::on_scroll_event (GdkEventScroll* ev)
                        yr.first -= amount;
                        yr.second -= amount;
                }
-               
+
        }
-       
+
        set_editor (xr, yr);
        return true;
 }
@@ -523,4 +434,4 @@ EditorSummary::playhead_position_changed (nframes64_t p)
        }
 }
 
-       
+