Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Reusable base class for SplitterWnd

0.00/5 (No votes)
2 Sep 2001 4  
A class derived from CSplitterWnd which makes splitting and switching of views simple.

Introduction

Have you ever spent time trying to get the splitting windows right, then added a method of switching views and even worse, tried to make the individual splitters to expand over the whole window? And then you want to make the whole damn (sorry) thing persistent for the next time you start the program? Well I did, and every time I had to look up in old code and every time I made errors and every time it took me a long time to get it to work the way I had it planned.

Well, I now sat down and solved it - once for all. By writing a reusable base class. Of course, I had a little help from many useful articles posted by this and other sites. The methods ShowColumn and HideColumn are taken from an article posted by Oleg Galkin on www.codeguru.com, the articles by Caroline Englebienne, Adrian Roman and Dongik Shin helped me writing the methods to support switchable views.

And now I'm ready to share once more. You may use this class for your own projects as you like, but it is AS IS, use at your own risk, I cannot be held responsible for any damage...blah blah blah ...

To use this base class is simple, however there are a few things you need to consider, else you will get one of the many asserts from within the CSplitterWnd.

This class uses only static splitters and will only split each window once, either vertically or horizontally. Once the window is split, you can split one ore both panes again and again and... Have a look at the screen shot above. I simple split the first window into two panes, a left and right one. Then I split the left pane again, this time into a top and bottom pane. The bottom pane is now split again vertically and so on.

To do this, you need to include the source files ST_splitterwnd.h and ST_splitterwnd.cpp into your project.

Then add a ST_SplitterWnd member for each split to your CMainFrame:

    ST_SplitterWnd* m_pSplitterWnd;
    ST_SplitterWnd* m_pSplitterWnd2;
    ST_SplitterWnd* m_pSplitterWnd3;
    ST_SplitterWnd* m_pSplitterWnd4;

In CMainFrame::OnCreateClient, you need to create the first ST_SplitterWnd:

    m_pSplitterWnd = new ST_SplitterWnd();
    m_pSplitterWnd->Create(this,NULL,NULL,pContext,true);

The Create method is defined as follows:

    bool Create(CWnd* pParentWnd, // this will do

      CRuntimeClass* pView1, // Add the view for 

                             // the left(or top) pane or NULL

      CRuntimeClass* pView2, // Add the view for

                             // the right(or bottom) pane or NULL

      CCreateContext* pContext, // pass the pContext pointer

                                // from the OnCreateClient

      bool bVertical, // set to true if the window

                      // is split vertically else false

      int nID = AFX_IDW_PANE_FIRST); // this parameter

                                     // does not need redefinition

{

Note: If you want to split a window into further subdivisions, pass NULL to the pView1 and/or pView2 parameter. If you fail to do this, the application will assert.

The view1 and view2 is used to pass the view class to the SplitterWnd, just like it is done with the 'normal' CSplitterWnd. It has to be passed using the macro RUNTIME_CLASS, e.g.:

RUNTIME_CLASS(CSplitterWndTestView3)

Use the method AddSubDivision to apply a further split:

   m_pSplitterWnd2 = 
     m_pSplitterWnd->AddSubDivision(LEFT_SIDE,
     RUNTIME_CLASS(CSplitterWndTestView3),NULL,pContext,false);

The above sample will split the left pane horizontally and fill the top pane with a view, while leaving the bottom part empty for further splitting by passing NULL. The method AddSubDivision is defined as follows:

    ST_SplitterWnd* AddSubDivision(int nSide, // use LEFT_SIDE, 

                                              // RIGHT_SIDE, TOP_SIDE

                                              // or BOTTOM_SIDE

        CRuntimeClass* pView1, // Add the view for the

                               // left(or top) pane or NULL

        CRuntimeClass* pView2, // Add the view for the

                               // right(or bottom) pane or NULL

        CCreateContext* pContext, // pass the pContext pointer

                                  // from the OnCreateClient

        bool bVertical); // true for a vertical split,

                         // false for a horizontal split

Basically, the parameters are used in the same way as the Create parameters. The first parameter (nSide) is used to describe the pane in which the split has to be added. Four constants (LEFT_SIDE, RIGHT_SIDE, TOP_SIDE and BOTTON_SIDE) are defined for this purpose. The last parameter tells the method to perform a vertical split (true) or a horizontal split (false). The AddSubDivision returns a pointer to a new instance of a ST_SplitterWnd object which can be split again (and again..):

   m_pSplitterWnd3 = m_pSplitterWnd2->AddSubDivision(BOTTOM_SIDE,
                             NULL,
                             RUNTIME_CLASS(CSplitterWndTestView2),
                             pContext,
                             true);   
   m_pSplitterWnd4 = m_pSplitterWnd3->AddSubDivision(LEFT_SIDE,
                             RUNTIME_CLASS(CSplitterWndTestView4),
                             RUNTIME_CLASS(CSplitterWndTestView5),
                             pContext,
                                        false);

An additional feature of this class is the possibility to switch between views within a pane. In order to do this, you use the method AddView. Note: When using AddView, the pane to which the views must be added must not contain a view, with other words, they must be initialized with NULL just like the pane which will be split once more.

    m_nViewNo1 = m_pSplitterWnd->AddView(RIGHT_SIDE,
                         RUNTIME_CLASS(CSplitterWndTestView),
                         pContext);
    m_nViewNo2 = m_pSplitterWnd->AddView(RIGHT_SIDE,
                         RUNTIME_CLASS(CSplitterWndTestView6),
                         pContext);

The method AddView is defined as follows:

        int AddView(int nSide, // use LEFT_SIDE, RIGHT_SIDE,

                              // TOP_SIDE or BOTTOM_SIDE

          CRuntimeClass * pViewClass,  // Add the view for the 

          CCreateContext* pContext);  // pass the pContext pointer

                                     // from the OnCreateClient

Basically that will do the job. There are three more methods of interest: SetInitialStatus, SwitchToView and ToggleSide:

  • SetInitialStatus is used to restore the settings, such as size and position of each pane, from the registry.
  • SwitchToView toggles between multiple views within a pane.
  • ToggleSide hides and displays a pane.

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