How to Save and Restore State of Dockable ToolbarsID: Q141675
|
MFC's CToolBar class makes it easy to create floating toolbars that can dock to your window. Each time you run your application, these toolbars will be re-created in the default locations. This article shows how to override this behavior to save the toolbar positions and docking state and restore them the next time the application is executed.
When you create a SDI or MDI MFC application with the AppWizard, you can
choose the Docking Toolbar option (default is selected). This option
creates a default toolbar that can float and has tooltips. It adds a
CToolBar member m_wndToolBar to the CMainFrame Class. It also adds code to
CMainFrame::OnCreate to create the toolbar and set its attributes.
CFrameWnd has member functions that can save and restore the state of all
control bars. The functions are SaveBarState and LoadBarState. There are
two other helper functions, GetDockState and SetDockState.
To save the state of your control bars, you need to add a handler for
CMainFrame::OnClose():
void CMainFrame::OnClose()
{
SaveBarState( "MyDockState" );
CFrameWnd::OnClose();
}
This saves the docking state in the registry or .ini file under the
MyDockState profile entry.
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
...
//Add this line...
LoadBarState( "MyDockState" );
}
DOCKTOOL sample.
Online help for:
CFrameWnd::LoadBarState,
CFrameWnd::SaveBarState,
CFrameWnd::GetDockState,
CFrameWnd::SetDockState.
Additional query words: 2.00 2.10 2.20 3.00 3.10 3.20 4.00 kbinf
Keywords : kbcode kbMFC KbUIDesign kbVC
Version : 2.00 2.10 2.20 4.00
Platform : NT WINDOWS
Issue type :
Last Reviewed: July 29, 1999