advtabctrl.h

来自「用VC写的浏览器」· C头文件 代码 · 共 78 行

H
78
字号
#if !defined(AFX_ADVTABCTRL_H__AD8C3BA1_8844_11D5_9BB3_E13549EA421E__INCLUDED_)
#define AFX_ADVTABCTRL_H__AD8C3BA1_8844_11D5_9BB3_E13549EA421E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// AdvTabCtrl.h : header file
//
#include "EnTabCtrl.h"
/////////////////////////////////////////////////////////////////////////////
// CAdvTabCtrl window

class CAdvTabCtrl : public CEnTabCtrl
{
// Construction
public:
	CAdvTabCtrl();

// Attributes
public:

// Operations
public:
	int GetTabIDFromPoint(CPoint & point);
	BOOL ClickCloseDown(CPoint point);
	BOOL ClickCloseUp(CPoint point);
	
	void SetColours(COLORREF bSelColour, COLORREF bUnselColour);
	void SetBKColours(COLORREF bSelBKColour, COLORREF bUnselBKColour);

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAdvTabCtrl)
	public:
	//virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
	//}}AFX_VIRTUAL

// Implementation
public:
	BOOL m_bDragging;
	virtual ~CAdvTabCtrl();

// Implementation
protected:
	COLORREF m_crSelColour, m_crUnselColour;
	COLORREF m_crSelBKColour, m_crUnselBKColour;
	CFont    m_SelFont,	m_UnselFont;

	// Generated message map functions
protected:
	//{{AFX_MSG(CAdvTabCtrl)
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
	afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
private:
	void ProcessClick(UINT nFlags, CPoint point, int nClickButton);
	int m_nDragTabID;
	HCURSOR m_hOldCursor;
	HCURSOR m_hDragCursor;
	TCITEM TabCtrlItem;
	char m_szText[MAX_PATH];
	BOOL m_bSel;
};

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

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

#endif // !defined(AFX_ADVTABCTRL_H__AD8C3BA1_8844_11D5_9BB3_E13549EA421E__INCLUDED_)

⌨️ 快捷键说明

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