5,666,547 members and growing! (16,178 online)
Email Password   helpLost your password?
Desktop Development » Splitter Windows » General     Intermediate

Simple splitter with CWnd-derived panes

By Robert A. T. Káldy

A splitter window class, which combines the basic CSplitterWnd functionality and professional look with the ability to use CWnd-derived panes.
VC6, C++, Windows, MFC, Visual Studio, VS6, Dev

Posted: 23 Feb 2004
Updated: 18 Apr 2004
Views: 78,102
Bookmarked: 26 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
28 votes for this Article.
Popularity: 6.35 Rating: 4.39 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
3 votes, 10.7%
3
2 votes, 7.1%
4
23 votes, 82.1%
5

Introduction

Yes, it's yet another splitter window class. So why I release a new class, when there are a plenty of similar classes? The answer is simple. All splitter window classes at CodeProject can be IMHO divided into two parts:

  • These derived from original MFC CSplitterWnd. They look nice and give a lot of advantages to classical CSplitterWnd, but deriving from CSplitterWnd restrict you to use only CView-derived windows in it.
  • The others, which I can use in various windows - but when I compiled and tested them, they didn't look as pretty as the CSplitterWnd.

In this article I offer a class, which is not derived from CSplitterWnd. It allows you to use simple CWnd-derived windows. But it's combined with professional looking of the original CSplitterWnd. Some routines I took from MFC source code. Please be forbearing while reading this article. It's my first article at CodeProject :).

Features

My goal in CSimpleSplitterWnd design was to simulate the basic features of CSplitterWnd. With this class you can make several panes arranged either horizontally or vertically. It doesn't offer automatic splitting, shared scroll bars and intersection trackers. I didn't find it very useful - but if there are enough people, who did, I can add some of these features :) The idea of CSimpleSplitter (compared to CSplitterWnd) is that pane windows are independent to each other, hence they are also responsible for their scrolling and borders.

Using the code

The layout of splitter is set in constructor:

CSimpleSplitter(int nPanes, UINT nOrientation = SSP_HORZ,   
 int nMinSize = 30, int nBarThickness = 3);

nPanes is number of the panes, nOrientation should be either SSP_HORZ or SSP_VERT. nMinSize is the minimal height (or width) of any pane - it is important in recalculating layout algorithm, when you resize the splitter. nBarThickness is height or width of bars between panes. All of these properties remain fixed during lifetime of the splitter instance. The creation of splitter and its panes is straightforward:

BOOL Create(CWnd* pParent, UINT nID = AFX_IDW_PANE_FIRST);
BOOL CreatePane(int nIndex, CWnd* pPaneWnd, DWORD dwStyle,   
 DWORD dwExStyle, LPCTSTR lpszClassName = NULL);

Panes are indexed from 0 to nPanes - 1. The parameters dwStyle, dwExStyle and lpszClassName are passed to pPaneWnd->CreateEx() (If you want to bind a created window with a pane, use SetPane instead). You can specify for example the borders of panes there. In demo app, the "large" panes have a WS_EX_CLIENTEDGE extended style, while the three "flat" panes have WS_EX_STATICEDGE extended style. The splitter bar alone is only a gray rectangle, so if you don't specify any edge and set the gray background to pane windows, you can use the splitter in dialogs too.

The following five methods are analogous to CSplitterWnd methods, so they don't require a special documentation.

int GetPaneCount() const;void SetPane(int nIndex, CWnd* pPaneWnd);
CWnd* GetPane(int nIndex) const;
virtual void SetActivePane(int nIndex);
CWnd* GetActivePane(int* pIndex) const;

However, setting the pane widths or heights uses different technique:

void SetPaneSizes(const int* sizes);

You pass an array of nPanes integers. They specify relative sizes of panes. You can use any scale, the panes are resized proportionally to the sum of the array members. When you resize the whole splitter, the sizes of panes are changed proportionally to their actual sizes. If necessary, they're adjusted to m_nMinSize.

void GetPaneRect(int nIndex, CRect& rcPane) const;
void GetBarRect(int nIndex, CRect& rcBar) const;

With these functions you can retrieve the position of panes in splitter client coordinates. Bars are indexed from 1 to nPanes - 1.

And that's all. Look at the SimpleSplitterApp demo, especially the CMainFrame::OnCreate code, you will know everything!

Points of Interest

When I programmed the splitter, I was confused, how the framework redraws resized window. If you resize the top or left border, the framework first only move the window content in corresponding direction, and then it calls OnPaint(). So the window was redrawn twice and in the splitter this looked ugly.

Fortunately, there is a message handler CWnd::OnWindowPosChanging. You can avoid the initial moving of content, if you see SWP_NOCOPYBITS as you see in CSimpleSplitter and CChildWnd code. I think that this is useful in many other cases that splitters.

History

  • 11. 2. 2004 - First version released
  • 24. 3. 2004 - Some bugs fixed (see the messages below). In the SetPaneSizes function now you should pass only relative sizes, not absolute.

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

About the Author

Robert A. T. Káldy


Nowadays, I'm studying Econometrics and Software Systems at Charles University in Prague. Parallel to it, I work as a Windows developer in a railway interlocking company.
I consider myself as a C++ fundamentalist, simply because I haven't ever found any better language. If you know about any, please drop me a mail (and we can dispute about it Smile)
Some friends say that I'm workoholic and I answer, yes, of course and what is wrong?
You can visit my homepage, but it's completely in Czech Smile
Occupation: Web Developer
Location: Czech Republic Czech Republic

Other popular Splitter Windows articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 36 (Total in Forum: 36) (Refresh)FirstPrevNext
GeneralGetBarRect fixmemberChrisJohnShort13:25 19 Dec '06  
GeneralCListViewmemberDevil for ever11:17 5 Jun '06  
QuestionDoKeyboardSplit()memberOrtwin Basselmann23:29 2 Mar '06  
QuestionHow to create a splitter inside CWnd derived class object?memberPaul, Snehasish21:06 2 Feb '06  
GeneralSetting pane with arbitray parentmemberDiarrhio21:18 26 Jul '05  
GeneralAdding Dialog Controls directlymemberxrestassuredx12:02 22 Apr '05  
GeneralRe: Adding Dialog Controls directlymemberRobert A. T. Káldy7:04 11 May '05  
GeneralRe: Adding Dialog Controls directly [modified]memberMember 45820546:16 18 Apr '08  
GeneralResizing when parent resizesmemberAndrew Phillips20:54 27 Jan '05  
GeneralNeed help with splittermemberpank00714:53 21 Oct '04  
GeneralRe: Need help with splittermemberRobert A. T. Káldy11:15 24 Oct '04  
GeneralDoes SetPane only use in windows whose parent is SplitWindow ?memberRealityC18:21 10 Oct '04  
GeneralRe: Does SetPane only use in windows whose parent is SplitWindow ?memberRobert A. T. Káldy12:29 11 Oct '04  
GeneralRe: Does SetPane only use in windows whose parent is SplitWindow ?memberAndrew Phillips21:01 27 Jan '05  
GeneralRe: Does SetPane only use in windows whose parent is SplitWindow ?sussAnonymous7:16 1 Feb '05  
GeneralHiding panessussdefenestrator6:02 22 Sep '04  
GeneralRe: Hiding panesmemberRobert A. T. Káldy4:29 23 Sep '04  
GeneralRe: My dialog does not display properly inside a splittermemberRobert A. T. Káldy8:22 9 Sep '04  
GeneralMy dialog does not display properly inside a splittersussFrodenor3:42 9 Sep '04  
GeneralRe: My dialog does not display properly inside a splittermemberRobert A. T. Káldy8:22 9 Sep '04  
GeneralRe: My dialog does not display properly inside a splittermemberShawn Liu21:48 21 Sep '05  
GeneralUsing this inside a CSizingControlBar and two controlsmemberDonGuitar3:24 14 Jun '04  
GeneralRe: Using this inside a CSizingControlBar and two controlsmemberRobert A. T. Káldy8:27 15 Jun '04  
GeneralAdd Label Title the viewsmemberYongSei13:01 3 May '04  
GeneralRe: Add Label Title the viewsmemberRobert A. T. Káldy1:06 4 May '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 18 Apr 2004
Editor: Nishant Sivakumar
Copyright 2004 by Robert A. T. Káldy
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project