non/DPM.C

74 lines
2.7 KiB
C++
Raw Normal View History

2008-03-12 02:32:04 +01:00
/*******************************************************************************/
/* Copyright (C) 2008 Jonathan Moore Liles */
/* */
/* 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; see the file COPYING. If not,write to the Free Software */
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/*******************************************************************************/
/* a Digital Peak Meter, either horizontal or vertical. Color is a
gradient from min_color() to max_color(). box() is used to draw the
2008-03-12 02:32:04 +01:00
individual 'lights'. division() controls how many 'lights' there
are. value() is volume in dBFS */
2008-03-12 02:32:04 +01:00
#include "DPM.H"
2008-03-12 02:32:04 +01:00
#include <FL/Fl.H>
#include <FL/fl_draw.H>
DPM::DPM ( int X, int Y, int W, int H, const char *L ) :
Meter( X, Y, W, H, L )
2008-03-12 02:32:04 +01:00
{
divisions( 32 );
type( FL_VERTICAL );
dim( 0.80f );
2008-03-12 04:07:41 +01:00
min_color( FL_GREEN );
max_color( FL_RED );
2008-03-12 02:32:04 +01:00
box( FL_ROUNDED_BOX );
}
/* which marks to draw beside meter */
const int marks [] = { -70, -50, -40, -30, -10, -3, 0, 4 };
2008-03-12 02:32:04 +01:00
void
DPM::draw ( void )
2008-03-12 02:32:04 +01:00
{
2008-03-12 04:07:41 +01:00
// draw_box( FL_FLAT_BOX, x(), y(), w(), h(), color() );
2008-03-12 06:23:12 +01:00
int v = pos( value() );
int pv = pos( peak() );
2008-03-12 02:40:24 +01:00
2008-03-12 02:32:04 +01:00
int bh = h() / _divisions;
int bw = w() / _divisions;
for ( int p = _divisions; p > 0; p-- )
{
2008-03-12 04:07:41 +01:00
Fl_Color c = fl_color_average( _max_color, _min_color, (float)p / _divisions );
2008-03-12 02:32:04 +01:00
2008-03-12 05:31:50 +01:00
if ( p > v && p != pv )
2008-03-12 04:07:41 +01:00
// c = fl_color_average( color(), c, _dim );
2008-03-12 02:32:04 +01:00
c = fl_color_average( FL_BLACK, c, _dim );
2008-03-12 02:40:24 +01:00
if ( ! active_r() )
c = fl_inactive( c );
2008-03-12 02:32:04 +01:00
if ( _type == FL_HORIZONTAL )
draw_box( box(), x() + (p * bw), y(), bw, h(), c );
else
draw_box( box(), x(), y() + h() - (p * bh), w(), bh, c );
2008-03-12 05:31:50 +01:00
}
2008-03-12 02:32:04 +01:00
}