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

📄 colorpane.h

📁 简单的画笔程序 完全由自己编写的
💻 H
字号:
#if !defined(AFX_COLORPANE_H__096D52CA_21DD_4F74_940D_665C486BF471__INCLUDED_)#define AFX_COLORPANE_H__096D52CA_21DD_4F74_940D_665C486BF471__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000// ColorPane.h : header file///////////////////////////////////////////////////////////////////////////////// CColorPane windowclass CColorPane : public CToolBar{// Constructionpublic:	CColorPane();// Attributespublic:// Operationspublic:	COLORREF GetColor() const;	COLORREF GetPaintColor() const;	void SetPaintColor(COLORREF color);	COLORREF GetCanvasColor() const;	void SetCanvasColor(COLORREF color);// Overrides	// ClassWizard generated virtual function overrides	//{{AFX_VIRTUAL(CColorPane)	//}}AFX_VIRTUAL// Implementationpublic:	virtual ~CColorPane();	// Generated message map functionsprotected:	//{{AFX_MSG(CColorPane)	afx_msg void OnPaint();	afx_msg void OnMouseMove(UINT nFlags, CPoint point);	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);	afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);	afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point);	//}}AFX_MSG	afx_msg void OnPaintColorDialog();	afx_msg void OnCanvasColorDialog();	DECLARE_MESSAGE_MAP()protected:	CRect m_rcColorBox[28];				//28 color boxes.	int  m_nColorPicked;	COLORREF m_clrCurrentColor;			// the current color selected.	int PtInColorBox(POINT point); // return color box index if point is fallen in the box, 								//	or return -1.private:	static COLORREF s_clrMosaic[28];	void InitColorBox(CRect& rc);	void DrawBigColorBox(CDC& dc, CRect& rc);	void DrawSmallColorBoxes(CDC& dc, CRect& rc);	void DrawASmallColorBox(CDC& dc, CRect& rc, COLORREF color);};///////////////////////////////////////////////////////////////////////////////{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_COLORPANE_H__096D52CA_21DD_4F74_940D_665C486BF471__INCLUDED_)

⌨️ 快捷键说明

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