/* Copyright (C) 2003-2006 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. $Id$ */ #include #include #include #include #include #include #include using namespace Gtk; using namespace Gdk; using namespace Glib; using namespace Gtkmm2ext; using namespace std; string FastMeter::v_image_path; string FastMeter::h_image_path; RefPtr FastMeter::v_pixmap; RefPtr FastMeter::v_mask; gint FastMeter::v_pixheight = 0; gint FastMeter::v_pixwidth = 0; RefPtr FastMeter::h_pixmap; RefPtr FastMeter::h_mask; gint FastMeter::h_pixheight = 0; gint FastMeter::h_pixwidth = 0; FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o) { orientation = o; hold_cnt = hold; hold_state = 0; current_peak = 0; current_level = 0; current_user_level = -100.0f; set_events (BUTTON_PRESS_MASK|BUTTON_RELEASE_MASK); pixrect.x = 0; pixrect.y = 0; request_width = dimen; request_height = dimen; } FastMeter::~FastMeter () { } void FastMeter::on_realize () { DrawingArea::on_realize (); Glib::RefPtr drawable = Glib::RefPtr::cast_dynamic (get_window()); Gdk::Color transparent; if (!v_image_path.empty() && v_pixmap == 0) { gint w, h; v_pixmap = Pixmap::create_from_xpm (drawable, Colormap::get_system(), v_mask, transparent, v_image_path); v_pixmap->get_size(w, h); v_pixheight = h; v_pixwidth = w; } if (!h_image_path.empty() && h_pixmap == 0) { gint w, h; h_pixmap = Pixmap::create_from_xpm (drawable, Colormap::get_system(), h_mask, transparent, h_image_path); h_pixmap->get_size(w, h); h_pixheight = h; h_pixwidth = w; } if (orientation == Vertical) { pixrect.width = min (v_pixwidth, request_width); pixrect.height = v_pixheight; } else { pixrect.width = h_pixwidth; pixrect.height = min (h_pixheight, request_height); } request_width = pixrect.width; request_height= pixrect.height; set_size_request (request_width, request_height); } void FastMeter::set_vertical_xpm (std::string path) { v_image_path = path; } void FastMeter::set_horizontal_xpm (std::string path) { h_image_path = path; } void FastMeter::set_hold_count (long val) { if (val < 1) { val = 1; } hold_cnt = val; hold_state = 0; current_peak = 0; queue_draw (); } void FastMeter::on_size_request (GtkRequisition* req) { req->width = request_width; req->height = request_height; } bool FastMeter::on_expose_event (GdkEventExpose* ev) { if (orientation == Vertical) { return vertical_expose (ev); } else { return horizontal_expose (ev); } } bool FastMeter::vertical_expose (GdkEventExpose* ev) { gint top_of_meter; GdkRectangle intersection; GdkRectangle background; top_of_meter = (gint) floor (v_pixheight * current_level); pixrect.height = top_of_meter; background.x = 0; background.y = 0; background.width = pixrect.width; background.height = v_pixheight - top_of_meter; if (gdk_rectangle_intersect (&background, &ev->area, &intersection)) { get_window()->draw_rectangle (get_style()->get_black_gc(), true, intersection.x, intersection.y, intersection.width, intersection.height); } if (gdk_rectangle_intersect (&pixrect, &ev->area, &intersection)) { /* draw the part of the meter image that we need. the area we draw is bounded "in reverse" (top->bottom) */ get_window()->draw_drawable(get_style()->get_fg_gc(get_state()), v_pixmap, intersection.x, v_pixheight - top_of_meter, intersection.x, v_pixheight - top_of_meter, intersection.width, intersection.height); } /* draw peak bar */ if (hold_state) { get_window()->draw_drawable(get_style()->get_fg_gc(get_state()), v_pixmap, intersection.x, v_pixheight - (gint) floor (v_pixheight * current_peak), intersection.x, v_pixheight - (gint) floor (v_pixheight * current_peak), intersection.width, 3); } return true; } bool FastMeter::horizontal_expose (GdkEventExpose* ev) { GdkRectangle intersection; gint right_of_meter; right_of_meter = (gint) floor (h_pixwidth * current_level); pixrect.width = right_of_meter; if (gdk_rectangle_intersect (&pixrect, &ev->area, &intersection)) { /* draw the part of the meter image that we need. */ get_window()->draw_drawable(get_style()->get_fg_gc(get_state()), h_pixmap, intersection.x, intersection.y, intersection.x, intersection.y, intersection.width, intersection.height); } /* draw peak bar */ if (hold_state) { get_window()->draw_drawable(get_style()->get_fg_gc(get_state()), h_pixmap, right_of_meter, intersection.y, right_of_meter, intersection.y, 3, intersection.height); } return true; } void FastMeter::set (float lvl, float usrlvl) { current_level = lvl; current_user_level = usrlvl; if (lvl > current_peak) { current_peak = lvl; hold_state = hold_cnt; } if (hold_state > 0) { if (--hold_state == 0) { current_peak = lvl; } } queue_draw (); } void FastMeter::clear () { current_level = 0; current_peak = 0; hold_state = 0; queue_draw (); }