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

对话框与窗口

开发平台:

Visual C++

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "Styler.h"
  5. #include "ChildFrm.h"
  6. #include "StylerView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChildFrame
  14. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  15. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  16. //{{AFX_MSG_MAP(CChildFrame)
  17. ON_WM_NCPAINT()
  18. ON_WM_NCACTIVATE()
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CChildFrame construction/destruction
  23. CChildFrame::CChildFrame()
  24. {
  25. m_bActivate = TRUE;
  26. }
  27. CChildFrame::~CChildFrame()
  28. {
  29. }
  30. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. if( !CMDIChildWnd::PreCreateWindow(cs) )
  33. return FALSE;
  34. cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
  35. //cs.xtp &= ~(WS_MINIMIZEBOX | WS_MAXIMIZEBOX);
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CChildFrame diagnostics
  40. #ifdef _DEBUG
  41. void CChildFrame::AssertValid() const
  42. {
  43. CMDIChildWnd::AssertValid();
  44. }
  45. void CChildFrame::Dump(CDumpContext& dc) const
  46. {
  47. CMDIChildWnd::Dump(dc);
  48. }
  49. #endif //_DEBUG
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CChildFrame message handlers
  52. void CChildFrame::ActivateFrame(int nCmdShow) 
  53. {
  54. if (!m_bActivate) 
  55. {
  56. nCmdShow = SW_SHOWNOACTIVATE;
  57. m_bActivate = TRUE;
  58. }
  59. CMDIChildWnd::ActivateFrame(nCmdShow);
  60. }
  61. void CChildFrame::OnNcPaint() 
  62. {
  63. }
  64. BOOL CChildFrame::OnNcActivate(BOOL /*bActive*/) 
  65. {
  66. return TRUE;
  67. }
  68. LRESULT CChildFrame::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) 
  69. {
  70. if (message == WM_XTP_GETWINDOWTOOLTIP)
  71. {
  72. return OnGetToolTip(wParam, lParam);
  73. }
  74. if (message > WM_USER)
  75. {
  76. CStylerView* pView = (CStylerView*)GetActiveView();
  77. if (pView)
  78. return pView->SendMessage(message, wParam, lParam);
  79. }
  80. return CMDIChildWnd::WindowProc(message, wParam, lParam);
  81. }
  82. BOOL CChildFrame::PreTranslateMessage(MSG* pMsg) 
  83. {
  84. // allow tooltip messages to be filtered
  85. if (CWnd::PreTranslateMessage(pMsg))
  86. return TRUE;
  87. return FALSE;
  88. }
  89. LRESULT CChildFrame::OnGetToolTip(WPARAM, LPARAM)
  90. {
  91. CStylerDoc* pDoc = DYNAMIC_DOWNCAST(CStylerDoc, GetActiveDocument());
  92. if (!pDoc)
  93. return 0;
  94. LPCTSTR lpURL = pDoc->GetCurrentUrl();
  95. return (LRESULT)lpURL;
  96. }