Click here to Skip to main content
15,891,943 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 95.2K   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

 
GeneralRe: Another problem Pin
JJMatthews10-Oct-06 12:42
JJMatthews10-Oct-06 12:42 
GeneralBugs report Pin
toxcct4-Oct-06 22:03
toxcct4-Oct-06 22:03 
GeneralRe: Bugs report Pin
JJMatthews6-Oct-06 12:58
JJMatthews6-Oct-06 12:58 
GeneralRe: Bugs report Pin
dr.justice10-Oct-06 11:19
dr.justice10-Oct-06 11:19 
GeneralRe: Bugs report Pin
JJMatthews10-Oct-06 12:47
JJMatthews10-Oct-06 12:47 

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.