mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2025-02-25 18:55:24 -06:00
20 lines
310 B
C
20 lines
310 B
C
|
|
#ifndef PLOTWIDGET_H
|
||
|
|
#define PLOTWIDGET_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
class PlotWidget : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit PlotWidget(QWidget *parent = nullptr);
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void leftPlot();
|
||
|
|
protected:
|
||
|
|
void leaveEvent(QEvent *event);
|
||
|
|
public slots:
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // PLOTWIDGET_H
|