QtCurvesCpp/mainwindow.h

27 lines
395 B
C
Raw Normal View History

2017-08-28 08:17:35 +02:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = root);
~MainWindow();
2017-08-28 10:07:22 +02:00
protected:
void paintEvent(QPaintEvent* event) Q_DECL_OVERRIDE;
2017-08-28 08:17:35 +02:00
private:
constexpr static QWidget* root = 0;
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H