This commit is contained in:
2018-04-14 22:13:49 +02:00
parent b4c8003568
commit 3fb9983fa5
12 changed files with 278 additions and 392 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef CWIDGET_H
#define CWIDGET_H
#include <QWidget>
#include <QMdiSubWindow>
class cWidget : public QWidget
{
Q_OBJECT
public:
explicit cWidget(QWidget *parent = nullptr);
void setWindow(QMdiSubWindow* lpWindow);
QMdiSubWindow* window();
signals:
public slots:
private:
QMdiSubWindow* m_lpWindow;
};
#endif // CWIDGET_H