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
|
//Main.cpp
#include <windows.h>
#include <stdio.h>
#include "LoopChilds.h"
EVENTHANDLER EventHandler[3];
long fnWndProc_OnCreate(lpWndEventArgs Wea)
{
char szButtons[16],szNumber[8];
DWORD dwCtrlId;
HWND hCtrl;
Wea->hIns=((LPCREATESTRUCT)Wea->lParam)->hInstance;
for(unsigned int i=0; i<5; i++)
{
strcpy(szButtons,"Button #");
sprintf(szNumber,"%u",i+1);
strcat(szButtons,szNumber);
dwCtrlId=2000+i;
hCtrl=CreateWindowEx(0,"button",szButtons,WS_CHILD|WS_VISIBLE,85,i*40+30,120,25,Wea->hWnd,(HMENU)dwCtrlId,Wea->hIns,0);
}
return 0;
}
long fnWndProc_OnCommand(lpWndEventArgs Wea)
{
char szMessage[32], szNumber[8];
unsigned int iCtlId;
iCtlId=LOWORD(Wea->wParam);
if(iCtlId>=IDC_BUTTON && iCtlId<=IDC_BUTTON+4)
{
strcpy(szMessage,"You Clicked Button #");
sprintf(szNumber,"%u",iCtlId-IDC_BUTTON+1);
strcat(szMessage,szNumber);
MessageBox(Wea->hWnd,szMessage,"Button Click Report",MB_OK);
}
return 0;
}
long fnWndProc_OnClose(lpWndEventArgs Wea)
{
DestroyWindow(Wea->hWnd);
PostQuitMessage(0);
return 0;
}
void AttachEventHandlers(void)
{
EventHandler[0].Code=WM_CREATE, EventHandler[0].fnPtr=fnWndProc_OnCreate;
EventHandler[1].Code=WM_COMMAND, EventHandler[1].fnPtr=fnWndProc_OnCommand;
EventHandler[2].Code=WM_CLOSE, EventHandler[2].fnPtr=fnWndProc_OnClose;
}
long __stdcall fnWndProc(HWND hwnd, unsigned int msg, WPARAM wParam,LPARAM lParam)
{
WndEventArgs Wea;
for(unsigned int i=0; i<3; i++)
{
if(EventHandler[i].Code==msg)
{
Wea.hWnd=hwnd, Wea.lParam=lParam, Wea.wParam=wParam;
return (*EventHandler[i].fnPtr)(&Wea);
}
}
return (DefWindowProc(hwnd, msg, wParam, lParam));
}
int __stdcall WinMain(HINSTANCE hIns, HINSTANCE hPrevIns, LPSTR lpszArgument, int iShow)
{
char szClassName[]="LoopChilds";
WNDCLASSEX wc;
MSG messages;
HWND hWnd;
AttachEventHandlers();
wc.lpszClassName=szClassName, wc.lpfnWndProc=fnWndProc;
wc.cbSize=sizeof (WNDCLASSEX), wc.style=CS_DBLCLKS;
wc.hIcon=LoadIcon(NULL,IDI_APPLICATION), wc.hInstance=hIns;
wc.hIconSm=LoadIcon(NULL, IDI_APPLICATION), wc.hCursor=LoadCursor(NULL,IDC_ARROW);
wc.hbrBackground=(HBRUSH)COLOR_BTNSHADOW, wc.cbWndExtra=0;
wc.cbClsExtra=0, wc.lpszMenuName=NULL;
RegisterClassEx(&wc);
hWnd=CreateWindowEx(0,szClassName,"Loopy Buttons",WS_OVERLAPPEDWINDOW,100,100,300,290,HWND_DESKTOP,0,hIns,0);
ShowWindow(hWnd,iShow);
while(GetMessage(&messages,NULL,0,0))
{
TranslateMessage(&messages);
DispatchMessage(&messages);
}
return messages.wParam;
}
|