Hit-Testing in Your Programs

Earlier I discussed how Windows Explorer responds to mouse clicks and double-clicks. Obviously, the program (or more precisely the list view control that Windows Explorer uses) must first determine exactly which file or directory the user is pointing at with the mouse.

This is called "hit-testing." Just as DefWindowProc must do some hit-testing when processing WM_NCHITTEST messages, a window procedure often must do hit-testing of its own within the client area. In general, hit-testing involves calculations using the x and y coordinates passed to your window procedure in the lParam parameter of the mouse message.

A Hypothetical Example

Here's an example. Suppose your program needs to display several columns of alphabetically sorted files. Normally, you would use the list view control because it does all the hit-testing work for you. But let's suppose you can't use it for some reason. You need to do it yourself. Let's assume that the filenames are stored in a sorted array of pointers to character strings named szFileNames.

Let's also assume that the file list starts at the top of the client area, which is cxClient pixels wide and cyClient pixels high. The columns are cxColWidth pixels wide; the characters are cyChar pixels high. The number of files you can fit in each column is

 iNumInCol = cyClient / cyChar ; 

When your program receives a mouse click message, you can obtain the cxMouse and cyMouse coordinates from lParam. You then calculate which column of filenames the user is pointing at by using this formula:

 iColumn = cxMouse / cxColWidth ; 

The position of the filename in relation to the top of the column is

 iFromTop = cyMouse / cyChar ; 

Now you can calculate an index to the szFileNames array.

 iIndex = iColumn * iNumInCol + iFromTop ; 

If iIndex exceeds the number of files in the array, the user is clicking on a blank area of the display.

In many cases, hit-testing is more complex than this example suggests. When you display a graphical image containing many parts, you must determine the coordinates for each item you display. In hit-testing calculations, you must go backward from the coordinates to the object. This can become quite messy in a word-processing program that uses variable font sizes, because you must work backward to find the character position with the string.

A Sample Program

The CHECKER1 program, shown in Figure 7-4, demonstrates some simple hit-testing. The program divides the client area into a 5-by-5 array of 25 rectangles. If you click the mouse on one of the rectangles, the rectangle is filled with an X. If you click there again, the X is removed.

Figure 7-4. The CHECKER1 program.

CHECKER1.C

 /*-------------------------------------------------    CHECKER1.C -- Mouse Hit-Test Demo Program No. 1                  (c) Charles Petzold, 1998   -------------------------------------------------*/ #include <windows.h> #define DIVISIONS 5 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                     PSTR  szCmdLine, int iCmdShow) {      static TCHAR szAppName[] = TEXT ("Checker1") ;      HWND         hwnd ;      MSG          msg ;      WNDCLASS     wndclass ;            wndclass.style         = CS_HREDRAW | CS_VREDRAW ;      wndclass.lpfnWndProc   = WndProc ;      wndclass.cbClsExtra    = 0 ;      wndclass.cbWndExtra    = 0 ;      wndclass.hInstance     = hInstance ;      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;      wndclass.lpszMenuName  = NULL ;      wndclass.lpszClassName = szAppName ;            if (!RegisterClass (&wndclass))      {           MessageBox (NULL, TEXT ("Program requires Windows NT!"),                        szAppName, MB_ICONERROR) ;           return 0 ;      }      hwnd = CreateWindow (szAppName, TEXT ("Checker1 Mouse Hit-Test Demo"),                           WS_OVERLAPPEDWINDOW,                           CW_USEDEFAULT, CW_USEDEFAULT,                           CW_USEDEFAULT, CW_USEDEFAULT,                           NULL, NULL, hInstance, NULL) ;            ShowWindow (hwnd, iCmdShow) ;      UpdateWindow (hwnd) ;            while (GetMessage (&msg, NULL, 0, 0))      {           TranslateMessage (&msg) ;           DispatchMessage (&msg) ;      }      return msg.wParam ; } LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAMlParam) {      static BOOL fState[DIVISIONS][DIVISIONS] ;      static int  cxBlock, cyBlock ;      HDC         hdc ;      int         x, y ;      PAINTSTRUCT ps ;      RECT        rect ;            switch (message)      {      case WM_SIZE :           cxBlock = LOWORD (lParam) / DIVISIONS ;           cyBlock = HIWORD (lParam) / DIVISIONS ;           return 0 ;                 case WM_LBUTTONDOWN :           x = LOWORD (lParam) / cxBlock ;           y = HIWORD (lParam) / cyBlock ;                      if (x < DIVISIONS && y < DIVISIONS)           {                fState [x][y] ^= 1 ;                                rect.left   = x * cxBlock ;                rect.top    = y * cyBlock ;                rect.right  = (x + 1) * cxBlock ;                rect.bottom = (y + 1) * cyBlock ;                                InvalidateRect (hwnd, &rect, FALSE) ;           }           else                MessageBeep (0) ;           return 0 ;                 case WM_PAINT :           hdc = BeginPaint (hwnd, &ps) ;                      for (x = 0 ; x < DIVISIONS ; x++)           for (y = 0 ; y < DIVISIONS ; y++)           {                Rectangle (hdc, x * cxBlock, y * cyBlock,                          (x + 1) * cxBlock, (y + 1) * cyBlock) ;                                     if (fState [x][y])                {                     MoveToEx (hdc,  x    * cxBlock,  y    * cyBlock, NULL) ;                     LineTo   (hdc, (x+1) * cxBlock, (y+1) * cyBlock) ;                     MoveToEx (hdc,  x    * cxBlock, (y+1) * cyBlock, NULL) ;                     LineTo   (hdc, (x+1) * cxBlock,  y    * cyBlock) ;                }           }           EndPaint (hwnd, &ps) ;           return 0 ;                      case WM_DESTROY :           PostQuitMessage (0) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } 

Figure 7-5 shows the CHECKER1 display. All 25 rectangles drawn by the program have the same width and the same height. These width and height values are stored in cxBlock and cyBlock, which are recalculated whenever the size of the client area changes. The WM_LBUTTONDOWN logic uses the mouse coordinates to determine which rectangle has been clicked. It flags the current state of the rectangle in the array fState and invalidates the rectangle to generate a WM_PAINT message.

click to view at full size.

Figure 7-5. The CHECKER1 display.

If the width or height of the client area is not evenly divisible by five, a small strip of client area at the left or bottom will not be covered by a rectangle. For error processing, CHECKER1 responds to a mouse click in this area by calling MessageBeep.

When CHECKER1 receives a WM_PAINT message, it repaints the entire client area by drawing rectangles using the GDI Rectangle function. If the fState value is set, CHECKER1 draws two lines using the MoveToEx and LineTo functions. During WM_PAINT processing, CHECKER1 does not check whether each rectangular area lies within the invalid rectangle, but it could. One method for checking validity involves building a RECT structure for each rectangular block within the loop (using the same formulas as in the WM_LBUTTONDOWN logic) and checking whether that rectangle intersects the invalid rectangle (available as ps.rcPaint) by using the function IntersectRect.

Emulating the Mouse with the Keyboard

To use CHECKER1, you need to use the mouse. We'll be adding a keyboard interface to the program shortly, as we did for the SYSMETS program in Chapter 6. However, adding a keyboard interface to a program that uses the mouse cursor for pointing purposes requires that we also must worry about displaying and moving the mouse cursor.

Even if a mouse device is not installed, Windows can still display a mouse cursor. Windows maintains something called a "display count" for this cursor. If a mouse is installed, the display count is initially 0; if not, the display count is initially -1. The mouse cursor is displayed only if the display count is non-negative. You can increment the display count by calling

 ShowCursor (TRUE) ; 

and decrement it by calling

 ShowCursor (FALSE) ; 

You do not need to determine if a mouse is installed before using ShowCursor. If you want to display the mouse cursor regardless of the presence of the mouse, simply increment the display count by calling ShowCursor. After you increment the display count once, decrementing it will hide the cursor if no mouse is installed but leave it displayed if a mouse is present.

Windows maintains a current mouse cursor position even if a mouse is not installed. If a mouse is not installed and you display the mouse cursor, it might appear in any part of the display and will remain in that position until you explicitly move it. You can obtain the cursor position by calling

 GetCursorPos (&pt) ; 

where pt is a POINT structure. The function fills in the POINT fields with the x and y coordinates of the mouse. You can set the cursor position by using

 SetCursorPos (x, y) ; 

In both cases, the x and y values are screen coordinates, not client-area coordinates. (This should be evident because the functions do not require a hwnd parameter.) As noted earlier, you can convert screen coordinates to client-area coordinates and vice versa by calling ScreenToClient and ClientToScreen.

If you call GetCursorPos while processing a mouse message and you convert to client-area coordinates, these coordinates might be slightly different from those encoded in the lParam parameter of the mouse message. The coordinates returned from GetCursorPos indicate the current position of the mouse. The coordinates in lParam are the coordinates of the mouse at the time the message was generated.

You'll probably want to write keyboard logic that moves the mouse cursor with the keyboard arrow keys and that simulates the mouse button with the Spacebar or Enter key. What you don't want to do is move the mouse cursor one pixel per keystroke. That forces a user to hold down an arrow key for too long a time to move it.

If you need to implement a keyboard interface to the mouse cursor but still maintain the ability to position the cursor at precise pixel locations, you can process keystroke messages in such as way that when you hold down an arrow key the mouse cursor starts moving slowly but then speeds up. You'll recall that the lParam parameter in WM_KEYDOWN messages indicates whether the keystroke messages are the result of typematic action. This is an excellent application of that information.

Add a Keyboard Interface to CHECKER

The CHECKER2 program, shown in Figure 7-6, is the same as CHECKER1, except that it includes a keyboard interface. You can use the Left, Right, Up, and Down arrow keys to move the cursor among the 25 rectangles. The Home key sends the cursor to the upper left rectangle; the End key drops it down to the lower right rectangle. Both the Spacebar and Enter keys toggle the X mark.

Figure 7-6. The CHECKER2 program.

CHECKER2.C

 /*-------------------------------------------------    CHECKER2.C -- Mouse Hit-Test Demo Program No. 2                  (c) Charles Petzold, 1998   -------------------------------------------------*/ #include <windows.h> #define DIVISIONS 5 LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                     PSTR szCmdLine, int iCmdShow) {      static TCHAR szAppName[] = TEXT ("Checker2") ;      HWND         hwnd ;      MSG          msg ;      WNDCLASS     wndclass ;      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;      wndclass.lpfnWndProc   = WndProc ;      wndclass.cbClsExtra    = 0 ;      wndclass.cbWndExtra    = 0 ;      wndclass.hInstance     = hInstance ;      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;      wndclass.lpszMenuName  = NULL ;      wndclass.lpszClassName = szAppName ;            if (!RegisterClass (&wndclass))      {           MessageBox (NULL, TEXT ("Program requires Windows NT!"),                        szAppName, MB_ICONERROR) ;           return 0 ;      }      hwnd = CreateWindow (szAppName, TEXT ("Checker2 Mouse Hit-Test Demo"),                           WS_OVERLAPPEDWINDOW,                           CW_USEDEFAULT, CW_USEDEFAULT,                           CW_USEDEFAULT, CW_USEDEFAULT,                           NULL, NULL, hInstance, NULL) ;            ShowWindow (hwnd, iCmdShow) ;      UpdateWindow (hwnd) ;            while (GetMessage (&msg, NULL, 0, 0))      {           TranslateMessage (&msg) ;           DispatchMessage (&msg) ;      }      return msg.wParam ; } LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {      static BOOL fState[DIVISIONS][DIVISIONS] ;      static int  cxBlock, cyBlock ;      HDC         hdc ;      int         x, y ;      PAINTSTRUCT ps ;      POINT       point ;      RECT        rect ;            switch (message)      {      case WM_SIZE :           cxBlock = LOWORD (lParam) / DIVISIONS ;           cyBlock = HIWORD (lParam) / DIVISIONS ;           return 0 ;                 case WM_SETFOCUS :           ShowCursor (TRUE) ;           return 0 ;                 case WM_KILLFOCUS :           ShowCursor (FALSE) ;           return 0 ;                 case WM_KEYDOWN :           GetCursorPos (&point) ;           ScreenToClient (hwnd, &point) ;           x = max (0, min (DIVISIONS - 1, point.x / cxBlock)) ;           y = max (0, min (DIVISIONS - 1, point.y / cyBlock)) ;                      switch (wParam)           {           case VK_UP :                y-- ;                break ;                           case VK_DOWN :                y++ ;                break ;                           case VK_LEFT :                x-- ;                break ;                           case VK_RIGHT :                x++ ;                break ;                           case VK_HOME :                x = y = 0 ;                break ;                           case VK_END :                x = y = DIVISIONS - 1 ;                break ;                           case VK_RETURN :           case VK_SPACE :                SendMessage (hwnd, WM_LBUTTONDOWN, MK_LBUTTON,                             MAKELONG (x * cxBlock, y * cyBlock)) ;                break ;           }           x = (x + DIVISIONS) % DIVISIONS ;           y = (y + DIVISIONS) % DIVISIONS ;                      point.x = x * cxBlock + cxBlock / 2 ;           point.y = y * cyBlock + cyBlock / 2 ;                      ClientToScreen (hwnd, &point) ;           SetCursorPos (point.x, point.y) ;           return 0 ;      case WM_LBUTTONDOWN :           x = LOWORD (lParam) / cxBlock ;           y = HIWORD (lParam) / cyBlock ;                      if (x < DIVISIONS && y < DIVISIONS)           {                fState[x][y] ^= 1 ;                                rect.left   = x * cxBlock ;                rect.top    = y * cyBlock ;                rect.right  = (x + 1) * cxBlock ;                rect.bottom = (y + 1) * cyBlock ;                                InvalidateRect (hwnd, &rect, FALSE) ;           }           else                MessageBeep (0) ;           return 0 ;                 case WM_PAINT :           hdc = BeginPaint (hwnd, &ps) ;                      for (x = 0 ; x < DIVISIONS ; x++)           for (y = 0 ; y < DIVISIONS ; y++)           {                Rectangle (hdc, x * cxBlock, y * cyBlock,                           (x + 1) * cxBlock, (y + 1) * cyBlock) ;                                     if (fState [x][y])                {                     MoveToEx (hdc,  x   *cxBlock,  y   *cyBlock, NULL) ;                     LineTo   (hdc, (x+1)*cxBlock, (y+1)*cyBlock) ;                     MoveToEx (hdc,  x   *cxBlock, (y+1)*cyBlock, NULL) ;                     LineTo   (hdc, (x+1)*cxBlock,  y   *cyBlock) ;                }           }           EndPaint (hwnd, &ps) ;           return 0 ;                      case WM_DESTROY :           PostQuitMessage (0) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } 

The WM_KEYDOWN logic in CHECKER2 determines the position of the cursor using GetCursorPos, converts the screen coordinates to client-area coordinates using ScreenToClient, and divides the coordinates by the width and height of the rectangular block. This produces x and y values that indicate the position of the rectangle in the 5-by-5 array. The mouse cursor might or might not be in the client area when a key is pressed, so x and y must be passed through the min and max macros to ensure that they range from 0 through 4.

For arrow keys, CHECKER2 increments or decrements x and y appropriately. If the key is the Enter key or the Spacebar, CHECKER2 uses SendMessage to send a WM_LBUTTONDOWN message to itself. This technique is similar to the method used in the SYSMETS program in Chapter 6 to add a keyboard interface to the window scroll bar. The WM_KEYDOWN logic finishes by calculating client-area coordinates that point to the center of the rectangle, converting to screen coordinates using ClientToScreen, and setting the cursor position using SetCursorPos.

Using Child Windows for Hit-Testing

Some programs (for example, the Windows Paint program) divide the client area into several smaller logical areas. The Paint program has an area at the left for its icon-based tool menu and an area at the bottom for the color menu. When Paint hit-tests these two areas, it must take into account the location of the smaller area within the entire client area before determining the actual item being selected by the user.

Or maybe not. In reality, Paint simplifies both the drawing and hit-testing of these smaller areas through the use of "child windows." The child windows divide the entire client area into several smaller rectangular regions. Each child window has its own window handle, window procedure, and client area. Each child window procedure receives mouse messages that apply only to its own window. The lParam parameter in the mouse message contains coordinates relative to the upper left corner of the client area of the child window, not relative to the client area of the "parent" window (which is Paint's main application window).

Child windows used in this way can help you structure and modularize your programs. If the child windows use different window classes, each child window can have its own window procedure. The different window classes can also define different background colors and different default cursors. In Chapter 9, we'll look at "child window controls," which are predefined windows that take the form of scroll bars, buttons, and edit boxes. Right now, let's see how we can use child windows in the CHECKER program.

Child Windows in CHECKER

Figure 7-7 shows CHECKER3. This version of the program creates 25 child windows to process mouse clicks. It does not have a keyboard interface, but one could be added as I'll demonstrate in CHECKER4 later in this chapter.

Figure 7-7. The CHECKER3 program.

CHECKER3.C

 /*-------------------------------------------------    CHECKER3.C -- Mouse Hit-Test Demo Program No. 3                  (c) Charles Petzold, 1998   -------------------------------------------------*/ #include <windows.h> #define DIVISIONS 5 LRESULT CALLBACK WndProc   (HWND, UINT, WPARAM, LPARAM) ; LRESULT CALLBACK ChildWndProc (HWND, UINT, WPARAM, LPARAM) ; TCHAR szChildClass[] = TEXT ("Checker3_Child") ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                     PSTR szCmdLine, int iCmdShow) {      static TCHAR szAppName[] = TEXT ("Checker3") ;      HWND         hwnd ;      MSG          msg ;      WNDCLASS     wndclass ;            wndclass.style         = CS_HREDRAW | CS_VREDRAW ;      wndclass.lpfnWndProc   = WndProc ;      wndclass.cbClsExtra    = 0 ;      wndclass.cbWndExtra    = 0 ;      wndclass.hInstance     = hInstance ;      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;      wndclass.lpszMenuName  = NULL ;      wndclass.lpszClassName = szAppName ;            if (!RegisterClass (&wndclass))      {           MessageBox (NULL, TEXT ("Program requires Windows NT!"),                        szAppName, MB_ICONERROR) ;           return 0 ;      }            wndclass.lpfnWndProc   = ChildWndProc ;      wndclass.cbWndExtra    = sizeof (long) ;      wndclass.hIcon         = NULL ;      wndclass.lpszClassName = szChildClass ;      RegisterClass (&wndclass) ;            hwnd = CreateWindow (szAppName, TEXT ("Checker3 Mouse Hit-Test Demo"),                           WS_OVERLAPPEDWINDOW,                           CW_USEDEFAULT, CW_USEDEFAULT,                           CW_USEDEFAULT, CW_USEDEFAULT,                           NULL, NULL, hInstance, NULL) ;            ShowWindow (hwnd, iCmdShow) ;      UpdateWindow (hwnd) ;            while (GetMessage (&msg, NULL, 0, 0))      {           TranslateMessage (&msg) ;           DispatchMessage (&msg) ;      }      return msg.wParam ; } LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {      static HWND hwndChild[DIVISIONS][DIVISIONS] ;      int         cxBlock, cyBlock, x, y ;            switch (message)      {      case WM_CREATE :           for (x = 0 ; x < DIVISIONS ; x++)                for (y = 0 ; y < DIVISIONS ; y++)                     hwndChild[x][y] = CreateWindow (szChildClass, NULL,                               WS_CHILDWINDOW | WS_VISIBLE,                               0, 0, 0, 0,                               hwnd, (HMENU) (y << 8 | x),                               (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE),                               NULL) ;           return 0 ;                      case WM_SIZE :           cxBlock = LOWORD (lParam) / DIVISIONS ;           cyBlock = HIWORD (lParam) / DIVISIONS ;           for (x = 0 ; x < DIVISIONS ; x++)                 for (y = 0 ; y < DIVISIONS ; y++)                     MoveWindow (hwndChild[x][y],                                 x * cxBlock, y * cyBlock,                                 cxBlock, cyBlock, TRUE) ;           return 0 ;      case WM_LBUTTONDOWN :           MessageBeep (0) ;           return 0 ;                 case WM_DESTROY :           PostQuitMessage (0) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } LRESULT CALLBACK ChildWndProc (HWND hwnd, UINT message,                                 WPARAM wParam, LPARAM lParam) {      HDC         hdc ;      PAINTSTRUCT ps ;      RECT        rect ;            switch (message)      {      case WM_CREATE :           SetWindowLong (hwnd, 0, 0) ;       // on/off flag           return 0 ;                 case WM_LBUTTONDOWN :           SetWindowLong (hwnd, 0, 1 ^ GetWindowLong (hwnd, 0)) ;           InvalidateRect (hwnd, NULL, FALSE) ;           return 0 ;                 case WM_PAINT :           hdc = BeginPaint (hwnd, &ps) ;                      GetClientRect (hwnd, &rect) ;           Rectangle (hdc, 0, 0, rect.right, rect.bottom) ;                      if (GetWindowLong (hwnd, 0))           {                MoveToEx (hdc, 0,          0, NULL) ;                LineTo   (hdc, rect.right, rect.bottom) ;                MoveToEx (hdc, 0,          rect.bottom, NULL) ;                LineTo   (hdc, rect.right, 0) ;           }                      EndPaint (hwnd, &ps) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } 

CHECKER3 has two window procedures named WndProc and ChildWndProc. WndProc is still the window procedure for the main (or parent) window. ChildWndProc is the window procedure for the 25 child windows. Both window procedures must be defined as CALLBACK functions.

Because a window procedure is associated with a particular window class structure that you register with Windows by calling the RegisterClass function, CHECKER3 requires two window classes. The first window class is for the main window and has the name "Checker3". The second window class is given the name "Checker3_Child". You don't have to choose quite so reasonable names as these, though.

CHECKER3 registers both window classes in the WinMain function. After registering the normal window class, CHECKER3 simply reuses most of the fields in the wndclass structure for registering the Checker3_Child class. Four fields, however, are set to different values for the child window class:

  • The lpfnWndProc field is set to ChildWndProc, the window procedure for the child window class.

  • The cbWndExtra field is set to 4 bytes or, more precisely, sizeof (long). This field tells Windows to reserve 4 bytes of extra space in an internal structure that Windows maintains for each window based on this window class. You can use this space to store information that might be different for each window.

  • The hIcon field is set to NULL because child windows such as the ones in CHECKER3 do not require icons.

  • The pszClassName field is set to "Checker3_Child", the name of the class.

The CreateWindow call in WinMain creates the main window based on the Checker3 class. This is normal. However, when WndProc receives a WM_CREATE message, it calls CreateWindow 25 times to create 25 child windows based on the Checker3_Child class. The table below provides a comparison of the arguments to the CreateWindow call in WinMain and the CreateWindow call in WndProc that creates the 25 child windows.

Argument Main Window Child Window
window class "Checker3" "Checker3_Child"
window caption "Checker3…" NULL
window style WS_OVERLAPPEDWINDOW WS_CHILDWINDOW |WS_VISIBLE
horizontal position CW_USEDEFAULT 0
vertical position CW_USEDEFAULT 0
width CW_USEDEFAULT 0
height CW_USEDEFAULT 0
parent window handle NULL hwnd
menu handle/child ID NULL (HMENU) (y << 8 | x)
instance handle hInstance (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE)
extra parameters NULL NULL

Normally, the position and size parameters are required for child window, but in CHECKER3 the child windows are positioned and sized later in WndProc. The parent window handle is NULL for the main window because it is the parent. The parent window handle is required when using the CreateWindow call to create a child window.

The main window doesn't have a menu, so that parameter is NULL. For child windows, the same parameter is called a "child ID" or a "child windows ID." This is a number that uniquely identifies the child window. The child ID becomes much more important when working with child window controls in dialog boxes, as we'll see in Chapter 11. For CHECKER3, I've simply set the child ID to a number that is a composite of the x and y positions that each child window occupies in the 5-by-5 array within the main window.

The CreateWindow function requires an instance handle. Within WinMain, the instance handle is easily available because it is a parameter to WinMain. When the child window is created, CHECKER3 must use GetWindowLong to extract the hInstance value from the structure that Windows maintains for the window. (Rather than use GetWindowLong, I could have saved the value of hInstance in a global variable and used it directly.)

Each child window has a different window handle that is stored in the hwndChild array. When WndProc receives a WM_SIZE message, it calls MoveWindow for each of the 25 child windows. The parameters to MoveWindow indicate the upper left corner of the child window relative to the parent window client-area coordinates, the width and height of the child window, and whether the child window needs repainting.

Now let's take a look at ChildWndProc. This window procedure processes messages for all 25 child windows. The hwnd parameter to ChildWndProc is the handle to the child window receiving the message. When ChildWndProc processes a WM_CREATE message (which will happen 25 times because there are 25 child windows), it uses SetWindowWord to store a 0 in the extra area reserved within the window structure. (Recall that we reserved this space by using the cbWndExtra field when defining the window class.) ChildWndProc uses this value to store the current state (X or no X) of the rectangle. When the child window is clicked, the WM_LBUTTONDOWN logic simply flips the value of this integer (from 0 to 1 or from 1 to 0) and invalidates the entire child window. This area is the rectangle being clicked. The WM_PAINT processing is trivial because the size of the rectangle it draws is the same size as its client area.

Because the C source code file and the .EXE file of CHECKER3 are larger than those for CHECKER1 (to say nothing of my explanation of the programs), I will not try to convince you that CHECKER3 is "simpler" than CHECKER1. But note that we no longer have to do any mouse hit-testing! If a child window in CHECKER3 gets a WM_LBUTTONDOWN message the window has been hit, and that's all it needs to know.

Child Windows and the Keyboard

Adding a keyboard interface to CHECKER3 seems the logical last step in the CHECKER series. But in doing this, a different approach might be appropriate. In CHECKER2, the position of the mouse cursor indicated which square would get a check mark when the Spacebar was pressed. When we're dealing with child windows, we can take a cue from the functioning of dialog boxes. In dialog boxes, a child window indicates that it has the input focus (and hence will be toggled by the keyboard) with a flashing caret or a dotted rectangle.

We're not going to reproduce all the dialog box logic that exists internally in Windows; we're just going to get a rough idea of how you can emulate dialog boxes in an application. When exploring how to do this, one thing you'll discover is that the parent window and the child windows should probably share processing of keyboard messages. The child window should toggle the check mark when the Spacebar or Enter key is pressed. The parent window should move the input focus among the child windows when the cursor keys are pressed. The logic is complicated somewhat by the fact that when you click on a child window, the parent window rather than the child window gets the input focus.

CHECKER4.C is shown in Figure 7-8.

Figure 7-8. The CHECKER4 program.

CHECKER4.C

 /*-------------------------------------------------    CHECKER4.C -- Mouse Hit-Test Demo Program No. 4                  (c) Charles Petzold, 1998   -------------------------------------------------*/ #include <windows.h> #define DIVISIONS 5 LRESULT CALLBACK WndProc   (HWND, UINT, WPARAM, LPARAM) ; LRESULT CALLBACK ChildWndProc (HWND, UINT, WPARAM, LPARAM) ; int   idFocus = 0 ; TCHAR szChildClass[] = TEXT ("Checker4_Child") ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                     PSTR szCmdLine, int iCmdShow) {      static TCHAR szAppName[] = TEXT ("Checker4") ;      HWND         hwnd ;      MSG          msg ;      WNDCLASS     wndclass ;            wndclass.style         = CS_HREDRAW | CS_VREDRAW ;      wndclass.lpfnWndProc   = WndProc ;      wndclass.cbClsExtra    = 0 ;      wndclass.cbWndExtra    = 0 ;      wndclass.hInstance     = hInstance ;      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;      wndclass.lpszMenuName  = NULL ;      wndclass.lpszClassName = szAppName ;            if (!RegisterClass (&wndclass))      {           MessageBox (NULL, TEXT ("Program requires Windows NT!"),                        szAppName, MB_ICONERROR) ;           return 0 ;      }            wndclass.lpfnWndProc   = ChildWndProc ;      wndclass.cbWndExtra    = sizeof (long) ;      wndclass.hIcon         = NULL ;      wndclass.lpszClassName = szChildClass ;            RegisterClass (&wndclass) ;            hwnd = CreateWindow (szAppName, TEXT ("Checker4 Mouse Hit-Test Demo"),                           WS_OVERLAPPEDWINDOW,                           CW_USEDEFAULT, CW_USEDEFAULT,                           CW_USEDEFAULT, CW_USEDEFAULT,                           NULL, NULL, hInstance, NULL) ;      ShowWindow (hwnd, iCmdShow) ;      UpdateWindow (hwnd) ;            while (GetMessage (&msg, NULL, 0, 0))      {           TranslateMessage (&msg) ;           DispatchMessage (&msg) ;      }      return msg.wParam ; } LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {      static HWND hwndChild[DIVISIONS][DIVISIONS] ;      int         cxBlock, cyBlock, x, y ;            switch (message)      {      case WM_CREATE :           for (x = 0 ; x < DIVISIONS ; x++)                for (y = 0 ; y < DIVISIONS ; y++)                     hwndChild[x][y] = CreateWindow (szChildClass, NULL,                               WS_CHILDWINDOW | WS_VISIBLE,                               0, 0, 0, 0,                               hwnd, (HMENU) (y << 8 | x),                               (HINSTANCE) GetWindowLong (hwnd, GWL_HINSTANCE),                               NULL) ;           return 0 ;                      case WM_SIZE :           cxBlock = LOWORD (lParam) / DIVISIONS ;           cyBlock = HIWORD (lParam) / DIVISIONS ;                      for (x = 0 ; x < DIVISIONS ; x++)                 for (y = 0 ; y < DIVISIONS ; y++)                     MoveWindow (hwndChild[x][y],                                 x * cxBlock, y * cyBlock,                                 cxBlock, cyBlock, TRUE) ;           return 0 ;                              case WM_LBUTTONDOWN :           MessageBeep (0) ;           return 0 ;           // On set-focus message, set focus to child window      case WM_SETFOCUS:           SetFocus (GetDlgItem (hwnd, idFocus)) ;           return 0 ;           // On key-down message, possibly change the focus window      case WM_KEYDOWN:           x = idFocus & 0xFF ;           y = idFocus >> 8 ;           switch (wParam)           {           case VK_UP:    y-- ;                    break ;           case VK_DOWN:  y++ ;                    break ;           case VK_LEFT:  x-- ;                    break ;           case VK_RIGHT: x++ ;                    break ;           case VK_HOME:  x = y = 0 ;              break ;           case VK_END:   x = y = DIVISIONS - 1 ;  break ;           default:       return 0 ;           }           x = (x + DIVISIONS) % DIVISIONS ;           y = (y + DIVISIONS) % DIVISIONS ;           idFocus = y << 8 | x ;           SetFocus (GetDlgItem (hwnd, idFocus)) ;           return 0 ;      case WM_DESTROY :           PostQuitMessage (0) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } LRESULT CALLBACK ChildWndProc (HWND hwnd, UINT message,                                 WPARAM wParam, LPARAM lParam) {      HDC         hdc ;      PAINTSTRUCT ps ;      RECT        rect ;            switch (message)      {      case WM_CREATE :           SetWindowLong (hwnd, 0, 0) ;       // on/off flag           return 0 ;      case WM_KEYDOWN:                // Send most key presses to the parent window                      if (wParam != VK_RETURN && wParam != VK_SPACE)           {                SendMessage (GetParent (hwnd), message, wParam, lParam) ;                return 0 ;           }                // For Return and Space, fall through to toggle the square                 case WM_LBUTTONDOWN :           SetWindowLong (hwnd, 0, 1 ^ GetWindowLong (hwnd, 0)) ;           SetFocus (hwnd) ;           InvalidateRect (hwnd, NULL, FALSE) ;           return 0 ;                // For focus messages, invalidate the window for repaint                 case WM_SETFOCUS:           idFocus = GetWindowLong (hwnd, GWL_ID) ;                // Fall through      case WM_KILLFOCUS:           InvalidateRect (hwnd, NULL, TRUE) ;           return 0 ;                 case WM_PAINT :           hdc = BeginPaint (hwnd, &ps) ;                      GetClientRect (hwnd, &rect) ;           Rectangle (hdc, 0, 0, rect.right, rect.bottom) ;                // Draw the "x" mark                      if (GetWindowLong (hwnd, 0))           {                MoveToEx (hdc, 0,          0, NULL) ;                LineTo   (hdc, rect.right, rect.bottom) ;                MoveToEx (hdc, 0,          rect.bottom, NULL) ;                LineTo   (hdc, rect.right, 0) ;           }                // Draw the "focus" rectangle                      if (hwnd == GetFocus ())           {                rect.left   += rect.right / 10 ;                rect.right  -= rect.left ;                rect.top    += rect.bottom / 10 ;                rect.bottom -= rect.top ;                SelectObject (hdc, GetStockObject (NULL_BRUSH)) ;                SelectObject (hdc, CreatePen (PS_DASH, 0, 0)) ;                Rectangle (hdc, rect.left, rect.top, rect.right, rect.bottom) ;                DeleteObject (SelectObject (hdc, GetStockObject (BLACK_PEN))) ;           }           EndPaint (hwnd, &ps) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } 

You'll recall that each child window has a unique "child window ID" number defined when the window is created by the CreateWindow call. In CHECKER3, this ID number is a combination of the x and y positions of the rectangle. A program can obtain a child window ID for a particular child window by calling:

 idChild = GetWindowLong (hwndChild, GWL_ID) ; 

This function does the same:

 idChild = GetDlgCtrlID (hwndChild) ; 

As the function name suggests, it's primarily used with dialog boxes and control windows. It's also possible to obtain the handle of a child window if you know the handle of the parent window and the child window ID:

 hwndChild = GetDlgItem (hwndParent, idChild) ; 

In CHECKER4, the global variable idFocus is used to save the child ID number of the window that currently has the input focus. I mentioned earlier that child windows don't automatically get the input focus when you click on them with the mouse. Thus, the parent window in CHECKER4 processes the WM_SETFOCUS message by calling

 SetFocus (GetDlgItem (hwnd, idFocus)) ; 

thus setting the input focus to one of the child windows.

ChildWndProc processes both WM_SETFOCUS and WM_KILLFOCUS messages. For WM_SETFOCUS, it saves the child window ID receiving the input focus in the global variable idFocus. For both messages, the window is invalidated, generating a WM_PAINT message. If the WM_PAINT message is drawing the child window with the input focus, it draws a rectangle with a PS_DASH pen style to indicate that the window has the input focus.

ChildWndProc also processes WM_KEYDOWN messages. For anything but the Spacebar and Return keys, the WM_KEYDOWN message is sent to the parent window. Otherwise, the window procedure does the same thing as a WM_LBUTTONDOWN message.

Processing the cursor movement keys is delegated to the parent window. In a manner similar to CHECKER2, this program obtains the x and y coordinates of the child window with the input focus and changes them based on the particular cursor key being pressed. The input focus is then set to the new child window with a call to SetFocus.



Programming Windows
Concurrent Programming on Windows
ISBN: 032143482X
EAN: 2147483647
Year: 1998
Pages: 112
Authors: Joe Duffy

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net