Presentation is loading. Please wait.

Presentation is loading. Please wait.

Message Process for SDI Chung-Buk HRD Institute of KCCI Dept. of Information & Communication PhD. Kang, Won-Chan.

Similar presentations


Presentation on theme: "Message Process for SDI Chung-Buk HRD Institute of KCCI Dept. of Information & Communication PhD. Kang, Won-Chan."— Presentation transcript:

1 Message Process for SDI Chung-Buk HRD Institute of KCCI Dept. of Information & Communication PhD. Kang, Won-Chan

2 Computer Interface SELECT

3 Computer Interface SELECT

4 Computer Interface void CMsgView::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Key Pressed"); CView::OnKeyDown(nChar, nRepCnt, nFlags); }

5 Computer Interface IDABORT : Abort 키를 누름 IDCANCEL : Cancel 키를 누름 IDIGNORE : Ignore 키를 누름 IDNO : NO 키를 누름 IDOK : OK 키를 누름 IDRETRY : Retry 키를 누름 IDYES : YES 키를 누름 MB_ABORTRETRYIGNORE : Abort,Retry,Ignore 버튼이 설정됨 MB_OK : OK 버튼이 설정됨 MB_OKCANCEL : OK 버튼과 CANCEL 버튼이 설정됨 MB_RETRYCANCEL : RETRY 와 CANCEL 버튼이 설정됨 MB_YESNO : YES 와 NO 버튼이 설정됨 MB_YESNOCANCEL : YES 와 NO 와 CANCEL 버튼이 설정됨 nType Value Return Value

6 Computer Interface SELECT

7 Computer Interface void CMsgView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Mouse Left Button click"); CView::OnLButtonDown(nFlags, point); }

8 Computer Interface SELECT

9 Computer Interface void CMsgView::OnEditUndo() { // TODO: Add your command handler code here AfxMessageBox("Select the Menu Undo item"); }

10 Computer Interface void CMainFrame::OnEditUndo() { // TODO: Add your command handler code here AfxMessageBox("Select the MainFrame Undo item"); } priority CMsgView > CMainFrame Therefore delete the CMsgView->OnEditUndo()

11 Computer Interface SELECT

12 Message Process for MDI

13 Computer Interface SELECT

14 Computer Interface SELECT

15 Computer Interface SELECT

16 Computer Interface void CMMsgView::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Char key press"); CView::OnChar(nChar, nRepCnt, nFlags); }

17 Computer Interface SELECT

18 Computer Interface void CMMsgView::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Mouse Left button press"); CView::OnLButtonDown(nFlags, point); }

19 Computer Interface SELECT

20 Computer Interface void CMMsgView::OnEditUndo() { // TODO: Add your command handler code here AfxMessageBox("Select the Undo menu item"); }

21 Computer Interface SELECT

22 Computer Interface Heritage Problem void CMainFrame::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Char key press at CMainFrame"); CMDIFrameWnd::OnChar(nChar, nRepCnt, nFlags); } void CMainFrame::OnLButtonDown(UINT nFlags, CPoint point) { // TODO: Add your message handler code here and/or call default AfxMessageBox("Mouse Left button press at CMainFrame"); CMDIFrameWnd::OnLButtonDown(nFlags, point); }

23 Computer Interface Not Run CView->CMainFrame->CWinApp Message process This is not Window Therefore it is not show

24 Computer Interface SELECT

25 Computer Interface void CMMsgApp::OnEditCut() { // TODO: Add your command handler code here AfxMessageBox("Select the Cut menu item"); }

26 Computer Interface Window message Create: 윈도우가 만들어질 때 발생되는 메시지 함수 OnActivateView: 현재 뷰가 활성화 되었을 때 처리되는 메시지함수 OnBeginPrinting: 프린터로 데이터를 출력하기 시작할 때 처리되는 메시지 함수 OnChildNotify: 차일드 윈도우로부터 WM_NOTIFY 메시가 전달되었을 경우 OnEndPrinting: 프린터로 데이터 출력이 끝났을 때 처리되는 함수 OnInitialUpdate: 윈도우 초기에 업데이트 될 때 실행되는 함수 OnNotify: WM_NOTIFY 가 발생되었을 때 OnPreparePrinting: 프린터로 데이터를 출력하기 위해 준비하는 단계의 함수 OnPrint: 프린터로 데이터 출력시 OnScroll: 스크로 바를 이용하여 스크롤이 일어 났을 경우 PreCreateWindow: 윈도우가 만들어지기 이전에 수행되는 함수 Serialize: 데이터가 디스크에 입력 또는 출력이 되는 것을 처리하는 함수 WindowProc: 현재 윈도우 프로시저

27 Computer Interface WM_CHAR : 문자키가 눌렸을 경우 ( 화살표키 펑션키 등을 제외한 ) WM_CONTEXTMENU: 윈도우 비 클라이언트 영역에서 버튼을 클릭하였을 때 메뉴 출력을 요할 때 수행되는 메시지 WM_CREATE: 윈도우가 만들어 졌을 때의 메시지 WM_DESTROY: 윈도우가 사라질 때의 메시지 WM_HSCROLL: 수평 스크롤바에서 스크롤바 위치가 바뀔 때 WM_KEYDOWN: 키가 눌려졌을 때 WM_KEYUP : 키가 띄어 졌을 때 WM_KILLFOCUS : 포커스가 사라졌을 때 WM_LBUTTONDBLCLK : 좌측 마우스 버튼 더블클릭 WM_LBUTTONDOWN : 좌측 마우스 버튼을 눌렀을 때 WM_LBOTTONUP: 좌측 마우스 버튼을 띄었을 때 WM_MOUSEMOVE : 마우스가 이동되고 있을 때 WM_PAINT: 화면 출력을 다시 해야 할 때 WM_RBUTTONDBLCLK : 우측 마우스 버튼 더블클릭 WM_RBUTTONDOWN : 우측 마우스 버튼을 눌렀을 때 WM_RBOTTONUP: 우측 마우스 버튼을 띄었을 때 WM_SETCURSOR: 마우스 커서를 설정할 필요가 있을 때 WM_SIZE : 윈도우 크기가 변경되었을 때 WM_TIMER : 타이머가 발생되었을 때 WM_VSCROLL : 수직 스크롤바에서 스크롤바 위치가 바뀔때

28 END


Download ppt "Message Process for SDI Chung-Buk HRD Institute of KCCI Dept. of Information & Communication PhD. Kang, Won-Chan."

Similar presentations


Ads by Google