MainFrm.cpp
上传用户:bsw_2008
上传日期:2013-07-09
资源大小:2446k
文件大小:4k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "CGameHallFrame.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char 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. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code !
  18. ON_WM_CREATE()
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. // TODO: Delete these three lines if you don't want the toolbar to
  56. //  be dockable
  57. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  58. EnableDocking(CBRS_ALIGN_ANY);
  59. DockControlBar(&m_wndToolBar);
  60. this->MoveWindow(20,20,1000,690);
  61. return 0;
  62. }
  63. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  64. {
  65. if( !CFrameWnd::PreCreateWindow(cs) )
  66. return FALSE;
  67. // TODO: Modify the Window class or styles here by modifying
  68. //  the CREATESTRUCT cs
  69. m_strTitle="客户端";
  70. return TRUE;
  71. }
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CMainFrame diagnostics
  74. #ifdef _DEBUG
  75. void CMainFrame::AssertValid() const
  76. {
  77. CFrameWnd::AssertValid();
  78. }
  79. void CMainFrame::Dump(CDumpContext& dc) const
  80. {
  81. CFrameWnd::Dump(dc);
  82. }
  83. #endif //_DEBUG
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CMainFrame message handlers
  86. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext) 
  87. {
  88. // TODO: Add your specialized code here and/or call the base class
  89. if(NULL==m_wndSplitter.CreateStatic(this,1,2))
  90. return FALSE;
  91. if(!m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CTableView),CSize(620,800),pContext))
  92. return FALSE;
  93. //拆分左边的栏
  94. if(NULL==m_wndLeftSplitter.CreateStatic(&m_wndSplitter,2,1,
  95. WS_CHILD|WS_VISIBLE,m_wndSplitter.IdFromRowCol(0,1)))
  96. return FALSE;
  97. if(!m_wndLeftSplitter.CreateView(0,0,RUNTIME_CLASS(CCGameHallFrameView),CSize(380,300),pContext)||
  98. !m_wndLeftSplitter.CreateView(1,0,RUNTIME_CLASS(CHtmlViewEx),CSize(380,500),pContext))
  99. return FALSE;
  100. pWebView=(CHtmlViewEx*)m_wndLeftSplitter.GetPane(1,0);
  101. pServerTreeView=(CCGameHallFrameView*)m_wndLeftSplitter.GetPane(0,0);
  102. pTableView=(CTableView*)m_wndSplitter.GetPane(0,0);
  103. pServerTreeView->pTable=pTableView;
  104. //pServerTreeView->ClientConnect();
  105. //pTableView->DrawTable();
  106. //SetActiveView((CView*)m_wndLeftSplitter.GetPane(0,0));
  107. pWebView->Navigate2("http://46627375.q-zone.qq.com",0,NULL);
  108. return TRUE;
  109. }