63 lines
1.5 KiB
C++
63 lines
1.5 KiB
C++
// TabEdit.h : header file
|
|
//
|
|
#if !defined(__TabEdit_H__)
|
|
#define __TabEdit_H__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTabEdit window
|
|
|
|
class CTabEdit : public CEdit
|
|
{
|
|
public:
|
|
CTabEdit();
|
|
virtual ~CTabEdit();
|
|
|
|
protected:
|
|
CFont m_font;
|
|
COleDropTarget m_dropTarget;
|
|
|
|
public:
|
|
BOOL CanPaste();
|
|
BOOL SelectionMade();
|
|
|
|
//{{AFX_VIRTUAL(CTabEdit)
|
|
protected:
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
//}}AFX_VIRTUAL
|
|
protected:
|
|
virtual void CreateFont();
|
|
|
|
protected:
|
|
//{{AFX_MSG(CTabEdit)
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
afx_msg void OnContextMenu(CWnd*, CPoint point);
|
|
afx_msg void OnEditUndo();
|
|
afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
|
|
afx_msg void OnEditCut();
|
|
afx_msg void OnUpdateEditCut(CCmdUI* pCmdUI);
|
|
afx_msg void OnEditCopy();
|
|
afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
|
|
afx_msg void OnEditPaste();
|
|
afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
|
|
afx_msg void OnEditClear();
|
|
afx_msg void OnUpdateEditClear(CCmdUI* pCmdUI);
|
|
afx_msg void OnEditSelectAll();
|
|
afx_msg void OnUpdateEditSelectAll(CCmdUI* pCmdUI);
|
|
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
|
|
afx_msg void OnPaint();
|
|
afx_msg void OnDropFiles(HDROP hDropInfo);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(__TabEdit_H__)
|