OSCAR-code/sleepyhead/Graphs/gYAxis.h

150 lines
5.0 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* gYAxis 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-06-26 08:30:44 +00:00
#ifndef GYAXIS_H
#define GYAXIS_H
#include "gGraphView.h"
2011-06-26 08:30:44 +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 10:38:42 +00:00
public:
//! \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();
//! \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);
//! \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; }
//! \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; }
//! \brief Returns the visibility status of minor lines
2011-08-25 10:38:42 +00:00
bool showMinorLines() { return m_show_minor_lines; }
//! \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;
};
/*! \class gYAxis
\brief Draws the YAxis tick markers, and numeric labels
*/
class gYAxis:public Layer
2011-06-26 08:30:44 +00:00
{
public:
//! \brief Construct a gYAxis object, with QColor col for tickers & text
gYAxis(QColor col=Qt::black);
2011-06-26 08:30:44 +00:00
virtual ~gYAxis();
//! \brief Draw the horizontal tickers display
virtual void paint(gGraph & w,int left,int top, int width, int height);
// 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
void SetShowMinorTicks(bool b) { m_show_minor_ticks=b; }
//! \brief Sets the visibility status of Major ticks
void SetShowMajorTicks(bool b) { m_show_major_ticks=b; }
//! \brief Returns the visibility status of Minor ticks
bool ShowMinorTicks() { return m_show_minor_ticks; }
//! \brief Returns the visibility status of Major ticks
bool ShowMajorTicks() { return m_show_major_ticks; }
//! \brief Formats the ticker value.. Override to implement other types
virtual const QString Format(EventDataType v, int dp);
//! \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
float Scale() { return m_yaxis_scale; }
2011-09-05 13:26:10 +00:00
2011-06-26 08:30:44 +00:00
protected:
//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;
float m_yaxis_scale;
QColor m_line_color;
QColor m_text_color;
gVertexBuffer * lines;
virtual bool mouseMoveEvent(QMouseEvent * event,gGraph * graph);
virtual bool mouseDoubleClickEvent(QMouseEvent * event, gGraph * graph);
2011-09-05 13:26:10 +00:00
QImage m_image;
GLuint m_textureID;
2011-06-26 08:30:44 +00:00
};
/*! \class gYAxisTime
\brief Draws the YAxis tick markers, and labels in time format
*/
class gYAxisTime:public gYAxis
{
public:
//! \brief Construct a gYAxisTime object, with QColor col for tickers & times
gYAxisTime(bool hr12=true, QColor col=Qt::black) : gYAxis(col), show_12hr(hr12) {}
virtual ~gYAxisTime() {}
protected:
//! \brief Overrides gYAxis Format to display Time format
virtual const QString Format(EventDataType v, int dp);
//! \brief Whether to format as 12 or 24 hour times
bool show_12hr;
};
/*! \class gYAxisWeight
\brief Draws the YAxis tick markers, and labels in weight format
*/
class gYAxisWeight:public gYAxis
{
public:
//! \brief Construct a gYAxisWeight object, with QColor col for tickers & weight values
gYAxisWeight(UnitSystem us=US_Metric, QColor col=Qt::black) :gYAxis(col), m_unitsystem(us) {}
virtual ~gYAxisWeight() {}
//! \brief Returns the current UnitSystem displayed (eg, US_Metric (the rest of the world), US_Archiac (American) )
UnitSystem unitSystem() { return m_unitsystem; }
//! \brief Set the unit system displayed by this YTicker
void setUnitSystem(UnitSystem us) { m_unitsystem=us; }
protected:
//! \brief Overrides gYAxis Format to display Time format
virtual const QString Format(EventDataType v, int dp);
UnitSystem m_unitsystem;
};
2011-06-26 08:30:44 +00:00
#endif // GYAXIS_H