Keystroke Messages

When you press a key, Windows places either a WM_KEYDOWN or WM_SYSKEYDOWN message in the message queue of the window with the input focus. When you release a key, Windows places either a WM_KEYUP or WM_SYSKEYUP message in the message queue.

Key Pressed Key Released
Nonsystem Keystroke: WM_KEYDOWN WM_KEYUP
System Keystroke: WM_SYSKEYDOWNWM_SYSKEYUP

Usually the up and down messages occur in pairs. However, if you hold down a key so that the typematic (autorepeat) action takes over, Windows sends the window procedure a series of WM_KEYDOWN (or WM_SYSKEYDOWN) messages and a single WM_KEYUP (or WM_SYSKEYUP) message when the key is finally released. Like all queued messages, keystroke messages are time-stamped. You can retrieve the relative time a key was pressed or released by calling GetMessageTime.

System and Nonsystem Keystrokes

The "SYS" in WM_SYSKEYDOWN and WM_SYSKEYUP stands for "system" and refers to keystrokes that are more important to Windows than to Windows applications. The WM_SYSKEYDOWN and WM_SYSKEYUP messages are usually generated for keys typed in combination with the Alt key. These keystrokes invoke options on the program's menu or system menu, or they are used for system functions such as switching the active window (Alt-Tab or Alt-Esc) or for system menu accelerators (Alt in combination with a function key such as Alt-F4 to close an application). Programs usually ignore the WM_SYSKEYUP and WM_SYSKEYDOWN messages and pass them to DefWindowProc. Because Windows takes care of all the Alt-key logic, you really have no need to trap these messages. Your window procedure will eventually receive other messages concerning the result of these keystrokes (such as a menu selection). If you want to include code in your window procedure to trap the system keystroke messages (as we will do in the KEYVIEW1 and KEYVIEW2 programs shown later in this chapter), pass the messages to DefWindowProc after you process them so that Windows can still use them for their intended purposes.

But think about this for a moment. Almost everything that affects your program's window passes through your window procedure first. Windows does something with the message only if you pass the message to DefWindowProc. For instance, if you add the lines

 case WM_SYSKEYDOWN: case WM_SYSKEYUP: case WM_SYSCHAR:      return 0 ; 

to a window procedure, you effectively disable all Alt-key operations when your program's main window has the input focus. (I'll discuss the WM_SYSCHAR message later in this chapter.) This includes Alt-Tab, Alt-Esc, and menu operations. Although I doubt you would want to do this, I trust you sense the power inherent in the window procedure.

The WM_KEYDOWN and WM_KEYUP messages are usually generated for keys that are pressed and released without the Alt key. Your program can use or discard these keystroke messages. Windows doesn't care about them.

For all four keystroke messages, wParam is a virtual key code that identifies the key being pressed or released and lParam contains other data pertaining to the keystroke.

Virtual Key Codes

The virtual key code is stored in the wParam parameter of the WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN, and WM_SYSKEYUP messages. This code identifies the key being pressed or released.

Ah, that ubiquitous word "virtual." Don't you love it? It's supposed to refer to something that exists in the mind rather than in the real world, but only veteran programmers of DOS assembly language applications might figure out why the key codes so essential to Windows keyboard processing are considered virtual rather than real.

To old-time programmers, the real keyboard codes are generated by the hardware of the physical keyboard. These are referred to in the Windows documentation as scan codes. On IBM compatibles, a scan code of 16 is the Q key, 17 is the W key, 18 is E, 19 is R, 20 is T, 21 is Y, and so on. You get the idea—the scan codes are based on the physical layout of the keyboard. The developers of Windows considered these scan codes too device-dependent. They thus attempted to treat the keyboard in a device-independent manner by defining the so-called virtual key codes. Some of these virtual key codes cannot be generated on IBM compatibles but may be found on other manufacturer's keyboards, or perhaps on keyboards of the future.

The virtual key codes you use most often have names beginning with VK_ defined in the WINUSER.H header file. The tables below show these names along with the numeric values (in both decimal and hexadecimal) and the IBM-compatible keyboard key that corresponds to the virtual key. The tables also indicate whether these keys are required for Windows to run properly. The tables show the virtual key codes in numeric order.

Three of the first four virtual key codes refer to mouse buttons:

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
1 01 VK_LBUTTON Mouse Left Button
2 02 VK_RBUTTON Mouse Right Button
3 03 VK_CANCEL X Ctrl-Break
4 04 VK_MBUTTON Mouse Middle Button

You will never get these mouse button codes in the keyboard messages. They are found in mouse messages, as we'll see in the next chapter. The VK_CANCEL code is the only virtual key code that involves pressing two keys at once (Ctrl-Break). Windows applications generally do not use this key.

Several of the following keys—Backspace, Tab, Enter, Escape, and Spacebar—are commonly used by Windows programs. However, Windows programs generally use character messages (rather than keystroke messages) to process these keys.

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
8 08 VK_BACK X Backspace
9 09 VK_TAB X Tab
12 0C VK_CLEAR Numeric keyboard 5 with Num Lock OFF
13 0D VK_RETURN X Enter (either one)
16 10 VK_SHIFT X Shift (either one)
17 11 VK_CONTROL X Ctrl (either one)
18 12 VK_MENU X Alt (either one)
19 13 VK_PAUSE Pause
20 14 VK_CAPITAL X Caps Lock
27 1B VK_ESCAPE X Esc
32 20 VK_SPACE X Spacebar

Also, Windows programs usually do not need to monitor the status of the Shift, Ctrl, or Alt keys.

The first eight codes listed in the following table are perhaps the most commonly used virtual key codes along with VK_INSERT and VK_DELETE:

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
33 21 VK_PRIOR X Page Up
34 22 VK_NEXT X Page Down
35 23 VK_END X End
36 24 VK_HOME X Home
37 25 VK_LEFT X Left Arrow
38 26 VK_UP X Up Arrow
39 27 VK_RIGHT X Right Arrow
40 28 VK_DOWN X Down Arrow
41 29 VK_SELECT
42 2A VK_PRINT
43 2B VK_EXECUTE
44 2C VK_SNAPSHOT Print Screen
45 2D VK_INSERT X Insert
46 2E VK_DELETE X Delete
47 2F VK_HELP

Notice that many of the names (such as VK_PRIOR and VK_NEXT) are unfortunately quite different from the labels on the keys and also not consistent with the identifiers used in scroll bars. The Print Screen key is largely ignored by Windows applications. Windows itself responds to the key by storing a bitmap copy of the video display into the clipboard. VK_SELECT, VK_PRINT, VK_EXECUTE, and VK_HELP might be found on a hypothetical keyboard that few of us have ever seen.

Windows also includes virtual key codes for the letter keys and number keys on the main keyboard. (The number pad is handled separately.)

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
48_57 30_39 None X 0 through 9 on main keyboard
65_90 41_5A None X A through Z

Notice that the virtual key codes are the ASCII codes for the numbers and letters. Windows programs almost never use these virtual key codes; instead, the programs rely on character messages for ASCII characters.

The following keys are generated from the Microsoft Natural Keyboard and compatibles:

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
91 5B VK_LWIN Left Windows key
92 5C VK_RWIN Right Windows key
93 5D VK_APPS Applications key

The VK_LWIN and VK_RWIN keys are handled by Windows to open the Start menu or (in older versions) to launch the Task Manager. Together, they can log on or off Windows (in Microsoft Windows NT only), or log on or off a network (in Windows for Workgroups). Applications can process the application key by displaying help information or shortcuts.

The following codes are for the keys on the numeric keypad (if present):

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
96-105 60-69 VK_NUMPAD0 through VK_NUMPAD9 Numeric keypad 0 through 9 with Num Lock ON
106 6A VK_MULTIPLY Numeric keypad *
107 6B VK_ADD Numeric keypad +
108 6C VK_SEPARATOR
109 6D VK_SUBTRACT Numeric keypad-
110 6E VK_DECIMAL Numeric keypad .
111 6F VK_DIVIDE Numeric keypad /

Finally, although most keyboards have 12 function keys, Windows requires only 10 but has numeric identifiers for 24. Again, programs generally use the function keys as keyboard accelerators so they usually don't process the keystrokes in this table:

Decimal Hex WINUSER.H Identifier Required? IBM-Compatible Keyboard
112-121 70-79 VK_F1 through VK_F10 X Function keys F1 through F10
122-135 7A-87 VK_F11 through VK_F24 Function keys F11 through F24
144 90 VK_NUMLOCK Num Lock
145 91 VK_SCROLL Scroll Lock

Some other virtual key codes are defined, but they are reserved for keys specific to nonstandard keyboards or for keys most commonly found on mainframe terminals. Check /Platform SDK/User Interface Services/User Input/Virtual-Key Codes for a complete list.

The lParam Information

In the four keystroke messages (WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN, and WM_SYSKEYUP), the wParam message parameter contains the virtual key code as described above, and the lParam message parameter contains other information useful in understanding the keystroke. The 32 bits of lParam are divided into six fields as shown in Figure 6-1.

click to view at full size.

Figure 6-1. The six keystroke-message fields of the lParam variable.

Repeat Count

The repeat count is the number of keystrokes represented by the message. In most cases, this will be set to 1. However, if a key is held down and your window procedure is not fast enough to process key-down messages at the typematic rate (which you can set in the Keyboard applet in the Control Panel), Windows combines several WM_KEYDOWN or WM_SYSKEYDOWN messages into a single message and increases the Repeat Count field accordingly. The Repeat Count is always 1 for a WM_KEYUP or WM_SYSKEYUP message.

Because a Repeat Count greater than 1 indicates that typematic keystrokes are occurring faster than your program can process them, you may want to ignore the Repeat Count when processing the keyboard messages. Almost everyone has had the experience of "overscrolling" a word-processing document or spreadsheet because extra keystrokes have accumulated. If your program ignores the Repeat Count in cases where your program spends some time processing each keystroke, you can eliminate this problem. However, in other cases you will want to use the Repeat Count. You may want to try using the programs both ways and see which feels the most natural.

OEM Scan Code

The OEM Scan Code is the code generated by the hardware of the keyboard. This is familiar to middle-aged assembly language programmers as the value obtained from the ROM BIOS services of PC compatibles. (OEM refers to the Original Equipment Manufacturer of the PC and in this context is synonymous with "IBM Standard.") We don't need this stuff anymore. Windows programs can almost always ignore the OEM Scan Code except when dependent on the physical layout of the keyboard, such as the KBMIDI program in Chapter 22.

Extended Key Flag

The Extended Key Flag is 1 if the keystroke results from one of the additional keys on the IBM enhanced keyboard. (The enhanced keyboard has 101 or 102 keys. Function keys are across the top. Cursor movement keys are separate from the numeric keypad, but the numeric keypad also duplicates the cursor movement keys.) This flag is set to 1 for the Alt and Ctrl keys at the right of the keyboard, the cursor movement keys (including Insert and Delete) that are not part of the numeric keypad, the slash (/) and Enter keys on the numeric keypad, and the Num Lock key. Windows programs generally ignore the Extended Key Flag.

Context Code

The Context Code is 1 if the Alt key is depressed during the keystroke. This bit will always be 1 for the WM_SYSKEYUP and WM_SYSKEYDOWN messages and 0 for the WM_KEYUP and WM_KEYDOWN messages, with two exceptions:

  • If the active window is minimized, it does not have the input focus. All keystrokes generate WM_SYSKEYUP and WM_SYSKEYDOWN messages. If the Alt key is not pressed, the Context Code field is set to 0. Windows uses WM_SYSKEYUP and WM_SYSKEYDOWN messages so that a minimized active window doesn't process these keystrokes.

  • On some foreign-language keyboards, certain characters are generated by combining Shift, Ctrl, or Alt with another key. In these cases, the Context Code is set to 1 but the messages are not system keystroke messages.

Previous Key State

The Previous Key State is 0 if the key was previously up and 1 if the key was previously down. It is always set to 1 for a WM_KEYUP or WM_SYSKEYUP message, but it can be 0 or 1 for a WM_KEYDOWN or WM_SYSKEYDOWN message. A 1 indicates second and subsequent messages that are the result of typematic repeats.

Transition State

The Transition State is 0 if the key is being pressed and 1 if the key is being released. The field is set to 0 for a WM_KEYDOWN or WM_SYSKEYDOWN message and to 1 for a WM_KEYUP or WM_SYSKEYUP message.

Shift States

When you process a keystroke message, you may need to know whether any of the shift keys (Shift, Ctrl, and Alt) or toggle keys (Caps Lock, Num Lock, and Scroll Lock) are pressed. You can obtain this information by calling the GetKeyState function. For instance:

 iState = GetKeyState (VK_SHIFT) ; 

The iState variable will be negative (that is, the high bit is set) if the Shift key is down. The value returned from

 iState = GetKeyState (VK_CAPITAL) ; 

has the low bit set if the Caps Lock key is toggled on. This bit will agree with the little light on the keyboard.

Generally, you'll use GetKeyState with the virtual key codes VK_SHIFT, VK_CONTROL, and VK_MENU (which you'll recall indicates the Alt key). You can also use the following identifiers with GetKeyState to determine if the left or right Shift, Ctrl, or Alt keys are pressed: VK_LSHIFT, VK_RSHIFT, VK_LCONTROL, VK_RCONTROL, VK_LMENU, VK_RMENU. These identifiers are used only with GetKeyState and GetAsyncKeyState (described below).

You can also obtain the state of the mouse buttons using the virtual key codes VK_LBUTTON, VK_RBUTTON, and VK_MBUTTON. However, most Windows programs that need to monitor a combination of mouse buttons and keystrokes usually do it the other way around—by checking keystrokes when they receive a mouse message. In fact, shift-state information is conveniently included in the mouse messages, as we'll see in the next chapter.

Be careful with GetKeyState. It is not a real-time keyboard status check. Rather, it reflects the keyboard status up to and including the current message being processed. For the most part, this is exactly what you want. If you need to determine if the user typed Shift-Tab, you can call GetKeyState with the VK_SHIFT parameter while processing the WM_KEYDOWN message for the Tab key. If the return value of GetKeyState is negative, you know that the Shift key was pressed before the Tab key. And it doesn't matter if the Shift key has already been released by the time you get around to processing the Tab key. You know that the Shift key was down when Tab was pressed.

GetKeyState does not let you retrieve keyboard information independent of normal keyboard messages. For instance, you may feel a need to hold up processing in your window procedure until the user presses the F1 function key:

 while (GetKeyState (VK_F1) >= 0) ;    // WRONG !!! 

Don't do it! This is guaranteed to hang your program (unless, of course, the WM_KEYDOWN message for F1 was retrieved from the message queue before you executed the statement). If you really need to know the current real-time state of a key, you can use GetAsyncKeyState.

Using Keystroke Messages

A Windows program gets information about each and every keystroke that occurs while the program is running. This is certainly helpful. However, most Windows programs ignore all but a few keystroke messages. The WM_SYSKEYDOWN and WM_SYSKEYUP messages are for Windows system functions, and you don't need to look at them. If you process WM_KEYDOWN messages, you can usually also ignore WM_KEYUP messages.

Windows programs generally use WM_KEYDOWN messages for keystrokes that do not generate characters. Although you may think that it's possible to use keystroke messages in combination with shift-state information to translate keystroke messages into characters, don't do it. You'll have problems with non-English keyboards. For example, if you get a WM_KEYDOWN message with wParam equal to 0x33, you know the user pressed the 3 key. So far, so good. If you use GetKeyState and find out that the Shift key is down, you might assume that the user is typing a pound sign (#). Not necessarily. A British user is typing another type of pound sign, the one that looks like this: £.

The WM_KEYDOWN messages are most useful for the cursor movement keys, the function keys, Insert, and Delete. However, Insert, Delete, and the function keys often appear as menu accelerators. Because Windows translates menu accelerators into menu command messages, you don't have to process the keystrokes themselves.

It was common for pre-Windows applications for MS-DOS to use the function keys extensively in combination with the Shift, Ctrl, and Alt keys. You can do something similar in your Windows programs (indeed, Microsoft Word uses the function keys extensively as command short cuts), but it's not really recommended. If you want to use the function keys, they should duplicate menu commands. One objective in Windows is to provide a user interface that doesn't require memorization or consultation of complex command charts.

So, it comes down to this: Most of the time, you will process WM_KEYDOWN messages only for cursor movement keys, and sometimes for Insert and Delete. When you use these keys, you can check the Shift-key and Ctrl-key states through GetKeyState. Windows programs often use the Shift key in combination with the cursor keys to extend a selection in (for instance) a word-processing document. The Ctrl key is often used to alter the meaning of the cursor key. For example, Ctrl in combination with the Right Arrow key might mean to move the cursor one word to the right.

One of the best ways to determine how to use the keyboard in your application is to examine how the keyboard is used in existing popular Windows programs. If you don't like those definitions, you are free to do something different. But keep in mind that doing so might be detrimental to a user's ability to learn your program quickly.

Enhancing SYSMETS for the Keyboard

The three versions of the SYSMETS program in Chapter 4 were written without any knowledge of the keyboard. We were able to scroll the text only by using the mouse on the scroll bars. Now that we know how to process keystroke messages, let's add a keyboard interface to the program. This is obviously a job for cursor movement keys. We'll use most of these keys (Home, End, Page Up, Page Down, Up Arrow, and Down Arrow) for vertical scrolling. The Left Arrow and Right Arrow keys can take care of the less important horizontal scrolling.

One obvious way to create a keyboard interface is to add some WM_KEYDOWN logic to the window procedure that parallels and essentially duplicates all the WM_VSCROLL and WM_HSCROLL logic. However, this is unwise, because if we ever wanted to change the scroll bar logic we'd have to make the same changes in WM_KEYDOWN.

Wouldn't it be better to simply translate each of these WM_KEYDOWN messages into an equivalent WM_VSCROLL or WM_HSCROLL message? Then we could perhaps fool WndProc into thinking that it's getting a scroll bar message, perhaps by sending a phony message to the window procedure.

Windows lets you do this. The function is named SendMessage, and it takes the same parameters as those passed to the window procedure:

 SendMessage (hwnd, message, wParam, lParam) ; 

When you call SendMessage, Windows calls the window procedure whose window handle is hwnd, passing to it these four function arguments. When the window procedure has completed processing the message, Windows returns control to the next statement following the SendMessage call. The window procedure you send the message to could be the same window procedure, another window procedure in the same program, or even a window procedure in another application.

Here's how we might use SendMessage for processing WM_KEYDOWN codes in the SYSMETS program:

 case WM_KEYDOWN:      switch (wParam)      {      case VK_HOME:           SendMessage (hwnd, WM_VSCROLL, SB_TOP, 0) ;           break ;      case VK_END:           SendMessage (hwnd, WM_VSCROLL, SB_BOTTOM, 0) ;           break ;      case VK_PRIOR:           SendMessage (hwnd, WM_VSCROLL, SB_PAGEUP, 0) ;           break ; 

And so forth. You get the general idea. Our goal was to add a keyboard interface to the scroll bars, and that's exactly what we've done. We've made the cursor movement keys duplicate scroll bar logic by actually sending the window procedure a scroll bar message. Now you can see why I included SB_TOP and SB_BOTTOM processing for WM_VSCROLL messages in the SYSMETS3 program. It wasn't used then, but it's used now for processing the Home and End keys. The SYSMETS4 program, shown in Figure 6-2, incorporates these changes. You'll also need the SYSMETS.H file from Chapter 4 to compile this program.

Figure 6-2. The SYSMETS4 program.

SYSMETS4.C

 /*----------------------------------------------------    SYSMETS4.C -- System Metrics Display Program No. 4                  (c) Charles Petzold, 1998   ----------------------------------------------------*/ #include <windows.h> #include "sysmets.h" LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,                     PSTR szCmdLine, int iCmdShow) {      static TCHAR szAppName[] = TEXT ("SysMets4") ;      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 ("Get System Metrics No. 4"),                           WS_OVERLAPPEDWINDOW | WS_VSCROLL | WS_HSCROLL,                           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 int  cxChar, cxCaps, cyChar, cxClient, cyClient, iMaxWidth ;      HDC         hdc ;      int         i, x, y, iVertPos, iHorzPos, iPaintBeg, iPaintEnd ;      PAINTSTRUCT ps ;      SCROLLINFO  si ;      TCHAR       szBuffer[10] ;      TEXTMETRIC  tm ;            switch (message)      {      case WM_CREATE:           hdc = GetDC (hwnd) ;                      GetTextMetrics (hdc, &tm) ;           cxChar = tm.tmAveCharWidth ;           cxCaps = (tm.tmPitchAndFamily & 1 ? 3 : 2) * cxChar / 2 ;           cyChar = tm.tmHeight + tm.tmExternalLeading ;                      ReleaseDC (hwnd, hdc) ;                // Save the width of the three columns                      iMaxWidth = 40 * cxChar + 22 * cxCaps ;           return 0 ;                 case WM_SIZE:           cxClient = LOWORD (lParam) ;           cyClient = HIWORD (lParam) ;                // Set vertical scroll bar range and page size           si.cbSize = sizeof (si) ;           si.fMask  = SIF_RANGE | SIF_PAGE ;           si.nMin   = 0 ;           si.nMax   = NUMLINES - 1 ;           si.nPage  = cyClient / cyChar ;           SetScrollInfo (hwnd, SB_VERT, &si, TRUE) ;                // Set horizontal scroll bar range and page size           si.cbSize = sizeof (si) ;           si.fMask  = SIF_RANGE | SIF_PAGE ;           si.nMin   = 0 ;           si.nMax   = 2 + iMaxWidth / cxChar ;           si.nPage  = cxClient / cxChar ;           SetScrollInfo (hwnd, SB_HORZ, &si, TRUE) ;           return 0 ;                 case WM_VSCROLL:                // Get all the vertical scroll bar information           si.cbSize = sizeof (si) ;           si.fMask  = SIF_ALL ;           GetScrollInfo (hwnd, SB_VERT, &si) ;                // Save the position for comparison later on           iVertPos = si.nPos ;           switch (LOWORD (wParam))           {           case SB_TOP:                si.nPos = si.nMin ;                break ;                           case SB_BOTTOM:                si.nPos = si.nMax ;                break ;                           case SB_LINEUP:                si.nPos -= 1 ;                break ;                           case SB_LINEDOWN:                si.nPos += 1 ;                break ;                           case SB_PAGEUP:                si.nPos -= si.nPage ;                break ;                           case SB_PAGEDOWN:                si.nPos += si.nPage ;                break ;                           case SB_THUMBTRACK:                si.nPos = si.nTrackPos ;                break ;                           default:                break ;                    }                // Set the position and then retrieve it.  Due to adjustments                //   by Windows it might not be the same as the value set.           si.fMask = SIF_POS ;           SetScrollInfo (hwnd, SB_VERT, &si, TRUE) ;           GetScrollInfo (hwnd, SB_VERT, &si) ;                // If the position has changed, scroll the window and update it           if (si.nPos != iVertPos)           {                                    ScrollWindow (hwnd, 0, cyChar * (iVertPos - si.nPos),                                     NULL, NULL) ;                UpdateWindow (hwnd) ;           }           return 0 ;                 case WM_HSCROLL:                // Get all the vertical scroll bar information           si.cbSize = sizeof (si) ;           si.fMask  = SIF_ALL ;                // Save the position for comparison later on           GetScrollInfo (hwnd, SB_HORZ, &si) ;           iHorzPos = si.nPos ;           switch (LOWORD (wParam))           {           case SB_LINELEFT:                si.nPos -= 1 ;                break ;                           case SB_LINERIGHT:                si.nPos += 1 ;                break ;                           case SB_PAGELEFT:                si.nPos -= si.nPage ;                break ;                           case SB_PAGERIGHT:                si.nPos += si.nPage ;                break ;                           case SB_THUMBPOSITION:                si.nPos = si.nTrackPos ;                break ;                           default:                break ;           }                // Set the position and then retrieve it.  Due to adjustments                //   by Windows it might not be the same as the value set.           si.fMask = SIF_POS ;           SetScrollInfo (hwnd, SB_HORZ, &si, TRUE) ;           GetScrollInfo (hwnd, SB_HORZ, &si) ;                           // If the position has changed, scroll the window            if (si.nPos != iHorzPos)           {                ScrollWindow (hwnd, cxChar * (iHorzPos - si.nPos), 0,                               NULL, NULL) ;           }           return 0 ;      case WM_KEYDOWN:           switch (wParam)           {           case VK_HOME:                SendMessage (hwnd, WM_VSCROLL, SB_TOP, 0) ;                break ;                           case VK_END:                SendMessage (hwnd, WM_VSCROLL, SB_BOTTOM, 0) ;                break ;                           case VK_PRIOR:                SendMessage (hwnd, WM_VSCROLL, SB_PAGEUP, 0) ;                break ;                           case VK_NEXT:                SendMessage (hwnd, WM_VSCROLL, SB_PAGEDOWN, 0) ;                break ;                           case VK_UP:                SendMessage (hwnd, WM_VSCROLL, SB_LINEUP, 0) ;                break ;           case VK_DOWN:                SendMessage (hwnd, WM_VSCROLL, SB_LINEDOWN, 0) ;                break ;                           case VK_LEFT:                SendMessage (hwnd, WM_HSCROLL, SB_PAGEUP, 0) ;                break ;                           case VK_RIGHT:                SendMessage (hwnd, WM_HSCROLL, SB_PAGEDOWN, 0) ;                break ;           }           return 0 ;      case WM_PAINT:           hdc = BeginPaint (hwnd, &ps) ;                // Get vertical scroll bar position           si.cbSize = sizeof (si) ;           si.fMask  = SIF_POS ;           GetScrollInfo (hwnd, SB_VERT, &si) ;           iVertPos = si.nPos ;                // Get horizontal scroll bar position           GetScrollInfo (hwnd, SB_HORZ, &si) ;           iHorzPos = si.nPos ;                // Find painting limits           iPaintBeg = max (0, iVertPos + ps.rcPaint.top / cyChar) ;           iPaintEnd = min (NUMLINES - 1,                            iVertPos + ps.rcPaint.bottom / cyChar) ;                      for (i = iPaintBeg ; i <= iPaintEnd ; i++)           {                x = cxChar * (1 - iHorzPos) ;                y = cyChar * (i - iVertPos) ;                                TextOut (hdc, x, y,                         sysmetrics[i].szLabel,                         lstrlen (sysmetrics[i].szLabel)) ;                                TextOut (hdc, x + 22 * cxCaps, y,                         sysmetrics[i].szDesc,                         lstrlen (sysmetrics[i].szDesc)) ;                                SetTextAlign (hdc, TA_RIGHT | TA_TOP) ;                                TextOut (hdc, x + 22 * cxCaps + 40 * cxChar, y, szBuffer,                         wsprintf (szBuffer, TEXT ("%5d"),                              GetSystemMetrics (sysmetrics[i].iIndex))) ;                                SetTextAlign (hdc, TA_LEFT | TA_TOP) ;           }           EndPaint (hwnd, &ps) ;           return 0 ;                 case WM_DESTROY:           PostQuitMessage (0) ;           return 0 ;      }      return DefWindowProc (hwnd, message, wParam, lParam) ; } 


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