Windows Programming Model - PowerPoint PPT Presentation

1 / 8
About This Presentation
Title:

Windows Programming Model

Description:

{ case WM_PAINT: hdc = BeginPaint (hwnd, &ps); Ellipse (hdc, 0, 0, 200, 100) ... case WM_DESTROY: ... Download .NET. https://msdn04.e-academy.com ... – PowerPoint PPT presentation

Number of Views:78
Avg rating:3.0/5.0
Slides: 9
Provided by: richard735
Category:

less

Transcript and Presenter's Notes

Title: Windows Programming Model


1
Windows Programming Model
2
WINDOWS PROGRAMMING SDK-STYLE
  • include ltwindows.hgt
  • LONG WINAPI WndProc (HWND, UINT, WPARAM, LPARAM)
  • int WINAPI WinMain (HINSTANCE hInstance,
    HINSTANCE hPrevInstance,
  • LPSTR lpszCmdLine, int nCmdShow)
  • WNDCLASS wc
  • HWND hwnd
  • MSG msg
  • wc.style 0 // Class style
  • wc.lpfnWndProc (WNDPROC) WndProc// Window
    procedure address
  • wc.cbClsExtra 0 // Class extra bytes
  • wc.cbWndExtra 0 // Window extra bytes
  • wc.hInstance hInstance // Instance handle
  • wc.hIcon LoadIcon (NULL, IDI_WINLOGO) //
    Icon handle
  • wc.hCursor LoadCursor (NULL, IDC_ARROW) //
    Cursor handle
  • wc.hbrBackground (HBRUSH) (COLOR_WINDOW
    1)

NULL, // Menu handle hInstance, //
Application's instance handle NULL //
Window-creation data ) ShowWindow (hwnd,
nCmdShow) UpdateWindow (hwnd) while
(GetMessage (msg, NULL, 0, 0))
TranslateMessage (msg) DispatchMessage
(msg) return msg.wParam LRESULT
CALLBACK WndProc (HWND hwnd, UINT message, WPARAM
wParam, LPARAM lParam) PAINTSTRUCT ps
HDC hdc switch (message) case
WM_PAINT hdc BeginPaint (hwnd, ps)
Ellipse (hdc, 0, 0, 200, 100)
EndPaint (hwnd, ps) return 0 case
WM_DESTROY PostQuitMessage (0)
return 0 return DefWindowProc (hwnd,
message, wParam, lParam)
3
MFC Design Philosophy
  • Provide an object-oriented interface to the
    Windows operating system that supports
    reusability, self-containment, and other tenets
    of OOP.MFC Design Philosophy
  • Avoid undue overhead on the system or
    unnecessarily adding to an application's memory
    requirements
  • Document/View Architecture
  • MFC Class Hierarchy (CObject)
  • Serialization Support
  • Run-time class information support
  • Diagnostics debugging support

4
(No Transcript)
5
(No Transcript)
6
Demo!!!
  • Multishape Example to demonstrate Serialization
  • Windows Template Example
  • Addition of simple transformation to Template
  • Unix Demo

7
TIPS
  • Delete Debug folder before submitting.
  • Download .NET
  • https//msdn04.e-academy.com/binghamton_watson/
  • No images either if they are too big.
  • Submit using dropbox. (Demo)
  • Readme (Template will be provided).

8
  • Questions???
Write a Comment
User Comments (0)
About PowerShow.com