Thinking Different




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
//MainWindow.h
 
#pragma once
 
class CMainWindow
{
public:
    CMainWindow(void);
    ~CMainWindow(void);
 
public:
    // 초기화 및 처리
    BOOL    Begin(LPCTSTR Name, HINSTANCE hInstance, INT nCmdShow, INT iWidth, INT iHeight);
 
    // 메시지 루프
    INT        MessageLoop(void);
 
    // 윈도우 프로시저 콜백
    LRESULT    WndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
 
private:
    // 윈도우 매인 핸들
    HWND    m_hWnd;
 
public:
    //    윈도우 프로시저 접근 포인터
    static        CMainWindow *pMainWindow;
};
 
 
 
 
MainWindow.cpp
 
 
#include "StdAfx.h"
#include "MainWindow.h"
 
//---------------------------------------
//      윈도우 프로시저 접근 포인터
//---------------------------------------
CMainWindow* CMainWindow::pMainWindow = 0;
 
//---------------------------------------
//          윈도우 프로시저
//---------------------------------------
static LRESULT CALLBACK WndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    // 윈도우 프로시져 콜백함수로 넘김
    return CMainWindow::pMainWindow->WndProc(hWnd, Msg, wParam, lParam);
}
 
//---------------------------------------
//           생성자 (초기화)
//---------------------------------------
CMainWindow::CMainWindow(void)
{
    m_hWnd        = NULL;
    pMainWindow = this;
}
 
//---------------------------------------
//             소멸자 (해제)
//---------------------------------------
CMainWindow::~CMainWindow(void)
{
}
 
//---------------------------------------
//       윈도우 생성 및 초기화
//---------------------------------------
BOOL CMainWindow::Begin(LPCTSTR Name, HINSTANCE hInstance, INT nCmdShow, INT iWidth, INT iHeight)
{
    // 에러 처리
    if(m_hWnd != NULL)
        return FALSE;
 
    // 윈도우 클래스 생성
    WNDCLASS wc;
 
    wc.cbClsExtra        = 0;
    wc.cbWndExtra        = 0;
    wc.hbrBackground    = (HBRUSH)GetStockObject(WHITE_BRUSH);
    wc.hCursor            = LoadCursor(hInstance, IDI_APPLICATION);
    wc.hIcon            = LoadIcon(hInstance, IDC_ARROW);
    wc.hInstance        = hInstance;
    wc.lpfnWndProc        = ::WndProc;
    wc.lpszClassName    = Name;
    wc.lpszMenuName        = NULL;
    wc.style            = CS_HREDRAW | CS_VREDRAW;
 
    // 윈도우 클래스 등록
    if( !RegisterClass( &wc ) )
        return FALSE;
 
    // 윈도우 생성
    m_hWnd = CreateWindow( Name, Name, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, iWidth, iHeight, NULL, NULL, hInstance, NULL );
    if( !m_hWnd )
        return FALSE;
 
    // 윈도우 보이기
    if( ShowWindow( m_hWnd, nCmdShow ) )
        return FALSE;
 
    return TRUE;
}
 
//---------------------------------------
//           Message Loop
//---------------------------------------
INT CMainWindow::MessageLoop(void)
{
    // 윈도우 메시지 처리부
    MSG msg = {0};
 
    while( TRUE )
    {
        if( PeekMessage( &msg, NULL, 0, 0, PM_REMOVE ) )
        {
            TranslateMessage( &msg );
            DispatchMessage( &msg );
        }
    }
 
    return (int)msg.wParam;
}
 
//---------------------------------------
//       윈도우 프로시저 콜백 함수
//---------------------------------------
LRESULT CMainWindow::WndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    switch(Msg)
    {
    case WM_DESTROY:
        PostQuitMessage(0);
        return 0;
    }
 
    return DefWindowProc( hWnd, Msg, wParam, lParam );
}
 
 
 
 
//main.cpp
 
#include "stdafx.h"
 
int APIENTRY _tWinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPTSTR    lpCmdLine,
                     int       nCmdShow)
{
    UNREFERENCED_PARAMETER(hPrevInstance);
    UNREFERENCED_PARAMETER(lpCmdLine);
 
     CMainWindow wnd;
 
    if(wnd.Begin(_T("test"), hInstance, nCmdShow, CW_USEDEFAULT, CW_USEDEFAULT))
        return wnd.MessageLoop();
 
    return FALSE;
}