54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
// CPACTTip.hpp : header file
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _CPACTTIP_HPP_
|
|
#define _CPACTTIP_HPP_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// EdActors_SpecialToolTip window
|
|
|
|
class EdActors_SpecialToolTip : public CWnd
|
|
{
|
|
// Construction
|
|
public:
|
|
EdActors_SpecialToolTip(CString csText,
|
|
CFont *pclFont);
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
private:
|
|
CString m_csToolTipText;
|
|
CFont *m_pclFont;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(EdActors_SpecialToolTip)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~EdActors_SpecialToolTip();
|
|
|
|
BOOL m_fn_bCreate(CWnd *pclParentWnd);
|
|
void m_fn_vMove(CPoint point);
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(EdActors_SpecialToolTip)
|
|
afx_msg void OnPaint();
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#endif //_CPACTTIP_HPP_
|
|
|