27 lines
526 B
C++
27 lines
526 B
C++
#pragma once
|
|
// #include "ui_TxtEditorDlg.h"
|
|
#include "WellLogUI.h"
|
|
#include "ObjWellLogINP.h"
|
|
class QString;
|
|
namespace Ui
|
|
{
|
|
class TxtEditorDlg;
|
|
}
|
|
class OSGWELLLOGUI_EXPORT TxtEditorDlg: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
TxtEditorDlg(CObjWellLogINP * currentinp);
|
|
~TxtEditorDlg(void);
|
|
QString GetEditingTxt() const { return EditingTxt; }
|
|
void SetEditingTxt(QString val);
|
|
public:
|
|
CObjWellLogINP * m_Currentinp;
|
|
private:
|
|
Ui::TxtEditorDlg* ui;
|
|
QString EditingTxt;
|
|
private slots:
|
|
void slotOkButtonClicked();
|
|
};
|
|
|