2011-08-02 04:20:26 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gYAxis Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-02 04:20:26 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GYAXIS_H
|
|
|
|
#define GYAXIS_H
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "gGraphView.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
/*! \class gYSpacer
|
|
|
|
\brief A dummy vertical spacer object
|
|
|
|
*/
|
2011-08-25 06:11:44 +00:00
|
|
|
class gYSpacer:public Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gYSpacer(int spacer=20);
|
2011-10-28 05:12:19 +00:00
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height) {
|
|
|
|
Q_UNUSED(w)
|
|
|
|
Q_UNUSED(left)
|
|
|
|
Q_UNUSED(top)
|
|
|
|
Q_UNUSED(width)
|
|
|
|
Q_UNUSED(height)
|
|
|
|
}
|
2011-08-25 06:11:44 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gXGrid
|
|
|
|
\brief Draws the horizintal major/minor grids over graphs
|
|
|
|
*/
|
2011-08-25 10:38:42 +00:00
|
|
|
class gXGrid:public Layer
|
2011-08-25 06:11:44 +00:00
|
|
|
{
|
2011-08-25 10:38:42 +00:00
|
|
|
public:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Constructs an gXGrid object with default settings, and col for line colour.
|
2011-08-25 10:38:42 +00:00
|
|
|
gXGrid(QColor col=QColor("black"));
|
|
|
|
virtual ~gXGrid();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Draw the horizontal lines by adding the to the Vertex GLbuffers
|
2011-08-25 10:38:42 +00:00
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height);
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief set the visibility status of Major lines
|
2011-08-25 10:38:42 +00:00
|
|
|
void setShowMinorLines(bool b) { m_show_minor_lines=b; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief set the visibility status of Minor lines
|
2011-08-25 10:38:42 +00:00
|
|
|
void setShowMajorLines(bool b) { m_show_major_lines=b; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the visibility status of minor lines
|
2011-08-25 10:38:42 +00:00
|
|
|
bool showMinorLines() { return m_show_minor_lines; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the visibility status of Major lines
|
2011-08-25 10:38:42 +00:00
|
|
|
bool showMajorLines() { return m_show_major_lines; }
|
|
|
|
protected:
|
|
|
|
bool m_show_major_lines;
|
|
|
|
bool m_show_minor_lines;
|
|
|
|
QColor m_major_color;
|
|
|
|
QColor m_minor_color;
|
|
|
|
};
|
2011-08-25 06:11:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gYAxis
|
|
|
|
\brief Draws the YAxis tick markers, and numeric labels
|
|
|
|
*/
|
2011-08-25 06:11:44 +00:00
|
|
|
class gYAxis:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Construct a gYAxis object, with QColor col for tickers & text
|
|
|
|
gYAxis(QColor col=QColor("black"));
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gYAxis();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Draw the horizontal tickers display
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
// void SetShowMinorLines(bool b) { m_show_minor_lines=b; }
|
|
|
|
// void SetShowMajorLines(bool b) { m_show_major_lines=b; }
|
|
|
|
// bool ShowMinorLines() { return m_show_minor_lines; }
|
|
|
|
// bool ShowMajorLines() { return m_show_major_lines; }
|
|
|
|
|
|
|
|
//! \brief Sets the visibility status of minor ticks
|
2011-07-24 17:24:54 +00:00
|
|
|
void SetShowMinorTicks(bool b) { m_show_minor_ticks=b; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Sets the visibility status of Major ticks
|
2011-07-24 17:24:54 +00:00
|
|
|
void SetShowMajorTicks(bool b) { m_show_major_ticks=b; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the visibility status of Minor ticks
|
2011-07-24 17:24:54 +00:00
|
|
|
bool ShowMinorTicks() { return m_show_minor_ticks; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the visibility status of Major ticks
|
2011-07-24 17:24:54 +00:00
|
|
|
bool ShowMajorTicks() { return m_show_major_ticks; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Formats the ticker value.. Override to implement other types
|
2011-11-30 06:01:38 +00:00
|
|
|
virtual const QString Format(EventDataType v, int dp);
|
2011-07-11 01:58:51 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Left Margin space in pixels
|
|
|
|
static const int Margin=60;
|
|
|
|
|
|
|
|
//! \brief Set the scale of the Y axis values.. Values can be multiplied by this to convert formats
|
|
|
|
void SetScale(float f) { m_yaxis_scale=f; }
|
|
|
|
|
|
|
|
//! \brief Returns the scale of the Y axis values.. Values can be multiplied by this to convert formats
|
2011-07-24 17:24:54 +00:00
|
|
|
float Scale() { return m_yaxis_scale; }
|
2011-09-05 13:26:10 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
protected:
|
2011-12-19 05:35:05 +00:00
|
|
|
//bool m_show_major_lines;
|
|
|
|
//bool m_show_minor_lines;
|
2011-06-26 08:30:44 +00:00
|
|
|
bool m_show_minor_ticks;
|
|
|
|
bool m_show_major_ticks;
|
2011-07-11 01:58:51 +00:00
|
|
|
float m_yaxis_scale;
|
2011-08-02 04:20:26 +00:00
|
|
|
|
|
|
|
QColor m_line_color;
|
|
|
|
QColor m_text_color;
|
2011-09-28 11:46:32 +00:00
|
|
|
GLShortBuffer * lines;
|
2011-09-05 13:26:10 +00:00
|
|
|
virtual bool mouseMoveEvent(QMouseEvent * event);
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gYAxisTime
|
|
|
|
\brief Draws the YAxis tick markers, and labels in time format
|
|
|
|
*/
|
2011-11-30 06:01:38 +00:00
|
|
|
class gYAxisTime:public gYAxis
|
|
|
|
{
|
|
|
|
public:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Construct a gYAxisTime object, with QColor col for tickers & times
|
2011-11-30 06:01:38 +00:00
|
|
|
gYAxisTime(QColor col=Qt::black);
|
|
|
|
virtual ~gYAxisTime();
|
|
|
|
protected:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Overrides gYAxis Format to display Time format
|
2011-11-30 06:01:38 +00:00
|
|
|
virtual const QString Format(EventDataType v, int dp);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Whether to format as 12 or 24 hour times
|
2011-11-30 06:01:38 +00:00
|
|
|
bool show_12hr;
|
|
|
|
};
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // GYAXIS_H
|