ToolBarDlg.cpp
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // ToolBarDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Billiards.h"
  5. #include "ToolBarDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CToolBarDlg dialog
  13. CToolBarDlg::CToolBarDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CToolBarDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CToolBarDlg)
  17.     m_WhiteBrush=new CBrush(HS_CROSS,RGB(255,255,255));
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. void CToolBarDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CToolBarDlg)
  25.     DDX_Control(pDX,ID_JOINGAME,m_BtnJoingame);
  26.     DDX_Control(pDX,ID_NEWGAME,m_BtnNewgame);
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CToolBarDlg, CDialog)
  31. //{{AFX_MSG_MAP(CToolBarDlg)
  32. ON_WM_CTLCOLOR()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CToolBarDlg message handlers
  37. HBRUSH CToolBarDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
  38. {
  39. HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
  40.     if(nCtlColor==CTLCOLOR_BTN){
  41.         pDC->SetBkColor(RGB(255,255,255));
  42.         return (HBRUSH)(m_WhiteBrush->GetSafeHandle());
  43.     }
  44. // TODO: Return a different brush if the default is not desired
  45. return hbr;
  46. }