subclasswnd.h

来自「TabBars的开源源码」· C头文件 代码 · 共 61 行

H
61
字号
/***************************************************************************/
/* NOTE:                                                                   */
/* This document is copyright (c) by Oz Solomonovich.  All non-commercial  */
/* use is allowed, as long as this document not altered in any way, and    */
/* due credit is given.                                                    */
/***************************************************************************/

// SubclassWnd.h : header file
//

#if !defined(AFX_SUBCLASSWND_H__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_)
#define AFX_SUBCLASSWND_H__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CSubclassWnd window

class CSubclassWnd : public CWnd
{
// Construction
public:
	CSubclassWnd(HWND hWndSubclass = NULL);

// Attributes
public:
    HWND m_Saved_hWnd;

    bool m_bIsSubclassed;

// Operations
public:
    void DoSubclass(HWND hWndSubclass = NULL);
    void DoUnsubclass();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSubclassWnd)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CSubclassWnd();

	// Generated message map functions
protected:
	//{{AFX_MSG(CSubclassWnd)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

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

#endif // !defined(AFX_SUBCLASSWND_H__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_)

⌨️ 快捷键说明

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