56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
// TabTreeResource.h : header file
|
|
//
|
|
#if !defined(__TABTREERESOURCE_H__)
|
|
#define __TABTREERESOURCE_H__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTabTreeResource window
|
|
|
|
class CTabTreeResource : public CXTTreeCtrl
|
|
{
|
|
// Construction
|
|
public:
|
|
CTabTreeResource();
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
protected:
|
|
CImageList m_imageList;
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CTabTreeResource)
|
|
public:
|
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
|
protected:
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
void UpdateTree();
|
|
virtual ~CTabTreeResource();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CTabTreeResource)
|
|
afx_msg LRESULT OnNcHitTest(CPoint point);
|
|
afx_msg void OnEndlabeledit(NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(__TABTREERESOURCE_H__)
|