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
CaptionBackground.h
Package: CaptionDemo_prj.zip [view]
Upload User: zhoushen
Upload Date: 2022-06-15
Package Size: 84k
Code Size: 1k
Category:
Dialog_Window
Development Platform:
Visual C++
- #ifndef CAPTION_BACKGROUND_H
- #define CAPTION_BACKGROUND_H
- /////////////////////////////////
- // Class for painting a windows caption background.
- // Used by caption painting class CCaption as the
- // default background painter if one is not explicitly
- // supplied.
- //
- // Derive new classes and override its methods to paint
- // unusual caption backgrounds.
- //
- // Author: Dave Lorde (dlorde@cix.compulink.co.uk)
- //
- // Copyright January 2000
- //
- class AFX_EXT_CLASS CCaptionBackground
- {
- public:
- CCaptionBackground();
- CCaptionBackground(const CCaptionBackground& cb);
- virtual ~CCaptionBackground() {}
- virtual void Paint(CDC* pDC, CSize paintArea, BOOL active);
- void SetCustomColors(COLORREF activeColor, COLORREF inactiveColor);
- void SetCustomColors(const CCaptionBackground& cb);
- void SetActiveColor(COLORREF activeColor);
- void SetInactiveColor(COLORREF inactiveColor);
- void UseSystemActiveColor();
- void UseSystemInactiveColor();
- void UseSystemColors();
- boolean IsUsingSystemColors();
- virtual COLORREF GetActiveColor() const;
- virtual COLORREF GetInactiveColor() const;
- static void PaintRect(CDC* pDC, int x, int y, int w, int h, COLORREF color);
- protected:
- private:
- COLORREF m_ActiveColor;
- COLORREF m_InactiveColor;
- };
- #endif