CDocument CView CMainFrame 간 많이 쓰이는 호출 함수들

By | 2014년 6월 18일

①CView::GetDocument()
②CDocument::UpdateAllViews()
③CView::OnUpdate()
④CDocument::GetNextView()
⑤CMainFrame::GetActiveView()
⑥CMainFrame::GetActiveDocument()

함수
⑦CDC::GetSafeHdc() -> HDC를 얻는다.
⑧CWnd::GetSafeHwnd() -> HWND를 얻는다.
⑨::AfxGetInstanceHandle() -> HINSTANCE를 얻는다.
⑩::AfxGetMainWnd() -> MainFrame 윈도우 객체의 포인터를 얻는다.
⑪::AfxGetResourceHandle() -> 리소스 핸들(HINSTANCE)을 얻는다.
⑫::AfxMessageBox() -> 메시지박스를 실행한다.

Category: C++