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-08-25 06:11:44 +00:00
|
|
|
class gYSpacer:public Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gYSpacer(int spacer=20);
|
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height) {}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
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:
|
|
|
|
gXGrid(QColor col=QColor("black"));
|
|
|
|
virtual ~gXGrid();
|
|
|
|
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; }
|
|
|
|
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
|
|
|
|
|
|
|
class gYAxis:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
gYAxis(QColor col=QColor("black"));
|
|
|
|
virtual ~gYAxis();
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height);
|
2011-07-24 17:24:54 +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; }
|
|
|
|
void SetShowMinorTicks(bool b) { m_show_minor_ticks=b; }
|
|
|
|
void SetShowMajorTicks(bool b) { m_show_major_ticks=b; }
|
|
|
|
bool ShowMinorTicks() { return m_show_minor_ticks; }
|
|
|
|
bool ShowMajorTicks() { return m_show_major_ticks; }
|
|
|
|
virtual const QString & Format(double v) { static QString t; t.sprintf("%.1f",v); return t; }
|
2011-06-26 08:30:44 +00:00
|
|
|
static const int Margin=50; // Left margin space
|
2011-07-11 01:58:51 +00:00
|
|
|
|
2011-07-24 17:24:54 +00:00
|
|
|
void SetScale(float f) { m_yaxis_scale=f; } // Scale yaxis ticker values (only what's displayed)
|
|
|
|
float Scale() { return m_yaxis_scale; }
|
2011-06-26 08:30:44 +00:00
|
|
|
protected:
|
|
|
|
bool m_show_major_lines;
|
|
|
|
bool m_show_minor_lines;
|
|
|
|
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-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GYAXIS_H
|