DlgEnhColor.cpp
上传用户:xjt2008yy
上传日期:2010-01-18
资源大小:272k
文件大小:2k
源码类别:

生物技术

开发平台:

Visual C++

  1. // DlgEnhColor.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ImageProcessing.h"
  5. #include "DlgEnhColor.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgEnhColor dialog
  13. CDlgEnhColor::CDlgEnhColor(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlgEnhColor::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlgEnhColor)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CDlgEnhColor::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CDlgEnhColor)
  24. DDX_Control(pDX, IDC_LIST_ENH_COLOR, m_lstColor);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CDlgEnhColor, CDialog)
  28. //{{AFX_MSG_MAP(CDlgEnhColor)
  29. ON_LBN_DBLCLK(IDC_LIST_ENH_COLOR, OnDblclkListEnhColor)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDlgEnhColor message handlers
  34. BOOL CDlgEnhColor::OnInitDialog() 
  35. {
  36. // 循环变量
  37. int i;
  38. // 调用默认OnInitDialog函数
  39. CDialog::OnInitDialog();
  40. // 添加伪彩色编码
  41. for (i = 0; i < m_nColorCount; i++)
  42. {
  43. m_lstColor.AddString(m_lpColorName + i * m_nNameLen);
  44. }
  45. // 选中初始编码表
  46. m_lstColor.SetCurSel(m_nColor);
  47. // 返回TRUE
  48. return TRUE;
  49. // TODO: Add extra initialization here
  50. return TRUE;  // return TRUE unless you set the focus to a control
  51.               // EXCEPTION: OCX Property Pages should return FALSE
  52. }
  53. void CDlgEnhColor::OnDblclkListEnhColor() 
  54. {
  55. // 双击事件,直接调用OnOK()成员函数
  56. OnOK();
  57. }
  58. void CDlgEnhColor::OnOK() 
  59. {
  60. // 用户单击确定按钮
  61. m_nColor = m_lstColor.GetCurSel();
  62. // 调用默认的OnOK()函数
  63. CDialog::OnOK();
  64. }