21IMPLEMENT_DYNCREATE(
CExFrame, CMDIChildWnd)
40 colorMode = GRAPH_COLOR_MONO;
42 cancelOperation =
false;
43 doneErrorMessage =
false;
52 DEBUG_INFO(
"DESTRUCTOR: CExFrame\n");
55 DEBUG_INFO(
"Call Application FrameDestructor()\n");
69BEGIN_MESSAGE_MAP(
CExFrame, CMDIChildWnd)
73#ifdef ON_WM_ENTERSIZEMOVE
77 ON_MESSAGE(WM_ENTERSIZEMOVE, OnEnterSizeMove)
78 ON_MESSAGE(WM_EXITSIZEMOVE, OnExitSizeMove)
88BOOL
CExFrame::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CMDIFrameWnd* pParentWnd, CCreateContext* pContext)
90 dwStyle = dwStyle | WS_CLIPCHILDREN;
92 return CMDIChildWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, pContext);
96#ifdef ON_WM_ENTERSIZEMOVE
100 CMDIChildWnd::OnEnterSizeMove();
107 CMDIChildWnd::OnExitSizeMove();
133 return CMDIChildWnd::OnEraseBkgnd(pDC);
141 pt.x = pRect->right - pRect->left + 1;
142 pt.y = pRect->bottom - pRect->top + 1;
148 pRect->right = pRect->left + pt.x - 1;
149 pRect->bottom = pRect->top + pt.y - 1;
150 CMDIChildWnd::OnSizing(fwSide, pRect);
virtual void FrameDestructor(CExFrame *frm)
afx_msg LRESULT OnEnterSizeMove(WPARAM wParam, LPARAM lParam)
afx_msg LRESULT OnExitSizeMove(WPARAM wParam, LPARAM lParam)
afx_msg void OnSizing(UINT fwSide, LPRECT pRect)
afx_msg BOOL OnEraseBkgnd(CDC *pDC)
POINT GetWindowReSize(POINT pt)
POINT GetWindowSize(POINT pt)
POINT GetClientSize(POINT pt)