Click here to Skip to main content
15,886,963 members
Articles / Desktop Programming / MFC
Article

Office XP Style, a new one

Rate me:
Please Sign up or sign in to vote.
3.39/5 (22 votes)
10 May 20043 min read 238.5K   8.5K   72   80
A new Office XP style, borders, grippers, buttons, etc.

Image 1

History

Screen Shots

Image 2

Three built-in styles available: Classic, Office XP, and Office 2003

Image 3

The Customize Dialog, and a balloon when is showed

Image 4

Three menu animations: Fade, Slide, Unfold

Image 5

The "About Library" dialog, if you see your name here, then some code of you helped to do this library :)

Image 6

Very simple for now, this is the "Advanced Settings" dialog, I've removed some features and left only these two, this will change, I promise ;)

Image 7

Full Windows Skin (Experimental), see the titlebars, buttons, and this little dialog, from here you can chose your skin :), remember the old whistler? :P

Version 1.0 Alpha - Not Available for download

News:

  • Introducing Fake Menus with Office XP Style

  • Introducing Menus Shadows

Version 1.1 Alpha - Not Available for Download

News:

  • Converted to library
  • Introducing Windows Classic Style
  • Added Icons to menus
  • Introducing Customize Dialog, similar to Office
  • Added combo box to the toolbar

Fixes:

  • Fixed: When undocking toolbars it can't be docked again
  • Fixed: Shadows remaining when menu is closed
  • Fixed: Menus showing outside the desktop

Library Version

Version 1.15 Beta 1 - Preview Available

News:

  • Introducing Office 2003 style
  • Introducing Advanced Settings dialog
  • Added "Show content while dragging" option
  • Added Menus animations: Fade, Slide, Unfold
  • Introducing Full Windows Skins (Borders, Titlebar, etc)
  • Introducing Buttons Skins (currently disabled by default)
  • Added "BallonHelp" class to emulate balloon messages

Fixes:

  • Fixed: When moving the toolbar remains a part of it in the old position
  • Fixed: Office XP style looks more like the original one
  • Fixed: Changing between styles was not working

Library Beta

Oh god, my school was killing me, finally I found some time to update mi article, and show the new stuff, unfortunately my demo is too big to upload it to this site, I'll make it smaller, and since this is now a library I think I'll need a name for this, I've named Advanced User Interface, but I think It could be a better name, because I'm trying to make this a skin library, so I accept suggestions.

Soon I'll upload the demo and some screenshots.

Introduction

I was watching some articles here, like Office XP look & feel controls. Well I read a lot, but only this called my attention, and I decided to make a ToolBar, a StatusBar and a Menubar with the Office XP Style. I checked all the articles and then I based my toolbar on the one of Jean-Michel, it's very similar, well this is 'coz I'm a beginner and I need a base class to make my own one. There are some things that differ from the version of Jean-Michel, like the background icons, the borders, and the grippers. Really I can say that this class is an enhanced version of the Jean one, it uses the same controls (I used 'cos is based on Jean's version). I've included the CMenuXP class of Jean, just to make a full XP style, and some more options are copied from other articles. Thanks to their authors.

Implementation

To use this you just have to include the required file for the class.. To use the CXPMenuBar class, you have to include the file menubar.h and specify a creation option (just like a toolbar, see the demo). To use the CXPToolBar class, you have to include the xptoolbar.h and replace the CToolBar m_wndToolBar declaration in your files by CXPToolBar m_wndToolBar. The status bar is very simple you just have to include the cxpstatusbar.h and replace the

CStatusBar 
m_wndStatusBar
declaration in your files by
CCXPStatusBar 
m_wndStatusBar
.

Credit

Thanks to Jean-Michel LE FOL for his toolbar code and the authors of the respective code.

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


Written By
Mexico Mexico
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMenu Item not XP like Pin
jung-kreidler7-Oct-03 0:28
jung-kreidler7-Oct-03 0:28 
QuestionNew Version? Pin
jgutierrezortega18-Jul-03 2:39
jgutierrezortega18-Jul-03 2:39 
AnswerRe: New Version? Pin
MaTrIX2k218-Jul-03 10:56
MaTrIX2k218-Jul-03 10:56 
Generalvery good! Pin
ciaran1636-Jul-03 15:42
ciaran1636-Jul-03 15:42 
GeneralWindows95 workaround Pin
jgutierrezortega4-Jun-03 7:07
jgutierrezortega4-Jun-03 7:07 
Generalread your email Pin
Haitham Khedre24-May-03 23:21
Haitham Khedre24-May-03 23:21 
GeneralDialog please example Pin
Haitham Khedre22-May-03 6:30
Haitham Khedre22-May-03 6:30 
GeneralRe: Dialog please example Pin
MaTrIX2k222-May-03 8:30
MaTrIX2k222-May-03 8:30 
GeneralDropdown Button Pin
jgutierrezortega10-Apr-03 0:35
jgutierrezortega10-Apr-03 0:35 
GeneralRe: Dropdown Button Pin
MaTrIX2k210-Apr-03 7:42
MaTrIX2k210-Apr-03 7:42 
GeneralOffice 2003 style toolbar Pin
schaereran@gmx.net6-Apr-03 21:22
schaereran@gmx.net6-Apr-03 21:22 
GeneralRe: Office 2003 style toolbar Pin
MaTrIX2k27-Apr-03 15:37
MaTrIX2k27-Apr-03 15:37 
GeneralRe: Office 2003 style toolbar Pin
schaereran@gmx.net7-Apr-03 22:57
schaereran@gmx.net7-Apr-03 22:57 
GeneralMenu not fully XP style ? - read Pin
darthmaul17-Feb-03 3:18
darthmaul17-Feb-03 3:18 
GeneralRe: Menu not fully XP style ? - read Pin
MaTrIX2k217-Feb-03 15:10
MaTrIX2k217-Feb-03 15:10 
GeneralRe: Menu not fully XP style ? - read Pin
darthmaul17-Feb-03 22:59
darthmaul17-Feb-03 22:59 
GeneralRe: Menu not fully XP style ? - read Pin
MaTrIX2k218-Feb-03 15:22
MaTrIX2k218-Feb-03 15:22 
GeneralRe: Menu not fully XP style ? - read Pin
benben17-Mar-03 19:20
benben17-Mar-03 19:20 
GeneralRe: Menu not fully XP style ? - read Pin
MaTrIX2k217-Mar-03 19:23
MaTrIX2k217-Mar-03 19:23 
GeneralRe: Menu not fully XP style ? - read Pin
benben19-Mar-03 1:02
benben19-Mar-03 1:02 
GeneralRe: Menu not fully XP style ? - read Pin
MaTrIX2k219-Mar-03 15:15
MaTrIX2k219-Mar-03 15:15 
GeneralRe: Adding a drop arrow to a toolbar button - 256 color screen mode Pin
MaTrIX2k227-Dec-02 9:49
MaTrIX2k227-Dec-02 9:49 
Generaltoolbar frame color Pin
xuell0025-Dec-02 18:41
xuell0025-Dec-02 18:41 
GeneralRe: toolbar frame color Pin
MaTrIX2k226-Dec-02 7:29
MaTrIX2k226-Dec-02 7:29 
Generalwell done Pin
xuell009-Dec-02 3:57
xuell009-Dec-02 3:57 

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.