38 lines
636 B
C++
38 lines
636 B
C++
#ifndef FORMLINE_H
|
|
#define FORMLINE_H
|
|
|
|
#include <QWidget>
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
namespace Ui {
|
|
class FormLine;
|
|
}
|
|
|
|
class FormLine : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FormLine(QWidget *parent = nullptr, QString strSlfName="", QString strWellName="", QString strTrackName="", QString strLineName="");
|
|
~FormLine();
|
|
|
|
private:
|
|
Ui::FormLine *ui;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
public:
|
|
QString m_strUuid;
|
|
QString m_strSlfName;
|
|
QString m_strWellName;
|
|
QString m_strTrackName;
|
|
QString m_strLineName;
|
|
|
|
public:
|
|
void DrawTvd();
|
|
|
|
};
|
|
|
|
#endif // FORMLINE_H
|