place_order_dlg.h
2.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#pragma once
#include "GridCtrl.h"
#include "resource.h"
#include "afxcmn.h"
#include "afxwin.h"
#include "afxbutton.h"
#include "../utility/win_http.h"
#include "etrade_edit_control.h"
// PlaceOrderDlg 对话框
class PlaceOrderDlg : public CDialogEx
{
DECLARE_DYNAMIC(PlaceOrderDlg)
public:
PlaceOrderDlg(CWnd* pParent = NULL); // 标准构造函数
virtual ~PlaceOrderDlg();
virtual BOOL OnInitDialog();
virtual BOOL Create(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI);
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
afx_msg void OnPaint();
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
// 对话框数据
enum { IDD = IDD_DIALOG_PLACE_ORDER };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
private:
void SetCtrlPos();
void SetCtrlInitData();
void InitList();
public:
CStatic owner_static_;
CEditBox card_edit_;
CEdit name_edit_;
CStatic comm_static_;
CEditBox comm_num_edit_;
CEdit comm_name_edit_;
CStatic unit_static_;
CEditBox unit_edit_;
CStatic real_unit_static;
CStatic heavy_static_;
CEditBox heavy_edit_;
CStatic price_static_;
CEditBox price_edit_;
CStatic count_static_;
CEditBox count_edit_;
CButton pay_button_;
CGridCtrl product_list_;
CPen line_pen_;
CPoint line_point_[3];
CBrush edit_brush_;
public:
afx_msg void OnBnClickedButtonPay();
private:
CStatic total_money_static_;
CStatic total_real_money_static_;
HACCEL acce_;
bool GetUserName(CString &name);
bool GetCommName(CString &name);
public:
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnAcceleratorTab();
afx_msg void OnAcceleratorEnter();
void SetErrorMsg(CString &error);
CStatic error_static_;
afx_msg LRESULT OnEditKillFocus(WPARAM wParam, LPARAM lParam);
bool GetCardName(CString &num, CString &name);
bool GetCommName(CString &num, CString &name);
afx_msg void OnAcceleratorDown();
afx_msg void OnAcceleratorUp();
afx_msg void OnSetFocus(CWnd* pOldWnd);
void SortList();
void EmptyCtrl();
CStatic buyer_static_;
CEditBox buyer_card_edit_;
CEditBox buyer_name_edit_;
CButton swip_card_button_;
};