Creating a Custom Color Selection Dialog | CodeGuru

Creating a Custom Color Selection Dialog

Environment: Win32 API (no MFC) This is a GPL/LGPL color picker demo based on a custom color selector. I coded it as a part of a Win32 server that I use in my graphics apps. It’s pure Win32 API C++ and it should compile with VC++ 6.0. For your convenience, there are precompiled binaries in […]

Written By
CodeGuru Staff
CodeGuru Staff
Jul 24, 2003
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: Win32 API (no MFC)

This is a GPL/LGPL color picker demo based on a custom color selector. I coded it as a part of a Win32 server that I use in my graphics apps. It’s pure Win32 API C++ and it should compile with VC++ 6.0. For your convenience, there are precompiled binaries in the ‘bin’ folder.

To Implement the Picker

  1. Build ‘server_win.lib’ and ‘server_util.lib’ (with the appropriate DLLs).
  2. Include ‘server_win.h’ and ‘server_util.h’ into your source code.
  3. Make a reference to the picker’s global instance:
  4.     "c_colorpick& <yourpicker> = colorpick;"
  5. Call the picker where you want it to appear:
  6.     "COLORREF rgb =
                  <yourpicker>.getcolor(<handle to owner window>);"
    

    The function above returns -1 when ‘Cancel’ is pressed.

To Get the Picker’s Settings

  1. Declare an instance of color-info structure:
  2.     "_colorinfo <yourinfo>;"

    This structure will hold the color space type, palette saturation range, and custom colors.

  3. When the picker returns, obtain the above values by calling:
  4.     "<yourpicker>.getinfo(<yourinfo>);"
  5. Then you can save these values into a file so that all settings can be loaded when the app starts again. How it could be done is shown in the “bool writeini()” function in ‘colpick_main.cpp’.

To Initialize the Picker to the Last-Saved Settings

  1. Load the file you`ve saved in the previous section and fill in the <yourinfo> structure.
  2. Before you call the picker, make a call:
  3.     "<yourpicker>.setinfo(<yourinfo>);"
  4. Your picker should be initialized. (For details, look at “bool readini()” and “WinMain()” in ‘colpick_main.cpp’.)
Advertisement

Known Bug

When using numeric input of HSL or HSV, the entered value sometimes skips down by 1. For example, if you insert 180, the value skips to 179. This is probably due to running the entered value through the whole conversion routine; that might be inexact.

oscar@mail.viapvt.sk

Downloads

Download demo project (Self extracting EXE) – 158 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.