TitleDialog.cpp
上传用户:kssdz899
上传日期:2007-01-08
资源大小:79k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

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. /////////////////////////////////////////////////////////////////////////////
  33. // CTitleDialog message handlers
  34. void CTitleDialog::OnExampleTitleButton() 
  35. {
  36. m_TitleEdit = _T("An exceedingly long title that will almost certainly require wrapping of "
  37. "the window caption in order to be fully visible, and possibly will be too "
  38. "long even for a wrapped caption to display its complete text, and will continue "
  39. "on beyond the visible caption area");
  40. UpdateData(FALSE);
  41. }
  42. void CTitleDialog::OnOK() 
  43. {
  44. UpdateData();
  45. CDialog::OnOK();
  46. }