BMPDLG.cpp
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // BMPDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "mfcapp.h"
  5. #include "BMPDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBMPDlg dialog
  13. CBMPDlg::CBMPDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CBMPDlg::IDD, pParent)
  15. {
  16. m_bits = 8; 
  17. //{{AFX_DATA_INIT(CBMPDlg)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. void CBMPDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CBMPDlg)
  25. // NOTE: the ClassWizard will add DDX and DDV calls here
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CBMPDlg, CDialog)
  29. //{{AFX_MSG_MAP(CBMPDlg)
  30. ON_BN_CLICKED(IDC_BMP_1BITS, OnBmp1bits)
  31. ON_BN_CLICKED(IDC_BMP_4BIT, OnBmp4bit)
  32. ON_BN_CLICKED(IDC_BMP_8BIT, OnBmp8bit)
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CBMPDlg message handlers
  37. void CBMPDlg::OnBmp1bits() 
  38. {
  39. m_bits = 1;
  40. }
  41. void CBMPDlg::OnBmp4bit() 
  42. {
  43. m_bits = 4;
  44. }
  45. void CBMPDlg::OnBmp8bit() 
  46. {
  47. m_bits = 8;
  48. }
  49. BOOL CBMPDlg::OnInitDialog() 
  50. {
  51. CDialog::OnInitDialog();
  52. CheckRadioButton(IDC_BMP_8BIT, IDC_BMP_1BITS, IDC_BMP_8BIT);
  53. return TRUE;  // return TRUE unless you set the focus to a control
  54.               // EXCEPTION: OCX Property Pages should return FALSE
  55. }