Color Picker for WTL with XP themes
我的网盘备份
https://www.123pan.com/s/4UZ8Vv-3CbYA提取码:QZXF
Color picker control for WTL applications including optional support for XP themes Is your email address OK? You are signed up for our newsletters or notifications but your email address is either unconfirmed, or has not been reconfirmed in a long time. Please click here to have a confirmation email sent so we can start sending you newsletters again.
Introduction
Using the Color Picker Button by James White who in turn based his work on Office 97 Colour Picker Control by Chris Maunder, I have created an updated color picker control based on the Office XP designed intended for use with WTL.
Among the list of changes are:
- Modified for use with WTL.
- Update style to more closely resemble the Office XP color picker.
- Optional support for XP themes.
- Control uses instead of .
WM_NOTIFY
WM_COMMAND
- Finally got rid of that damn annoying dialog bar focus problem by using a captive message loop to process the picker.
- The code is really phat now. I mean really phat.
NOTE: VS.NET/ATL7/WTL7 are required to get the full functionality of this control. It is untested with ATL3/WTL3 but since the theme support if optional, there is a good chance it could work.
Adding CColorButton to a WTL application.
- The first step is to copy CColorButton.h and CColorButton.cpp into you application directory.
- Next, add the two files into your project.
- Many little features will not be enabled unless you have and _WIN32_WINNT defined properly. You can defined these values in your stdafx.h.
WINVER
- If you want XP theme support, add "" to your stdafx.h file. This should be placed after all the other ATL includes.
#include <span class="code-keyword"><atltheme.h></span>
CColorButton
makes heavy use of helper types from ATL. You will need to make sure that "atltypes.h" and "atlgdi.h" are being included in stdafx.h.- Add a button to the dialog in question using the resource editor. You don't have to make and style adjustments to the button.
- Edit the class definition for the dialog box. To the message map, add "".
REFLECT_NOTIFICATIONS ()
- Add "#include "ColorButton.h"" prior to the definition of the dialog box class.
- Add a new member variable to the dialog. The class will be "CColorButton" and give it any name you desire.
- Inside your for the dialog, add a line to subclass the control. It is important that is it subclassed and not just assigned a window handle.
OnInitDialog
Here is an example of how to properly subclass the control.
LRESULT CMainDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) { // center the dialog on the screen CenterWindow(); m_btnMyColor1 .SubclassWindow (GetDlgItem (IDC_COLOR_1)); m_btnMyColor2 .SubclassWindow (GetDlgItem (IDC_COLOR_2)); m_btnMyColor3 .SubclassWindow (GetDlgItem (IDC_COLOR_3)); m_btnMyColor2 .SetDefaultText (_T ("")); m_btnMyColor2 .SetCustomText (_T ("")); m_btnMyColor3 .SetDefaultText (_T ("My Default Text")); m_btnMyColor3 .SetCustomText (_T ("")); return TRUE; }
Here is a list of the different features enabled by defines.
Define | Value | Features Enabled |
_WIN32_WINNT | 0x0501 | Theme support |
XP flat menu support | ||
XP drop shadow support | ||
WINVER | 0x0500 | Multi-monitor support |
XP menu highlight color support | ||
WINVER | 0x0501 | XP menu highlight color support |
For most applications, both and should be defined to be 0x0501. The control will automatically downgrade if the operating system doesn't provide the functionality enabled by and . _WIN32_WINNT
WINVER
CColorButton
_WIN32_WINNT
WINVER
How the Color Picker handles Colors
The color picker supports three types of colors, default, custom and palette. The palette colors are the colors shown to the user as an array of little tiles of color. The default color is shown to the user as a large button on the top of the picker with text supplied by the application. The default for this text is "Automatic". The custom color is shown to the user as a large button on the bottom of the picker with text supplied by the application. The default for this text is "Custom...".
The nice thing about the way Chris originally implemented the color picker is that 99% of this is totally transparent to the application developer. When the application interacts with the color picker, all it needs to be concerned about is the currently selected color. This color is a standard and can be easily set using the RGB (red, green, blue) macro. When an application needs to set the color picker to a specific value, just pass the value into the method. When it needs to retrieve the current color, just invoke the method. COLORREF
COLORREF
SetColor
GetColor
Well, except for handling the default color.
Working With the Default Color
The default color is handled using a special value of . When this value is passed to the method, the color button recognizes it as a specialized value. When the actual picker is displayed, the default selection will be highlighted. However, when the default color is set, the color button must know what color to display in the button. This color can be set by using the method. If this value isn't set, then the color button will display the default color for application workspace backgrounds.COLORREF
CLR_DEFAULT
SetColor
SetDefaultColor
When the user selects the default color in the color picker, the method will return . This allows the application to tell the difference between the default color being selected and a color from the palette being selected that matches in GetColor
CLR_DEFAULT
RGBvalue to the actual default color.
Working With the Custom Colors
Custom colors are totally transparent to the application developer. No special programming is needed.
The CColorButton public member functions
// Return the currently selected color COLORREF GetColor (void) const; // Set the current color void SetColor (COLORREF clrCurrent); // Get the default color COLORREF GetDefaultColor (void) const; // Set the default color. This value should be a real color value // and not CLR_DEFAULT. void SetDefaultColor (COLORREF clrDefault); // Set the custom text. Specify _T ("") to disable the custom // text button. void SetCustomText (LPCTSTR pszText); // Set the custom text via a resource string. Specify a 0 to // disable the custom text button. void SetCustomText (UINT nID); // Set the default text. Specify _T ("") to disable the default // text button. void SetDefaultText (LPCTSTR pszText); // Set the default text via a resource string. Specify a 0 to // disable the default text buttom. void SetDefaultText (UINT nID); // Get the tracking flag BOOL GetTrackSelection (void) const; // Set the tracking flag. When enabled, the application will be // sent color change notifications as the user tracks around the // picker. void SetTrackSelection (BOOL fTrack); // Set both strings from a resource void SetText (UINT nDefault, UINT nCustom); // Do we have custom text BOOL HasCustomText () const; // Do we have default text BOOL HasDefaultText () const;
Handling Notifications
Notifications are sent using the standard WM_NOTIFY message.
#define CPN_SELCHANGE 0x8000 /* Colour Picker Selection change */ #define CPN_DROPDOWN 0x8001 /* Colour Picker drop down */ #define CPN_CLOSEUP 0x8002 /* Colour Picker close up */ #define CPN_SELENDOK 0x8003 /* Colour Picker end OK */ #define CPN_SELENDCANCEL 0x8004 /* Colour Picker end (cancelled) */ struct NMCOLORBUTTON { NMHDR hdr; BOOL fColorValid; COLORREF clr; };
CPN_SELCHANGE
is sent to the parent window after the user changes the current selection. It is also sent as the user tracks over different buttons in the picker window. If the user cancels the picker while tracking, will be sent to the parent window when the color is restored back to the selected color prior to the picker being displayed. When is sent as part of tracking, the element of the notification structure is set to true if the user is tracking over a valid color selection. When false, the user has moved the mouse outside of the picker window.CPN_SELCHANGE
CPN_SELCHANGE
fColorValid
CPN_DROPDOWN
is sent to the parent window prior to the picker window being displayed.
CPN_CLOSEUP
is sent to the parent window after the picker window has been closed.
CPN_SELENDOK
is sent to the parent window after the picker window has been closed with a valid selection and not canceled.
CPN_SELENDCANCEL
is sent to the parent window after the picker window has been closed but canceled by the user.
License
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
标签:Picker,picker,Color,text,window,color,default,XP From: https://www.cnblogs.com/qzxff/p/16978542.html