2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* gSegmentChart Header
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-07-28 17:15:15 +00:00
|
|
|
#ifndef GSEGMENTCHART_H
|
|
|
|
#define GSEGMENTCHART_H
|
|
|
|
|
2011-08-29 11:42:40 +00:00
|
|
|
#include "gGraphView.h"
|
2011-07-28 17:15:15 +00:00
|
|
|
|
2011-07-29 14:58:44 +00:00
|
|
|
enum GraphSegmentType { GST_Pie, GST_CandleStick, GST_Line };
|
2011-07-28 17:15:15 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \class gSegmentChart
|
|
|
|
\brief Draws a PieChart, CandleStick or 2D Line plots containing multiple Channel 'slices'
|
|
|
|
*/
|
2011-08-29 11:42:40 +00:00
|
|
|
class gSegmentChart : public Layer
|
2011-07-28 17:15:15 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
gSegmentChart(GraphSegmentType gt = GST_Pie, QColor gradient_color = Qt::white,
|
|
|
|
QColor outline_color = Qt::black);
|
2011-07-28 17:15:15 +00:00
|
|
|
virtual ~gSegmentChart();
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief The drawing code that fills the Vertex buffers
|
2014-05-07 19:52:59 +00:00
|
|
|
virtual void paint(QPainter &painter, gGraph &w, int left, int top, int width, int height);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Pre-fills a buffer with the data needed to draw
|
2011-07-28 17:15:15 +00:00
|
|
|
virtual void SetDay(Day *d);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if no data available for drawing
|
2011-08-29 11:42:40 +00:00
|
|
|
virtual bool isEmpty();
|
2011-07-28 17:15:15 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Adds a channel slice, and sets the color and label
|
2014-04-17 05:55:38 +00:00
|
|
|
void AddSlice(ChannelID code, QColor col, QString name = "");
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Sets the fade-out color to make the graphs look more attractive
|
2014-04-17 05:55:38 +00:00
|
|
|
void setGradientColor(QColor &color) { m_gradient_color = color; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Sets the outline color for the edges drawn around the Pie slices
|
2014-04-17 05:55:38 +00:00
|
|
|
void setOutlineColor(QColor &color) { m_outline_color = color; }
|
|
|
|
const GraphSegmentType &graphType() { return m_graph_type; }
|
|
|
|
void setGraphType(GraphSegmentType type) { m_graph_type = type; }
|
2011-07-28 17:15:15 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
2011-07-31 20:24:43 +00:00
|
|
|
QVector<ChannelID> m_codes;
|
|
|
|
QVector<QString> m_names;
|
|
|
|
QVector<int> m_values;
|
|
|
|
QVector<QColor> m_colors;
|
2011-07-28 17:15:15 +00:00
|
|
|
|
|
|
|
int m_total;
|
|
|
|
GraphSegmentType m_graph_type;
|
|
|
|
QColor m_gradient_color;
|
|
|
|
QColor m_outline_color;
|
2011-08-30 08:46:24 +00:00
|
|
|
bool m_empty;
|
2011-07-28 17:15:15 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \class gTAPGraph
|
|
|
|
\brief Time at Pressure chart, derived from gSegmentChart
|
|
|
|
\notes Currently unused
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
class gTAPGraph: public gSegmentChart
|
2011-07-28 17:15:15 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
gTAPGraph(ChannelID code, GraphSegmentType gt = GST_CandleStick,
|
|
|
|
QColor gradient_color = Qt::lightGray, QColor outline_color = Qt::black);
|
2011-07-28 17:15:15 +00:00
|
|
|
virtual ~gTAPGraph();
|
|
|
|
virtual void SetDay(Day *d);
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
2011-07-31 20:24:43 +00:00
|
|
|
ChannelID m_code;
|
2011-07-28 17:15:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // GSEGMENTCHART_H
|