OSCAR-code/sleepyhead/Graphs/gXAxis.h

58 lines
1.9 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:
*
* gXAxis 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 GXAXIS_H
#define GXAXIS_H
#include <QImage>
#include <QPixmap>
#include "Graphs/layer.h"
2011-06-26 08:30:44 +00:00
/*! \class gXAxis
\brief Draws the XTicker timescales underneath graphs */
class gXAxis: public Layer
2011-06-26 08:30:44 +00:00
{
public:
gXAxis(QColor col = Qt::black, bool fadeout = true);
virtual ~gXAxis();
2014-05-07 19:52:59 +00:00
virtual void paint(QPainter &painter, gGraph &w, int left, int top, int width, int height);
static const int Margin = 20; // How much room does this take up. (Bottom margin)
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; }
void setUtcFix(bool b) { m_utcfix = b; }
2011-09-13 02:51:50 +00:00
protected:
// virtual const wxString & Format(double v) { static wxString t; wxDateTime d; d.Set(v); t=d.Format(wxT("%H:%M")); return t; };
bool m_show_major_lines;
bool m_show_minor_lines;
bool m_show_minor_ticks;
bool m_show_major_ticks;
2011-06-26 08:30:44 +00:00
bool m_utcfix;
2011-08-26 08:18:14 +00:00
QColor m_line_color;
QColor m_text_color;
QColor m_major_color;
QColor m_minor_color;
bool m_fadeout;
qint64 tz_offset;
float tz_hours;
QImage m_image;
2011-06-26 08:30:44 +00:00
};
#endif // GXAXIS_H