home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / docktool / tooldlg.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  69 lines

  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.  
  13. #include "stdafx.h"
  14. #include "docktool.h"
  15. #include "tooldlg.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CToolDlg dialog
  24.  
  25.  
  26. CToolDlg::CToolDlg(CWnd* pParent /*=NULL*/)
  27.     : CDialog(CToolDlg::IDD, pParent)
  28. {
  29.     //{{AFX_DATA_INIT(CToolDlg)
  30.     m_bBrowse = FALSE;
  31.     m_bDebug = FALSE;
  32.     m_bEdit = FALSE;
  33.     m_bMain = FALSE;
  34.     m_bResource = FALSE;
  35.     m_nToolTips = -1;
  36.     m_bPalette = FALSE;
  37.     m_nColumns = -1;
  38.     m_nColor = -1;
  39.     //}}AFX_DATA_INIT
  40. }
  41.  
  42.  
  43. void CToolDlg::DoDataExchange(CDataExchange* pDX)
  44. {
  45.     CDialog::DoDataExchange(pDX);
  46.     //{{AFX_DATA_MAP(CToolDlg)
  47.     DDX_Check(pDX, IDC_BROWSE, m_bBrowse);
  48.     DDX_Check(pDX, IDC_DEBUG, m_bDebug);
  49.     DDX_Check(pDX, IDC_EDIT, m_bEdit);
  50.     DDX_Check(pDX, IDC_MAIN, m_bMain);
  51.     DDX_Check(pDX, IDC_RESOURCE, m_bResource);
  52.     DDX_Radio(pDX, IDC_SHOW, m_nToolTips);
  53.     DDX_Check(pDX, IDC_PALETTE, m_bPalette);
  54.     DDX_Radio(pDX, IDC_TWO, m_nColumns);
  55.     DDX_Radio(pDX, IDC_COLOR, m_nColor);
  56.     //}}AFX_DATA_MAP
  57. }
  58.  
  59.  
  60. BEGIN_MESSAGE_MAP(CToolDlg, CDialog)
  61.     //{{AFX_MSG_MAP(CToolDlg)
  62.         // NOTE: the ClassWizard will add message map macros here
  63.     //}}AFX_MSG_MAP
  64. END_MESSAGE_MAP()
  65.  
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CToolDlg message handlers
  69.