Click here to Skip to main content
Licence CPOL
First Posted 19 Nov 1999
Views 186,580
Bookmarked 81 times

Office 97 style Colour Picker control

By | 8 Dec 2007 | Article
A simple drop in color chooser control

Colour Picker image

In an effort to have the latest and greatest wizz-bang features in my programs I unashamedly ripped of the colour picker from Office 97.

Initially I tried to modify an owner drawn combo box and combine that with a multicolumn combobox, but current multicolumn combo boxes are really just a single column with dividing lines drawn in. I then decided to write the whole thing from scratch based on a button, since it would at least give me a BN_CLICKED notification to get things started.

The colour picker is in two parts: an owner drawn button that reflects the currently selected colour, and a popup colour chooser window to select this colour. When the user clicks on the button the popup window appears and all mouse messages are captured until the left mouse button is clicked, or until the Enter or Escape keys are pressed. The popup window can be navigated using the mouse or the keyboard and includes tooltips explaining what each colour is.

The control can be incorporated into a project like any other CButton derived control. Either Create the control manually, subclass an existing CButton or DDX_control it. The control also comes with a DDX_ColourPicker routine to get/set the colour of the control using a variable of type COLORREF.

The Colour Picker is contained in the class CColourPicker. It uses the class CColourPopup for the popup window. These classes are contained in the file colour_picker_src.zip, and a sample project is contained in colour_picker_demo.zip.

CColourPicker only has the following public member functions:

void     SetColour(COLORREF crColour);
COLORREF GetColour();

void     SetDefaultText(LPCTSTR szDefaultText);
void     SetCustomText(LPCTSTR szCustomText);

void     SetSelectionMode(UINT nMode); // Either CP_MODE_TEXT or CP_MODE_BK

UINT     GetSelectionMode();

void     SetBkColour(COLORREF crColourBk);
COLORREF GetBkColour();
  
void     SetTextColour(COLORREF crColourText);
COLORREF GetTextColour();

SetDefaultText allows you to set the text that will appear in the "Default" area of the colour chooser. If you pass NULL, then the Default area will not be available to the user. If this area is availble and the user selects it, the value CLR_DEFAULT will be returned.

SetCustomText allows you to set the text that will appear in the "Custom" area of the colour chooser. If you pass NULL, then the Custom area will not be available to the user. The Custom area allows the user to select a custom colour using the standard windows colour selection dialog.

You can choose whether the colour chosen using the dropdown colour chooser will affect the text or the background colour using the function SetSelectionMode(int nMode). Possible values for nMode are CP_MODE_TEXT to make colour changes affect the text colour, and CP_MODE_BK to make changes affect the background (default).

SetColour, GetColour and the the DDX-function will set and get the colour according to the current selection mode. To access the text colour and the background colour directly use the Set/GetTextColour and Set/GetBkColour functions.

There are also a number of user messages that may be handled to get more information from the control. These are:

Message Description
CPN_SELCHANGE Colour Picker Selection change
CPN_DROPDOWN Colour Picker drop down
CPN_CLOSEUP Colour Picker close up
CPN_SELENDOK Colour Picker end OK
CPN_SELENDCANCEL Colour Picker end (cancelled)

These messages can be handled using ON_MESSAGE(< MESSAGE>, MessageFn) in you message map entries, where MessageFn is of the form

afx_msg LONG MessageFn(UINT lParam, LONG wParam);

The demo program gives an example of how to do this.

Acknowledgments

Alexander Bischofberger kindly supplied the Selection mode modifications, as well as the background and text color methods. Paul Wilkerson fixed a focus related bug, and Geir Arne Trillhus also helped fix a few bugs.

License

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

About the Author

Chris Maunder

Founder
The Code Project
Canada Canada

Member

Follow on Twitter Follow on Twitter
Google+
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
 
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
 
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
 
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionControl behavior PinmemberDavidCrow3:31 22 Mar '12  
GeneralNice ! Thank you ! PinmemberKoma Wang21:02 22 Nov '10  
GeneralVery long text in the Custom or Default Text Area PinmemberMember 243931310:00 22 Aug '09  
GeneralRe: Very long text in the Custom or Default Text Area PinadminChris Maunder18:16 23 Oct '09  
GeneralProblem with Colour Picker control PinmemberBobInNJ6:14 1 Mar '09  
GeneralRe: Problem with Colour Picker control PinadminChris Maunder15:59 1 Mar '09  
GeneralRe: Problem with Colour Picker control PinmemberSteve Palm10:41 4 Mar '09  
GeneralRe: Problem with Colour Picker control Pinmemberrbid1:55 8 Mar '09  
Hello,
 
I found that the problem may be caused by VC2008 and not this great control.
 
If your project is compiled with VC2008 and you don't set the preprocessor constant WINVER to the correct minimum platform your tool will run, you may get a crash.
 
That is, if this preprocessor constant is not set, VC2008 will set it to 0x0600 (That is, to a Vista platform). The problem will occur if you run the compiled application on a WinXP.
 
Read here: http://www.codeproject.com/KB/miscctrl/High-speedCharting.aspx?msg=2954763#xx2954763xx[^]
 
Just wanted to help.
 
Have a nice day to all.

 
-- Ricky Marek (AKA: rbid)
-- "Things are only impossible until they are not" --- Jean-Luc Picard
 
My articles
 

GeneralThanks! Pinmemberhwfmoon5:03 9 Oct '08  
GeneralXP Style PinmemberJimmyO22:20 9 Aug '08  
GeneralAs of VC++2008 (VC9) Pinmemberalcbz0:52 4 Jun '08  
GeneralRe: As of VC++2008 (VC9) PinmemberMember 90631313:38 9 Jan '09  
GeneralOffice 2007 style Color Picker control PinmemberOwfAdmin21:31 14 Jul '07  
GeneralRe: Office 2007 style Color Picker control PinmemberKuryn13:42 29 Nov '07  
Generalnot compiling with VC7+ Pinmembertoxcct0:12 5 May '06  
GeneralRe: not compiling with VC7+ [now fixed] Pinmembertoxcct2:43 10 May '06  
GeneralRe: not compiling with VC7+ [now fixed] Pinmember Dr.Luiji 23:51 19 Dec '07  
QuestionNon-MFC Version? Pinmemberjobe377423:31 6 Feb '06  
GeneralCOLORREF Value PinmemberDody_DK1:47 1 Dec '05  
Generalputting custom color palette Pinsusslaiju21:57 13 Jun '05  
GeneralRe: putting custom color palette Pinmemberlaiju22:05 13 Jun '05  
QuestionHow do I add this to MFC Grid Control. PinmemberT Turner4:30 8 Nov '04  
GeneralWPARAM and LPARAM casting PinsussArthg8:39 20 Aug '04  
QuestionHow to handle MSG in Toolbar? PinsussTony Lee22:28 6 Jul '04  
GeneralBug on multi-monitor system PinmemberPaul S. Vickery23:31 25 May '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120604.1 | Last Updated 8 Dec 2007
Article Copyright 1999 by Chris Maunder
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid