Created
December 15, 2016 04:53
-
-
Save sungyongchoi/5caf2d40f8e20d437baddf97f1ab2c74 to your computer and use it in GitHub Desktop.
비주얼 스튜디오 2015, 윈도우즈 32 API 프로그래밍, 마우스 클릭 상태에서 원 이동 시키기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MouseMove.cpp : 응용 프로그램에 대한 진입점을 정의합니다. | |
// 출처 : 윈도우즈 32 API 프로그래밍 | |
#include "stdafx.h" | |
#include "MouseMove.h" | |
#include <math.h> | |
#define MAX_LOADSTRING 100 | |
#define SIZE 40 | |
// 전역 변수: | |
HINSTANCE hInst; // 현재 인스턴스입니다. | |
WCHAR szTitle[MAX_LOADSTRING]; // 제목 표시줄 텍스트입니다. | |
WCHAR szWindowClass[MAX_LOADSTRING]; // 기본 창 클래스 이름입니다. | |
// 이 코드 모듈에 들어 있는 함수의 정방향 선언입니다. | |
ATOM MyRegisterClass(HINSTANCE hInstance); | |
BOOL InitInstance(HINSTANCE, int); | |
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); | |
INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM); | |
double LengthPoints(int x1, int y1, int x2, int y2) | |
{ | |
//점과 점사이 거리 공식 | |
return (sqrt((float)((x2 - x1) ^ 2 + (y2 - y1) ^ 2))); | |
} | |
BOOL InCircle(int cx, int cy, int mx, int my) | |
{ | |
if (LengthPoints(cx, cy, mx, my) < SIZE) | |
return TRUE; | |
else | |
return FALSE; | |
} | |
int APIENTRY wWinMain(_In_ HINSTANCE hInstance, | |
_In_opt_ HINSTANCE hPrevInstance, | |
_In_ LPWSTR lpCmdLine, | |
_In_ int nCmdShow) | |
{ | |
UNREFERENCED_PARAMETER(hPrevInstance); | |
UNREFERENCED_PARAMETER(lpCmdLine); | |
// TODO: 여기에 코드를 입력합니다. | |
// 전역 문자열을 초기화합니다. | |
LoadStringW(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING); | |
LoadStringW(hInstance, IDC_MOUSEMOVE, szWindowClass, MAX_LOADSTRING); | |
MyRegisterClass(hInstance); | |
// 응용 프로그램 초기화를 수행합니다. | |
if (!InitInstance (hInstance, nCmdShow)) | |
{ | |
return FALSE; | |
} | |
HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_MOUSEMOVE)); | |
MSG msg; | |
// 기본 메시지 루프입니다. | |
while (GetMessage(&msg, nullptr, 0, 0)) | |
{ | |
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) | |
{ | |
TranslateMessage(&msg); | |
DispatchMessage(&msg); | |
} | |
} | |
return (int) msg.wParam; | |
} | |
// | |
// 함수: MyRegisterClass() | |
// | |
// 목적: 창 클래스를 등록합니다. | |
// | |
ATOM MyRegisterClass(HINSTANCE hInstance) | |
{ | |
WNDCLASSEXW wcex; | |
wcex.cbSize = sizeof(WNDCLASSEX); | |
wcex.style = CS_HREDRAW | CS_VREDRAW; | |
wcex.lpfnWndProc = WndProc; | |
wcex.cbClsExtra = 0; | |
wcex.cbWndExtra = 0; | |
wcex.hInstance = hInstance; | |
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_MOUSEMOVE)); | |
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); | |
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); | |
wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_MOUSEMOVE); | |
wcex.lpszClassName = szWindowClass; | |
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL)); | |
return RegisterClassExW(&wcex); | |
} | |
// | |
// 함수: InitInstance(HINSTANCE, int) | |
// | |
// 목적: 인스턴스 핸들을 저장하고 주 창을 만듭니다. | |
// | |
// 설명: | |
// | |
// 이 함수를 통해 인스턴스 핸들을 전역 변수에 저장하고 | |
// 주 프로그램 창을 만든 다음 표시합니다. | |
// | |
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) | |
{ | |
hInst = hInstance; // 인스턴스 핸들을 전역 변수에 저장합니다. | |
HWND hWnd = CreateWindowW(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, | |
CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, nullptr, nullptr, hInstance, nullptr); | |
if (!hWnd) | |
{ | |
return FALSE; | |
} | |
ShowWindow(hWnd, nCmdShow); | |
UpdateWindow(hWnd); | |
return TRUE; | |
} | |
// | |
// 함수: WndProc(HWND, UINT, WPARAM, LPARAM) | |
// | |
// 목적: 주 창의 메시지를 처리합니다. | |
// | |
// WM_COMMAND - 응용 프로그램 메뉴를 처리합니다. | |
// WM_PAINT - 주 창을 그립니다. | |
// WM_DESTROY - 종료 메시지를 게시하고 반환합니다. | |
// | |
// | |
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) | |
{ | |
HDC hdc; | |
PAINTSTRUCT ps; | |
static int centerx, centery; | |
static BOOL Selection; | |
int mousex, mousey; | |
switch (message) | |
{ | |
case WM_COMMAND: | |
{ | |
int wmId = LOWORD(wParam); | |
// 메뉴 선택을 구문 분석합니다. | |
switch (wmId) | |
{ | |
case IDM_ABOUT: | |
DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About); | |
break; | |
case IDM_EXIT: | |
DestroyWindow(hWnd); | |
break; | |
default: | |
return DefWindowProc(hWnd, message, wParam, lParam); | |
} | |
} | |
break; | |
case WM_CREATE: | |
centerx = 50; | |
centery = 50; | |
Selection = FALSE; | |
break; | |
case WM_PAINT: | |
{ | |
PAINTSTRUCT ps; | |
HDC hdc = BeginPaint(hWnd, &ps); | |
// TODO: 여기에 hdc를 사용하는 그리기 코드를 추가합니다. | |
if (Selection) | |
Rectangle(hdc, centerx - SIZE, centery - SIZE, centerx + SIZE, centery + SIZE); | |
Ellipse(hdc, centerx - SIZE, centery - SIZE, centerx + SIZE, centery + SIZE); | |
EndPaint(hWnd, &ps); | |
} | |
break; | |
case WM_LBUTTONDOWN: | |
{ | |
mousex = LOWORD(lParam); | |
mousey = HIWORD(lParam); | |
if (InCircle(centerx, centery, mousex, mousey)) Selection = TRUE; | |
InvalidateRgn(hWnd, NULL, TRUE); | |
} | |
break; | |
case WM_LBUTTONUP: | |
{ | |
Selection = FALSE; | |
InvalidateRgn(hWnd, NULL, TRUE); | |
} | |
break; | |
case WM_MOUSEMOVE: | |
{ | |
mousex = LOWORD(lParam); | |
mousey = HIWORD(lParam); | |
if (Selection) | |
{ | |
centerx = mousex; | |
centery = mousey; | |
InvalidateRgn(hWnd, NULL, TRUE); | |
} | |
} | |
break; | |
case WM_DESTROY: | |
PostQuitMessage(0); | |
break; | |
default: | |
return DefWindowProc(hWnd, message, wParam, lParam); | |
} | |
return 0; | |
} | |
// 정보 대화 상자의 메시지 처리기입니다. | |
INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) | |
{ | |
UNREFERENCED_PARAMETER(lParam); | |
switch (message) | |
{ | |
case WM_INITDIALOG: | |
return (INT_PTR)TRUE; | |
case WM_COMMAND: | |
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL) | |
{ | |
EndDialog(hDlg, LOWORD(wParam)); | |
return (INT_PTR)TRUE; | |
} | |
break; | |
} | |
return (INT_PTR)FALSE; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment