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

对话框与窗口

开发平台:

Visual C++

  1. // TitleDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CaptionDemo.h"
  5. #include "TitleDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTitleDialog dialog
  13. CTitleDialog::CTitleDialog(CWnd* pParent /*=NULL*/)
  14. : CDialog(CTitleDialog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CTitleDialog)
  17. m_TitleEdit = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CTitleDialog::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CTitleDialog)
  24. DDX_Text(pDX, IDC_TITLE_EDIT, m_TitleEdit);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CTitleDialog, CDialog)
  28. //{{AFX_MSG_MAP(CTitleDialog)
  29. ON_BN_CLICKED(ID_EXAMPLE_TITLE_BUTTON, OnExampleTitleButton)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. void CTitleDialog::SetTitleText(CString& title)
  33. {
  34. m_TitleEdit = title;
  35. }
  36. CString CTitleDialog::GetTitleText() const
  37. {
  38. return m_TitleEdit;
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CTitleDialog message handlers
  42. void CTitleDialog::OnExampleTitleButton() 
  43. {
  44. m_TitleEdit = _T("An exceedingly long title that will almost certainly require wrapping of "
  45. "the window caption in order to be fully visible, and possibly will be too "
  46. "long even for a wrapped caption to display its complete text, and will continue "
  47. "on beyond the visible caption area");
  48. UpdateData(FALSE);
  49. }
  50. void CTitleDialog::OnOK() 
  51. {
  52. UpdateData();
  53. CDialog::OnOK();
  54. }