winapi 윈도우 c++ 클래스화
프로그래밍 언어/C++2011. 11. 30. 11:58
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; } |
'프로그래밍 언어 > C++' 카테고리의 다른 글
[잡담] SEH (Structured Exception Handler)의 불편한 진실 (1) | 2011.12.13 |
---|---|
Visual Studio 2010 에디터 테마 색상 적용 (3) | 2011.12.06 |
Visual Studio 2010 단축키 (2) | 2011.11.14 |
구글 성능 도구를 활용한 tcmalloc 사용하기 (1) | 2011.11.14 |
XP에서 지원되지 않는 ATL에서의 Syslink control (0) | 2011.11.12 |