SAMPLE: Code Implements a "Tool Box" Window

Last reviewed: February 15, 1996
Article ID: Q81814
The information in this article applies to:
  • Microsoft Windows Software Development Kit (SDK) for Windows version 3.1

SUMMARY

The Image Editor and the Dialog Editor are two applications provided with the Windows SDK that demonstrate a "tool box" window. This article discusses how to implement a tool box window in an application. TOOLBOX is a file in the Microsoft Software Library that demonstrates the techniques discussed.

Download TOOLBOX.EXE, a self-extracting file, from the Microsoft Software Library (MSL) on the following services:

  • Microsoft Download Service (MSDL)

          Dial (206) 936-6735 to connect to MSDL
          Download TOOLBOX.EXE (size: 26087 bytes) 
    
  • Internet (anonymous FTP)

          ftp ftp.microsoft.com
          Change to the \SOFTLIB\MSLFILES directory
          Get TOOLBOX.EXE (size: 26087 bytes) 
    

MORE INFORMATION

A tool box window contains a group of icons that the user can choose at any time. The tool box window always floats above the application with which it is associated.

The code in TOOLBOX assumes that all buttons in the tool box have the same size and are equally spaced throughout the window. TOOLBOX implements the following four steps to create the tool box window:

  1. Loads the bitmap that provides the visual appearance for all the buttons.

  2. Creates the tool box window with the WS_EX_TOPMOST style bit set. Sizes the window appropriately based on the size of the bitmap.

  3. Processes the WM_ACTIVATE message in the window procedure for the application's main window. If the main window or the tool box window is being activated, TOOLBOX calls SetWindowPos() to add the WS_EX_TOPMOST style to the window. If a window other than the main window or the tool box window is being activated, TOOLBOX calls SetWindowPos() to remove the WS_EX_TOPMOST style from the window.

  4. Performs the following two steps in the window procedure for the tool box window:

    a. Processes the WM_LBUTTONDOWN message. Performs hit testing to

          determine which button the user chose. To make the button appear
          depressed, TOOLBOX determines the rectangle for the button.
          TOOLBOX uses the InvertRect function to invert the colors of the
          button.
    

    b. Processes the WM_PAINT message. TOOLBOX uses the StretchBlt()

          function to paint the bitmap onto the window. If any button is
          depressed, TOOLBOX inverts the appropriate region as above.
    

Although this sample does not demonstrate every possibility for tool box windows, the sample is very straightforward and easily modified.


Additional reference words: 3.10 softlib TOOLBOX.EXE
KBCategory: kbprg kbfile
KBSubcategory: UsrCtl


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 15, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.