37 lines
908 B
C++
37 lines
908 B
C++
#ifndef MenuShipUIFunction_H
|
|
#define MenuShipUIFunction_H
|
|
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include <QObject>
|
|
#include "UIFunctionBase.h"
|
|
|
|
class MenuShipUIFunction:public UIFunctionBase
|
|
{
|
|
public:
|
|
MenuShipUIFunction();
|
|
~MenuShipUIFunction();
|
|
|
|
//工程信息
|
|
void ship_engineering_information_open(const QString& message);
|
|
void ship_engineering_information_ok(const QString& message);
|
|
|
|
//主要要素
|
|
void ship_main_elements_open(const QString& message);
|
|
void ship_main_elements_ok(const QString& message);
|
|
|
|
//船体标尺
|
|
void ship_hull_scale_open(const QString& message);
|
|
void ship_hull_scale_ok(const QString& message);
|
|
|
|
void from(const json& j);
|
|
void to(json& jout);
|
|
private:
|
|
QString m_prj_name;
|
|
QString m_work_no;
|
|
QString m_designer;
|
|
QString m_owner;
|
|
QString m_signature;
|
|
QString m_cal_date;
|
|
};
|
|
#endif // MessageHandle_H
|