CSplitterWnd
CFrameWnd can have only one window frame. CSplitterWnd class can be used in CFrameWnd to create splitter views in main frame window.
CSplitterWnd::Create
To create a dynamic splitter window, call the Create member function.
virtual BOOL Create( CWnd* pParentWnd, int nMaxRows, int nMaxCols, SIZE sizeMin, CCreateContext* pContext, DWORD dwStyle = WS_CHILD | WS_VISIBLE | WS_HSCROLL | WS_VSCROLL | SPLS_DYNAMIC_SPLIT, UINT nID = AFX_IDW_PANE_FIRST);
CSplitterWnd::CreateStatic
To create a static splitter window, call the CreateStatic member function.
virtual BOOL CreateStatic( CWnd* pParentWnd, int nRows, int nCols, DWORD dwStyle = WS_CHILD | WS_VISIBLE, UINT nID = AFX_IDW_PANE_FIRST);
CSplitterWnd::CreateView
Creates the panes for a static splitter window.virtual BOOL CreateView( int row, int col, CRuntimeClass* pViewClass, SIZE sizeInit, CCreateContext* pContext);
CSplitterWnd::SetRowInfo
Call to set the specified row information.void SetRowInfo( int row, int cyIdeal, int cyMin);
CSplitterWnd::SetColumnInfo
Call to set the specified column information.void SetColumnInfo( int col, int cxIdeal, int cxMin);
CSplitterWnd::RecalcLayout
Call to redisplay the splitter window after adjusting row or column size.virtual void RecalcLayout();
CSplitterWnd demo
This source code only shows CSplitterWnd part of CMainFrame source file. Rest of the code can be taken from our SDI doc/view demo code.
CSplitterWnd output
About our authors: Team EQA
Further readings
Where is WinMain() function in MFC application ?
MFC hides WinMain in its framework and includes source file on WinMain(). This explains how framework calls global CWinApp::Initinstance() from entry WinMain.
What is the utility of CWinApp class?
This is constructed during global C++ objects are constructed and is already available when Windows calls the WinMain function, which is supplied by the ...
Basic steps in Win32 GUI Application with source code.
Define a custom Window class structure, Register the class name, CreateWindow, Show windows and write message get and dispatch loop statements. Define the Window CallBack procedure and write the handlers.
What is a Window CallBack procedure and what is its utility?
DispatchMessage() is a API which indirectly triggers the Window CallBack procedure. Message structure members from this function are passed to the CallBack procedure. CallBack procedure should implement event handlers depending on the need of the application.
What are LPARAM and WPARAM in window proc function?
LPARAM and WPARAM are the two parameters in Window CallBack procedure. They signifies parameters of various events. They are used in handing individual events.
What are the basic steps of a typical MFC based application?
We need to write WinMain and need to follow all these in a Win32 application. However we need not to write much if we are writing an application with MFC ...