2014-08-17 12:56:05 +00:00
|
|
|
/* gGraphView Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* 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-08-25 06:11:44 +00:00
|
|
|
#ifndef GGRAPHVIEW_H
|
|
|
|
#define GGRAPHVIEW_H
|
|
|
|
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QResizeEvent>
|
2011-08-31 11:44:53 +00:00
|
|
|
#include <QThread>
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <QMutex>
|
2011-08-31 11:44:53 +00:00
|
|
|
#include <QSemaphore>
|
2011-09-01 09:03:23 +00:00
|
|
|
#include <QWaitCondition>
|
2011-12-01 15:40:32 +00:00
|
|
|
#include <QPixmap>
|
2013-10-25 10:39:30 +00:00
|
|
|
#include <QRect>
|
2014-05-10 00:50:35 +00:00
|
|
|
#include <QPixmapCache>
|
2014-08-17 12:56:05 +00:00
|
|
|
#include <QMenu>
|
2014-08-26 15:05:59 +00:00
|
|
|
#include <QCheckBox>
|
2014-08-26 17:26:13 +00:00
|
|
|
#include <QComboBox>
|
2014-08-26 15:05:59 +00:00
|
|
|
#include <QDoubleSpinBox>
|
2014-08-27 04:36:40 +00:00
|
|
|
#include <QToolButton>
|
2014-08-27 09:00:55 +00:00
|
|
|
#include <QTimer>
|
2014-05-16 14:08:16 +00:00
|
|
|
|
2014-05-16 14:36:07 +00:00
|
|
|
#ifndef BROKEN_OPENGL_BUILD
|
2014-05-16 13:38:28 +00:00
|
|
|
#include <QGLWidget>
|
2014-05-16 14:08:16 +00:00
|
|
|
#endif
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
#include <Graphs/gGraph.h>
|
2014-04-10 17:33:20 +00:00
|
|
|
#include <Graphs/glcommon.h>
|
|
|
|
#include <SleepLib/day.h>
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-08-26 15:05:59 +00:00
|
|
|
|
|
|
|
class MinMaxWidget:public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit MinMaxWidget(gGraph * graph, QWidget *parent);
|
|
|
|
~MinMaxWidget() {}
|
|
|
|
|
|
|
|
void createLayout();
|
|
|
|
|
|
|
|
void setMin(double d) {
|
|
|
|
minbox->setValue(d);
|
|
|
|
}
|
|
|
|
void setMax(double d) {
|
|
|
|
maxbox->setValue(d);
|
|
|
|
}
|
|
|
|
double min() { return minbox->value(); }
|
|
|
|
double max() { return maxbox->value(); }
|
2014-08-26 17:26:13 +00:00
|
|
|
void setComboIndex(int i) { combobox->setCurrentIndex(i); }
|
|
|
|
int comboIndex() { return combobox->currentIndex(); }
|
2014-08-26 15:05:59 +00:00
|
|
|
|
2014-08-26 17:26:13 +00:00
|
|
|
// void setChecked(bool b) { checkbox->setChecked(b); }
|
|
|
|
// bool checked() { return checkbox->isChecked(); }
|
2014-08-26 15:05:59 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void onMinChanged(double d);
|
|
|
|
void onMaxChanged(double d);
|
2014-08-26 17:26:13 +00:00
|
|
|
void onComboChanged(int idx);
|
2014-08-27 04:36:40 +00:00
|
|
|
void onResetClicked();
|
2014-08-26 15:05:59 +00:00
|
|
|
protected:
|
|
|
|
gGraph * graph;
|
2014-08-26 17:26:13 +00:00
|
|
|
QComboBox *combobox;
|
|
|
|
// QCheckBox *checkbox;
|
2014-08-26 15:05:59 +00:00
|
|
|
QDoubleSpinBox *minbox;
|
|
|
|
QDoubleSpinBox *maxbox;
|
2014-08-27 04:36:40 +00:00
|
|
|
QToolButton * reset;
|
2014-08-26 15:05:59 +00:00
|
|
|
};
|
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
enum FlagType { FT_Bar, FT_Dot, FT_Span };
|
|
|
|
|
2014-08-21 08:04:25 +00:00
|
|
|
|
|
|
|
void setEmptyImage(QString text, QPixmap pixmap);
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
class MyLabel:public QWidget
|
|
|
|
{
|
2014-08-27 09:00:55 +00:00
|
|
|
Q_OBJECT
|
2014-08-17 12:56:05 +00:00
|
|
|
public:
|
|
|
|
MyLabel(QWidget * parent);
|
|
|
|
virtual ~MyLabel();
|
|
|
|
|
|
|
|
void setText(QString text);
|
|
|
|
void setAlignment(Qt::Alignment alignment);
|
|
|
|
|
|
|
|
void setFont(QFont & font);
|
|
|
|
QFont & font() { return m_font; }
|
2014-08-27 09:00:55 +00:00
|
|
|
|
|
|
|
virtual void paintEvent(QPaintEvent *);
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
|
|
QFont m_font;
|
|
|
|
QString m_text;
|
|
|
|
Qt::Alignment m_alignment;
|
2014-08-27 09:00:55 +00:00
|
|
|
QTime time;
|
|
|
|
protected slots:
|
|
|
|
void doRedraw();
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
};
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
class gGraphView;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
const int textque_max = 512;
|
2011-09-28 11:46:32 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \struct TextQue
|
|
|
|
\brief Holds a single item of text for the drawing queue
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
struct TextQue {
|
2014-05-10 00:50:35 +00:00
|
|
|
TextQue() {
|
|
|
|
}
|
|
|
|
TextQue(short x, short y, float angle, QString text, QColor color, QFont * font, bool antialias):
|
|
|
|
x(x), y(y), angle(angle), text(text), color(color), font(font), antialias(antialias)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
TextQue(const TextQue & copy) {
|
|
|
|
x=copy.x;
|
|
|
|
y=copy.y;
|
|
|
|
text=copy.text;
|
|
|
|
angle=copy.angle;
|
|
|
|
color=copy.color;
|
|
|
|
font=copy.font;
|
|
|
|
antialias=copy.antialias;
|
|
|
|
}
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \variable contains the x axis screen position to draw the text
|
|
|
|
short x;
|
|
|
|
//! \variable contains the y axis screen position to draw the text
|
|
|
|
short y;
|
|
|
|
//! \variable the angle in degrees for drawing rotated text
|
2011-08-26 01:14:49 +00:00
|
|
|
float angle;
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \variable the actual text to draw
|
2011-08-26 01:14:49 +00:00
|
|
|
QString text;
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \variable the color the text will be drawn in
|
2011-08-26 01:14:49 +00:00
|
|
|
QColor color;
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \variable a pointer to the QFont to use to draw this text
|
2011-08-26 01:14:49 +00:00
|
|
|
QFont *font;
|
2013-01-17 19:16:20 +00:00
|
|
|
//! \variable whether to use antialiasing to draw this text
|
|
|
|
bool antialias;
|
2011-08-26 01:14:49 +00:00
|
|
|
};
|
|
|
|
|
2014-08-12 10:44:05 +00:00
|
|
|
struct TextQueRect {
|
|
|
|
TextQueRect() {
|
|
|
|
}
|
2014-08-17 12:56:05 +00:00
|
|
|
TextQueRect(QRectF r, quint32 flags, QString text, float angle, QColor color, QFont * font, bool antialias):
|
|
|
|
rect(r), flags(flags), text(text), angle(angle), color(color), font(font), antialias(antialias)
|
2014-08-12 10:44:05 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
TextQueRect(const TextQueRect & copy) {
|
|
|
|
rect = copy.rect;
|
|
|
|
flags = copy.flags;
|
|
|
|
text = copy.text;
|
|
|
|
angle = copy.angle;
|
|
|
|
color = copy.color;
|
|
|
|
font = copy.font;
|
|
|
|
antialias = copy.antialias;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \variable contains the QRect containing the text object
|
|
|
|
QRectF rect;
|
|
|
|
//! \variable Qt alignment flags..
|
2014-08-17 12:56:05 +00:00
|
|
|
quint32 flags;
|
2014-08-12 10:44:05 +00:00
|
|
|
//! \variable the actual text to draw
|
|
|
|
QString text;
|
|
|
|
//! \variable the angle in degrees for drawing rotated text
|
|
|
|
float angle;
|
|
|
|
//! \variable the color the text will be drawn in
|
|
|
|
QColor color;
|
|
|
|
//! \variable a pointer to the QFont to use to draw this text
|
|
|
|
QFont *font;
|
|
|
|
//! \variable whether to use antialiasing to draw this text
|
|
|
|
bool antialias;
|
|
|
|
};
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
/*! \class MyScrollBar
|
|
|
|
\brief An custom scrollbar to interface with gGraphWindow
|
|
|
|
*/
|
2014-04-10 17:33:20 +00:00
|
|
|
class MyScrollBar : public QScrollBar
|
2011-08-25 06:11:44 +00:00
|
|
|
{
|
2014-04-10 17:33:20 +00:00
|
|
|
public:
|
2014-04-23 13:19:56 +00:00
|
|
|
MyScrollBar(QWidget *parent = nullptr)
|
2014-04-17 05:55:38 +00:00
|
|
|
: QScrollBar(parent)
|
2014-04-10 17:33:20 +00:00
|
|
|
{ }
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
void SendWheelEvent(QWheelEvent *e) {
|
2014-04-10 17:33:20 +00:00
|
|
|
wheelEvent(e);
|
|
|
|
}
|
2011-08-25 06:11:44 +00:00
|
|
|
};
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
/*! \class gThread
|
|
|
|
\brief Part of the Threaded drawing code
|
|
|
|
|
|
|
|
This is currently broken, as Qt didn't behave anyway, and it offered no performance improvement drawing-wise
|
|
|
|
*/
|
2014-04-10 17:33:20 +00:00
|
|
|
class gThread : public QThread
|
2011-08-31 11:44:53 +00:00
|
|
|
{
|
2014-04-10 17:33:20 +00:00
|
|
|
public:
|
2011-09-05 02:30:10 +00:00
|
|
|
gThread(gGraphView *g);
|
2011-09-01 03:43:47 +00:00
|
|
|
~gThread();
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Start thread process
|
2011-08-31 11:44:53 +00:00
|
|
|
void run();
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Kill thread process
|
2014-04-10 17:33:20 +00:00
|
|
|
void die() { m_running = false; }
|
2011-08-31 12:24:45 +00:00
|
|
|
QMutex mutex;
|
2014-04-10 17:33:20 +00:00
|
|
|
|
|
|
|
protected:
|
2011-09-05 02:30:10 +00:00
|
|
|
gGraphView *graphview;
|
2011-09-01 02:06:38 +00:00
|
|
|
volatile bool m_running;
|
2011-08-31 11:44:53 +00:00
|
|
|
};
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
/*! \class gToolTip
|
|
|
|
\brief Popup Tooltip to display information over the OpenGL graphs
|
|
|
|
*/
|
2014-04-10 17:33:20 +00:00
|
|
|
class gToolTip : public QObject
|
2011-09-05 10:28:41 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-04-10 17:33:20 +00:00
|
|
|
public:
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Initializes the ToolTip object, and connects the timeout to the gGraphView object
|
2014-04-10 17:33:20 +00:00
|
|
|
gToolTip(gGraphView *graphview);
|
2011-09-05 10:28:41 +00:00
|
|
|
virtual ~gToolTip();
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
/*! \fn virtual void display(QString text, int x, int y, int timeout=2000);
|
|
|
|
\brief Set the tooltips display message, position, and timeout value
|
|
|
|
*/
|
2014-08-06 05:30:15 +00:00
|
|
|
virtual void display(QString text, int x, int y, ToolTipAlignment align = TT_AlignCenter, int timeout = 0);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
//! \brief Draw the tooltip
|
|
|
|
virtual void paint(QPainter &paint); //actually paints it.
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Close the tooltip early.
|
2011-09-05 10:28:41 +00:00
|
|
|
void cancel();
|
2012-01-03 07:15:02 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if the tooltip is currently visible
|
|
|
|
bool visible() { return m_visible; }
|
2014-04-10 17:33:20 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
gGraphView *m_graphview;
|
|
|
|
QTimer *timer;
|
2011-09-05 10:28:41 +00:00
|
|
|
QPoint m_pos;
|
2014-04-10 17:33:20 +00:00
|
|
|
int tw, th;
|
2011-09-05 10:28:41 +00:00
|
|
|
QString m_text;
|
|
|
|
bool m_visible;
|
|
|
|
int m_spacer;
|
2013-01-18 15:27:44 +00:00
|
|
|
QImage m_image;
|
2013-01-18 10:03:10 +00:00
|
|
|
bool m_invalidate;
|
2014-08-06 05:30:15 +00:00
|
|
|
ToolTipAlignment m_alignment;
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-04-10 17:33:20 +00:00
|
|
|
protected slots:
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Timeout to hide tooltip, and redraw without it.
|
2011-09-05 10:28:41 +00:00
|
|
|
void timerDone();
|
|
|
|
};
|
|
|
|
|
2014-07-19 13:38:07 +00:00
|
|
|
struct SelectionHistoryItem {
|
|
|
|
SelectionHistoryItem() {
|
|
|
|
minx=maxx=0;
|
|
|
|
}
|
|
|
|
SelectionHistoryItem(quint64 m1, quint64 m2) {
|
|
|
|
minx=m1;
|
|
|
|
maxx=m2;
|
|
|
|
}
|
|
|
|
|
|
|
|
SelectionHistoryItem(const SelectionHistoryItem & copy) {
|
|
|
|
minx = copy.minx;
|
|
|
|
maxx = copy.maxx;
|
|
|
|
}
|
|
|
|
quint64 minx;
|
|
|
|
quint64 maxx;
|
|
|
|
};
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
/*! \class gGraphView
|
|
|
|
\brief Main OpenGL Graph Area, derived from QGLWidget
|
|
|
|
|
|
|
|
This widget contains a list of graphs, and provides the means to display them, scroll via an attached
|
|
|
|
scrollbar, change the order around, and resize individual graphs.
|
|
|
|
|
|
|
|
It replaced QScrollArea and multiple QGLWidgets graphs, and a very buggy QSplitter.
|
|
|
|
|
|
|
|
It led to quite a performance increase over the old Qt method.
|
|
|
|
|
|
|
|
*/
|
2014-05-16 14:08:16 +00:00
|
|
|
class gGraphView
|
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
:public QWidget
|
|
|
|
#else
|
|
|
|
:public QGLWidget
|
|
|
|
#endif
|
2011-08-25 06:11:44 +00:00
|
|
|
{
|
2014-08-17 12:56:05 +00:00
|
|
|
friend class gGraph;
|
2011-08-25 06:11:44 +00:00
|
|
|
Q_OBJECT
|
2014-04-10 17:33:20 +00:00
|
|
|
public:
|
2011-12-18 12:31:11 +00:00
|
|
|
/*! \fn explicit gGraphView(QWidget *parent = 0,gGraphView * shared=0);
|
|
|
|
\brief Constructs a new gGraphView object (main graph area)
|
|
|
|
\param QWidget * parent
|
|
|
|
\param gGraphView * shared
|
|
|
|
|
|
|
|
The shared parameter allows for OpenGL context sharing.
|
|
|
|
But this must not be shared with Printers snapshot gGraphView object,
|
|
|
|
or it will lead to display/font corruption
|
|
|
|
*/
|
2014-04-10 17:33:20 +00:00
|
|
|
explicit gGraphView(QWidget *parent = 0, gGraphView *shared = 0);
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual ~gGraphView();
|
2014-05-15 18:15:32 +00:00
|
|
|
virtual void closeEvent(QCloseEvent * event);
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Add gGraph g to this gGraphView, in the requested graph-linkage group
|
2014-04-10 17:33:20 +00:00
|
|
|
void addGraph(gGraph *g, short group = 0);
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief The width of the vertical text Title area for all graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
static const int titleWidth = 30;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief The splitter is drawn inside this gap
|
2014-04-10 17:33:20 +00:00
|
|
|
static const int graphSpacer = 4;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
bool contains(QString name) {
|
|
|
|
for (int i=0; i<m_graphs.size(); ++i) {
|
|
|
|
if (m_graphs[i]->name() == name) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
gGraph *operator [](QString name) {
|
|
|
|
for (int i=0; i<m_graphs.size(); ++i) {
|
|
|
|
if (m_graphs[i]->name() == name) return m_graphs[i];
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Finds the top pixel position of the supplied graph
|
2014-04-10 17:33:20 +00:00
|
|
|
float findTop(gGraph *graph);
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Returns the scaleY value, which is used when laying out less graphs than fit on the screen.
|
2011-08-25 06:11:44 +00:00
|
|
|
float scaleY() { return m_scaleY; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Sets the scaleY value, which is used when laying out less graphs than fit on the screen.
|
2014-04-10 17:33:20 +00:00
|
|
|
void setScaleY(float sy) { m_scaleY = sy; }
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Returns the current selected time range
|
2014-04-10 17:33:20 +00:00
|
|
|
void GetXBounds(qint64 &st, qint64 &et);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
2012-01-03 16:29:35 +00:00
|
|
|
//! \brief Returns the maximum time range bounds
|
2014-04-10 17:33:20 +00:00
|
|
|
void GetRXBounds(qint64 &st, qint64 &et);
|
2012-01-03 16:29:35 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Resets the time range to default for this day. Refreshing the display if refresh==true.
|
2014-04-10 17:33:20 +00:00
|
|
|
void ResetBounds(bool refresh = true);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Supplies time range to all graph objects in linked group, refreshing if requested
|
2014-04-10 17:33:20 +00:00
|
|
|
void SetXBounds(qint64 minx, qint64 maxx, short group = 0, bool refresh = true);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Saves the current graph order, heights, min & Max Y values to disk
|
2011-11-27 16:07:28 +00:00
|
|
|
void SaveSettings(QString title);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Loads the current graph order, heights, min & max Y values from disk
|
2011-11-27 16:07:28 +00:00
|
|
|
bool LoadSettings(QString title);
|
|
|
|
|
2014-04-23 13:19:56 +00:00
|
|
|
//! \brief Returns the graph object matching the supplied name, nullptr if it does not exist.
|
2011-11-27 22:36:38 +00:00
|
|
|
gGraph *findGraph(QString name);
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-07-16 17:12:52 +00:00
|
|
|
//! \brief Returns the graph object matching the graph title, nullptr if it does not exist.
|
|
|
|
gGraph *findGraphTitle(QString title);
|
|
|
|
|
2014-07-19 12:17:32 +00:00
|
|
|
//! \brief Returns true if control key is down during select operation
|
|
|
|
inline bool metaSelect() const { return m_metaselect; }
|
|
|
|
|
|
|
|
//! \brief Returns true if currently selecting data with mouse
|
|
|
|
inline bool selectionInProgress() const { return m_button_down; }
|
|
|
|
|
2014-04-10 17:33:20 +00:00
|
|
|
inline float printScaleX() const { return print_scaleX; }
|
|
|
|
inline float printScaleY() const { return print_scaleY; }
|
|
|
|
inline void setPrintScaleX(float x) { print_scaleX = x; }
|
|
|
|
inline void setPrintScaleY(float y) { print_scaleY = y; }
|
2011-12-18 12:31:11 +00:00
|
|
|
|
2014-07-19 14:09:04 +00:00
|
|
|
void saveHistory() {
|
|
|
|
history.push_front(SelectionHistoryItem(m_minx, m_maxx));
|
|
|
|
if (history.size() > max_history) {
|
|
|
|
history.pop_back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Returns true if all Graph objects contain NO day data. ie, graph area is completely empty.
|
2011-12-10 12:14:48 +00:00
|
|
|
bool isEmpty();
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Tell all graphs to deslect any highlighted areas
|
2011-10-31 11:55:25 +00:00
|
|
|
void deselect();
|
2011-12-18 12:31:11 +00:00
|
|
|
|
2014-04-10 17:33:20 +00:00
|
|
|
QPoint pointClicked() const { return m_point_clicked; }
|
|
|
|
void setPointClicked(QPoint p) { m_point_clicked = p; }
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Set a redraw timer for ms milliseconds, clearing any previous redraw timer.
|
2011-09-03 15:54:27 +00:00
|
|
|
void timedRedraw(int ms);
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-08-25 09:00:19 +00:00
|
|
|
gGraph *m_selected_graph;
|
2014-04-10 17:33:20 +00:00
|
|
|
gToolTip *m_tooltip;
|
|
|
|
QTimer *timer;
|
2011-08-25 09:00:19 +00:00
|
|
|
|
2014-08-12 10:44:05 +00:00
|
|
|
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
2014-08-17 12:56:05 +00:00
|
|
|
void AddTextQue(const QString &text, QRectF rect, quint32 flags, float angle = 0.0,
|
2014-08-12 10:44:05 +00:00
|
|
|
QColor color = Qt::black, QFont *font = defaultfont, bool antialias = true);
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method)
|
2014-05-10 00:50:35 +00:00
|
|
|
void AddTextQue(const QString &text, short x, short y, float angle = 0.0,
|
2014-04-10 17:33:20 +00:00
|
|
|
QColor color = Qt::black, QFont *font = defaultfont, bool antialias = true);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
2014-05-10 00:50:35 +00:00
|
|
|
// //! \brief Draw all Text in the text drawing queue
|
|
|
|
// void DrawTextQue();
|
2011-08-29 07:13:58 +00:00
|
|
|
|
2013-01-18 21:47:12 +00:00
|
|
|
//! \brief Draw all text components using QPainter object painter
|
|
|
|
void DrawTextQue(QPainter &painter);
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Returns number of graphs contained (whether they are visible or not)
|
2014-04-10 17:33:20 +00:00
|
|
|
int size() const { return m_graphs.size(); }
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Return individual graph by index value
|
2014-04-10 17:33:20 +00:00
|
|
|
gGraph *operator[](int i) { return m_graphs[i]; }
|
2011-08-29 07:13:58 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Returns the custom scrollbar object linked to this gGraphArea
|
2014-04-10 17:33:20 +00:00
|
|
|
MyScrollBar *scrollBar() const { return m_scrollbar; }
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Sets the custom scrollbar object linked to this gGraphArea
|
2011-10-31 11:55:25 +00:00
|
|
|
void setScrollBar(MyScrollBar *sb);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the correct scrollbar parameters for all visible, non empty graphs.
|
2011-08-29 07:13:58 +00:00
|
|
|
void updateScrollBar();
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Called on resize, fits graphs when too few to show, by scaling to fit screen size. Calls updateScrollBar()
|
2011-08-29 07:13:58 +00:00
|
|
|
void updateScale(); // update scale & Scrollbar
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Returns a count of all visible, non-empty Graphs.
|
2011-12-01 15:57:06 +00:00
|
|
|
int visibleGraphs();
|
2011-10-31 11:55:25 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Returns the horizontal travel of the mouse, for use in Mouse Handling code.
|
2014-04-10 17:33:20 +00:00
|
|
|
int horizTravel() const { return m_horiz_travel; }
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Sets the message displayed when there are no graphs to draw
|
2014-04-10 17:33:20 +00:00
|
|
|
void setEmptyText(QString s) { m_emptytext = s; }
|
2011-10-31 11:55:25 +00:00
|
|
|
|
2014-08-21 14:16:23 +00:00
|
|
|
//! \brief Returns the message displayed when there are no graphs to draw
|
|
|
|
QString emptyText() { return m_emptytext; }
|
|
|
|
|
2014-08-21 08:04:25 +00:00
|
|
|
//! \brief Sets the message displayed when there are no graphs to draw
|
|
|
|
void setEmptyImage(QPixmap pm) { m_emptyimage = pm; }
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
inline const float &devicePixelRatio() { return m_dpr; }
|
|
|
|
void setDevicePixelRatio(float dpr) { m_dpr = dpr; }
|
2013-11-04 06:49:48 +00:00
|
|
|
|
2011-10-30 07:08:18 +00:00
|
|
|
#ifdef ENABLE_THREADED_DRAWING
|
2011-08-30 17:22:54 +00:00
|
|
|
QMutex text_mutex;
|
2011-08-31 11:44:53 +00:00
|
|
|
QMutex gl_mutex;
|
2014-04-17 05:55:38 +00:00
|
|
|
QSemaphore *masterlock;
|
|
|
|
bool useThreads() { return m_idealthreads > 1; }
|
2011-10-30 07:08:18 +00:00
|
|
|
QVector<gThread *> m_threads;
|
|
|
|
int m_idealthreads;
|
|
|
|
QMutex dl_mutex;
|
|
|
|
#endif
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Sends day object to be distributed to all Graphs Layers objects
|
2014-04-17 05:55:38 +00:00
|
|
|
void setDay(Day *day);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief pops a graph off the list for multithreaded drawing code
|
2014-04-10 17:33:20 +00:00
|
|
|
gGraph *popGraph(); // exposed for multithreaded drawing
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Hides the splitter, used in report printing code
|
2014-04-10 17:33:20 +00:00
|
|
|
void hideSplitter() { m_showsplitter = false; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Re-enabled the in-between graph splitters.
|
2014-04-10 17:33:20 +00:00
|
|
|
void showSplitter() { m_showsplitter = true; }
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Trash all graph objects listed (without destroying Graph contents)
|
2011-10-31 11:55:25 +00:00
|
|
|
void trashGraphs();
|
2013-01-15 05:55:39 +00:00
|
|
|
|
2013-01-18 08:37:17 +00:00
|
|
|
//! \brief Enable or disable the Text Pixmap Caching system preference overide
|
2014-04-10 17:33:20 +00:00
|
|
|
void setUsePixmapCache(bool b) { use_pixmap_cache = b; }
|
2013-01-17 21:52:29 +00:00
|
|
|
|
|
|
|
//! \brief Return whether or not the Pixmap Cache for text rendering is being used.
|
2013-01-18 08:37:17 +00:00
|
|
|
bool usePixmapCache();
|
2013-01-17 21:52:29 +00:00
|
|
|
|
2014-05-07 19:52:59 +00:00
|
|
|
//! \brief Graph drawing routines, returns true if there weren't any graphs to draw
|
|
|
|
bool renderGraphs(QPainter &painter);
|
|
|
|
|
2014-07-19 12:51:17 +00:00
|
|
|
//! \brief Used internally by graph mousehandler to set modifier state
|
|
|
|
void setMetaSelect(bool b) { m_metaselect = b; }
|
|
|
|
|
2014-07-21 07:14:02 +00:00
|
|
|
//! \brief The current time the mouse pointer is hovering over
|
2014-08-06 03:30:47 +00:00
|
|
|
inline double currentTime() { return m_currenttime; }
|
2014-07-21 07:14:02 +00:00
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
//! \brief Returns a context formatted text string with the currently selected time range
|
|
|
|
QString getRangeString();
|
|
|
|
|
|
|
|
Layer * findLayer(gGraph * graph, LayerType type);
|
|
|
|
|
|
|
|
void populateMenu(gGraph *);
|
2014-08-26 15:05:59 +00:00
|
|
|
QMenu * limits_menu;
|
2014-08-17 12:56:05 +00:00
|
|
|
QMenu * lines_menu;
|
|
|
|
QMenu * plots_menu;
|
2014-08-20 18:36:44 +00:00
|
|
|
|
|
|
|
QMenu * oximeter_menu;
|
|
|
|
QMenu * cpap_menu;
|
2014-08-17 12:56:05 +00:00
|
|
|
|
2014-08-11 05:00:20 +00:00
|
|
|
|
|
|
|
inline void setCurrentTime(double time) {
|
|
|
|
m_currenttime = time;
|
|
|
|
}
|
2014-07-21 07:14:02 +00:00
|
|
|
|
2014-07-20 04:22:33 +00:00
|
|
|
inline QPoint currentMousePos() const { return m_mouse; }
|
|
|
|
|
2014-07-21 16:14:07 +00:00
|
|
|
void dumpInfo();
|
2014-08-06 16:12:55 +00:00
|
|
|
void resetMouse() { m_mouse = QPoint(0,0); }
|
2014-07-21 16:14:07 +00:00
|
|
|
|
2014-08-07 17:20:52 +00:00
|
|
|
void getSelectionTimes(qint64 & start, qint64 & end);
|
|
|
|
|
2014-05-10 00:50:35 +00:00
|
|
|
// for profiling purposes, a count of lines drawn in a single frame
|
|
|
|
int lines_drawn_this_frame;
|
|
|
|
int quads_drawn_this_frame;
|
|
|
|
int strings_drawn_this_frame;
|
|
|
|
int strings_cached_this_frame;
|
|
|
|
|
2014-07-19 14:09:04 +00:00
|
|
|
QList<SelectionHistoryItem> history;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
2013-01-15 05:55:39 +00:00
|
|
|
|
2014-07-20 18:24:03 +00:00
|
|
|
virtual void leaveEvent (QEvent * event);
|
|
|
|
|
2014-05-16 14:18:39 +00:00
|
|
|
//! \brief The heart of the drawing code
|
|
|
|
#ifdef BROKEN_OPENGL_BUILD
|
|
|
|
virtual void paintEvent(QPaintEvent *);
|
|
|
|
#else
|
2014-05-16 13:38:28 +00:00
|
|
|
virtual void paintGL();
|
2014-05-16 14:18:39 +00:00
|
|
|
#endif
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Calculates the sum of all graph heights
|
2011-08-25 06:11:44 +00:00
|
|
|
float totalHeight();
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the sum of all graph heights, taking scaling into consideration
|
2011-08-25 06:11:44 +00:00
|
|
|
float scaleHeight();
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Update the OpenGL area when the screen is resized
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual void resizeEvent(QResizeEvent *);
|
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Set the Vertical offset (used in scrolling)
|
2011-08-25 06:11:44 +00:00
|
|
|
void setOffsetY(int offsetY);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Set the Horizontal offset (not used yet)
|
2011-08-25 06:11:44 +00:00
|
|
|
void setOffsetX(int offsetX);
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Mouse Moved somewhere in main gGraphArea, propagates to the individual graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void mouseMoveEvent(QMouseEvent *event);
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Mouse Button Press Event somewhere in main gGraphArea, propagates to the individual graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void mousePressEvent(QMouseEvent *event);
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Mouse Button Release Event somewhere in main gGraphArea, propagates to the individual graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void mouseReleaseEvent(QMouseEvent *event);
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Mouse Button Double Click Event somewhere in main gGraphArea, propagates to the individual graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void mouseDoubleClickEvent(QMouseEvent *event);
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Mouse Wheel Event somewhere in main gGraphArea, propagates to the individual graphs
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void wheelEvent(QWheelEvent *event);
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Keyboard event while main gGraphArea has focus.
|
2014-04-10 17:33:20 +00:00
|
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
2014-07-19 12:17:32 +00:00
|
|
|
//! \brief Keyboard event while main gGraphArea has focus.
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *event);
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Add Graph to drawing queue, mainly for the benefit of multithreaded drawing code
|
2014-04-10 17:33:20 +00:00
|
|
|
void queGraph(gGraph *, int originX, int originY, int width, int height);
|
|
|
|
|
|
|
|
Day *m_day;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief the list of graphs to draw this frame
|
2011-09-05 02:30:10 +00:00
|
|
|
QList<gGraph *> m_drawlist;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Linked graph object containing shared GL Context (in this app, daily view's gGraphView)
|
|
|
|
gGraphView *m_shared;
|
|
|
|
|
|
|
|
//! \brief List of all graphs contained in this area
|
2011-08-25 06:11:44 +00:00
|
|
|
QVector<gGraph *> m_graphs;
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief List of all graphs contained, indexed by title
|
2014-07-16 17:12:52 +00:00
|
|
|
QHash<QString, gGraph *> m_graphsbyname;
|
2011-10-31 11:55:25 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \variable Vertical scroll offset (adjusted when scrollbar gets moved)
|
|
|
|
int m_offsetY;
|
|
|
|
//! \variable Horizontal scroll offset (unused, but can be made to work if necessary)
|
|
|
|
int m_offsetX;
|
|
|
|
//! \variable Scale used to enlarge graphs when less graphs than can fit on screen.
|
2011-08-25 06:11:44 +00:00
|
|
|
float m_scaleY;
|
2013-11-04 06:49:48 +00:00
|
|
|
float m_dpr;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
|
|
|
bool m_sizer_dragging;
|
|
|
|
int m_sizer_index;
|
|
|
|
|
|
|
|
bool m_button_down;
|
|
|
|
QPoint m_point_clicked;
|
2014-07-19 12:17:32 +00:00
|
|
|
QPoint m_point_released;
|
|
|
|
bool m_metaselect;
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
QPoint m_sizer_point;
|
2011-08-26 04:09:56 +00:00
|
|
|
int m_horiz_travel;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
MyScrollBar *m_scrollbar;
|
2011-12-19 18:49:35 +00:00
|
|
|
QTimer *redrawtimer;
|
2011-08-25 06:11:44 +00:00
|
|
|
|
|
|
|
bool m_graph_dragging;
|
|
|
|
int m_graph_index;
|
2011-08-26 01:14:49 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief List of all queue text to draw.. not sure why I didn't use a vector here.. Might of been a leak issue
|
2014-05-10 00:50:35 +00:00
|
|
|
QVector<TextQue> m_textque;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2014-08-12 10:44:05 +00:00
|
|
|
//! \brief ANother text que with rect alignment capabilities...
|
|
|
|
QVector<TextQueRect> m_textqueRect;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
int m_lastxpos, m_lastypos;
|
2011-08-29 07:13:58 +00:00
|
|
|
|
|
|
|
QString m_emptytext;
|
2014-08-21 08:04:25 +00:00
|
|
|
QPixmap m_emptyimage;
|
|
|
|
|
2011-09-10 14:17:45 +00:00
|
|
|
bool m_showsplitter;
|
2011-12-02 11:40:47 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
qint64 m_minx, m_maxx;
|
2014-07-19 13:38:07 +00:00
|
|
|
|
2014-07-19 14:09:04 +00:00
|
|
|
QList<SelectionHistoryItem> fwd_history;
|
2014-04-17 05:55:38 +00:00
|
|
|
float print_scaleX, print_scaleY;
|
2011-12-20 05:51:22 +00:00
|
|
|
|
2011-12-20 07:17:09 +00:00
|
|
|
QPixmap previous_day_snapshot;
|
|
|
|
QPixmap current_day_snapshot;
|
|
|
|
bool m_fadingOut;
|
|
|
|
bool m_fadingIn;
|
2011-12-20 11:12:52 +00:00
|
|
|
bool m_limbo;
|
|
|
|
bool m_fadedir;
|
2011-12-20 07:17:09 +00:00
|
|
|
bool m_inAnimation;
|
2011-12-20 11:12:52 +00:00
|
|
|
bool m_blockUpdates;
|
2011-12-20 07:17:09 +00:00
|
|
|
|
2012-01-05 15:17:50 +00:00
|
|
|
QPoint m_mouse;
|
2014-08-27 09:00:55 +00:00
|
|
|
double m_currenttime;
|
2012-01-05 15:17:50 +00:00
|
|
|
|
2011-12-20 07:17:09 +00:00
|
|
|
QTime m_animationStarted;
|
|
|
|
|
2013-01-17 21:48:19 +00:00
|
|
|
bool use_pixmap_cache;
|
2013-01-17 18:26:11 +00:00
|
|
|
|
2014-05-10 00:50:35 +00:00
|
|
|
QPixmapCache pixmapcache;
|
|
|
|
|
2013-11-09 00:59:35 +00:00
|
|
|
QTime horizScrollTime, vertScrollTime;
|
2014-08-17 12:56:05 +00:00
|
|
|
QMenu * context_menu;
|
|
|
|
QAction * pin_action;
|
|
|
|
QPixmap pin_icon;
|
|
|
|
gGraph *pin_graph;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void updateCurrentTime(double);
|
|
|
|
void updateRange(double,double);
|
2013-11-09 00:59:35 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
public slots:
|
2011-12-18 12:31:11 +00:00
|
|
|
//! \brief Callback from the ScrollBar, to change scroll position
|
2011-08-25 06:11:44 +00:00
|
|
|
void scrollbarValueChanged(int val);
|
2011-12-18 12:31:11 +00:00
|
|
|
|
|
|
|
//! \brief Simply refreshes the GL view, called when timeout expires.
|
2011-10-31 11:55:25 +00:00
|
|
|
void refreshTimeout();
|
2014-05-16 14:08:16 +00:00
|
|
|
|
|
|
|
//! \brief Call UpdateGL unless animation is in progress
|
|
|
|
void redraw();
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
//! \brief Resets all contained graphs to have a uniform height.
|
|
|
|
void resetLayout();
|
|
|
|
|
|
|
|
void resetZoom() {
|
|
|
|
ResetBounds(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void togglePin();
|
|
|
|
protected slots:
|
|
|
|
void onLinesClicked(QAction *);
|
|
|
|
void onPlotsClicked(QAction *);
|
2014-08-20 11:30:42 +00:00
|
|
|
void onOverlaysClicked(QAction *);
|
2011-08-25 06:11:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GGRAPHVIEW_H
|