Merge remote-tracking branch 'remotes/origin/exportvis' into windows+cc
[ardour.git] / libs / gtkmm2ext / fastmeter.cc
index c79b120624476002d91aec03dc7c2bd57f2fdc7a..5a775572225b786d0330b166dd19999664fad682 100644 (file)
 
 #include <stdlib.h>
 
+#include <glibmm.h>
+#include <gdkmm.h>
 #include <gdkmm/rectangle.h>
 #include <gtkmm2ext/fastmeter.h>
 #include <gtkmm2ext/utils.h>
 
 #define UINT_TO_RGB(u,r,g,b) { (*(r)) = ((u)>>16)&0xff; (*(g)) = ((u)>>8)&0xff; (*(b)) = (u)&0xff; }
 #define UINT_TO_RGBA(u,r,g,b,a) { UINT_TO_RGB(((u)>>8),r,g,b); (*(a)) = (u)&0xff; }
+
 using namespace Gtk;
-using namespace Gdk;
 using namespace Glib;
 using namespace Gtkmm2ext;
 using namespace std;
@@ -57,17 +59,22 @@ FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o, int len,
                float stp2, float stp3,
                int styleflags
                )
+       : pixheight(0)
+       , pixwidth(0)
+       , _styleflags(styleflags)
+       , orientation(o)
+       , hold_cnt(hold)
+       , hold_state(0)
+       , bright_hold(false)
+       , current_level(0)
+       , current_peak(0)
+       , highlight(false)
 {
-       orientation = o;
-       hold_cnt = hold;
-       hold_state = 0;
-       bright_hold = false;
-       current_peak = 0;
-       current_level = 0;
        last_peak_rect.width = 0;
        last_peak_rect.height = 0;
+       last_peak_rect.x = 0;
+       last_peak_rect.y = 0;
 
-       highlight = false;
        no_rgba_overlay = ! Glib::getenv("NO_METER_SHADE").empty();
 
        _clr[0] = clr0;
@@ -92,9 +99,7 @@ FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o, int len,
        _stp[2] = stp2;
        _stp[3] = stp3;
 
-       _styleflags = styleflags;
-
-       set_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK);
+       set_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
 
        pixrect.x = 1;
        pixrect.y = 1;
@@ -121,7 +126,7 @@ FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o, int len,
        request_width = pixrect.width + 2;
        request_height= pixrect.height + 2;
 
-       queue_draw ();
+       clear ();
 }
 
 FastMeter::~FastMeter ()
@@ -134,7 +139,7 @@ FastMeter::generate_meter_pattern (
 {
        guint8 r,g,b,a;
        double knee;
-       const double soft =  2.5 / (double) height;
+       const double soft =  3.0 / (double) height;
        const double offs = -1.0 / (double) height;
 
        cairo_pattern_t* pat = cairo_pattern_create_linear (0.0, 0.0, 0.0, height);
@@ -205,13 +210,19 @@ FastMeter::generate_meter_pattern (
                cairo_set_source (tc, pat);
                cairo_rectangle (tc, 0, 0, width, height);
                cairo_fill (tc);
+               cairo_pattern_destroy (pat);
+
+               cairo_set_source (tc, shade_pattern);
+               cairo_rectangle (tc, 0, 0, width, height);
+               cairo_fill (tc);
+               cairo_pattern_destroy (shade_pattern);
 
                if (styleflags & 2) { // LED stripes
                        cairo_save (tc);
                        cairo_set_line_width(tc, 1.0);
-                       cairo_set_source_rgba(tc, .0, .0, .0, .3);
+                       cairo_set_source_rgba(tc, .0, .0, .0, 0.4);
                        //cairo_set_operator (tc, CAIRO_OPERATOR_SOURCE);
-                       for (float y=.5; y < height; y+= 2.0) {
+                       for (float y=0.5; y < height; y+= 2.0) {
                                cairo_move_to(tc, 0, y);
                                cairo_line_to(tc, width, y);
                                cairo_stroke (tc);
@@ -219,15 +230,7 @@ FastMeter::generate_meter_pattern (
                        cairo_restore (tc);
                }
 
-               cairo_set_source (tc, shade_pattern);
-               cairo_rectangle (tc, 0, 0, width, height);
-               cairo_fill (tc);
-
-               cairo_pattern_destroy (pat);
-               cairo_pattern_destroy (shade_pattern);
-
                pat = cairo_pattern_create_for_surface (surface);
-
                cairo_destroy (tc);
                cairo_surface_destroy (surface);
        }
@@ -357,7 +360,7 @@ FastMeter::request_vertical_background(
        height = min(height, max_pattern_metric_size);
        height += 2;
 
-       const PatternBgMapKey key (width, height, bgc[0], bgc[1]);
+       const PatternBgMapKey key (width, height, bgc[0], bgc[1], shade);
        PatternBgMap::iterator i;
        if ((i = vb_pattern_cache.find (key)) != vb_pattern_cache.end()) {
                return i->second;
@@ -405,7 +408,7 @@ FastMeter::request_horizontal_background(
        width = min(width, max_pattern_metric_size);
        width += 2;
 
-       const PatternBgMapKey key (width, height, bgc[0], bgc[1]);
+       const PatternBgMapKey key (width, height, bgc[0], bgc[1], shade);
        PatternBgMap::iterator i;
        if ((i = hb_pattern_cache.find (key)) != hb_pattern_cache.end()) {
                return i->second;
@@ -476,6 +479,7 @@ FastMeter::on_size_allocate (Gtk::Allocation &alloc)
        } else {
                horizontal_size_allocate (alloc);
        }
+       queue_draw ();
 }
 
 void
@@ -587,10 +591,10 @@ FastMeter::vertical_expose (GdkEventExpose* ev)
                last_peak_rect.x = 1;
                last_peak_rect.width = pixwidth;
                last_peak_rect.y = max(1, 1 + pixheight - (gint) floor (pixheight * current_peak));
-               if (bright_hold) {
-                       last_peak_rect.height = max(0, min(4, pixheight - 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 {
-                       last_peak_rect.height = max(0, min(2, pixheight - last_peak_rect.y -1 ));
+                       last_peak_rect.height = max(0, min(2, pixheight - last_peak_rect.y - 1 ));
                }
 
                cairo_set_source (cr, fgpattern->cobj());
@@ -659,8 +663,8 @@ FastMeter::horizontal_expose (GdkEventExpose* ev)
                last_peak_rect.y = 1;
                last_peak_rect.height = pixheight;
                const int xpos = floor (pixwidth * current_peak);
-               if (bright_hold) {
-                       last_peak_rect.width = min(4, xpos );
+               if (bright_hold || (_styleflags & 2)) {
+                       last_peak_rect.width = min(3, xpos );
                } else {
                        last_peak_rect.width = min(2, xpos );
                }
@@ -691,6 +695,8 @@ FastMeter::set (float lvl, float peak)
        float old_level = current_level;
        float old_peak = current_peak;
 
+       if (pixwidth <= 0 || pixheight <=0) return;
+
        if (peak == -1) {
                if (lvl >= current_peak) {
                        current_peak = lvl;
@@ -789,8 +795,8 @@ FastMeter::queue_vertical_redraw (const Glib::RefPtr<Gdk::Window>& win, float ol
                }
                rect.x = 1;
                rect.y = max(1, 1 + pixheight - (gint) floor (pixheight * current_peak));
-               if (bright_hold) {
-                       rect.height = max(0, min(4, pixheight - last_peak_rect.y -1 ));
+               if (bright_hold || (_styleflags & 2)) {
+                       rect.height = max(0, min(3, pixheight - last_peak_rect.y -1 ));
                } else {
                        rect.height = max(0, min(2, pixheight - last_peak_rect.y -1 ));
                }
@@ -810,7 +816,6 @@ FastMeter::queue_vertical_redraw (const Glib::RefPtr<Gdk::Window>& win, float ol
 void
 FastMeter::queue_horizontal_redraw (const Glib::RefPtr<Gdk::Window>& win, float old_level)
 {
-#if 1
        GdkRectangle rect;
 
        gint new_right = (gint) floor (pixwidth * current_level);
@@ -861,8 +866,8 @@ FastMeter::queue_horizontal_redraw (const Glib::RefPtr<Gdk::Window>& win, float
                rect.y = 1;
                rect.height = pixheight;
                const int xpos = floor (pixwidth * current_peak);
-               if (bright_hold) {
-                       rect.width = min(4, xpos);
+               if (bright_hold || (_styleflags & 2)) {
+                       rect.width = min(3, xpos);
                } else {
                        rect.width = min(2, xpos);
                }
@@ -877,9 +882,6 @@ FastMeter::queue_horizontal_redraw (const Glib::RefPtr<Gdk::Window>& win, float
                gdk_region_destroy(region);
                region = 0;
        }
-#else
-       queue_draw ();
-#endif
 }
 
 void
@@ -890,9 +892,9 @@ FastMeter::set_highlight (bool onoff)
        }
        highlight = onoff;
        if (orientation == Vertical) {
-               bgpattern = request_vertical_background (request_width, request_height, highlight ? _bgh : _bgc, highlight);
+               bgpattern = request_vertical_background (pixwidth + 2, pixheight + 2, highlight ? _bgh : _bgc, highlight);
        } else {
-               bgpattern = request_horizontal_background (request_width, request_height, highlight ? _bgh : _bgc, highlight);
+               bgpattern = request_horizontal_background (pixwidth + 2, pixheight + 2, highlight ? _bgh : _bgc, highlight);
        }
        queue_draw ();
 }