Add code to use ASIO supplied min/max buffer sizes but don't use it
[ardour.git] / libs / gtkmm2ext / fastmeter.cc
index 5a775572225b786d0330b166dd19999664fad682..3d28253c41f33fb91b4e7b819eb00716c9eddad3 100644 (file)
@@ -133,6 +133,24 @@ FastMeter::~FastMeter ()
 {
 }
 
+void
+FastMeter::flush_pattern_cache () {
+       Pattern10Map::iterator i1;
+       PatternBgMap::iterator ib;
+       for (ib = hb_pattern_cache.begin(); ib !=  hb_pattern_cache.end(); ++ib) {
+               hb_pattern_cache.erase(ib);
+       }
+       for (i1 = hm_pattern_cache.begin(); i1 !=  hm_pattern_cache.end(); ++i1) {
+               hm_pattern_cache.erase(i1);
+       }
+       for (ib = vb_pattern_cache.begin(); ib !=  vb_pattern_cache.end(); ++ib) {
+               vb_pattern_cache.erase(ib);
+       }
+       for (i1 = vm_pattern_cache.begin(); i1 !=  vm_pattern_cache.end(); ++i1) {
+               vm_pattern_cache.erase(i1);
+       }
+}
+
 Cairo::RefPtr<Cairo::Pattern>
 FastMeter::generate_meter_pattern (
                int width, int height, int *clr, float *stp, int styleflags, bool horiz)
@@ -504,7 +522,7 @@ FastMeter::vertical_size_allocate (Gtk::Allocation &alloc)
                pixwidth  = request_width - 2;
        }
 
-       DrawingArea::on_size_allocate (alloc);
+       CairoWidget::on_size_allocate (alloc);
 }
 
 void
@@ -529,31 +547,26 @@ FastMeter::horizontal_size_allocate (Gtk::Allocation &alloc)
                pixheight  = request_height - 2;
        }
 
-       DrawingArea::on_size_allocate (alloc);
+       CairoWidget::on_size_allocate (alloc);
 }
 
-bool
-FastMeter::on_expose_event (GdkEventExpose* ev)
+void
+FastMeter::render (cairo_t* cr, cairo_rectangle_t* area)
 {
        if (orientation == Vertical) {
-               return vertical_expose (ev);
+               return vertical_expose (cr, area);
        } else {
-               return horizontal_expose (ev);
+               return horizontal_expose (cr, area);
        }
 }
 
-bool
-FastMeter::vertical_expose (GdkEventExpose* ev)
+void
+FastMeter::vertical_expose (cairo_t* cr, cairo_rectangle_t* area)
 {
-       Glib::RefPtr<Gdk::Window> win = get_window ();
        gint top_of_meter;
        GdkRectangle intersection;
        GdkRectangle background;
-
-       cairo_t* cr = gdk_cairo_create (get_window ()->gobj());
-
-       cairo_rectangle (cr, ev->area.x, ev->area.y, ev->area.width, ev->area.height);
-       cairo_clip (cr);
+       GdkRectangle eventarea;
 
        cairo_set_source_rgb (cr, 0, 0, 0); // black
        rounded_rectangle (cr, 0, 0, pixwidth + 2, pixheight + 2, 2);
@@ -572,13 +585,18 @@ FastMeter::vertical_expose (GdkEventExpose* ev)
        background.width = pixrect.width;
        background.height = pixheight - top_of_meter;
 
-       if (gdk_rectangle_intersect (&background, &ev->area, &intersection)) {
+       eventarea.x = area->x;
+       eventarea.y = area->y;
+       eventarea.width = area->width;
+       eventarea.height = area->height;
+
+       if (gdk_rectangle_intersect (&background, &eventarea, &intersection)) {
                cairo_set_source (cr, bgpattern->cobj());
                cairo_rectangle (cr, intersection.x, intersection.y, intersection.width, intersection.height);
                cairo_fill (cr);
        }
 
-       if (gdk_rectangle_intersect (&pixrect, &ev->area, &intersection)) {
+       if (gdk_rectangle_intersect (&pixrect, &eventarea, &intersection)) {
                // draw the part of the meter image that we need. the area we draw is bounded "in reverse" (top->bottom)
                cairo_set_source (cr, fgpattern->cobj());
                cairo_rectangle (cr, intersection.x, intersection.y, intersection.width, intersection.height);
@@ -590,7 +608,10 @@ FastMeter::vertical_expose (GdkEventExpose* ev)
        if (hold_state) {
                last_peak_rect.x = 1;
                last_peak_rect.width = pixwidth;
-               last_peak_rect.y = max(1, 1 + pixheight - (gint) floor (pixheight * current_peak));
+               last_peak_rect.y = max(1, 1 + pixheight - (int) floor (pixheight * current_peak));
+               if (_styleflags & 2) { // LED stripes
+                       last_peak_rect.y = max(0, (last_peak_rect.y & (~1)));
+               }
                if (bright_hold || (_styleflags & 2)) {
                        last_peak_rect.height = max(0, min(3, pixheight - last_peak_rect.y - 1 ));
                } else {
@@ -610,24 +631,15 @@ FastMeter::vertical_expose (GdkEventExpose* ev)
                last_peak_rect.width = 0;
                last_peak_rect.height = 0;
        }
-
-       cairo_destroy (cr);
-
-       return TRUE;
 }
 
-bool
-FastMeter::horizontal_expose (GdkEventExpose* ev)
+void
+FastMeter::horizontal_expose (cairo_t* cr, cairo_rectangle_t* area)
 {
-       Glib::RefPtr<Gdk::Window> win = get_window ();
        gint right_of_meter;
        GdkRectangle intersection;
        GdkRectangle background;
-
-       cairo_t* cr = gdk_cairo_create (get_window ()->gobj());
-
-       cairo_rectangle (cr, ev->area.x, ev->area.y, ev->area.width, ev->area.height);
-       cairo_clip (cr);
+       GdkRectangle eventarea;
 
        cairo_set_source_rgb (cr, 0, 0, 0); // black
        rounded_rectangle (cr, 0, 0, pixwidth + 2, pixheight + 2, 2);
@@ -645,13 +657,18 @@ FastMeter::horizontal_expose (GdkEventExpose* ev)
        background.width = pixwidth - right_of_meter;
        background.height = pixheight;
 
-       if (gdk_rectangle_intersect (&background, &ev->area, &intersection)) {
+       eventarea.x = area->x;
+       eventarea.y = area->y;
+       eventarea.width = area->width;
+       eventarea.height = area->height;
+
+       if (gdk_rectangle_intersect (&background, &eventarea, &intersection)) {
                cairo_set_source (cr, bgpattern->cobj());
                cairo_rectangle (cr, intersection.x, intersection.y, intersection.width, intersection.height);
                cairo_fill (cr);
        }
 
-       if (gdk_rectangle_intersect (&pixrect, &ev->area, &intersection)) {
+       if (gdk_rectangle_intersect (&pixrect, &eventarea, &intersection)) {
                cairo_set_source (cr, fgpattern->cobj());
                cairo_rectangle (cr, intersection.x, intersection.y, intersection.width, intersection.height);
                cairo_fill (cr);
@@ -683,10 +700,6 @@ FastMeter::horizontal_expose (GdkEventExpose* ev)
                last_peak_rect.width = 0;
                last_peak_rect.height = 0;
        }
-
-       cairo_destroy (cr);
-
-       return TRUE;
 }
 
 void
@@ -717,7 +730,9 @@ FastMeter::set (float lvl, float peak)
 
        current_level = lvl;
 
-       if (current_level == old_level && current_peak == old_peak && (hold_state == 0 || peak != -1)) {
+       const float pixscale = (orientation == Vertical) ? pixheight : pixwidth;
+#define PIX(X) floor(pixscale * (X))
+       if (PIX(current_level) == PIX(old_level) && PIX(current_peak) == PIX(old_peak) && (hold_state == 0 || peak != -1)) {
                return;
        }
 
@@ -794,7 +809,10 @@ FastMeter::queue_vertical_redraw (const Glib::RefPtr<Gdk::Window>& win, float ol
                        queue = true;
                }
                rect.x = 1;
-               rect.y = max(1, 1 + pixheight - (gint) floor (pixheight * current_peak));
+               rect.y = max(1, 1 + pixheight - (int) floor (pixheight * current_peak));
+               if (_styleflags & 2) { // LED stripes
+                       rect.y = max(0, (rect.y & (~1)));
+               }
                if (bright_hold || (_styleflags & 2)) {
                        rect.height = max(0, min(3, pixheight - last_peak_rect.y -1 ));
                } else {