summaryrefslogtreecommitdiff
path: root/gui/graphing/timeaxiswidget.h
blob: 7f79a399768018932fef43340e70a7fa932757df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "graphaxiswidget.h"

/**
 * A simple axis that draws text using getTimeString to nicely format time values
 */
class TimeAxisWidget : public GraphAxisWidget {
public:
    TimeAxisWidget(QWidget* parent = 0);

    virtual void paintEvent(QPaintEvent *e);
};