50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#if !defined(AFX_TED_H__4C3C43E1_500A_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_TED_H__4C3C43E1_500A_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// TED.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTED dialog
|
|
|
|
class CTED : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CString m_strText;
|
|
CTED(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CTED)
|
|
enum { IDD = IDD_DISPLAYTEXT };
|
|
CEdit m_edText;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CTED)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CTED)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtncopyall();
|
|
afx_msg void OnBtncopyselection();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_TED_H__4C3C43E1_500A_11D4_964F_00C0F02C4B69__INCLUDED_)
|