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

模拟服务器

开发平台:

C/C++

  1. // -------------------------------------------------------------------------
  2. // 文件名 : UiToolsControlBar.h
  3. // 创建者 : 万里
  4. // 创建时间 : 2003-7-24 19:39:54
  5. // 功能描述 :
  6. //
  7. // -------------------------------------------------------------------------
  8. #ifndef __UITOOLSCONTROLBAR_H__
  9. #define __UITOOLSCONTROLBAR_H__
  10. #pragma once
  11. #include "../Elem/WndToolBar.h"
  12. #include "../Elem/WndButton.h"
  13. class KUiToolsControlBar : public KWndToolBar
  14. {
  15. public:
  16. //----界面面板统一的接口函数----
  17. static KUiToolsControlBar* OpenWindow(); //打开窗口,返回唯一的一个类对象实例
  18. static void CloseWindow(); //关闭窗口
  19. static void LoadScheme(const char* pScheme);//载入界面方案
  20. static void DefaultScheme(const char* pScheme);//重新初始化界面
  21. static KUiToolsControlBar* GetSelf() {return m_pSelf;}
  22. private:
  23. ~KUiToolsControlBar() {}
  24. void Initialize(); //初始化
  25. void Breathe();
  26. private:
  27. static KUiToolsControlBar* m_pSelf;
  28. };
  29. #endif // __UITOOLSCONTROLBAR_H__