Overview
This article implements TabedReBar
control similar to CReBar
which displays bars via Tab control. The main propose of the TabedReBar
control is reducing space of the MainFrame window by collecting several bars in one TabedReBar
. Each bar (ToolBar, StatusBar, DialogBar etc.) added in TabedReBar
is separated by a Tab.
Class CBHTabedReBar
The CBHTabedReBar
is derived from CControlBar
and contains the following methods and data members:
Methods
void DrawGripper(CDC* pDC);
BOOL AddBar(CControlBar*pBar,LPCTSTR pszText = NULL);
CTabCtrl& GetTabCtrl() const;
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnTabSelChange(NMHDR* pNMHDR, LRESULT* pResult) ;
afx_msg void OnWindowPosChanged(WINDOWPOS* lpwndpos);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
virtual BOOL Create( CWnd* pParentWnd,
DWORD dwStyle = WS_CHILD | WS_VISIBLE | CBRS_TOP,
UINT nID = AFX_IDW_TABED_REBAR);
virtual CSize CalcFixedLayout( BOOL bStretch, BOOL bHorz );
virtual void DoPaint(CDC* pDC);
Members
int m_nToobBarHeight;
int m_nActiveTab;
CRect m_rectClient;
CList <TCB_ITEM *,TCB_ITEM *> m_Bars;
CTabCtrl m_tabctrl;
Implementation
CBHTabedReBar
class supports docking (top, bottom from now) and floating features. Define CBHTabedReBar
class object on the same way as you define CReBar
.
In MainFrm.h, declare variable CBHTabedReBar
:
CBHTabedReBar m_wndTabedReBar;
In MainFrm.cpp, in OnCreate
message member after creation of ToolBars, DialogBar etc., add code similar to this:
int CMainFrame:: OnCreate(LPCREATESTRUCT lpCreateStruct)
{
m_wndTabedReBar.Create(this);
m_wndTabedReBar.SetWindowText("Tabed ReBar");
m_wndTabedReBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
m_wndTabedReBar.AddBar(&m_wndToolBar1,"Standard Toolbar");
m_wndTabedReBar.AddBar(&m_wndExplererToolBar,"Explorer Toolbar");
m_images.Create(IDB_TABIMAGES, 16, 1, RGB(255,0,255));
m_wndTabedReBar.GetTabCtrl().SetImageList(&m_images);
}
Update History
- 1.0.0.109 June 5. 2004, First release version.