17 lines
456 B
C++
17 lines
456 B
C++
#ifndef TimeAxis_H
|
|
#define TimeAxis_H
|
|
#include "AbsAxis.h"
|
|
namespace YSG {
|
|
struct TimeAxisPrivate;
|
|
class TimeAxis : public AbsAxis {
|
|
public:
|
|
Q_Ptr(TimeAxis)
|
|
void giveData(QTime time);
|
|
int timePointSize(SRC=SRC::Auto);
|
|
void setTickSpace(int tickSpace);
|
|
bool startCoordToEndCoord(SRC=SRC::Auto);
|
|
void setFixedTimePointSize(int timePointSize);
|
|
void unsetFixedTimePointSize();
|
|
};
|
|
}
|
|
#endif |