Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
767 B

// Title.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CStaticTitle window
class CStaticTitle : public CButton
{
// Construction
public:
CStaticTitle();
// Attributes
public:
// Operations
public:
virtual void DrawItem( LPDRAWITEMSTRUCT lpDrawItemStruct );
BOOL m_fTipText;
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CStaticTitle)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CStaticTitle();
// Generated message map functions
protected:
//{{AFX_MSG(CStaticTitle)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
BOOL m_fInitializedFont;
};
/////////////////////////////////////////////////////////////////////////////