Quantdlg.cpp
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:1k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // QuantDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "mfcapp.h"
  5. #include "QuantDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CQuantDlg dialog
  13. CQuantDlg::CQuantDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CQuantDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CQuantDlg)
  17. m_quantColors = 64;
  18. //}}AFX_DATA_INIT
  19. m_color=TRUE;
  20. }
  21. void CQuantDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CQuantDlg)
  25. DDX_Text(pDX, IDC_QUANT_COL, m_quantColors);
  26. DDV_MinMaxUInt(pDX, m_quantColors, 1, 256);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CQuantDlg, CDialog)
  30. //{{AFX_MSG_MAP(CQuantDlg)
  31. ON_BN_CLICKED(IDC_COLOR, OnColor)
  32. ON_BN_CLICKED(IDC_GRAY, OnGray)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CQuantDlg message handlers
  37. void CQuantDlg::OnColor() 
  38. {
  39. m_color=TRUE;
  40. }
  41. void CQuantDlg::OnGray() 
  42. {
  43. m_color=FALSE;
  44. }
  45. BOOL CQuantDlg::OnInitDialog() 
  46. {
  47. CDialog::OnInitDialog();
  48. // defaults
  49. CWnd *pWnd = GetDlgItem(IDC_QUANT_COL);
  50. CString txt;
  51. txt.Format("%d",m_quantColors);
  52. pWnd->SetWindowText(txt);
  53. CheckRadioButton(IDC_COLOR, IDC_GRAY, IDC_COLOR);
  54. return TRUE;  // return TRUE unless you set the focus to a control
  55.               // EXCEPTION: OCX Property Pages should return FALSE
  56. }