Click here to Skip to main content
15,890,512 members
Articles / Desktop Programming / MFC
Article

Office XP look & feel controls

Rate me:
Please Sign up or sign in to vote.
4.77/5 (15 votes)
22 Jan 2002CPOL1 min read 281.5K   4.9K   60   65
Some controls (toolbar, button, combobox, ...) with the Office XP look and feel.

Sample Image

Introduction

Yet another owner drawn toolbar. This one has the Office XP look & feel. Have a look to the source code (ToolbarXP.h and ToolbarXP.cpp) for more details. Some parts of code are copied from other articles. Thanks to their authors!

How to use the CToolBarXP class

Include the ToolbarXP.h file and just replace the CToolBar m_wndToolBar declaration in your files by CToolBarXP m_wndToolBar. That's all ! (see the demo)

Other classes

CButtonXP, CListBoxXP, CComboBoxXP: Flat controls with "mouseover" and "mouseout" effects.
CStatusBarXP: Flat statusbar.
CPopup: Allow any control to be popped over frame (as shown in the image).
CWindowsManagerDlg: MDI child window manager.

CBufferDC: An easy-to-use class to simplify the bufferized drawing.

Example: Replace in your code:

void CToolBarXP::OnPaint ()
{
    CPaintDC cDC (this);

    cDC.FillSolidRect (CRect(10,10,100,100), 255);
    cDC.MoveTo (10, 10);
    cDC.LineTO (100, 100);
    // Etc...
}
by:
void CToolBarXP::OnPaint ()
{
    CPaintDC cpDC (this); // Modified line
    CBufferDC cDC (cpDC); // Added line

    cDC.FillSolidRect (CRect(10,10,100,100), 255);
    cDC.MoveTo (10, 10);
    cDC.LineTO (100, 100);
    // Etc...
}
And it works too with any HDC (see the CButtonXP::DrawItem method for another exemple).
The only constraint: you have to do all drawing with the same CBufferDC instance. You cannot have a first part in the OnEraseBkgnd and another one in the OnPaint.

CPenDC and CBrushDC: Simplify the use of local CPen and CBrush objects.

Without those classes:

// ...
CPen pen (PS_SOLID, 1, RGB(0,0,255));
CBrush brush (RGB(0,255,0));
CPen* pOldPen = cDC.SelectObject (&pen);
CBrush* pOldBrush = cDC.SelectObject (&brush);
cDC.Rectangle (10,10,100,100);
cDC.SelectObject (pOldPen);
cDC.SelectObject (pOldBrush);
// ...
With them:
// ...
CPenDC pen (cDC, RGB(0,0,255));
CBrushDC brush (cDC, RGB(0,255,0));
cDC.Rectangle (10,10,100,100);
// ...

CClientRect and CWindowRect: Encapsulate GetClientRect and GetWindowRect calls.

Without:

// ...
CRect rcClient;
GetClientRect (rcClient);
cDC.FillSolidRect (rcClient, 255);
// ...
With:
// ...
cDC.FillSolidRect (CClientRect (this), 255);
// ...

CWindowText: Encapsulate GetWindowText calls.

Without:

// ...
CString sText;
GetWindowText (sText);
CDC.DrawText (sText, rc, DT_SINGLELINE|DT_CENTER|DT_VCENTER);
// ...
With:
// ...
cDC.DrawText (CWindowText (this), rc, DT_SINGLELINE|DT_CENTER|DT_VCENTER);
// ...

Credit

Thanks to Christian Rodemeyer for his RGB<->HLS conversion methods from the article CColor - RGB and HLS combined in one class.

License

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


Written By
Web Developer CSC
France France
Jean-Michel LE FOL is a GraphTalk product architect.
GraphTalk is a set of products which cover the whole scope of the development process. GraphTalk is used by the main insurance compagnies over the world.
The development team is currently based in France near Paris.

Comments and Discussions

 
GeneralAn error with toolbar Pin
Netvisdom3-Aug-02 12:40
Netvisdom3-Aug-02 12:40 
GeneralRe: An error with toolbar Pin
ahmoy14-Feb-04 7:42
ahmoy14-Feb-04 7:42 
GeneralRe: An error with toolbar Pin
ahmoy16-Feb-04 14:39
ahmoy16-Feb-04 14:39 
GeneralJean-Michel, lire svp. Pin
8-Jul-02 22:21
suss8-Jul-02 22:21 
GeneralRe: Jean-Michel, lire svp. Pin
AlexMarbus3-Aug-02 10:57
AlexMarbus3-Aug-02 10:57 
GeneralRe: Jean-Michel, lire svp. Pin
Anonymous10-Nov-02 5:31
Anonymous10-Nov-02 5:31 
GeneralWindows API programming Pin
18-Jun-02 9:53
suss18-Jun-02 9:53 
GeneralRe: Windows API programming Pin
Dimitris Vasiliadis4-Jul-03 7:03
Dimitris Vasiliadis4-Jul-03 7:03 
GeneralText on ToolBar Buttons Pin
jmgurgel31-May-02 7:39
jmgurgel31-May-02 7:39 
GeneralEdit control Pin
RED13-May-02 10:42
RED13-May-02 10:42 
GeneralRe: Edit control Pin
xr1st0s27-Jan-03 13:24
xr1st0s27-Jan-03 13:24 
GeneralRe: Edit control Pin
a1ring30-Jun-03 3:22
a1ring30-Jun-03 3:22 
QuestionButton Text? Pin
4-May-02 16:36
suss4-May-02 16:36 
Generala problem Pin
23-Apr-02 2:47
suss23-Apr-02 2:47 
GeneralSolution Pin
Jean-Michel LE FOL29-Apr-02 1:16
Jean-Michel LE FOL29-Apr-02 1:16 
GeneralText Labels On Right Pin
7-Apr-02 11:52
suss7-Apr-02 11:52 
GeneralRe: Text Labels On Right Pin
jmgurgel31-May-02 7:42
jmgurgel31-May-02 7:42 
GeneralBase Class Pin
jmgurgel23-Mar-02 6:31
jmgurgel23-Mar-02 6:31 
QuestionShading? Pin
Miguel Lopes20-Mar-02 0:03
Miguel Lopes20-Mar-02 0:03 
GeneralGreat Code, I like it ... Pin
Massimo Germi6-Mar-02 9:14
Massimo Germi6-Mar-02 9:14 
GeneralGood job, but ... Pin
5-Mar-02 9:22
suss5-Mar-02 9:22 
GeneralNew problem Pin
MaTrIX2k27-Feb-02 6:36
MaTrIX2k27-Feb-02 6:36 
GeneralRe: New problem Pin
Jean-Michel LE FOL7-Feb-02 11:04
Jean-Michel LE FOL7-Feb-02 11:04 
GeneralGoof but... Pin
MaTrIX2k26-Feb-02 20:02
MaTrIX2k26-Feb-02 20:02 
GeneralRe: Goof but... Pin
Jean-Michel LE FOL6-Feb-02 22:24
Jean-Michel LE FOL6-Feb-02 22:24 

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.