UiTeamNew.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*****************************************************************************************
  2. // 界面--新建队伍界面
  3. // Copyright : Kingsoft 2003
  4. // Author :   Wooy(Wu yue)
  5. // CreateTime: 2003-2-26
  6. ------------------------------------------------------------------------------------------
  7. *****************************************************************************************/
  8. #pragma once
  9. #include "../Elem/WndShowAnimate.h"
  10. #include "../Elem/WndButton.h"
  11. #include "../Elem/WndEdit.h"
  12. class KUiTeamNew : protected KWndShowAnimate
  13. {
  14. public:
  15. static KUiTeamNew* OpenWindow(); //打开窗口,返回唯一的一个类对象实例
  16. static KUiTeamNew* GetIfVisible(); //如果窗口正被显示,则返回实例指针
  17. static void CloseWindow(); //关闭窗口,同时可以选则是否删除对象实例
  18. private:
  19. void Initialize(); //初始化
  20. void LoadScheme(const char* pScheme);//载入界面方案
  21. int WndProc(unsigned int uMsg, unsigned int uParam, int nParam);//窗口函数
  22. void OnOk();
  23. bool CheckInput(char* pName);
  24. private:
  25. static KUiTeamNew* m_pSelf;
  26. KWndEdit32 m_TeamName;
  27. KWndButton m_OkBtn, m_CancelBtn;
  28. };