41 lines
844 B
C++
41 lines
844 B
C++
#ifndef FORMWELL_H
|
|
#define FORMWELL_H
|
|
|
|
#include <QWidget>
|
|
#include "formtrack.h"
|
|
#include "formdraw.h"
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
namespace Ui {
|
|
class FormWell;
|
|
}
|
|
|
|
class FormWell : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FormWell(QWidget *parent = nullptr, QString strWellName="");
|
|
~FormWell();
|
|
|
|
private:
|
|
Ui::FormWell *ui;
|
|
|
|
public:
|
|
QString m_strUuid;
|
|
QString m_strWellName;
|
|
|
|
public:
|
|
QJsonObject makeJson();
|
|
|
|
public slots:
|
|
void s_NewTrack(QString strUuid, QString strWellName, QString strSlfName, QString strLineName);
|
|
//新建空白道,没有曲线
|
|
void s_NewTrack_No_Line(QString strUuid, QString strWellName, QString strTrackName);
|
|
|
|
void s_Raise(QString strUuid, QString strSlfName, QString strWellName, QString strTrackName, QString strLineName);
|
|
};
|
|
|
|
#endif // FORMWELL_H
|