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
GradientProgressCtrl.h
Package: NetDownMTR.rar [view]
Upload User: oadesign
Upload Date: 2013-12-25
Package Size: 265k
Code Size: 2k
Category:
Process-Thread
Development Platform:
Visual C++
- #if !defined(AFX_ENHPROGRESSCTRL_H__12909D73_C393_11D1_9FAE_8192554015AD__INCLUDED_)
- #define AFX_ENHPROGRESSCTRL_H__12909D73_C393_11D1_9FAE_8192554015AD__INCLUDED_
- #if _MSC_VER >= 1000
- #pragma once
- #endif // _MSC_VER >= 1000
- // GradientProgressCtrl.h : header file
- /*
- Modified by 谢红伟 2000.12
- 功能:渐变色进度条显示效果
- */
- //
- #include "MemDC.h"
- /////////////////////////////////////////////////////////////////////////////
- // CGradientProgressCtrl window
- class CGradientProgressCtrl : public CProgressCtrl
- {
- // Construction
- public:
- CGradientProgressCtrl();
- // Attributes
- public:
- // Attributes
- void SetRange(int nLower, int nUpper);
- void SetRange32( int nLower, int nUpper );
- int SetPos(int nPos);
- int SetStep(int nStep);
- int StepIt(void);
- // Operations
- public:
- // Set Functions
- void SetTextColor(COLORREF color) {m_clrText = color;}
- void SetBkColor(COLORREF color) {m_clrBkGround = color;}
- void SetStartColor(COLORREF color) {m_clrStart = color;}
- void SetEndColor(COLORREF color) {m_clrEnd = color;}
- // Show the percent caption
- void ShowPercent(BOOL bShowPercent = TRUE) {m_bShowPercent = bShowPercent;}
- // Get Functions
- COLORREF GetTextColor(void) {return m_clrText;}
- COLORREF GetBkColor(void) {return m_clrBkGround;}
- COLORREF GetStartColor(void) {return m_clrStart;}
- COLORREF GetEndColor(void) {return m_clrEnd;}
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CGradientProgressCtrl)
- protected:
- //}}AFX_VIRTUAL
- // Implementation
- public:
- void Reposition();
- BOOL Create(CStatusBar * parent, UINT id, DWORD style);
- virtual ~CGradientProgressCtrl();
- // Generated message map functions
- protected:
- void DrawGradient(CPaintDC *pDC, const RECT &rectClient, const int &nMaxWidth, const BOOL &bVertical);
- int m_nLower, m_nUpper, m_nStep, m_nCurrentPosition;
- COLORREF m_clrStart, m_clrEnd, m_clrBkGround, m_clrText;
- BOOL m_bShowPercent;
- //{{AFX_MSG(CGradientProgressCtrl)
- afx_msg void OnPaint();
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- BOOL setup(CStatusBar * parent, UINT id, CRect & r);
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_ENHPROGRESSCTRL_H__12909D73_C393_11D1_9FAE_8192554015AD__INCLUDED_)