윈도우에서 처리하는 클라이언트의 색깔을 설정하고, 수정할 수 있다.
처음 설정하는 것에서 본다면, 다음과 같은 방법으로 설정을 하게 된다.
1 | WndClass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH); | cs |
이렇게 GetStockObject라는 것을 이용해서 BRUSH 핸들을 가지고오게 만들어서 값을 변경 시킨다.
GetStockObject 함수는 그래픽 객체 함수로 펜, 브러시, 폰트, 팔렛트 등의 객체 핸들을 얻는 함수이다.
참조 : https://msdn.microsoft.com/ko-kr/library/windows/desktop/dd144925(v=vs.85).aspx
해당 함수의 값을 이용해서 글꼴등을 설정할 수 있다.
CreateHatchBrush는 브러시 객체를 만들어 낸다.
참조 : https://msdn.microsoft.com/ko-kr/library/windows/desktop/dd183504(v=vs.85).aspx
검은색 브러쉬 예제로 작성한다.
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 | #include <stdlib.h> #include <tchar.h> #include <windows.h> LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM); HINSTANCE g_hInst; WNDCLASS WndClass; int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdParam, int nCmdShow) { HWND hWnd; MSG Message; g_hInst = hInstance; //윈도우 클래스 초기화 WndClass.cbClsExtra=0; WndClass.cbWndExtra=0; WndClass.hbrBackground=(HBRUSH)GetStockObject(BLACK_BRUSH); WndClass.hCursor=LoadCursor(NULL,IDC_ARROW); WndClass.hIcon=LoadIcon(NULL,IDI_APPLICATION); WndClass.hInstance=hInstance; WndClass.lpfnWndProc=(WNDPROC)WndProc; WndClass.lpszClassName="ApiBase"; WndClass.lpszMenuName=NULL; WndClass.style=CS_HREDRAW|CS_VREDRAW; //윈도우 클래스 생성. RegisterClass(&WndClass); //윈도우 객체 생성. hWnd = CreateWindow("ApiBase", "Test", WS_OVERLAPPEDWINDOW, 10,// X 100,// Y 400,// Width 400,// Height NULL, (HMENU)NULL, hInstance, NULL); //윈도우 창 띄우기. ShowWindow(hWnd,nCmdShow); while(GetMessage(&Message,0,0,0)) { TranslateMessage(&Message); DispatchMessage(&Message); } return Message.wParam; } LRESULT CALLBACK WndProc(HWND hWnd,UINT iMessage,WPARAM wParam,LPARAM lParam) { HDC hdc; PAINTSTRUCT ps; long dwStyle; switch(iMessage) { case WM_DESTROY: PostQuitMessage(0); break; case WM_LBUTTONDOWN: break; case WM_PAINT: hdc = GetDC(hWnd); TextOut(hdc, 100, 50, "Hello World",11); ReleaseDC(hWnd, hdc); break; } return DefWindowProc(hWnd,iMessage,wParam, lParam); } | cs |
'연습' 카테고리의 다른 글
Windows API 프로그래밍 -7. WM_PAINT. - (0) | 2016.06.23 |
---|---|
Windows API 프로그래밍 -6. GDI와 DC에 대한 설명. - (0) | 2016.06.22 |
Windows API 프로그래밍 -4. 윈도우 타이틀 처리. - (0) | 2016.06.20 |
Windows API 프로그래밍 -3. 윈도우 사이즈 처리. - (0) | 2016.06.19 |
Windows API 프로그래밍 -2. 윈도우 스타일 처리. - (0) | 2016.06.18 |