📄 colorpane.h
字号:
#if !defined(AFX_COLORPANE_H__FC175D23_90D2_11D7_908A_00A00CC807C7__INCLUDED_)
#define AFX_COLORPANE_H__FC175D23_90D2_11D7_908A_00A00CC807C7__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ColorPane.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CColorPane window
class CColorPane : public CToolBar
{
// Construction
public:
CColorPane();
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CColorPane)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CColorPane();
// Generated message map functions
protected:
//{{AFX_MSG(CColorPane)
afx_msg void OnPaint();
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
public:
COLORREF GetColor();
private:
CRect rs[28]; //28个颜色的矩形框
static COLORREF col[28]; //28种画出的颜色
int oldmovepick, pick; //鼠标移动选择的和点选的矩形索引
COLORREF _col; //鼠标点选的颜色
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_COLORPANE_H__FC175D23_90D2_11D7_908A_00A00CC807C7__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -