gamehallframe.h
资源名称:1731.rar [点击查看]
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:3k
源码类别:
游戏
开发平台:
Visual C++
- /*******************************************************************************
- GameHallFrame.h
- 游戏的大厅窗口
- ================================================================================
- /*
- ================================================================================
- Copyright (c) 2002 GameHigh Group.
- 本程序修改自GAMEHIGH(open source)[http://www.gamehigh.net]项目程序,在此表示感谢紫瑗、骑士、阿鬼等。
- email: wantsoft@163.com
- 这一程序是自由软件,你可以遵照自由软件基金会出版的GNU 通用公共许可证条款来修改和
- 重新发布这一程序。或者用许可证的第二版,或者(根据你的选择)用任何更新的版本。
- 发布这一程序的目的是希望它有用,但没有任何担保。甚至没有适合特定目地的隐含的担保。
- 更详细的情况请参阅GNU通用公共许可证。
- 你应该已经和程序一起收到一份GNU通用公共许可证的副本。如果还没有,写信给:
- The Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA02139, USA
- 或访问 http://www.gnu.org
- 文件版本:
- 0.0.1
- Build 020705
- Date 2002-07-05
- 修改历史:
- 2002-07-05
- 创建文件
- *******************************************************************************/
- #if !defined(AFX_GAMEHALLFRAME_H__73BFE2EE_6892_4442_B2E7_6A62932E5321__INCLUDED_)
- #define AFX_GAMEHALLFRAME_H__73BFE2EE_6892_4442_B2E7_6A62932E5321__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // gamehallframe.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CGameHallFrame frame
- #include "ServerTreeView.h"
- #include "SystemMsgView.h"
- #include "HtmlViewEx.h"
- class CGameHallFrame : public CFrameWnd
- {
- public:
- CGameHallFrame(CWnd* pWnd, RECT rcWnd); // protected constructor used by dynamic creation
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CGameHallFrame)
- protected:
- virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CGameHallFrame();
- // Generated message map functions
- //{{AFX_MSG(CGameHallFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnPaint();
- afx_msg void OnSize(UINT nType, int cx, int cy);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private: //对象
- CSplitterWnd m_wndSplitter; //分隔器
- CSplitterWnd m_wndLeftSplitter; //分隔器2
- CServerTreeView* pServerTreeView; //服务器树形列表
- CSystemMsgView* pSystemMsgView; //系统消息视图
- CHtmlViewEx* pWebAdvertView; //Web广告页
- private: //变量
- BOOL bFirstRun;
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_GAMEHALLFRAME_H__73BFE2EE_6892_4442_B2E7_6A62932E5321__INCLUDED_)