Switching views in splitter panes (SDI) | CodeGuru

Switching views in splitter panes (SDI)

I add here the code that could be used to switch views in splitter panes. I usually make database applications, and I don’t want that the document to be created/destroyed by the framework, so I create the document myself, and in document’s constructor I set the m_bAutoDelete flag to FALSE. The CMainFrame class contains CSplitterWnd […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 11, 1998
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

I add here the code that could be used to switch views in
splitter panes. I usually make database applications, and I don’t
want that the document to be created/destroyed by the framework,
so I create the document myself, and in document’s constructor I
set the m_bAutoDelete flag to FALSE. The CMainFrame class
contains CSplitterWnd m_wndSplitter member.

The CMyApp class contains as public member a pointer to my
document.

In this case I create a view (which happens to be a TreeView)
in the first pane that I don’t switch. In second pane you can
switch as many views as you want. Just add view classes and
create command handlers similar with OnView1, and UpdateUI like
OnUpdateView1. The first view that will be in the second pane
will be the view from the document template.

In InitInstance function of CMyApp you should have something
like this:

CDocTemplate *pAmortDocTemplate = new CSingleDocTemplate(
					 IDR_MAINFRAME,
					 RUNTIME_CLASS(CMyDoc),
					 RUNTIME_CLASS(CMainFrame), // main SDI frame window
					 RUNTIME_CLASS(CView1)); //change the class with the view you want to be displayed as default
//you can extend this so the program saves the active view (not the view J , only information about which one was active), and you can
//restore the last one when the program will start again
AddDocTemplate(pAmortDocTemplate);


void CMainFrame::OnView1()
{
	// TODO: Add your command handler code here
	CRect cr;
	GetClientRect(&cr);
	CSize paneSize1(3*cr.Width()/4, cr.Height());
	CCreateContext Context;
	Context.m_pNewViewClass=RUNTIME_CLASS(CView1);
	Context.m_pCurrentDoc=((CMyApp*)AfxGetApp())->m_pDoc;
	Context.m_pCurrentFrame=this;
	Context.m_pNewDocTemplate=Context.m_pCurrentDoc->GetDocTemplate();
	Context.m_pLastView=(CView*)m_wndSplitter.GetPane(0,0);
	m_wndSplitter.DeleteView(0, 1);
	m_wndSplitter.CreateView(0, 1,RUNTIME_CLASS(CView1),paneSize1, &Context);
	CView1 *pView=(CView1*)m_wndSplitter.GetPane(0,1);
	pView-GetParentFrame()->RecalcLayout();
	m_wndSplitter.RecalcLayout();
	pView->OnInitialUpdate();
	m_wndSplitter.SetActivePane(0,1);
}

//this one is only to gray out the menu item (and/or toolbar button) that corresponds to the active view
void CMainFrame::OnUpdateView1(CCmdUI* pCmdUI)
{
	// TODO: Add your command update UI handler code here
	pCmdUI->Enable(!m_wndSplitter.GetPane(0,1)->IsKindOf( RUNTIME_CLASS(CView1)));
}


BOOL CMainFrame::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName,
				DWORD dwStyle, const RECT& rect,
				CWnd* pParentWnd, UINT nID, CCreateContext* pContext)
{
	// TODO: Add your specialized code here and/or call the base class
	return CWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext);
}


BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
	CRect cr;
	BOOL rc;
	if (!m_wndSplitter.CreateStatic(this,1,2)){
		TRACE0("Failed to create split bar ");
		return FALSE; // failed to create
	}
	GetClientRect(&cr);
	CSize paneSize(cr.Width()/4, cr.Height());
	CSize paneSize1(3*cr.Width()/4, cr.Height());
	((CMyApp*)AfxGetApp())->m_pDoc=(CMyDoc*)(pContext->m_pCurrentDoc);
	pContext->m_pCurrentFrame=this;
	rc=m_wndSplitter.CreateView(0, 1,pContext->m_pNewViewClass,paneSize1, pContext);
	if(!rc)return FALSE;
	pContext->m_pNewViewClass=RUNTIME_CLASS(CMyTree);
	pContext->m_pCurrentDoc=((CMyApp*)AfxGetApp())->m_pDoc;
	pContext->m_pCurrentFrame=this;
	rc=m_wndSplitter.CreateView(0,0,pContext->m_pNewViewClass,paneSize,pContext);
	m_wndSplitter.RecalcLayout();
	m_wndSplitter.SetActivePane(0,1);
	return rc;
}

Download demo project – 43.1 KB

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.