Click here to Skip to main content
15,860,859 members
Articles / Desktop Programming / MFC

CSizingControlBar - A Resizable Control Bar

Rate me:
Please Sign up or sign in to vote.
4.96/5 (150 votes)
15 Aug 2000CPOL5 min read 1.8M   18K   355   280
DevStudio-like docking window

Sample Image

Features of CSizingControlBar 2.43

  • Resizable control bar, that can be resized both when docked and when floating
  • Multiple sizing control bars can be docked on the same row/column
  • Full dynamic resizing, both when docked and floating, including diagonal resizing when floating
  • State persistence support (SaveState/LoadState)
  • Gripper with "hide bar" flat button
  • Memory DC flickerless NC painting
  • Sample extension class with focus autosensing text caption. On Win98/Win2k, the caption is painted with gradient
  • No custom resources were used (bitmaps, cursors, strings, etc.), so the integration is easier and you have full control over the resources you eventually use in derived classes
  • Easy to use: use directly one of the CSizingControlBar* classes or derive your own control bar class, then add your child controls

Instructions

Getting Started

  1. Include the following files in your project:
    C++
    sizecbar.h
    sizecbar.cpp
    scbarg.h
    scbarg.cpp
  2. Add these lines to your stdafx.h (if the files are in a different directory, include the path - see the stdafx.h file in the samples):
    C++
    #include "sizecbar.h"
    #include "scbarg.h"
  3. Derive a class from CSizingControlBarG (you have an example in mybar.* files).
  4. In mainfrm.h, include your class' header:
    C++
    #include "mybar.h"

    then add a member variable to CMainFrame:

    C++
    CMyBar m_wndMyBar;
  5. Create the bar in CMainFrame::OnCreate(). Then set bar styles, enable it to dock... like any control bar.
    C++
    if (!m_wndMyBar.Create(_T("My Bar"), this, 123)
    {
        TRACE0("Failed to create mybar\n");
        return -1;
        // fail to create
    }
    m_wndMyBar.SetBarStyle(m_wndMyBar.GetBarStyle() |
        CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
    
    m_wndMyBar.EnableDocking(CBRS_ALIGN_ANY);
    
    EnableDocking(CBRS_ALIGN_ANY);
    
    DockControlBar(&m_wndMyBar, AFX_IDW_DOCKBAR_LEFT);

Advanced Example

The instructions above will make a docking bar with a DevStudio-like gripper (with 2 raised lines and a hide button) when docked, and with no gripper when floating.

Let's explore some advanced features. Now we will use the CSizingControlBarCF class as a base class, and will hide the miniframe caption, showing the gripper in the floating state too. That's possible, because CSizingControlBarCF's gripper looks like a small caption. As a side effect of using a custom miniframe class, the resizing of the floating bar will be dynamic if "Show window contents while dragging" display property is enabled.

  1. Add these files to your project too:
    C++
    scbarcf.h
    scbarcf.cpp
  2. Change the stdafx.h file to look like this:
    C++
    #define _SCB_REPLACE_MINIFRAME
    #include "sizecbar.h"
    #include "scbarg.h"
    #include "scbarcf.h"
    #define baseCMyBar CSizingControlBarCF
  3. Add these lines in CMainFrame::OnCreate(), after the EnableDocking() call:
    C++
    #ifdef _SCB_REPLACE_MINIFRAME
        m_pFloatingFrameClass = RUNTIME_CLASS(CSCBMiniDockFrameWnd);
    #endif //_SCB_REPLACE_MINIFRAME

Remarks

These classes are intended to be used as base classes. Do not simply add your code to the files - instead, create a new class derived from CSizingControlBarG or CSizingControlBarCF and put there what you need. If you want to customize your gripper, or simply don't want a gripper, you can use CSizingControlBar as a base class.

Window IDs: The usage of IDs in the range of AFX_IDW_CONTROLBAR_FIRST + 32 .. AFX_IDW_CONTROLBAR_LAST is required only if the bar will not be enabled for docking (that's is - it will stay fixed right under the frame's menu). But in this situation, you won't be able to fully use the features of this class, so if you will enable it to dock (a reasonable guess :) then you can use any valid window ID.
Another place where the IDs are important is the saving/loading of the bar's state. You must use different IDs for each control bar that is enabled to dock, and this includes the other bars too. For example, if you have two toolbars, you can create the first one with the default ID (which is AFX_IDW_TOOLBAR = AFX_IDW_CONTROLBAR_FIRST), but the second one must have a different ID.

OnUpdateCmdUI: This member function is pure virtual in CControlBar (the base class of CSizingControlBar). Its purpose is to allow updating of controls at idle time (from here CCmdUI::DoUpdate() is called for the toolbars buttons, controls on dialog bars, panes of status bar, etc.).
However, I found it very useful to update the look of the "x" flat button in CSizingControlBarG and the color of the caption in CSizingControlBarCF (no timers needed). So, if you will use this function, don't forget to call the base class' member (see mybar.cpp).

Dynamic resizing: This feature allows redrawing of the bar during resizing. Also all the bars are repositioned and redrawn if necessary.
The SPI_GETDRAGFULLWINDOWS system parameter is queried for this (it is enabled by the "Show window contents while dragging" checkbox in Display Properties).

CBRS_SIZE_DYNAMIC: This bar style is required. Make sure you add it to the bar, otherwise the application will crash when the user floats a bar. You can add it using SetBarStyle() after Create(), or by changing the default style for Create() to something like: WS_VISIBLE|WS_CHILD|CBRS_TOP|CBRS_SIZE_DYNAMIC.

State persistence: The common MFC control bars' docking state is saved using CMainFrame::SaveBarState(). In addition to the information saved by this function, the CSizingControlBar class needs to save 3 sizes. This is done in CSizingControlBar::SaveState() function, so a m_wndMyBar.SaveState() call is required. Please note that the state storing code must be placed in CMainFrame's OnClose() or DestroyWindow(), not in OnDestroy(), because at the time the WM_DESTROY message is received, the floating bars are already destroyed.
In CMainFrame::OnCreate(), the m_wndMyBar.LoadState() call must be placed before LoadBarState().
Alternatively, if you have more than one resizable bars, you can call once the static member SizingControlBar::GlobalSaveState() instead of calling each bar's SaveState(). The same for LoadState() - there is a CSizingControlBar::GlobalLoadState() function. See both samples here for more details.

Precompiler flags: There are 2 symbols which can be defined to cause the floating bars to have different appearance and functionality:

  1. _SCB_REPLACE_MINIFRAME can be used to plug in CSCBMiniDockFrameWnd, which is a custom miniframe class. The main gain of using this class is that the floating bars can be resized dynamically, like all other windows. The other advantage is that the miniframe caption can be turned off, allowing the bar to display its own gripper, for increased functionality and/or custom designs.
    If you use this flag, you have to change the m_pFloatingFrameClass member of the main frame (see the advanced example above).
  2. _SCB_MINIFRAME_CAPTION can be defined only if the previous flag is also defined. It causes the custom miniframe to keep the tool window caption.
    Both CSizingControlBarG and CSizingControlBarCF classes do not display a gripper when floating if this flag is set.

See also www.datamekanix.com for class reference, a full changelog, FAQ, a dedicated message board and more.

License

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


Written By
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

 
AnswerRe: Resizing docked bars Pin
sankyuu398-Sep-05 15:13
sankyuu398-Sep-05 15:13 
GeneralafxChNil Pin
java305bis9-Aug-05 4:07
java305bis9-Aug-05 4:07 
GeneralRe: afxChNil Pin
Anonymous18-Aug-05 5:58
Anonymous18-Aug-05 5:58 
GeneralRe: afxChNil Pin
Terence Russell26-Aug-05 7:55
Terence Russell26-Aug-05 7:55 
GeneralRe: afxChNil Pin
ijcullen9-Aug-06 19:59
professionalijcullen9-Aug-06 19:59 
GeneralRe: afxChNil Pin
yaodebo25-Nov-07 21:45
yaodebo25-Nov-07 21:45 
GeneralRe: afxChNil Pin
yaodebo25-Nov-07 21:45
yaodebo25-Nov-07 21:45 
Generalsave setting to .ini instead of registry Pin
Abu Mami28-Jul-05 18:24
Abu Mami28-Jul-05 18:24 
This is sort of a general question and not just for this project... I would like to force the settings to be saved in an .ini file instead of the registry (under Win 2k/xp). Is there an easy way to do this?

Thanks.
QuestionHow to resize the main frame with the bars. Pin
pfkhkwon21-Jul-05 0:47
pfkhkwon21-Jul-05 0:47 
QuestionHow disable mainframe separators ??? Pin
Relyer4-Jul-05 6:23
Relyer4-Jul-05 6:23 
GeneralI meet a samll problem when using MDI. Pin
Mick20082-Jul-05 19:51
Mick20082-Jul-05 19:51 
GeneralRe: I meet a samll problem when using MDI. Pin
Mick20082-Jul-05 20:08
Mick20082-Jul-05 20:08 
QuestionHow i Can write in this Docking bar Pin
kokabgujjar1-Jun-05 0:00
kokabgujjar1-Jun-05 0:00 
GeneralGetting rid of the view... Pin
bedei22-Apr-05 11:31
bedei22-Apr-05 11:31 
GeneralTypo Mistake! Pin
Priyank Bolia21-Mar-05 20:09
Priyank Bolia21-Mar-05 20:09 
QuestionHow can I set the Size of the Bar Pin
Schniddel13-Dec-04 0:55
Schniddel13-Dec-04 0:55 
AnswerRe: How can I set the Size of the Bar Pin
Priyank Bolia21-Mar-05 19:36
Priyank Bolia21-Mar-05 19:36 
AnswerRe: How can I set the Size of the Bar Pin
lpen28-Feb-06 16:44
lpen28-Feb-06 16:44 
QuestionHow to get a dialog (CDialog) in this dockable toolbar? Pin
T.T.H.21-Oct-04 23:32
T.T.H.21-Oct-04 23:32 
AnswerRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
Gammenon10-Nov-04 0:05
Gammenon10-Nov-04 0:05 
GeneralRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
Ma Yanzhao23-Nov-04 1:02
Ma Yanzhao23-Nov-04 1:02 
GeneralRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
Gammenon23-Nov-04 2:19
Gammenon23-Nov-04 2:19 
GeneralRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
yuen_wc23-Nov-04 4:06
yuen_wc23-Nov-04 4:06 
GeneralRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
Gammenon23-Nov-04 21:31
Gammenon23-Nov-04 21:31 
GeneralRe: How to get a dialog (CDialog) in this dockable toolbar? Pin
Ma Yanzhao23-Nov-04 22:17
Ma Yanzhao23-Nov-04 22:17 

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.