1998-10-20 00:46:58 +04:00
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// "$Id: Fl_Chart.cxx,v 1.5.2.6.2.5 2002/01/01 15:11:30 easysw Exp $"
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Forms-compatible chart widget for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// Copyright 1998-2002 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library 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
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2000-06-06 01:21:24 +04:00
|
|
|
// Please report all bugs and problems to "fltk-bugs@fltk.org".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#include <FL/math.h>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Chart.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
#include <string.h>
|
1999-02-01 23:15:00 +03:00
|
|
|
#include <stdlib.h>
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#define ARCINC (2.0*M_PI/360.0)
|
|
|
|
|
2001-11-22 18:35:02 +03:00
|
|
|
// this function is in fl_boxtype.cxx:
|
1998-10-06 22:21:25 +04:00
|
|
|
void fl_rectbound(int x,int y,int w,int h, Fl_Color color);
|
|
|
|
|
|
|
|
/* Widget specific information */
|
|
|
|
|
|
|
|
static void draw_barchart(int x,int y,int w,int h,
|
|
|
|
int numb, FL_CHART_ENTRY entries[],
|
|
|
|
double min, double max, int autosize, int maxnumb,
|
|
|
|
Fl_Color textcolor)
|
|
|
|
/* Draws a bar chart. x,y,w,h is the bounding box, entries the array of
|
|
|
|
numb entries and min and max the boundaries. */
|
|
|
|
{
|
1999-06-12 16:38:14 +04:00
|
|
|
double incr;
|
1998-10-06 22:21:25 +04:00
|
|
|
int zeroh;
|
|
|
|
double lh = fl_height();
|
1999-06-12 16:38:14 +04:00
|
|
|
if (max == min) incr = h;
|
|
|
|
else incr = h/(max-min);
|
1998-10-20 00:46:58 +04:00
|
|
|
if ( (-min*incr) < lh) {
|
1998-10-06 22:21:25 +04:00
|
|
|
incr = (h - lh + min*incr)/(max-min);
|
|
|
|
zeroh = int(y+h-lh);
|
|
|
|
} else {
|
2002-01-01 16:11:29 +03:00
|
|
|
zeroh = (int)rint(y+h+min * incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
2002-01-01 16:11:29 +03:00
|
|
|
int bwidth = (int)rint(w/double(autosize?numb:maxnumb));
|
1998-10-06 22:21:25 +04:00
|
|
|
/* Draw base line */
|
|
|
|
fl_color(textcolor);
|
|
|
|
fl_line(x, zeroh, x+w, zeroh);
|
|
|
|
if (min == 0.0 && max == 0.0) return; /* Nothing else to draw */
|
|
|
|
int i;
|
|
|
|
/* Draw the bars */
|
|
|
|
for (i=0; i<numb; i++) {
|
2002-01-01 16:11:29 +03:00
|
|
|
int h = (int)rint(entries[i].val*incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
if (h < 0)
|
|
|
|
fl_rectbound(x+i*bwidth,zeroh,bwidth+1,-h+1, (Fl_Color)entries[i].col);
|
|
|
|
else if (h > 0)
|
|
|
|
fl_rectbound(x+i*bwidth,zeroh-h,bwidth+1,h+1,(Fl_Color)entries[i].col);
|
|
|
|
}
|
|
|
|
/* Draw the labels */
|
|
|
|
fl_color(textcolor);
|
|
|
|
for (i=0; i<numb; i++)
|
|
|
|
fl_draw(entries[i].str,
|
|
|
|
x+i*bwidth+bwidth/2,zeroh,0,0,
|
|
|
|
FL_ALIGN_TOP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_horbarchart(int x,int y,int w,int h,
|
|
|
|
int numb, FL_CHART_ENTRY entries[],
|
|
|
|
double min, double max, int autosize, int maxnumb,
|
|
|
|
Fl_Color textcolor)
|
|
|
|
/* Draws a horizontal bar chart. x,y,w,h is the bounding box, entries the
|
|
|
|
array of numb entries and min and max the boundaries. */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
double lw = 0.0; /* Maximal label width */
|
|
|
|
/* Compute maximal label width */
|
|
|
|
for (i=0; i<numb; i++) {
|
|
|
|
double w1 = fl_width(entries[i].str);
|
|
|
|
if (w1 > lw) lw = w1;
|
|
|
|
}
|
|
|
|
if (lw > 0.0) lw += 4.0;
|
1999-06-12 16:38:14 +04:00
|
|
|
double incr;
|
1998-10-06 22:21:25 +04:00
|
|
|
int zeroh;
|
1999-06-12 16:38:14 +04:00
|
|
|
if (max == min) incr = w;
|
|
|
|
else incr = w/(max-min);
|
1998-10-20 00:46:58 +04:00
|
|
|
if ( (-min*incr) < lw) {
|
1998-10-06 22:21:25 +04:00
|
|
|
incr = (w - lw + min*incr)/(max-min);
|
2002-01-01 16:11:29 +03:00
|
|
|
zeroh = x+(int)rint(lw);
|
1998-10-06 22:21:25 +04:00
|
|
|
} else {
|
2002-01-01 16:11:29 +03:00
|
|
|
zeroh = (int)rint(x-min * incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
2002-01-01 16:11:29 +03:00
|
|
|
int bwidth = (int)rint(h/double(autosize?numb:maxnumb));
|
1998-10-06 22:21:25 +04:00
|
|
|
/* Draw base line */
|
|
|
|
fl_color(textcolor);
|
|
|
|
fl_line(zeroh, y, zeroh, y+h);
|
|
|
|
if (min == 0.0 && max == 0.0) return; /* Nothing else to draw */
|
|
|
|
/* Draw the bars */
|
|
|
|
for (i=0; i<numb; i++) {
|
2002-01-01 16:11:29 +03:00
|
|
|
int w = (int)rint(entries[i].val*incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
if (w > 0)
|
|
|
|
fl_rectbound(zeroh,y+i*bwidth,w+1,bwidth+1, (Fl_Color)entries[i].col);
|
|
|
|
else if (w < 0)
|
|
|
|
fl_rectbound(zeroh+w,y+i*bwidth,-w+1,bwidth+1,(Fl_Color)entries[i].col);
|
|
|
|
}
|
|
|
|
/* Draw the labels */
|
2000-01-23 04:24:17 +03:00
|
|
|
fl_color(textcolor);
|
1998-10-06 22:21:25 +04:00
|
|
|
for (i=0; i<numb; i++)
|
|
|
|
fl_draw(entries[i].str,
|
|
|
|
zeroh-2,y+i*bwidth+bwidth/2,0,0,
|
|
|
|
FL_ALIGN_RIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_linechart(int type, int x,int y,int w,int h,
|
|
|
|
int numb, FL_CHART_ENTRY entries[],
|
|
|
|
double min, double max, int autosize, int maxnumb,
|
|
|
|
Fl_Color textcolor)
|
|
|
|
/* Draws a line chart. x,y,w,h is the bounding box, entries the array of
|
|
|
|
numb entries and min and max the boundaries. */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
double lh = fl_height();
|
1999-06-12 16:38:14 +04:00
|
|
|
double incr;
|
|
|
|
if (max == min) incr = h-2.0*lh;
|
|
|
|
else incr = (h-2.0*lh)/ (max-min);
|
2002-01-01 16:11:29 +03:00
|
|
|
int zeroh = (int)rint(y+h-lh+min * incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
double bwidth = w/double(autosize?numb:maxnumb);
|
|
|
|
/* Draw the values */
|
|
|
|
for (i=0; i<numb; i++) {
|
2002-01-01 16:11:29 +03:00
|
|
|
int x0 = x + (int)rint((i-.5)*bwidth);
|
|
|
|
int x1 = x + (int)rint((i+.5)*bwidth);
|
|
|
|
int y0 = i ? zeroh - (int)rint(entries[i-1].val*incr) : 0;
|
|
|
|
int y1 = zeroh - (int)rint(entries[i].val*incr);
|
1998-10-06 22:21:25 +04:00
|
|
|
if (type == FL_SPIKE_CHART) {
|
|
|
|
fl_color((Fl_Color)entries[i].col);
|
|
|
|
fl_line(x1, zeroh, x1, y1);
|
|
|
|
} else if (type == FL_LINE_CHART && i != 0) {
|
|
|
|
fl_color((Fl_Color)entries[i-1].col);
|
|
|
|
fl_line(x0,y0,x1,y1);
|
|
|
|
} else if (type == FL_FILLED_CHART && i != 0) {
|
|
|
|
fl_color((Fl_Color)entries[i-1].col);
|
|
|
|
if ((entries[i-1].val>0.0)!=(entries[i].val>0.0)) {
|
|
|
|
double ttt = entries[i-1].val/(entries[i-1].val-entries[i].val);
|
2002-01-01 16:11:29 +03:00
|
|
|
int xt = x + (int)rint((i-.5+ttt)*bwidth);
|
1998-10-06 22:21:25 +04:00
|
|
|
fl_polygon(x0,zeroh, x0,y0, xt,zeroh);
|
|
|
|
fl_polygon(xt,zeroh, x1,y1, x1,zeroh);
|
|
|
|
} else {
|
|
|
|
fl_polygon(x0,zeroh, x0,y0, x1,y1, x1,zeroh);
|
|
|
|
}
|
|
|
|
fl_color(textcolor);
|
|
|
|
fl_line(x0,y0,x1,y1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Draw base line */
|
|
|
|
fl_color(textcolor);
|
|
|
|
fl_line(x,zeroh,x+w,zeroh);
|
|
|
|
/* Draw the labels */
|
|
|
|
for (i=0; i<numb; i++)
|
|
|
|
fl_draw(entries[i].str,
|
2002-01-01 16:11:29 +03:00
|
|
|
x+(int)rint((i+.5)*bwidth), zeroh - (int)rint(entries[i].val*incr),0,0,
|
1998-10-06 22:21:25 +04:00
|
|
|
entries[i].val>=0 ? FL_ALIGN_BOTTOM : FL_ALIGN_TOP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_piechart(int x,int y,int w,int h,
|
|
|
|
int numb, FL_CHART_ENTRY entries[], int special,
|
|
|
|
Fl_Color textcolor)
|
|
|
|
/* Draws a pie chart. x,y,w,h is the bounding box, entries the array of
|
|
|
|
numb entries */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
double xc,yc,rad; /* center and radius */
|
|
|
|
double tot; /* sum of values */
|
|
|
|
double incr; /* increment in angle */
|
|
|
|
double curang; /* current angle we are drawing */
|
|
|
|
double txc,tyc; /* temporary center */
|
|
|
|
double lh = fl_height();
|
|
|
|
/* compute center and radius */
|
|
|
|
xc = x+w/2.0; yc = y+h/2.0;
|
|
|
|
rad = h/2.0 - lh;
|
|
|
|
if (special) { yc += 0.1*rad; rad = 0.9*rad;}
|
|
|
|
/* compute sum of values */
|
|
|
|
tot = 0.0;
|
|
|
|
for (i=0; i<numb; i++)
|
|
|
|
if (entries[i].val > 0.0) tot += entries[i].val;
|
|
|
|
if (tot == 0.0) return;
|
|
|
|
incr = 360.0/tot;
|
|
|
|
/* Draw the pie */
|
|
|
|
curang = 0.0;
|
|
|
|
for (i=0; i<numb; i++)
|
|
|
|
if (entries[i].val > 0.0)
|
|
|
|
{
|
|
|
|
txc = xc; tyc = yc;
|
|
|
|
/* Correct for special pies */
|
|
|
|
if (special && i==0)
|
|
|
|
{
|
|
|
|
txc += 0.3*rad*cos(ARCINC*(curang+0.5*incr*entries[i].val));
|
|
|
|
tyc -= 0.3*rad*sin(ARCINC*(curang+0.5*incr*entries[i].val));
|
|
|
|
}
|
|
|
|
fl_color((Fl_Color)entries[i].col);
|
|
|
|
fl_begin_polygon(); fl_vertex(txc,tyc);
|
|
|
|
fl_arc(txc,tyc,rad,curang, curang+incr*entries[i].val);
|
|
|
|
fl_end_polygon();
|
|
|
|
fl_color(textcolor);
|
|
|
|
fl_begin_loop(); fl_vertex(txc,tyc);
|
|
|
|
fl_arc(txc,tyc,rad,curang, curang+incr*entries[i].val);
|
|
|
|
fl_end_loop();
|
|
|
|
curang += 0.5 * incr * entries[i].val;
|
|
|
|
/* draw the label */
|
|
|
|
double xl = txc + 1.1*rad*cos(ARCINC*curang);
|
|
|
|
fl_draw(entries[i].str,
|
2002-01-01 16:11:29 +03:00
|
|
|
(int)rint(xl),
|
|
|
|
(int)rint(tyc - 1.1*rad*sin(ARCINC*curang)),
|
1998-10-06 22:21:25 +04:00
|
|
|
0, 0,
|
|
|
|
xl<txc ? FL_ALIGN_RIGHT : FL_ALIGN_LEFT);
|
|
|
|
curang += 0.5 * incr * entries[i].val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Chart::draw() {
|
|
|
|
int xx,yy,ww,hh;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
xx = x()+9;
|
|
|
|
yy = y()+9;
|
|
|
|
ww = w()-2*9;
|
|
|
|
hh = h()-2*9;
|
|
|
|
|
|
|
|
if (min >= max) {
|
|
|
|
min = max = 0.0;
|
|
|
|
for (i=0; i<numb; i++) {
|
|
|
|
if (entries[i].val < min) min = entries[i].val;
|
|
|
|
if (entries[i].val > max) max = entries[i].val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
draw_box();
|
|
|
|
fl_font(textfont(),textsize());
|
|
|
|
|
|
|
|
switch (type()) {
|
|
|
|
case FL_BAR_CHART:
|
|
|
|
draw_barchart(xx,yy,ww,hh, numb, entries, min, max,
|
|
|
|
autosize(), maxnumb, textcolor());
|
|
|
|
break;
|
|
|
|
case FL_HORBAR_CHART:
|
|
|
|
draw_horbarchart(xx,yy,ww,hh, numb, entries, min, max,
|
|
|
|
autosize(), maxnumb, textcolor());
|
|
|
|
break;
|
|
|
|
case FL_PIE_CHART:
|
|
|
|
draw_piechart(xx,yy,ww,hh,numb,entries,0, textcolor());
|
|
|
|
break;
|
|
|
|
case FL_SPECIALPIE_CHART:
|
|
|
|
draw_piechart(xx,yy,ww,hh,numb,entries,1,textcolor());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
draw_linechart(type(),xx,yy,ww,hh, numb, entries, min, max,
|
|
|
|
autosize(), maxnumb, textcolor());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
draw_label();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------*/
|
|
|
|
|
|
|
|
#define FL_CHART_BOXTYPE FL_BORDER_BOX
|
|
|
|
#define FL_CHART_COL1 FL_COL1
|
|
|
|
#define FL_CHART_LCOL FL_LCOL
|
|
|
|
#define FL_CHART_ALIGN FL_ALIGN_BOTTOM
|
|
|
|
|
|
|
|
Fl_Chart::Fl_Chart(int x,int y,int w,int h,const char *l) :
|
|
|
|
Fl_Widget(x,y,w,h,l) {
|
1999-02-01 23:15:00 +03:00
|
|
|
box(FL_BORDER_BOX);
|
|
|
|
align(FL_ALIGN_BOTTOM);
|
|
|
|
numb = 0;
|
|
|
|
maxnumb = 0;
|
|
|
|
sizenumb = FL_CHART_MAX;
|
|
|
|
autosize_ = 1;
|
|
|
|
min = max = 0;
|
|
|
|
textfont_ = FL_HELVETICA;
|
|
|
|
textsize_ = 10;
|
|
|
|
textcolor_ = FL_BLACK;
|
|
|
|
entries = (FL_CHART_ENTRY *)calloc(sizeof(FL_CHART_ENTRY), FL_CHART_MAX + 1);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Chart::clear() {
|
1999-02-01 23:15:00 +03:00
|
|
|
numb = 0;
|
|
|
|
redraw();
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
2001-10-29 06:44:33 +03:00
|
|
|
void Fl_Chart::add(double val, const char *str, unsigned col) {
|
1999-02-01 23:15:00 +03:00
|
|
|
/* Allocate more entries if required */
|
|
|
|
if (numb >= sizenumb) {
|
|
|
|
sizenumb += FL_CHART_MAX;
|
|
|
|
entries = (FL_CHART_ENTRY *)realloc(entries, sizeof(FL_CHART_ENTRY) * (sizenumb + 1));
|
|
|
|
}
|
|
|
|
// Shift entries as needed
|
|
|
|
if (numb >= maxnumb && maxnumb > 0) {
|
|
|
|
memcpy(entries, entries + 1, sizeof(FL_CHART_ENTRY) * (numb - 1));
|
|
|
|
numb --;
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
entries[numb].val = float(val);
|
|
|
|
entries[numb].col = col;
|
|
|
|
if (str) {
|
2001-12-11 19:03:13 +03:00
|
|
|
strncpy(entries[numb].str,str,FL_CHART_LABEL_MAX);
|
1998-10-06 22:21:25 +04:00
|
|
|
entries[numb].str[FL_CHART_LABEL_MAX] = 0;
|
|
|
|
} else {
|
|
|
|
entries[numb].str[0] = 0;
|
|
|
|
}
|
|
|
|
numb++;
|
|
|
|
redraw();
|
|
|
|
}
|
|
|
|
|
2001-10-29 06:44:33 +03:00
|
|
|
void Fl_Chart::insert(int index, double val, const char *str, unsigned col) {
|
1999-02-01 23:15:00 +03:00
|
|
|
int i;
|
|
|
|
if (index < 1 || index > numb+1) return;
|
|
|
|
/* Allocate more entries if required */
|
|
|
|
if (numb >= sizenumb) {
|
|
|
|
sizenumb += FL_CHART_MAX;
|
|
|
|
entries = (FL_CHART_ENTRY *)realloc(entries, sizeof(FL_CHART_ENTRY) * (sizenumb + 1));
|
|
|
|
}
|
|
|
|
// Shift entries as needed
|
|
|
|
for (i=numb; i >= index; i--) entries[i] = entries[i-1];
|
|
|
|
if (numb < maxnumb || maxnumb == 0) numb++;
|
|
|
|
/* Fill in the new entry */
|
|
|
|
entries[index-1].val = float(val);
|
|
|
|
entries[index-1].col = col;
|
|
|
|
if (str) {
|
2001-12-11 19:03:13 +03:00
|
|
|
strncpy(entries[index-1].str,str,FL_CHART_LABEL_MAX);
|
1999-02-01 23:15:00 +03:00
|
|
|
entries[index-1].str[FL_CHART_LABEL_MAX] = 0;
|
|
|
|
} else {
|
|
|
|
entries[index-1].str[0] = 0;
|
|
|
|
}
|
|
|
|
redraw();
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
2001-10-29 06:44:33 +03:00
|
|
|
void Fl_Chart::replace(int index,double val, const char *str, unsigned col) {
|
1999-02-01 23:15:00 +03:00
|
|
|
if (index < 1 || index > numb) return;
|
|
|
|
entries[index-1].val = float(val);
|
|
|
|
entries[index-1].col = col;
|
|
|
|
if (str) {
|
2001-12-11 19:03:13 +03:00
|
|
|
strncpy(entries[index-1].str,str,FL_CHART_LABEL_MAX);
|
1999-02-01 23:15:00 +03:00
|
|
|
entries[index-1].str[FL_CHART_LABEL_MAX] = 0;
|
|
|
|
} else {
|
|
|
|
entries[index-1].str[0] = 0;
|
|
|
|
}
|
|
|
|
redraw();
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
2000-11-20 22:02:20 +03:00
|
|
|
void Fl_Chart::bounds(double mymin, double mymax) {
|
|
|
|
this->min = mymin;
|
|
|
|
this->max = mymax;
|
1999-02-01 23:15:00 +03:00
|
|
|
redraw();
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fl_Chart::maxsize(int m) {
|
1999-02-01 23:15:00 +03:00
|
|
|
int i;
|
|
|
|
/* Fill in the new number */
|
|
|
|
if (m < 0) return;
|
|
|
|
maxnumb = m;
|
|
|
|
/* Shift entries if required */
|
|
|
|
if (numb > maxnumb) {
|
|
|
|
for (i = 0; i<maxnumb; i++)
|
|
|
|
entries[i] = entries[i+numb-maxnumb];
|
|
|
|
numb = maxnumb;
|
|
|
|
redraw();
|
|
|
|
}
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
1998-10-20 00:46:58 +04:00
|
|
|
|
|
|
|
//
|
2002-01-01 18:11:33 +03:00
|
|
|
// End of "$Id: Fl_Chart.cxx,v 1.5.2.6.2.5 2002/01/01 15:11:30 easysw Exp $".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|