mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-24 09:10:16 -06:00
Add files via upload
This commit is contained in:
parent
fdd88eaeb2
commit
46796bed89
10
plotwidget.cpp
Normal file
10
plotwidget.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include "plotwidget.h"
|
||||
|
||||
PlotWidget::PlotWidget(QWidget *parent) : QWidget(parent)
|
||||
{
|
||||
|
||||
}
|
||||
void PlotWidget::leaveEvent(QEvent *event)
|
||||
{
|
||||
emit leftPlot();
|
||||
}
|
19
plotwidget.h
Normal file
19
plotwidget.h
Normal file
@ -0,0 +1,19 @@
|
||||
#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
|
Loading…
Reference in New Issue
Block a user