-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEndPlateShapeDlg.h
More file actions
41 lines (34 loc) · 886 Bytes
/
Copy pathEndPlateShapeDlg.h
File metadata and controls
41 lines (34 loc) · 886 Bytes
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
#pragma once
#include <gui\GridCtrl\GridCtrl.h>
#include "SmartSteelPropertyPage.h"
// CEndPlateShapeDlg dialog
namespace PropertyPage
{
class CEndPlateShapeDlg : public CSmartSteelPropertyPage
{
DECLARE_DYNAMIC(CEndPlateShapeDlg)
typedef enum
{
NONE_ITEM = 0x00,
NEW_ITEM = 0x01,
DELETED_ITEM = 0x02,
MODIFIED_ITEM = 0x04,
}ItemStatus;
public:
CEndPlateShapeDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CEndPlateShapeDlg();
// Dialog Data
enum { IDD = IDD_END_PLATE_SHAPE };
CGridCtrl m_ctrlSteelPlate;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
int SaveData();
virtual BOOL OnInitDialog();
afx_msg void OnBnClickedNewLinearMember();
afx_msg void OnBnClickedDeleteLinearMember();
protected:
virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
};
};