PaneDialog.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // PaneDialog.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "ActivePaneView.h"
  22. #include "PaneDialog.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CPaneDialog dialog
  30. CPaneDialog::CPaneDialog(CWnd* pParent /*=NULL*/)
  31. : CDialog(CPaneDialog::IDD, pParent)
  32. {
  33. //{{AFX_DATA_INIT(CPaneDialog)
  34. // NOTE: the ClassWizard will add member initialization here
  35. //}}AFX_DATA_INIT
  36. }
  37. void CPaneDialog::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CPaneDialog)
  41. DDX_Control(pDX, IDC_TXT_DIALOG, m_txtDialog);
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CPaneDialog, CDialog)
  45. //{{AFX_MSG_MAP(CPaneDialog)
  46. ON_WM_NCPAINT()
  47. ON_WM_NCCALCSIZE()
  48. ON_COMMAND(ID_VIEW_ONE, OnViewOne)
  49. ON_COMMAND(ID_VIEW_TWO, OnViewTwo)
  50. ON_WM_LBUTTONDOWN()
  51. ON_WM_WINDOWPOSCHANGED()
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CPaneDialog message handlers
  56. void CPaneDialog::OnNcPaint()
  57. {
  58. CWindowDC dc(this);
  59. CXTPWindowRect rect(this);
  60. int cx = rect.Width();
  61. int cy = rect.Height();
  62. const COLORREF clrFrame =  ::GetSysColor(COLOR_3DSHADOW);
  63. dc.Draw3dRect(0, 0, cx, cy, clrFrame, clrFrame);
  64. }
  65. void CPaneDialog::OnNcCalcSize(BOOL /*bCalcValidRects*/, NCCALCSIZE_PARAMS FAR* lpncsp)
  66. {
  67. // adjust non-client area for border space
  68. lpncsp->rgrc[0].left   += 1;
  69. lpncsp->rgrc[0].top    += 1;
  70. lpncsp->rgrc[0].right  -= 1;
  71. lpncsp->rgrc[0].bottom -= 1;
  72. }
  73. BOOL CPaneDialog::OnInitDialog()
  74. {
  75. CDialog::OnInitDialog();
  76. // TODO: Add extra initialization here
  77. m_txtDialog.SetFont(&theApp.m_font);
  78. return TRUE;  // return TRUE unless you set the focus to a control
  79.               // EXCEPTION: OCX Property Pages should return FALSE
  80. }
  81. void CPaneDialog::OnViewOne()
  82. {
  83. // alert user.
  84. AfxMessageBox(_T("Dialog Pane - No. 1"));
  85. // set input focus
  86. SetFocus();
  87. }
  88. void CPaneDialog::OnViewTwo()
  89. {
  90. // alert user.
  91. AfxMessageBox(_T("Dialog Pane - No. 2"));
  92. // set input focus
  93. SetFocus();
  94. }
  95. void CPaneDialog::OnLButtonDown(UINT nFlags, CPoint point)
  96. {
  97. CDialog::OnLButtonDown(nFlags, point);
  98. // set input focus
  99. SetFocus();
  100. }
  101. void CPaneDialog::OnWindowPosChanged(WINDOWPOS FAR* lpwndpos)
  102. {
  103. CDialog::OnWindowPosChanged(lpwndpos);
  104. // TODO: Add your message handler code here
  105. if (::IsWindow(m_txtDialog.m_hWnd))
  106. {
  107. CXTPWindowRect rect(&m_txtDialog);
  108. ScreenToClient(&rect);
  109. int cx = rect.Width();
  110. int cy = rect.Height();
  111. rect.top    = (lpwndpos->cy-cy)/2;
  112. rect.bottom = rect.top + cy;
  113. rect.left   = (lpwndpos->cx-cx)/2;
  114. rect.right  = rect.left + cx;
  115. m_txtDialog.MoveWindow(&rect);
  116. m_txtDialog.Invalidate();
  117. }
  118. }