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
BmpCaptionBackground.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 BMP_CAPTION_BACKGROUND
- #define BMP_CAPTION_BACKGROUND
- /////////////////////////////////////////////////////////////////
- // Example of customising CCaptionBackground to pain a bitmap
- // as the caption background.
- //
- // Just derive from CCaptionBackground and override the Paint method.
- //
- // Construct CCaptionBmpPainter passing the path of the bmp file
- // to be displayed as the active caption background, and a BOOL
- // value to indicate whether to stretch the bitmap to fit the
- // caption (it will stretch by default if not specified).
- //
- // Author: Dave Lorde (dlorde@cix.compulink.co.uk)
- //
- // Copyright January 2000
- //
- #include "..CustomCaptionCaptionBackground.h"
- #include "Dib.h" // Device-independent bitmap handler
- class CBmpCaptionBackground : public CCaptionBackground
- {
- public:
- CBmpCaptionBackground(const char* bmpPath, BOOL stretch = TRUE);
- CBmpCaptionBackground(const CBmpCaptionBackground& bcb);
- boolean SetBitmap (const char* bmpPath);
- void SetStretch (boolean stretch);
- CString GetPath () const;
- boolean IsValid () const;
- void Paint(CDC* pDC, CSize paintArea, BOOL active);
- private:
- CDib m_Dib;
- CString m_Path;
- BOOL m_Valid;
- BOOL m_Stretch;
- void PaintBitmap(CDC* pDC, CSize paintArea);
- };
- #endif