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
WndToolBar.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++
- // -------------------------------------------------------------------------
- // 文件名 : WndToolBar.h
- // 创建者 : 万里
- // 创建时间 : 2003-7-23 21:55:37
- // 功能描述 :
- //
- // -------------------------------------------------------------------------
- #ifndef __WNDTOOLBAR_H__
- #define __WNDTOOLBAR_H__
- #pragma once
- #include "WndWindow.h"
- #include "WndButton.h"
- struct KButtonInfo
- {
- KWndWindow* m_pButton;
- char szTitle[32];
- };
- class KWndToolBar : public KWndImage
- {
- public:
- KWndToolBar();
- ~KWndToolBar();
- virtual int Init(KIniFile* pIniFile, const char* pSection); //初始化
- virtual int WndProc(unsigned int uMsg, unsigned int uParam, int nParam);//窗口函数
- virtual void PaintWindow(); //窗体绘制
- void Clone(KWndToolBar* pCopy);
- int GetButtonCount() { return m_nButtonNum; }
- virtual void UpdateData();
- protected:
- void FreeAllWindow();
- void AddOneWindow(KIniFile* pIniFile, const char* pSection);
- int m_nButtonNum;
- KButtonInfo* m_pButtons;
- };
- #endif // __WNDTOOLBAR_H__