mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-11-15 19:48:02 +01:00
27 lines
391 B
C++
27 lines
391 B
C++
#ifndef HP_MDIWINDOW_H
|
|
#define HP_MDIWINDOW_H
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QMdiSubWindow>
|
|
|
|
#include "texteditor.h"
|
|
|
|
class hp_MdiWindow: public QMdiSubWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
|
|
QTextEdit * textEdit;
|
|
|
|
public:
|
|
hp_MdiWindow(QWidget * parent);
|
|
void setup();
|
|
QTextEdit * getEditor();
|
|
void show();
|
|
~hp_MdiWindow();
|
|
|
|
};
|
|
|
|
#endif // HP_MDIWINDOW_H
|