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

Sizing TabControlBar

Rate me:
Please Sign up or sign in to vote.
3.65/5 (23 votes)
7 Feb 2000 346.3K   4.6K   92   77
Creates a dockable and resizable control bar.
  • Download demo project - 46 Kb
  • Sample Image - Sizing_Tabctl.jpg

    This article extends the article CSizingControlBar - a resizable control bar by Cristi Posea.
    Webmaster's note: the CSizingControlBar class used in this code is an earlier version; follow the link above for the latest one.

    Features

    The Control bar like in DevStudio, which has TabControls with different Views (like TreeViews) and it can be docked and resized.

    Instructions

    Add the following class to your project:

    • CSizingControlBar
    • CSizingTabCtrlBar

    Add a member variable to CMainFrame (in mainfrm.h):

    CSizingTabCtrlBar m_wndSTCBar;

    Create the bar in CMainFrame::OnCreate(). Then set bar styles, enable it to dock... like any control bar. Be sure to add IDW_PROP_BAR to the "resource.h" and to add the bitmap IDB_TABIMAGES Image 2 to your resources.

    // SizingControlBar
    m_wndSTCBar.Create(this, CSize(200, 1), IDW_PROP_BAR);
    m_wndSTCBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
    	CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
    m_wndSTCBar.EnableDocking(CBRS_ALIGN_ANY);
    DockControlBar(&m_wndSTCBar, AFX_IDW_DOCKBAR_LEFT);
    
    m_wndSTCBar.AddView("Database", RUNTIME_CLASS(CClassView));
    m_wndSTCBar.AddView("Files", RUNTIME_CLASS(CFileView));

    As you can see, the different views are added by calling

    m_wndSTCBar.AddView("Files", RUNTIME_CLASS(CFileView));

    Thats the only thing you have to do, to add a view!

    Override CMainFrame::RecalcLayout().
    Note: use the base framewnd class member function, ie if you have an SDI application replace CMDIFrameWnd with CFrameWnd below.

    void CMainFrame::RecalcLayout(BOOL bNotify) 
    {
    	CMDIFrameWnd::RecalcLayout(bNotify);
    	CMDIFrameWnd::RecalcLayout(bNotify);
    }

    To call a view from the Mainframe:

    CFileView* pView = (CFileView*)
    	m_wndSTCBar.GetView(RUNTIME_CLASS(CFileView));
    pView->UpdateView();	// or do anything else
    m_wndSTCBar.SetActiveView(RUNTIME_CLASS(CFileView));

    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
    Germany Germany
    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: Not work well in VS.net 2003!! Pin
    lqhwinner3-Jun-04 2:22
    lqhwinner3-Jun-04 2:22 
    GeneralViews update problem solved Pin
    FretBoardKnowledge18-Dec-02 14:15
    FretBoardKnowledge18-Dec-02 14:15 
    GeneralRe: Views update problem solved Pin
    Philip Patrick31-Mar-03 8:15
    professionalPhilip Patrick31-Mar-03 8:15 
    GeneralRe: Views update problem solved Pin
    andyvinc24-Apr-04 4:35
    andyvinc24-Apr-04 4:35 
    Questionhow to merge two floating dialogbar into one floating tabbed dialogbar? Pin
    Yu_Matrix27-Nov-02 20:59
    Yu_Matrix27-Nov-02 20:59 
    Questionhelp, tell me what is IDW_PROP_BAR ?? Pin
    hongky17-Nov-02 19:03
    hongky17-Nov-02 19:03 
    AnswerRe: help, tell me what is IDW_PROP_BAR ?? Pin
    WREY21-Jun-03 13:53
    WREY21-Jun-03 13:53 
    GeneralBugfix: Defect border while enlarging Pin
    Tomer Shalev12-Aug-02 21:06
    Tomer Shalev12-Aug-02 21:06 
    GeneralIt does Not work...Help me.... Pin
    DevPark30-Jul-02 22:39
    DevPark30-Jul-02 22:39 
    GeneralRe: It does Not work...Help me.... Pin
    Jawid18-Sep-02 12:07
    Jawid18-Sep-02 12:07 
    GeneralThank you very much..It works well !! Pin
    DevPark5-Nov-03 18:01
    DevPark5-Nov-03 18:01 
    GeneralRe: It does Not work...Help me.... Pin
    gremyus11-Feb-04 7:57
    gremyus11-Feb-04 7:57 
    GeneralRe: It does Not work...Help me.... Pin
    Member 145415520-Oct-04 18:14
    Member 145415520-Oct-04 18:14 
    Questionwhy onec i created it ,my listview will not work? Pin
    xsword6-May-02 0:36
    xsword6-May-02 0:36 
    QuestionRedrawing the client area? Pin
    13-Apr-02 6:37
    suss13-Apr-02 6:37 
    AnswerRe: Redrawing the client area? Pin
    16-May-02 6:04
    suss16-May-02 6:04 
    GeneralRe: Redrawing the client area? Pin
    DanPetitt17-Feb-03 10:56
    DanPetitt17-Feb-03 10:56 
    GeneralRe: Redrawing the client area? Pin
    DanPetitt17-Feb-03 11:07
    DanPetitt17-Feb-03 11:07 
    GeneralRe: Redrawing the client area? Pin
    bdodds12-Nov-03 8:28
    bdodds12-Nov-03 8:28 
    GeneralI can't run it. It dumped failed info when creat CSizingControlBar Pin
    Crob28-Feb-02 15:15
    Crob28-Feb-02 15:15 
    GeneralRe: I can't run it. It dumped failed info when creat CSizingControlBar Pin
    6-Mar-02 12:41
    suss6-Mar-02 12:41 
    GeneralSizing Tab Control Bar Pin
    10-Jan-02 22:33
    suss10-Jan-02 22:33 
    GeneralRe: Sizing Tab Control Bar Pin
    22-May-02 7:19
    suss22-May-02 7:19 
    GeneralRe: Sizing Tab Control Bar Pin
    fromdj2-Jul-02 21:50
    fromdj2-Jul-02 21:50 
    GeneralRe: Sizing Tab Control Bar (lost control) Pin
    Jevgenij Pankov24-Jul-02 3:55
    Jevgenij Pankov24-Jul-02 3:55 

    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.