Click here to Skip to main content
15,885,980 members
Articles / Desktop Programming / MFC
Article

Title Bar Replacement Class With Cool Features

Rate me:
Please Sign up or sign in to vote.
4.68/5 (18 votes)
12 Oct 20061 min read 95K   3.2K   62   30
Nice looking title bar for your applications with autohide and ghost-drag capabilities.

Sample Image - TBarDemo.gif

Introduction

This article describes an easy to use, drop-in MFC class which replaces the standard title bar.

Background

While creating an application with the Media Center 2005 look and feel, I noticed the title bar. I decided to recreate it and add it to one of my own ideas. I called it the "Ghost Drag". feature.

Environment

This project was built and tested on Windows 2000 and Windows XP using Visual Studio 6 SP5 and the Microsoft Platform SDK (Feb 2003).

Using the code


The TBar class can be easily added to your window/dialog with a few easy steps.

  1. Add "TBar.h" and "TBAR.cpp" to your project.
  2. Include  "TBar.h" in your main window/dialog class.
  3. Create a member variable of type CTBar.
  4. (Optional) Add caption button images to your project.
  5. In the window initialization, create and setup the new title bar:
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    // ...
    // Remove default menu
    SetMenu(NULL);

    // Create new title bar
    m_TBar.Create(this, ID_TBAR);    

    // Caption images are optional
    m_TBar.SetCloseBtnUpBmp(IDB_CAP_CLOSE_UP);
    m_TBar.SetCloseBtnDownBmp(IDB_CAP_CLOSE_DN); 
    m_TBar.SetMaxBtnUpBmp(IDB_CAP_MAX_UP);
    m_TBar.SetMaxBtnDownBmp(IDB_CAP_MAX_DN);
    m_TBar.SetResBtnUpBmp(IDB_CAP_RES_UP); 
    m_TBar.SetResBtnDownBmp(IDB_CAP_RES_DN);
    m_TBar.SetMinBtnUpBmp(IDB_CAP_MIN_UP);
    m_TBar.SetMinBtnDownBmp(IDB_CAP_MIN_DN);

// ...

History

  • Oct 4th 2006 - Origional article.
  • Oct 6th 2006 - Bugs fixed / features added.
    • Double clicking (maximize/restore) added.
    • Disabled dragging while in maximized state.
    • Added VS2003 solution file (TBarDemo.sln).
  • Oct 11th 2006 - Bugs fixed / features added.
    • Fixed bug regarding pressing one of the buttons and releasing the mouse outside of the window and the flickering problem.
    • Added (by request) the ability to remove the close button.

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
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWindows 10??? Pin
John L. Murphy13-Dec-16 3:04
John L. Murphy13-Dec-16 3:04 
AnswerRe: Windows 10??? Pin
JJMatthews15-Dec-16 21:36
JJMatthews15-Dec-16 21:36 
GeneralRe: Windows 10??? Pin
John L. Murphy17-Dec-16 3:54
John L. Murphy17-Dec-16 3:54 
QuestionMenu with SDI view problem. Pin
kimchi30-Jun-08 19:20
kimchi30-Jun-08 19:20 
QuestionHow to replace title bar in a dialog? Pin
khutchinson18-Jan-08 10:43
khutchinson18-Jan-08 10:43 
QuestionHow to use this in C#? Pin
Ngh5511-Aug-07 17:42
Ngh5511-Aug-07 17:42 
AnswerRe: How to use this in C#? Pin
JJMatthews12-Aug-07 14:37
JJMatthews12-Aug-07 14:37 
AnswerRe: How to use this in C#? Pin
The Cake of Deceit18-Apr-08 6:20
The Cake of Deceit18-Apr-08 6:20 
GeneralRe: How to use this in C#? Pin
JJMatthews21-Apr-08 4:31
JJMatthews21-Apr-08 4:31 
RantRe: How to use this in C#? Pin
The Cake of Deceit2-May-08 9:54
The Cake of Deceit2-May-08 9:54 
GeneralRe: How to use this in C#? Pin
JJMatthews26-Mar-10 7:18
JJMatthews26-Mar-10 7:18 
QuestionOwn Icon in Title Bar [modified] Pin
dressman198122-Mar-07 6:03
dressman198122-Mar-07 6:03 
AnswerRe: Own Icon in Title Bar Pin
JJMatthews12-Aug-07 14:39
JJMatthews12-Aug-07 14:39 
GeneralGhost Dragging bug Pin
Emil - Gabriel7-Dec-06 21:35
Emil - Gabriel7-Dec-06 21:35 
GeneralRe: Ghost Dragging bug Pin
JJMatthews16-Dec-06 4:22
JJMatthews16-Dec-06 4:22 
AnswerUse PrintWindow() for Windows XP and up Pin
forjer17-Jan-07 5:37
forjer17-Jan-07 5:37 
AnswerHope this works ... Pin
Johan Pretorius16-Oct-06 9:42
Johan Pretorius16-Oct-06 9:42 
GeneralSmall problem Pin
Ice_2k13-Oct-06 5:44
Ice_2k13-Oct-06 5:44 
GeneralRe: Small problem Pin
Ice_2k13-Oct-06 6:15
Ice_2k13-Oct-06 6:15 
GeneralGhost dragging costs Pin
owillebo12-Oct-06 0:35
owillebo12-Oct-06 0:35 
GeneralOne more problem Pin
Carterqw11-Oct-06 8:02
Carterqw11-Oct-06 8:02 
GeneralRe: One more problem Pin
JJMatthews11-Oct-06 14:57
JJMatthews11-Oct-06 14:57 
GeneralEnhancement Pin
RLyda11-Oct-06 4:34
RLyda11-Oct-06 4:34 
GeneralRe: Enhancement Pin
JJMatthews11-Oct-06 14:58
JJMatthews11-Oct-06 14:58 
GeneralAnother problem Pin
AndrewSmirnov9-Oct-06 8:30
AndrewSmirnov9-Oct-06 8: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.