TitleDialog.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_TITLEDIALOG_H__014C5956_CD90_11D3_A836_00104BA829E5__INCLUDED_)
  2. #define AFX_TITLEDIALOG_H__014C5956_CD90_11D3_A836_00104BA829E5__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // TitleDialog.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTitleDialog dialog
  10. class CTitleDialog : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CTitleDialog(CWnd* pParent = NULL);   // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CTitleDialog)
  17. enum { IDD = IDD_TITLE_DIALOG };
  18. CString m_TitleEdit;
  19. //}}AFX_DATA
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTitleDialog)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. void SetTitleText(CString& title);
  28. CString GetTitleText() const;
  29. protected:
  30. // Generated message map functions
  31. //{{AFX_MSG(CTitleDialog)
  32. afx_msg void OnExampleTitleButton();
  33. virtual void OnOK();
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  39. #endif // !defined(AFX_TITLEDIALOG_H__014C5956_CD90_11D3_A836_00104BA829E5__INCLUDED_)