-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathDlgColor.cpp
80 lines (61 loc) · 1.45 KB
/
DlgColor.cpp
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
// DlgColor.cpp : implementation file
//
#include "stdafx.h"
#include "DIPDemo.h"
#include "DlgColor.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgColor dialog
CDlgColor::CDlgColor(CWnd* pParent /*=NULL*/)
: CDialog(CDlgColor::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgColor)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CDlgColor::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgColor)
DDX_Control(pDX, IDC_COLOR_LIST, m_lstColor);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgColor, CDialog)
//{{AFX_MSG_MAP(CDlgColor)
ON_LBN_DBLCLK(IDC_COLOR_LIST, OnDblclkColorList)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgColor message handlers
BOOL CDlgColor::OnInitDialog()
{
// 循环变量
int i;
// 调用默认OnInitDialog函数
CDialog::OnInitDialog();
// 添加伪彩色编码
for (i = 0; i < m_nColorCount; i++)
{
m_lstColor.AddString(m_lpColorName + i * m_nNameLen);
}
// 选中初始编码表
m_lstColor.SetCurSel(m_nColor);
// 返回TRUE
return TRUE;
}
void CDlgColor::OnDblclkColorList()
{
// 双击事件,直接调用OnOK()成员函数
OnOK();
}
void CDlgColor::OnOK()
{
// 用户单击确定按钮
m_nColor = m_lstColor.GetCurSel();
// 调用默认的OnOK()函数
CDialog::OnOK();
}