2024-11-25 17:15:44 +08:00

30 lines
430 B
C++

#ifndef BRAINTRAIN_H
#define BRAINTRAIN_H
#include <QWidget>
#include <QPainter>
#include "mainwindowpagecontrol.h"
namespace Ui {
class brainTrain;
}
class brainTrain : public QWidget
{
Q_OBJECT
public:
explicit brainTrain(QWidget *parent = nullptr);
~brainTrain();
private:
Ui::brainTrain *ui;
void paintEvent(QPaintEvent*);
private slots:
void on_startTrain_clicked();
};
#endif // BRAINTRAIN_H