Click here to Skip to main content
Licence 
First Posted 10 Jan 2000
Views 65,724
Bookmarked 23 times

Highlight view with focus

By | 10 Jan 2000 | Article
Adding visual feedback on which pane in a split view currently has the focus

Many times it would be nice to have some visual feedback as to which pane in a split view currently has the focus. This is very useful if you have multiple view types and different keyboard strokes cause different actions in each.

NOTE: This uses an undocumented feature in MFC so be careful in the future.

Step 1) Derive your own SplitterWnd class.
Step 2) Override the undocumented OnDrawSplitter function.
Step 3) Replace the CSplitterWnd instance in the child frame with your splitter.

This example draws in red but you can adjust the color and width of the frame by altering the define values.

/////////////////////////////////////////////////////////////////////////////
// MySplitterWnd.h

class MySplitterWnd : public CSplitterWnd
{
public: 
    int cRow;
    int cCol; 
    MySplitterWnd();
    void OnDrawSplitter(CDC* pDC, ESplitType nType, const CRect& rectArg);
    void RefreshSplitBars(void);
};

/////////////////////////////////////////////////////////////////////////////
// MySplitterWnd.cpp

#include "StdAfx.h"
#include "MySplitterWnd.h"

#define FOCUS_HILIGHT_COLOR_ULO RGB(180, 75, 25)
#define FOCUS_HILIGHT_COLOR_LRO RGB(245, 5, 25)
#define FOCUS_HILIGHT_COLOR_ULI RGB(145, 95, 75)
#define FOCUS_HILIGHT_COLOR_LRI RGB(220, 65, 40)

#define FOCUS_HILIGHT_SHOW TRUE

#define SPLITTER_CX 4
#define SPLITTER_CY 4
#define SPLITTER_GAPX 4
#define SPLITTER_GAPY 4

void MySplitterWnd::RefreshSplitBars(void)
{
    CRect rectInside;

    GetInsideRect(rectInside);
    DrawAllSplitBars(NULL, rectInside.right, rectInside.bottom);
}

MySplitterWnd::MySplitterWnd()
{
    cRow = 0;
    cCol = 0;

    m_cxSplitter = SPLITTER_CX;
    m_cySplitter = SPLITTER_CY;
    m_cxSplitterGap = SPLITTER_GAPX;
    m_cySplitterGap = SPLITTER_GAPY;
}

void MySplitterWnd::OnDrawSplitter(CDC* pDC, ESplitType nType,
                                   const CRect& rectArg)
{
    if ((FOCUS_HILIGHT_SHOW) && ((GetRowCount() > 1) || 
        (GetColumnCount() > 1)) && (nType == splitBorder))
    {
        int pRow = 0;
        int pCol = 0;
        if (rectArg.top)
        {
            pRow = 1;
        }
        if (rectArg.left)
        {
            pCol = 1;
        }
        if ((cRow == pRow) && (cCol == pCol))
        {
            if (pDC == NULL)
            {
                RedrawWindow(rectArg, NULL, RDW_INVALIDATE|RDW_NOCHILDREN);
                return;
            }
            ASSERT_VALID(pDC);
            CRect rect = rectArg;
            pDC->Draw3dRect(rect, 
                FOCUS_HILIGHT_COLOR_ULO, FOCUS_HILIGHT_COLOR_LRO);
            rect.InflateRect(-GetSystemMetrics(SM_CXBORDER), 
                             -GetSystemMetrics(SM_CYBORDER));
            pDC->Draw3dRect(rect,
                FOCUS_HILIGHT_COLOR_ULI, FOCUS_HILIGHT_COLOR_LRI);
            return; 
        }
    }

    CSplitterWnd::OnDrawSplitter(pDC,nType,rectArg); 
}

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

Randy More



United States United States

Member



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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
General3 static splitter window Pinsussweilun20:01 31 Aug '04  
GeneralMFC7 unhandled exception PinmemberNate Strandberg17:16 9 Jul '03  
GeneralStatic Splits PinmemberDavid Jones4:06 17 Jan '02  
Questionhow to access these protected functions PinsussDarren Schroeder5:46 9 May '00  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 11 Jan 2000
Article Copyright 2000 by Randy More
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid