Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / MFC
Article

XColorDialog - an MFC color picker control that displays a color hexagon and a color spectrum

Rate me:
Please Sign up or sign in to vote.
4.92/5 (8 votes)
5 Apr 2008CPOL4 min read 63.8K   2.5K   44   9
XColorDialog displays a color hexagon and a color spectrum that allows user selection, and provides APIs for color based on RGB and HSL color models.

Introduction

XColorDialog mimics behavior of color picker dialog found in Microsoft Office®:
screenshotscreenshot

This article is based on my articles XColorHexagonCtrl and XColorSpectrumCtrl.

XColorDialog Features and Behaviors

XColorDialog has the same visual appearance as the two screenshots above, and offers an API that is similar to CColorDialog, but without support for the multiple custom colors that you see here:

screenshot

For a detailed description of the user interface behaviors of the two tabs in XColorDialog, please see my articles XColorHexagonCtrl and XColorSpectrumCtrl.

XColorDialog is implemented using standard MFC CDialog and CTabCtrl. Two tab pages host the color controls, which communicate with the parent dialog via registered window messages. The parent dialog then keeps the color control on the other tab page informed of currently selected color, and updates color display on the parent dialog:

screenshotscreenshotscreenshot
When the user selects a new color by double-clicking left mouse button, this has same effect as clicking on OK button.

The Custom tab includes the same controls as the MS Office® dialog, allowing user to select the color model (RGB or HSL) and values:

screenshot

As user clicks on spin controls, color selectors (crosshair and luminosity arrow) are updated, and new color is also sent to parent dialog, so that New/Current display is continuously updated.

XColorDialog API

Here is the XColorDialog API:

FunctionDescription
COLORREF GetColor() Retrieves RGB value for current color
int GetColorModel() Retrieves color model setting from Custom tab
int GetCurTab() Retrieves current tab
void GetHSL(BYTE *h, BYTE *s, BYTE *l) Retrieves HSL values for current color
COLORREF GetRGB() Retrieves RGB value for current color
CXColorDialog& SetColorModel(int nColorModel) Sets starting color model for Custom tab
CXColorDialog& SetCurrentColor(COLORREF cr) Sets the current color from RGB values
CXColorDialog& SetHSL(BYTE h, BYTE s, BYTE l) Sets the current color from HSL values
CXColorDialog& SetRGB(COLORREF cr) Sets the current color from RGB values
CXColorDialog& SetStartTab(int nStartTab) Sets the starting tab
CXColorDialog& SetTitle(LPCTSTR lpszTitle) Sets the title of the dialog box
CXColorDialog& SetTooltipFormat(int nFormat) Sets the tooltip format for the CXColorHexagonCtrl and CXColorSpectrumCtrl controls

Implementation Notes

The implementation of XColorDialog was fairly straightforward. The only real surprise I got had to do with the visibility of the grayscale hexagons on the Standard tab. The first time I ran the demo program, this is what I saw:

screenshot

The large white hexagon and the small grayscale hexagon closest to it are indiscernible from the background. When I took another look at the MS Office® color dialog, I saw that what I thought was a solid background color was in fact a color gradient. Using the RGB-to-HSL algorithms I already had, I quickly calculated a lower (ending) color that was 10 points darker than the start color. Then I added WM_ERASEBKGND handler to each tab page, so that I could paint the background with GDI function GradientFill():
BOOL CTabStandard::OnEraseBkgnd(CDC* pDC) 
{
    CRect rectClient;
    GetClientRect(&rectClient);

    TRIVERTEX vert[2];
    vert[0].x      = 0;
    vert[0].y      = 0;
    vert[0].Red    = (COLOR16) (GetRValue(m_crStartColor) << 8);
    vert[0].Green  = (COLOR16) (GetGValue(m_crStartColor) << 8);
    vert[0].Blue   = (COLOR16) (GetBValue(m_crStartColor) << 8);
    vert[0].Alpha  = 0x0000;

    vert[1].x      = rectClient.right;
    vert[1].y      = rectClient.bottom; 
    vert[1].Red    = (COLOR16) (GetRValue(m_crEndColor) << 8);
    vert[1].Green  = (COLOR16) (GetGValue(m_crEndColor) << 8);
    vert[1].Blue   = (COLOR16) (GetBValue(m_crEndColor) << 8);
    vert[1].Alpha  = 0x0000;

    GRADIENT_RECT rect;
    rect.UpperLeft  = 0;
    rect.LowerRight = 1;

    ::GradientFill(pDC->m_hDC, vert, 2, &rect, 1, GRADIENT_FILL_RECT_V);

    return TRUE;    //CDialog::OnEraseBkgnd(pDC);
}

Here is what the Standard tab looks like with gradient fill:

screenshot

Demo App

Here is what demo app looks like:

screenshot

How to use

The following steps assume you want to add XColorDialog to a dialog. Steps would be similar for CFormView or CPropertyPage.

Step 1 - Add Files

To integrate CXColorDialog into your app, you first need to add following files to your project:

  • CXCD.h
  • CXRect.h
  • CXToolTipCtrl.h
  • help_vista.ico
  • help_xp.ico
  • rgbhsl.cpp
  • rgbhsl.h
  • TabCustom.cpp
  • TabCustom.h
  • TabStandard.cpp
  • TabStandard.h
  • XBalloonMsg.cpp
  • XBalloonMsg.h
  • XColorDialog.cpp
  • XColorDialog.h
  • XColorDialog.rc
  • XColorDialogRes.h
  • XColorHexagonCtrl.cpp
  • XColorHexagonCtrl.h
  • XColorSpectrumCtrl.cpp
  • XColorSpectrumCtrl.h

The .cpp files marked with should be set to Not using precompiled header in Visual Studio. Otherwise, you will get error

fatal error C1010: unexpected end of file while looking for precompiled header directive

Step 2 - Add XColorDialog Resource File

screenshot For Visual Studio 6 - go to View | Resource Includes... and in bottom listbox, scroll down to end. Insert #include "XColorDialog.rc" right before #endif:

screenshot

screenshot For Visual Studio 2005 - right-click .rc file in Resource View, then choose Resource Includes... from shortcut menu:

screenshot

In bottom listbox, scroll down to end. Insert #include "XColorDialog.rc" right before #endif:

screenshot

The dialog templates in XColorDialog.rc are invoked via string resource name rather than numeric resource ID. This technique allows you to use XColorDialog without having to worry about resource ID collisions with the other dialogs in your app.

Step 3 - Add Code to Create XColorDialog

In source module where you want to call XColorDialog, include header file XColorDialog.h. Then create XColorDialog like this:
CMyColorDialog dlg(m_crCurrent, m_nTooltip | ((m_nStartTab+1) << 4));
dlg.SetTitle(_T("My Colors"));
if (dlg.DoModal() == IDOK)
{
    //  < Add code here to handle selected color >
}

Step 4 (Optional) - Add Derived Class

The demo app shows how you can derive your own class from CXColorDialog to make use of virtual function OnColorOK():
class CMyColorDialog : public CXColorDialog
{
public:
    CMyColorDialog(COLORREF crInitial = 0, 
                   DWORD dwFlags = XCD_TOOLTIP_NONE | XCD_OPEN_HEXAGON,
                   CWnd* pParent = NULL)
    : CXColorDialog(crInitial, dwFlags, pParent)
    {
    }

    virtual BOOL OnColorOK()
    {
        COLORREF cr = GetRGB();
        if (cr == RGB(255,0,0))
        {
            AfxMessageBox(_T("That color is not allowed."));
            return 1;
        }
        return 0;
    }
};

Revision History

Version 1.0 - 2008 April 5

  • Initial public release

Usage

This software is released into the public domain. You are free to use it in any way you like, except that you may not sell this source code. If you modify it or extend it, please to consider posting new code here for everyone to share. This software is provided "as is" with no expressed or implied warranty. I accept no liability for any damage or loss of business that this software may cause.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Hans Dietrich Software
United States United States
I attended St. Michael's College of the University of Toronto, with the intention of becoming a priest. A friend in the University's Computer Science Department got me interested in programming, and I have been hooked ever since.

Recently, I have moved to Los Angeles where I am doing consulting and development work.

For consulting and custom software development, please see www.hdsoft.org.






Comments and Discussions

 
GeneralMy vote of 5 Pin
Farhan Ghumra17-Jun-12 23:28
professionalFarhan Ghumra17-Jun-12 23:28 
QuestionUsing this control with VB.NET project Pin
Tonielro29-Feb-12 11:01
Tonielro29-Feb-12 11:01 
GeneralProblem (and solution) with hexagonal control and 16-bit colour depth Pin
Tim Hards23-Jul-08 2:37
Tim Hards23-Jul-08 2:37 
GeneralDuplicate Resource: IDD_XCOLOR_DIALOG Pin
Jeffrey Walton9-Jun-08 12:33
Jeffrey Walton9-Jun-08 12:33 
GeneralRe: Duplicate Resource: IDD_XCOLOR_DIALOG Pin
Hans Dietrich9-Jun-08 19:59
mentorHans Dietrich9-Jun-08 19:59 
GeneralRe: Duplicate Resource: IDD_XCOLOR_DIALOG Pin
Jeffrey Walton10-Jun-08 0:35
Jeffrey Walton10-Jun-08 0:35 
Hi Hans,

Hans Dietrich wrote:
You tried the VS2005 .sln in VS2008 and ...

I created a subdirectory (XColorDialog) in my project directory, and unzipped the project into the subdirectory. I deleted the sln, proj, etc since I had a sln and proj.

I just tried compiling as a standalone (after the upgrade wizard converted to VS2008). The program compiled and linked OK.

Jeff
GeneralRe: Duplicate Resource: IDD_XCOLOR_DIALOG Pin
Hans Dietrich9-Jun-08 20:05
mentorHans Dietrich9-Jun-08 20:05 
GeneralAutomatically determine which tab to show based on the initial colour Pin
Tim Hards23-Apr-08 6:33
Tim Hards23-Apr-08 6:33 
GeneralRe: Automatically determine which tab to show based on the initial colour Pin
Hans Dietrich23-Apr-08 16:30
mentorHans Dietrich23-Apr-08 16:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.