2026-02-06 10:22:57 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
// #include "ui_TxtEditorDlg.h"
|
|
|
|
|
|
#include "WellLogUI.h"
|
2026-05-15 09:57:53 +08:00
|
|
|
|
#include "ObjWelllogINP.h"
|
2026-02-06 10:22:57 +08:00
|
|
|
|
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();
|
|
|
|
|
|
};
|
|
|
|
|
|
|