⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gradientprogressctrl.h

📁 一个非常好的词法分析程序,加上语法的分析是一个难得一见的好实例
💻 H
字号:
#if !defined(AFX_GRADIENTPROGRESSCTRL_H__91ECB8BC_A7DA_42EB_B2C5_37419D31B753__INCLUDED_)
#define AFX_GRADIENTPROGRESSCTRL_H__91ECB8BC_A7DA_42EB_B2C5_37419D31B753__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// GradientProgressCtrl.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CGradientProgressCtrl window

class CGradientProgressCtrl : public CProgressCtrl
{
// Construction
public:
	CGradientProgressCtrl();

	//Set_function
	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;}
	//Percent TXT showed in the Progress 
	void ShowPercent(BOOL bShowPercent=TRUE)	{m_bShowPercent=bShowPercent;}

	//Get_Function
	COLORREF GetTextColor(void)		{return m_clrText;}
	COLORREF GetBkColor(void)		{return m_clrBkGround;}
	COLORREF GetStartColor(void)	{return m_clrStart;}
	COLORREF GetEndColor(void)		{return m_clrEnd;}


// Attributes
public:
	int			m_nLower,m_nUpper,m_nStep,m_nCurrentPosition;
	COLORREF	m_clrStart,m_clrEnd,m_clrBkGround,m_clrText;
	BOOL		m_bShowPercent;
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGradientProgressCtrl)
	//}}AFX_VIRTUAL

// Implementation
public:
	int SetPos(int nPos);
	int	 SetStep(int nStep);
	void SetRange(int nLower,int nUpper);
	virtual ~CGradientProgressCtrl();

	// Generated message map functions
protected:
	void DrawGradient(CPaintDC *pDC,const RECT& rectClient,const int & nMaxWidth);
	//{{AFX_MSG(CGradientProgressCtrl)
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	afx_msg void OnPaint();
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_GRADIENTPROGRESSCTRL_H__91ECB8BC_A7DA_42EB_B2C5_37419D31B753__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -