26 lines
351 B
C
26 lines
351 B
C
|
#ifndef ITEMWINDOW_H
|
||
|
#define ITEMWINDOW_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QPlainTextEdit>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ItemWindow;
|
||
|
}
|
||
|
|
||
|
class ItemWindow : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ItemWindow(QWidget *parent = 0);
|
||
|
~ItemWindow();
|
||
|
|
||
|
QPlainTextEdit* ContentArea() const;
|
||
|
|
||
|
private:
|
||
|
Ui::ItemWindow *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ITEMWINDOW_H
|