| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // DockPaneLog.cpp : ʵÏÖÎļþ
- //
- #include "stdafx.h"
- #include "DockPane.h"
- #include "IView.h"
- // CDockPaneLog
- IMPLEMENT_DYNAMIC(CDockPane, CDockablePane)
- CDockPane::CDockPane(IResourceView* pView) : m_pView(pView)
- {
- }
- CDockPane::~CDockPane()
- {
- }
- BEGIN_MESSAGE_MAP(CDockPane, CDockablePane)
- ON_WM_SIZE()
- END_MESSAGE_MAP()
- // CDockPaneLog ÏûÏ¢´¦Àí³ÌÐò
- void CDockPane::OnSize(UINT nType, int cx, int cy)
- {
- CDockablePane::OnSize(nType, cx, cy);
- ASSERT(m_pView != NULL);
- m_pView->newSize(cx, cy);
- }
|