mirror of
https://github.com/Indy970/QtHPConnect
synced 2024-12-25 21:59:15 +01:00
34 lines
518 B
C++
34 lines
518 B
C++
#ifndef HP_MDITEXTEDITOR_H
|
|
#define HP_MDITEXTEDITOR_H
|
|
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QMdiSubWindow>
|
|
#include <QTreeView>
|
|
|
|
class hpTreeItem;
|
|
|
|
#include "texteditor.h"
|
|
|
|
class hp_mdiTextEdit: public QMdiSubWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
|
|
textEditor * textEdit;
|
|
hpTreeItem * hptreeitem;
|
|
|
|
public:
|
|
hp_mdiTextEdit(QWidget * parent = nullptr, hpTreeItem * treeItem = nullptr);
|
|
void setup();
|
|
void show();
|
|
~hp_mdiTextEdit();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // HP_MDITEXTEDITOR_H
|