mainfrm.cpp
上传用户:hy11688
上传日期:2007-01-08
资源大小:81k
文件大小:3k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // mainfrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "fchess.h"
  5. #include "messageb.h"
  6. #include "mainfrm.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char BASED_CODE THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // arrays of IDs used to initialize control bars
  21. // toolbar buttons - IDs are command buttons
  22. static UINT BASED_CODE buttons[] =
  23. {
  24. // same order as in the bitmap 'toolbar.bmp'
  25. ID_GAME_NEW,
  26. ID_FUNCTION_SENDMESSAGETOOTHER,
  27. ID_GAME_QUITCURRENTGAME,
  28.     ID_APP_ABOUT,
  29. };
  30. static UINT BASED_CODE indicators[] =
  31. {
  32. ID_SEPARATOR,           // status line indicator
  33. ID_INDICATOR_CAPS,
  34. ID_INDICATOR_NUM,
  35. ID_INDICATOR_SCRL,
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMainFrame construction/destruction
  39. CMainFrame::CMainFrame()
  40. {
  41. // TODO: add member initialization code here
  42. }
  43. CMainFrame::~CMainFrame()
  44. {
  45. }
  46. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  47. {
  48. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  49. return -1;
  50. if (!m_wndToolBar.Create(this))
  51. return -1;
  52. if( !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  53. {
  54. TRACE0("Failed to create toolbarn");
  55. //AfxMessageBox("error load toolbar");
  56. return -1;      // fail to create
  57. }
  58. /* if (!m_wndStatusBar.Create(this) ||
  59. !m_wndStatusBar.SetIndicators(indicators,
  60.   sizeof(indicators)/sizeof(UINT)))
  61. {
  62. TRACE0("Failed to create status barn");
  63. return -1;      // fail to create
  64. }
  65. */
  66. // TODO: Delete these three lines if you don't want the toolbar to
  67. //  be dockable
  68. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  69. EnableDocking(CBRS_ALIGN_ANY);
  70. DockControlBar(&m_wndToolBar);
  71.     if(!m_wndMessage.Create(this,IDD_MESSAGEBAR,
  72.                           CBRS_TOP|CBRS_LEFT,IDD_MESSAGEBAR))
  73.    return -1;
  74. // TODO: Remove this if you don't want tool tips
  75. m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  76. CBRS_TOOLTIPS | CBRS_FLYBY);
  77. return 0;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CMainFrame diagnostics
  81. #ifdef _DEBUG
  82. void CMainFrame::AssertValid() const
  83. {
  84. CFrameWnd::AssertValid();
  85. }
  86. void CMainFrame::Dump(CDumpContext& dc) const
  87. {
  88. CFrameWnd::Dump(dc);
  89. }
  90. #endif //_DEBUG
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame message handlers