-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiogIgsImportDlg.h
55 lines (45 loc) · 1.01 KB
/
iogIgsImportDlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//=============================================================================
//
// Copyright (c) China Automotive Innovation Corporation.
//
// Author : Xia Lei
// Date : 2022/09/14
//
//=============================================================================
#pragma once
#include "core.h"
#include "comobj.h"
#include "appinterface.h"
#include "qui.h"
#include "config.h"
namespace Ui { class iogIgsImportDlg; };
class iogIgsImportDlg : public QPopDialog
{
Q_OBJECT
public:
iogIgsImportDlg(QPopDialog *parent = Q_NULLPTR);
~iogIgsImportDlg();
void InitIgsDlg();
double GetLinearDelVal();
double GetAngleDelVal();
protected:
void SetTips();
void SetValid();
bool IsEffect();
void ReadXMLStlPara();
void WriteXMLPara();
private slots:
void OnOk();
void OnCancel();
void ChangeIdx();
private:
Ui::iogIgsImportDlg* ui;
double m_dHoleRad;
double m_dFilletRad;
double m_dLenTransFac;
int m_nUnitType;
int m_nDiscreType;
double m_dLinearDelVal;
double m_dAngleDelVal;
double m_dSewVal;
};