Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
UiHelper.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*
- * File: KUiHelper.h
- * Desc: 简单帮助界面
- * Author: flying
- * Creation: 2003/7/16
- */
- //-----------------------------------------------------------------------------
- #pragma once
- #if !defined _UIHELPER1
- #define _UIHELPER1
- #include "../Elem/WndImage.h"
- class KUiHelper : protected KWndImage
- {
- public:
- //打开窗口,返回唯一的一个类对象实例
- static KUiHelper* OpenWindow(bool bShow);
- //关闭窗口,同时可以选则是否删除对象实例
- static void CloseWindow(bool bDestroy);
- static KUiHelper* GetIfVisible();
- //载入界面方案
- void LoadScheme(const char* pScheme);
- static void SelectInterfacePic(); //选择要显示界面按钮的帮助图
- static void SelectKeyboardPic(); //选择要显示快捷键帮助图,
- static void SelectWuxingPic(); //选择要显示五行激活图的图片
- private:
- KUiHelper();
- virtual ~KUiHelper();
- static KUiHelper* m_pSelf;
- static int ms_nImgFrame;
- int WndProc(unsigned int uMsg, unsigned int uParam, int nParam);
- void Initialize();
- void Breathe() {NextFrame();}
- virtual void Show(); //显示窗口
- };
- #endif