-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLangEdit.h
44 lines (34 loc) · 882 Bytes
/
LangEdit.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
#pragma once
class CLangEditDlg : public CDialogEx
{
public:
CLangEditDlg(CWnd* pParent = NULL);
int iSelIndex;
CString csTable;
Database dDatabase;
CRect MinSize;
enum { IDD = IDD_LANGEDIT };
CListCtrl m_clcData;
CEdit m_ceID;
CEdit m_ceValue;
CEdit m_ceName;
CEdit m_ceCode;
CButton m_cbAddEdit;
CButton m_cbAddLang;
CButton m_cbDelLang;
CButton m_cbDelData;
CComboBox m_ccbLang;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
protected:
virtual BOOL OnInitDialog();
afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
afx_msg void OnBnClickedAddEdit();
afx_msg void OnItemchangedItems(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnSelchangeLang();
afx_msg void OnBnClickedDelData();
afx_msg void OnBnClickedDelLang();
afx_msg void OnBnClickedAddLang();
void FillData();
DECLARE_MESSAGE_MAP()
};