📄 tracklookbutton.h
字号:
#if !defined(AFX_BUTTONEX_H__24F3B8E1_7579_11D1_BC08_0080C825700A__INCLUDED_)
#define AFX_TRACKLOOKBUTTON_H__24F3B8E1_7579_11D1_BC08_0080C825700A__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// TrackLookButton.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// TrackLookButton window
//DrawBitmap flags;
#define DB_HCENTER 0x0001L
#define DB_VCENTER 0x0002L
class CTrackLookButton : public CButton
{
// Construction
public:
CTrackLookButton();
// Attributes
public:
typedef enum TextAlign {AlignLeft=0,AlignRight,AlignBelow,AlignAbove};
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTrackLookButton)
public:
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
//}}AFX_VIRTUAL
void OnMouseEnter(UINT nFlags,CPoint point);
void OnMouseLeave(UINT nFlags,CPoint point);
// Implementation
public:
BOOL LoadBitmaps(LPCSTR lpszBitmap,LPCSTR lpszBitmapFocus=NULL,LPCSTR lpszBitmapDisabled=NULL);
void SetIcons(HICON, HICON = NULL, HICON = NULL);
void SetIconSize(int x, int y);
void SetTextAlignment(TextAlign nTextAlign);
TextAlign GetTextAlignment() const;
virtual ~CTrackLookButton();
// Generated message map functions
protected:
BOOL m_bRaised;
HICON m_iNormal;
HICON m_iFocus;
HICON m_iDisabled;
int m_IconX;
int m_IconY;
int m_TextOffset;
TextAlign m_TextAlign;
BOOL m_bDisabled;
BOOL m_bHasFocus;
void Draw3DBorder(CDC* pDC,CRect rc,UINT nOptions);
BOOL m_bLButtonDown;
UINT m_nBorder;
BOOL m_bMouseCaptured;
//{{AFX_MSG(CTrackLookButton)
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
afx_msg void OnKillFocus(CWnd* pNewWnd);
afx_msg void OnSetFocus(CWnd* pOldWnd);
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 int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnEnable(BOOL bEnable);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_BUTTONEX_H__24F3B8E1_7579_11D1_BC08_0080C825700A__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -