TOOLDLG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // tooldlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "docktool.h"
  14. #include "tooldlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CToolDlg dialog
  21. CToolDlg::CToolDlg(CWnd* pParent /*=NULL*/)
  22. : CDialog(CToolDlg::IDD, pParent)
  23. {
  24. //{{AFX_DATA_INIT(CToolDlg)
  25. m_bBrowse = FALSE;
  26. m_bDebug = FALSE;
  27. m_bEdit = FALSE;
  28. m_bMain = FALSE;
  29. m_bResource = FALSE;
  30. m_nToolTips = -1;
  31. m_bPalette = FALSE;
  32. m_nColumns = -1;
  33. m_nColor = -1;
  34. //}}AFX_DATA_INIT
  35. }
  36. void CToolDlg::DoDataExchange(CDataExchange* pDX)
  37. {
  38. CDialog::DoDataExchange(pDX);
  39. //{{AFX_DATA_MAP(CToolDlg)
  40. DDX_Check(pDX, IDC_BROWSE, m_bBrowse);
  41. DDX_Check(pDX, IDC_DEBUG, m_bDebug);
  42. DDX_Check(pDX, IDC_EDIT, m_bEdit);
  43. DDX_Check(pDX, IDC_MAIN, m_bMain);
  44. DDX_Check(pDX, IDC_RESOURCE, m_bResource);
  45. DDX_Radio(pDX, IDC_SHOW, m_nToolTips);
  46. DDX_Check(pDX, IDC_PALETTE, m_bPalette);
  47. DDX_Radio(pDX, IDC_TWO, m_nColumns);
  48. DDX_Radio(pDX, IDC_COLOR, m_nColor);
  49. //}}AFX_DATA_MAP
  50. }
  51. BEGIN_MESSAGE_MAP(CToolDlg, CDialog)
  52. //{{AFX_MSG_MAP(CToolDlg)
  53. // NOTE: the ClassWizard will add message map macros here
  54. //}}AFX_MSG_MAP
  55. END_MESSAGE_MAP()
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CToolDlg message handlers