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

A static splitter with the ability to hide/show multiple columns/rows

By , 6 Aug 2002
 

Introduction

When I was working on application I realized that it needed a static splitter with the ability to hide/show several rows or columns simultaneously. Surprisingly I couldn't find such component. The closest solution was proposed by Oleg Galkin http://www.codeguru.com/splitter/show_hide_static_panes.shtml. His splitter can hide/show one of the splitter rows (columns), but only one. A static splitter with ability to hide/show multiple columns/rows is proposed in this article.

Problems with algorithm extension

MFC CSplitterWnd accesses its panes by ID and ID defines the position of a pane in the splitter. Assume that column n is to be hidden. In Oleg Galkin's algorithm, column n gets the last column ID. The columns following n are shifted to the left by 1, i.e. ID of n+1 control is assigned to control n, n+2 ID is assigned to n+1, etc. Attempts to extend this approach for multiple column hiding led to an overcomplicated algorithm. Every time you hide column, the IDs of columns hidden in previous operations are changed again. So if you hide three columns, the IDs of some controls are changed three times. It is a non-trivial problem to trace all of these changes.

New approach

CExtSplitter class uses absolute and relative addresses to operate with splitter panes. The absolute column address is an initial column number and the relative address is current column number in splitter. HideColumn and ShowColumn public functions work with absolute addresses. Relative addresses are used internally. CExtSplitter class saves pointers to all controls in an internal array. The array initialized once when the splitter is created and doesn't change during the splitter existence. Rows and columns of this array are used to access splitter panes by absolute ID. If the splitter was initialized with m rows and n columns then hiding column k (0 < k < n), means hide the column that was column k initially. Note that after several hide operations, column k can appear in the splitter at any position less than k.

Implementation details

CExtSplitter class has list of shown and hidden columns. The value of a list member is an absolute column address and position is and relative column address.

class CExtSplitter : public CSplitterWnd
{
public:
    typedef std::list < int > LIST_INT;

    CExtSplitter();   

    virtual ~CExtSplitter();

    BOOL CreateStatic(CWnd* pParentWnd,
        int nRows, int nCols,
        DWORD dwStyle = WS_CHILD | WS_VISIBLE,
        UINT nID = AFX_IDW_PANE_FIRST);

    virtual BOOL CreateView( int row, int col, 
        CRuntimeClass* pViewClass, SIZE sizeInit,
        CCreateContext* pContext );

    void    HideColumn(int colHide);
    void    ShowColumn(int colShow);
    void    HideRow(int colRow);
    void    ShowRow(int row);

public: 
    LIST_INT m_shown_cols;      //shown  column list
    LIST_INT m_hid_cols;        //hidden column list
    LIST_INT m_shown_rows;      //shown  rows list
    LIST_INT m_hid_rows;        //hidden rows list

protected:
    //array of pointers to splitter panes
    C2DArray m_pane_ptr_array;  
};

Function HideColumn moves column from list of shown columns to list of hidden columns and re-numerate the splitter panes. C++ code for re-numeration rule is shown below

void CExtSplitter::RenumeratePanes()
{
    int i,j,id;

    for(i=0; i < m_nMaxRows; i++)
    {
        for(j=0; j < m_nMaxCols; j++)
        {
            CPoint pos  = RelToAbsPosition(i,j);
            CWnd* pPane = 
                (CWnd*) m_pane_ptr_array(pos.x, pos.y);
            ASSERT(pPane != NULL);

            id=AFX_IDW_PANE_FIRST + i * 16 + j;

            int r=pPane->SetDlgCtrlID(id);
            ASSERT(r);

            if(IsPaneVisible(pos.x,pos.y))
                pPane->ShowWindow(SW_SHOW);
            else
                pPane->ShowWindow(SW_HIDE);

        }
    }
}

where RelToAbsPosition function transform the relative pane position to the absolute pane position.

Demo project

In the demo project you can call the hide and show functions through the "View" submenu. CExtSplitter class depends on C2DArray, which is included to the project.

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

Alexander Kuzmin
United States United States
Member
No Biography provided

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   
QuestionNeed Dynamically add and delete unlimited no of views of a documentmemberofficialid24 Aug '11 - 0:58 
QuestionHow to create 4 splitter windows?membersrikadi24 Sep '08 - 20:50 
GeneralVisual Studio 2005 Problems / Does not compilememberC++ Hacker15 Mar '07 - 1:28 
GeneralProblem with nested splittersmemberStefan Ungureanu11 Oct '05 - 20:30 
GeneralVery Goodmembertommy790729@126.com22 Dec '04 - 15:14 
Generalproblem clearing divider bar between two panes on hidingmemberOreille4 Apr '04 - 18:21 
Hi,
I am new to VC and splitter windows.
I needed a similar functionality on the PPC and your code does just what i needed. Well i used the logic in a more specfic way just for my requirement as follows. It is still in the crude form. I need to display any one of the existing 5 panes/columns in the splitter window that i have. The problem that arises is that the divider bar that appears between any two panes does not get cleared. A divider bar appears on the extreme right on the screen. How do i get rid of that?
What would i need to add to my existing code. I would be grateful to receive a reply asap. Thanks in advance.
 
The code used is as follows:
 
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
BOOL bCreateSpltr = m_pSplitterWnd.CreateStatic(this,1,5,WS_CHILD|WS_VISIBLE|WS_BORDER,AFX_IDW_PANE_FIRST);

m_pSplitterWnd.CreateView(0,0,RUNTIME_CLASS(CSoftcorderAlbumView),CSize(240,270),pContext);
/*pWnd is an array of (CWnd *)------it is a member variable of the mainframe class*/
pWnd[0] = m_pSplitterWnd.GetPane(0,0);
 
m_pSplitterWnd.CreateView(0,1,RUNTIME_CLASS(CFeaturesDlgView),CSize(240,270),pContext);
pWnd[1] = m_pSplitterWnd.GetPane(0,1);
 
m_pSplitterWnd.CreateView(0,2,RUNTIME_CLASS(CFOpenThumbnailView),CSize(240,270),pContext);
pWnd[2] = m_pSplitterWnd.GetPane(0,2);

m_pSplitterWnd.CreateView(0,3,RUNTIME_CLASS(CImageView),CSize(240,270),pContext);
pWnd[3] = m_pSplitterWnd.GetPane(0,3);
 
m_pSplitterWnd.CreateView(0,4,RUNTIME_CLASS(CImageEditorView),CSize(240,270),pContext);
pWnd[4] = m_pSplitterWnd.GetPane(0,4);
 
ShowOnlyColumn(4);

m_pSplitterWnd.RecalcLayout();
return bCreateSpltr;
 
// return CFrameWnd::OnCreateClient(lpcs, pContext);
}
 
void CMainFrame::ShowOnlyColumn(int colNum)
{
 
int colCtr,idColIdx,nMaxCols = 5,id;
 
for(colCtr=0, idColIdx=1; colCtr < nMaxCols;colCtr ++)
{
if(colCtr == colNum)
{
id=AFX_IDW_PANE_FIRST + 0 * 16 + 0;
pWnd[colNum]->SetDlgCtrlID(id);
pWnd[colNum]->ShowWindow(SW_SHOW);
continue;
}
 
id=AFX_IDW_PANE_FIRST + 0 * 16 + idColIdx;
 
pWnd[colCtr]->SetDlgCtrlID(id);
pWnd[colCtr]->ShowWindow(SW_HIDE);
idColIdx++;
//m_pSplitterWnd.RecalcLayout();
}
 
}
 

Generalpropertysheetmemberniallmack3 Nov '03 - 13:30 
GeneralPane ID AlgorithmmemberRepsej18 Jun '03 - 3:20 
GeneralBug in HideRow()membercmd6735 May '03 - 4:26 
QuestionHow can I hide the last row/column?memberDavidi20 Oct '02 - 0:53 

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.130523.1 | Last Updated 7 Aug 2002
Article Copyright 2002 by Alexander Kuzmin
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid