성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
[이승준] 적은걸 한번 날려 먹어서 간단하게 적겠습니다. 일단 전체적으로...
[정성태] Revisiting improved HTTP logging in...
[정성태] ListBox.SelectedIndexChanged 이벤트를 그...
[정성태] Understanding the classical model f...
[정성태] DLL이기 때문에 self-contained로 배포해도 (주체적...
[정성태] // 해당 디렉터리에서 가장 최신의 파일을 대상으로 tail 명...
[정성태] Misunderstanding the “Prevent acces...
[정성태] 본문에서 Elliptic Curve를 이용한 서명을 다뤘는데요,...
[이상준] 안녕하세요 정성태님! 링크하신 글의 원문을 적은 사람입니다. ...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>Win32 - 시간 만료를 갖는 MessageBox 대화창 구현 (개선된 버전)</h1> <p> 지난 글에 소개한,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - 시간 만료를 갖는 MessageBox 대화창 구현 (쉬운 버전) ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13305'>https://www.sysnet.pe.kr/2/0/13305</a> </pre> <br /> 코드의 문제점을 개선해 볼까요? ^^ 전역 변수를 사용하는 것이 문제였는데요, 따라서 이후에 소개했던 또 다른 글을 이용해,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - 윈도우 및 윈도우 클래스 저장소 사용 방법 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13306'>https://www.sysnet.pe.kr/2/0/13306</a> </pre> <br /> 전역 변수를 윈도우 저장소에 보관함으로써 해결할 수 있습니다. 여기서 잠깐 지난번에 만든 (시간 만료를 갖는) 메시지 박스의 호출 코드를 볼까요?<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > TimedMessageBox(<span style='color: blue; font-weight: bold'>hWnd</span>, L"TEXT", L"TITLE", MB_OK, 3000); </pre> <br /> 혹시 저렇게 전달된 <a target='tab' href='https://www.sysnet.pe.kr/2/0/13306#userdata'>hWnd에 대해 GWLP_USERDATA</a>를 사용하면 어떨까요? 아쉽게도 여기에는 2개의 문제가 있습니다. 우선, (<a target='tab' href='https://www.sysnet.pe.kr/2/0/13300'>Owner를 지정하는 것은 중요하지만</a>) 사용자가 항상 hWnd를 전달할 거라는 보장을 할 수 없습니다. (물론, hWnd가 nullptr이면 오류를 반환하도록 결정하면 됩니다.) 결정적으로 2번째 이유가 있는데요, (라이브러리 성격의 TimedMessageBox API 입장에서) 사용자가 전달한 hWnd의 GWLP_USERDATA가 이미 다른 용도로 사용 중이라면 충돌을 야기할 수밖에 없습니다.<br /> <br /> 바로 그런 문제를 해결하기 위해, part 8에서는,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Modality, part 8: A timed MessageBox, the better version ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050304-00/?p=36273'>https://devblogs.microsoft.com/oldnewthing/20050304-00/?p=36273</a> </pre> <br /> Owner 윈도우와 대화창 사이에 우리의 시간 만료 기능을 위해 필요한 데이터를 저장할 dummy 윈도우를 하나 끼워 넣고 있습니다. 아래는 그 윈도우를 위한 코드로,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > ATOM RegisterDummyWindowClass(HINSTANCE hInstance) { WNDCLASS wc = { 0, // style DefWindowProc, // lpfnWndProc 0, // cbClsExtra 0, // cbWndExtra hInstance, // this file's HINSTANCE NULL, // hIcon LoadCursor(NULL, IDC_ARROW), // hCursor (HBRUSH)(COLOR_BTNFACE + 1), // hbrBackground NULL, // lpszMenuName TEXT(<span style='color: blue; font-weight: bold'>"Dummy"</span>), // lpszClassName }; return RegisterClass(&wc); } HWND CreateDummyWindow(HWND hwndParent) { HWND hwnd; hwnd = CreateWindow(TEXT(<span style='color: blue; font-weight: bold'>"Dummy"</span>), NULL, hwndParent ? WS_CHILD : WS_OVERLAPPED, 0, 0, 0, 0, hwndParent, NULL, NULL, NULL); return hwnd; } </pre> <br /> 기존에 전역 변수로 두었던 2개의 변수를,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > static BOOL s_fTimedOut; static HWND s_hwndMBOwnerEnable; </pre> <br /> Dummy 윈도우로 생성한 저장소 공간에 GWLP_USERDATA로 보관해 두는 방식으로 소스코드를 수정하면 됩니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > #define IDT_TOOLATE 1 typedef struct TOOLATEINFO { BOOL fTimedOut; HWND hwndReenable; } TOOLATEINFO; void CALLBACK MsgBoxTooLateProc(HWND hwnd, UINT uiMsg, UINT_PTR idEvent, DWORD dwTime) { <span style='color: blue; font-weight: bold'>TOOLATEINFO* ptli = reinterpret_cast<TOOLATEINFO*>( GetWindowLongPtr(hwnd, GWLP_USERDATA));</span> if (ptli) { ptli->fTimedOut = TRUE; if (ptli->hwndReenable) { EnableWindow(ptli->hwndReenable, TRUE); } PostQuitMessage(42); } } int TimedMessageBox(HWND hwndOwner, LPCTSTR ptszText, LPCTSTR ptszCaption, UINT uType, DWORD dwTimeout) { TOOLATEINFO tli; tli.fTimedOut = FALSE; BOOL fWasEnabled = hwndOwner && IsWindowEnabled(hwndOwner); tli.hwndReenable = fWasEnabled ? hwndOwner : NULL; HWND hwndScratch = CreateDummyWindow(hwndOwner); if (hwndScratch) { <span style='color: blue; font-weight: bold'>SetWindowLongPtr(hwndScratch, GWLP_USERDATA, reinterpret_cast<LPARAM>(&tli));</span> SetTimer(hwndScratch, IDT_TOOLATE, dwTimeout, MsgBoxTooLateProc); } int iResult = MessageBox(hwndOwner, ptszText, ptszCaption, uType); if (hwndScratch) { KillTimer(hwndScratch, IDT_TOOLATE); if (tli.fTimedOut) { // We timed out MSG msg; // Eat the fake WM_QUIT message we generated PeekMessage(&msg, NULL, WM_QUIT, WM_QUIT, PM_REMOVE); iResult = -1; } DestroyWindow(hwndScratch); } return iResult; } </pre> <br /> 위의 소스코드가 약간 복잡해 보이는 듯하지만, 사실 <a target='tab' href='https://www.sysnet.pe.kr/2/0/13305'>지난번 소스코드</a>를 이해했다면 GWLP_USERDATA에 따른 처리만 추가된 것임을 알 수 있을 것입니다.<br /> <br /> 위의 메시지 박스에 대한 사용법은 동일하게 호출할 수 있고,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > TimedMessageBox(hWnd, L"TEXT", L"TITLE", MB_OK, 3000); </pre> <br /> 지정한 3초의 시간이 흐른 후 메시지 박스가 자동으로 닫히는 것을 확인할 수 있습니다. 물론, ^^ 위의 시간 만료 메시지 박스는 (전역 변수가 없으므로) 스레드 제약 없이 사용할 수 있습니다.<br /> <br /> (<a target='tab' href='https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=2064&boardid=331301885'>첨부 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> <br /> <hr style='width: 50%' /><br /> <a name='toc'></a> <br /> 자, 이것으로 oldnewthing의 Modality에 관한 8개의 글을 모두 정리했습니다. ^^<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - modeless 대화창을 modal처럼 동작하게 만드는 방법 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13295'>https://www.sysnet.pe.kr/2/0/13295</a> Modality, part 1: UI-modality vs code-modality ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050218-00/?p=36413'>https://devblogs.microsoft.com/oldnewthing/20050218-00/?p=36413</a> </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - Code Modal과 UI Modal ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13297'>https://www.sysnet.pe.kr/2/0/13297</a> Modality, part 2: Code-modality vs UI-modality ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050221-00/?p=36403'>https://devblogs.microsoft.com/oldnewthing/20050221-00/?p=36403</a> </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - 모든 메시지 루프를 탈출하는 WM_QUIT 메시지 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13299'>https://www.sysnet.pe.kr/2/0/13299</a> Modality, part 3: The WM_QUIT message ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050222-00/?p=36393'>https://devblogs.microsoft.com/oldnewthing/20050222-00/?p=36393</a> </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - Modal UI 창에 올바른 Owner(HWND)를 설정해야 하는 이유 ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13300'>https://www.sysnet.pe.kr/2/0/13300</a> Modality, part 4: The importance of setting the correct owner for modal UI ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050223-00/?p=36383'>https://devblogs.microsoft.com/oldnewthing/20050223-00/?p=36383</a> Modality, part 5: Setting the correct owner for modal UI ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050224-00/?p=36373'>https://devblogs.microsoft.com/oldnewthing/20050224-00/?p=36373</a> Modality, part 6: Interacting with a program that has gone modal ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050228-00/?p=36343'>https://devblogs.microsoft.com/oldnewthing/20050228-00/?p=36343</a> </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Win32 - 시간 만료를 갖는 MessageBox 대화창 구현 (쉬운 버전) ; <a target='tab' href='https://www.sysnet.pe.kr/2/0/13305'>https://www.sysnet.pe.kr/2/0/13305</a> Modality, part 7: A timed MessageBox, the cheap version ; <a target='tab' href='https://devblogs.microsoft.com/oldnewthing/20050301-00/?p=36333 '>https://devblogs.microsoft.com/oldnewthing/20050301-00/?p=36333 </a> </pre> <br /> 요즘 시대에 이 글이 유용할지는 모르겠지만! ^^<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1119
(왼쪽의 숫자를 입력해야 합니다.)