2011-07-12 07:10:34 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gBarChart Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-07-12 07:10:34 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GBARCHART_H
|
|
|
|
#define GBARCHART_H
|
|
|
|
|
|
|
|
#include "graphlayer.h"
|
|
|
|
#include "gXAxis.h"
|
|
|
|
class gBarChart:public gLayer
|
|
|
|
{
|
|
|
|
public:
|
2011-07-31 20:24:43 +00:00
|
|
|
gBarChart(ChannelID code=EmptyChannel,QColor col=QColor("blue"),Qt::Orientation o=Qt::Horizontal);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gBarChart();
|
|
|
|
|
|
|
|
virtual void Plot(gGraphWindow & w,float scrx,float scry);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
Qt::Orientation m_orientation;
|
|
|
|
|
|
|
|
// d.Set(i+2400000.5+.000001); // JDN vs MJD vs Rounding errors
|
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual const QString & FormatX(double v) { static QString t; QDateTime d; d=d.fromMSecsSinceEpoch(v*86400000.0); t=d.toString("MMM dd"); return t; }
|
2011-06-26 08:30:44 +00:00
|
|
|
//virtual const wxString & FormatX(double v) { static wxString t; wxDateTime d; d.Set(vi*86400000.0); t=d.Format(wxT("HH:mm")); return t; };
|
|
|
|
//virtual const wxString & FormatX(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; };
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual const QString & FormatY(double v) { static QString t; t.sprintf("%.1f",v); return t; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
gXAxis *Xaxis;
|
2011-08-02 04:20:26 +00:00
|
|
|
QVector<QColor> color;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GBARCHART_H
|