mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
gSessionTime Header
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef GSESSIONTIME_H
|
|
#define GSESSIONTIME_H
|
|
|
|
#include "gGraphView.h"
|
|
#include "gXAxis.h"
|
|
#include "gYAxis.h"
|
|
|
|
class gTimeYAxis:public gYAxis
|
|
{
|
|
public:
|
|
gTimeYAxis(QColor col=QColor("black"));
|
|
virtual ~gTimeYAxis();
|
|
virtual const QString Format(double v);
|
|
};
|
|
|
|
|
|
class gSessionTime:public Layer
|
|
{
|
|
public:
|
|
gSessionTime(ChannelID=EmptyChannel,QColor col=QColor("blue"),Qt::Orientation o=Qt::Horizontal);
|
|
virtual ~gSessionTime();
|
|
|
|
virtual void paint(gGraph & w,int left,int top, int width, int height);
|
|
|
|
protected:
|
|
Qt::Orientation m_orientation;
|
|
|
|
virtual const QString & FormatX(double v) { static QString t; QDateTime d; d=d.fromTime_t(v*86400.0); t=d.toString("MMM dd"); return t; }
|
|
//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; };
|
|
virtual const QString & FormatY(double v) { static QString t; t.sprintf("%.1f",v); return t; }
|
|
|
|
gXAxis *Xaxis;
|
|
QVector<QColor> color;
|
|
};
|
|
|
|
#endif // GSESSIONTIME_H
|