Click here to Skip to main content
Click here to Skip to main content

Splitter in an MFC dialog based application

By , 25 Jul 2011
 

Screen Shot 1

Introduction

This is my first time posting an article in CodeProject. CodeProject has been very helpful to me. I want to give back the help given by the authors by submitting my own article.

In MFC, CSplitterWnd is usually available MDI or SDI. I just think splitter controls are just dragable buttons. So I decided to implement a class named CControlSplitter derived from CButton to work like CSplitterWnd for dialog based MFC applications.

Background

The implementation is very simple. As long as you know how to subclass MFC controls, you can understand how this works and improve it.

Using the code

In your project, include the following files:

  • ControlSplitter.h
  • ControlSplitter.cpp

Include ControlSplitter.h in your dialog header:

#include "ControlSplitter.h"

Add splitter buttons in your dialog using the usual button control which will serve as the splitter and set its control ID such as IDC_SPLITTER1.

Using the MFC Class Wizard, add control member variables in your dialog for the added splitter buttons with type CControlSplitter.

After adding member control variables, the following must be implemented:

  1. Declaration of the control splitter in your dialog header:
    //{{AFX_DATA(CSplitterDlg)
    ...
    CControlSplitter m_splitter;
    ...
    //}}AFX_DATA
  2. Sub class the control using DDX_Control in the DoDataExchange of your dialog.
    void CSplitterDlg::DoDataExchange(CDataExchange* pDX)
    {
        CDialog::DoDataExchange(pDX);
        //{{AFX_DATA_MAP(CSplitterDlg)
        ...
        DDX_Control(pDX, IDC_SPLITTER, m_splitter);
        ...
        //}}AFX_DATA_MAP
    }

Setup your splitter in the OnInitDialog() method of your dialog

  1. [Required] Set the type of the control splitter:
    m_splitter.SetType(CControlSplitter::CS_VERT);

    The available types are CS_NONE (default), CS_VERT, and CS_HORZ.

    public:
    typedef enum {
        CS_VERT = 1,
        CS_HORZ = 2,
        CS_NONE = 0
    };
  2. Add sibling controls to the splitter's control listing.

    Control splitters have two control listings:

    • Top control listing (for CS_VERT type) or left control listing (for CS_HORZ type)
    • Bottom control listing (for CS_VERT type) or right control listing (for CS_HORZ type)

    To add the control's top control listing or left control listing, use the AddToTopOrLeftCtrls method.

    m_splitter.AddToTopOrLeftCtrls(IDOK);

    To add the control's bottom control listing or right control listing, use the AddToBottomOrRightCtrls method.

    m_splitter.AddToBottomOrRightCtrls(IDC_EDIT1);

    Here is the declaration for AddToTopOrLeftCtrls and AddToBottomOrRightCtrls:

    void AddToBottomOrRightCtrls(UINT nCtrlId, WORD nFlags = 
                                 SPF_TOP|SPF_LEFT|SPF_RIGHT|SPF_BOTTOM);
    void AddToTopOrLeftCtrls(UINT nCtrlId, WORD nFlags = 
                             SPF_TOP|SPF_LEFT|SPF_BOTTOM|SPF_RIGHT);

    [Note:] The two methods have extra flag parameters that can be used to specify the behaviour of the sibling controls when the control splitter is being dragged. Possible values could be the combination of the following:

    /* distance of the control to the top of the window will be constant */
    #define SPF_TOP     0x0010
    /* distance of the control to the bottom of the window will be constant */
    #define SPF_BOTTOM  0x0020
    /* distance of the control to the left of the window will be constant */
    #define SPF_LEFT    0x0040
    /* distance of the control to the right of the window will be constant */
    #define SPF_RIGHT   0x0080

Class working methods

CControlSplitter();

This is the contstructor.

void SetType(UINT nType);

This sets the type of the control splitter in either CS_VERT or CS_HORZ.

void AddToTopOrLeftCtrls(UINT nCtrlId, WORD nFlags);

This is used to add the control to the top or the left control listing.

void AddToBottomOrRightCtrls(UINT nCtrlId, WORD nFlags);

This is used to add the control to the bottom or the right control listing.

void OnLButtonDown(UINT nFlags, CPoint point);

This is fired when the user presses down the left button of the mouse over the control.

void OnLButtonUp(UINT nFlags, CPoint point);

This is fired when the user releases up the left button of the mouse over the control.

void OnMouseMove(UINT nFlags, CPoint point);

This is fired when the user moves the mouse over the control.

void OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);

This is fired when the system asks for the cursor. The cursor is settled using SetClassLong(m_hWnd,GCL_HCURSOR,(LONG)m_hCursor);.

Class working member variables

//Holds the Type of the control splitter
unsigned int m_nType;
//Holds the Top or Left Control Listing
std::vector<DWORD> m_vtTopLeftControls;
//Holds the Bottom or Right Control Listing
std::vector<DWORD> m_vtBottomRightControls;
//Holds the POINT position used to calculate the movement changes
CPoint m_ptStartDrag,m_ptStartPos;
//Used to determine if user Starts to Drag, Dragging, and Ends Draging
bool m_bDragging;
//Used to hold the loaded HCURSOR 
HCURSOR m_hCursor;
//Holds the bounds the splitter is allowed to be moved.
CRect m_rectMax;
//Holds the old control that is previously holdes cursor capture.
CWnd * m_pOldDragCapture;

History

  • 15 Jul 2011: First release.
  • 25 Jul 2011: Translated Readme.txt in the demo download.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Lucman Abdulrachman
Software Developer NCR Cebu Development Center
Philippines Philippines
Member
Focused in Leading Business Development while working as a Software Developer. His specialty is C++ and PHP. Been developing MS Windows application since 2007.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMouse pointer questionmemberDave Calkins11 Feb '13 - 4:46 
AnswerRe: Mouse pointer questionmemberLucman Abdulrachman14 Feb '13 - 22:52 
AnswerRe: Mouse pointer questionmemberLucman Abdulrachman14 Feb '13 - 23:01 
GeneralRe: Mouse pointer questionmemberDave Calkins15 Feb '13 - 11:20 
AnswerRe: Mouse pointer question [modified]memberLupinTaiwan17 Feb '13 - 20:57 
GeneralRe: Mouse pointer questionmemberDave Calkins18 Feb '13 - 2:06 
GeneralMy vote of 5memberDave Calkins11 Feb '13 - 3:32 
GeneralMods for supporting a resizable dialogmemberDave Calkins11 Feb '13 - 3:32 
GeneralRe: Mods for supporting a resizable dialogmemberLucman Abdulrachman14 Feb '13 - 22:44 
QuestionPrevent going out of limitsmemberMihajlo Cvetanovic21 Oct '11 - 2:24 
AnswerRe: Prevent going out of limitsmemberLucman Abdulrachman2 Nov '11 - 17:11 
GeneralRe: Prevent going out of limitsmemberMihajlo Cvetanovic2 Nov '11 - 23:52 
QuestionBug : button cursormemberZoylamb27 Jul '11 - 3:54 
AnswerRe: Bug : button cursormemberrdw28 Jul '11 - 4:09 
QuestionReadMememberRaymondM19 Jul '11 - 20:20 
QuestionReadmememberRaymondM18 Jul '11 - 21:44 
AnswerRe: Readme [modified]memberLucman Abdulrachman24 Jul '11 - 15:20 
GeneralRe: ReadmememberRaymondM25 Jul '11 - 0:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 25 Jul 2011
Article Copyright 2011 by Lucman Abdulrachman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid