File: timeaxiswidget.h

package info (click to toggle)
apitrace 7.1%2Bgit20170623.d38a69d6%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 15,992 kB
  • sloc: cpp: 179,347; ansic: 62,439; python: 33,058; java: 377; makefile: 105; sh: 26; xml: 26
file content (13 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (6)
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) override;
};