📄 tempbar.h
字号:
#if !defined(AFX_TEMPBAR_H__46867328_FE83_4829_A100_2164BF05E811__INCLUDED_)
#define AFX_TEMPBAR_H__46867328_FE83_4829_A100_2164BF05E811__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// TempBar.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CTempBar window
typedef struct{
UINT nImageID;
char *strText;
}mTempItems,*pTempItems;
class CTempBar : public CListBox
{
// Construction
public:
CTempBar();
// Attributes
public:
void SetItems(mTempItems *pItem,int nNumItems)
{
m_pItem=pItem;
m_nNumItems=nNumItems;
for(int i=0;i<m_nNumItems;i++)
{
AddString("");
}
}
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTempBar)
public:
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
protected:
virtual void CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType = adjustBorder);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CTempBar();
protected:
mTempItems *m_pItem;
int m_nNumItems;
BOOL m_bDown;
BOOL m_bHilight;
CPoint m_point;
// Generated message map functions
protected:
//{{AFX_MSG(CTempBar)
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TEMPBAR_H__46867328_FE83_4829_A100_2164BF05E811__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -