-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCDialogShapeEdgeStraight.cpp
More file actions
47 lines (34 loc) · 1.06 KB
/
CDialogShapeEdgeStraight.cpp
File metadata and controls
47 lines (34 loc) · 1.06 KB
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
// CDialogShapeEdgeStraight.cpp : 実装ファイル
//
#include "pch.h"
#include "ModelViewer.h"
#include "CDialogShapeEdgeStraight.h"
#include "afxdialogex.h"
// CDialogShapeEdgeStraight ダイアログ
IMPLEMENT_DYNAMIC(CDialogShapeEdgeStraight, CDialogEx)
CDialogShapeEdgeStraight::CDialogShapeEdgeStraight(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_DIALOG_SHAPE_EDGE_STRAIGHT, pParent)
, m_startX(0)
, m_startY(0)
, m_startZ(0)
, m_endX(0)
, m_endY(0)
, m_endZ(0)
{
}
CDialogShapeEdgeStraight::~CDialogShapeEdgeStraight()
{
}
void CDialogShapeEdgeStraight::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Text(pDX, IDC_EDIT_START_X, m_startX);
DDX_Text(pDX, IDC_EDIT_START_Y, m_startY);
DDX_Text(pDX, IDC_EDIT_START_Z, m_startZ);
DDX_Text(pDX, IDC_EDIT_END_X, m_endX);
DDX_Text(pDX, IDC_EDIT_END_Y, m_endY);
DDX_Text(pDX, IDC_EDIT_END_Z, m_endZ);
}
BEGIN_MESSAGE_MAP(CDialogShapeEdgeStraight, CDialogEx)
END_MESSAGE_MAP()
// CDialogShapeEdgeStraight メッセージ ハンドラー