NEWCOLORDEPTH.CPP
上传用户:alisonmail
上传日期:2013-02-28
资源大小:500k
文件大小:2k
源码类别:

图片显示

开发平台:

Visual C++

  1. // NewColorDepth.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ImageView.h"
  5. #include "NewColorDepth.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNewColorDepth dialog
  13. CNewColorDepth::CNewColorDepth(CWnd* pParent /*=NULL*/)
  14. : CDialog(CNewColorDepth::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CNewColorDepth)
  17. m_nNewColorDepth = -1;
  18. //}}AFX_DATA_INIT
  19. m_nCurrentColorDepth = -1;
  20. }
  21. void CNewColorDepth::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CNewColorDepth)
  25. DDX_Radio(pDX, IDC_RADIO1, m_nNewColorDepth);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CNewColorDepth, CDialog)
  29. //{{AFX_MSG_MAP(CNewColorDepth)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CNewColorDepth message handlers
  34. BOOL CNewColorDepth::OnInitDialog() 
  35. {
  36. CDialog::OnInitDialog();
  37. CenterWindow();
  38. if( m_nCurrentColorDepth != -1 ){
  39. if( m_nCurrentColorDepth < 0 ) m_nCurrentColorDepth = 0;
  40. else if( m_nCurrentColorDepth > 3 ) m_nCurrentColorDepth = 3;
  41. static int cd[] = { IDC_RADIO1, IDC_RADIO2, IDC_RADIO3, IDC_RADIO4 };
  42. CWnd *pWnd = GetDlgItem( cd[m_nCurrentColorDepth] );
  43. if( pWnd != NULL ) pWnd->EnableWindow( FALSE );
  44. }
  45. return TRUE;  // return TRUE unless you set the focus to a control
  46.               // EXCEPTION: OCX Property Pages should return FALSE
  47. }