Implementing Rulers inside of Splitter Panes
Introduction
Many applications that display images or documents show rulers on both sides of the view to indicate your position within the page and allow a more accurate positioning of the cursor. Implementing rulers can be difficult, since we must reserve a space for them inside the view (this gets more difficult on a CScrollView-derived class). Another solution is to use "fixed" splitters (meaning they cannot be resized). The example below demonstrates how to build such rulers.
The code
The code implementing the ruler splitter window and views used for the rulers themselves can be found in ruler.h and ruler.cpp. Below is a sample of how to use them.
Inside the frame window (which can be either a CFrameWnd or CMDIChildWnd-derived class)
// class definition
class CMainFrame : public CFrameWnd
{
[...]
protected:
DECLARE_FX_RULER(CMainFrame)
The next step is to create the splitter itself and the views. The code below matches a SDI application that accomodates the code above inside a splitter pane, but you can easily adjust it to fit your needs. In the OnCreateClient member of the CMainFrame class, add code to create the splitter inside the right pane:
// class definition IMPLEMENT_FX_RULER_SPLITTER(<className>, <parentSplitter>, 0, 1, pContext->m_pNewViewClass);
What you have to do next is send notifications to the rulers to let them know about the scroll position change or zoom change. The rulers can also display the mouse position as the cursor moves; this is done also by sending notifications to the rulers with just a few lines of code like:
// class definition GetDocument()->UpdateAllViews(this, VW_VSCROLL, (CObject*)(GetScrollPosition().y));
Available hint types are (hint parameters are passed as INTs using a cast to
CObject*):
| VW_HSCROLL | View is scrolled horizontally |
| VW_VSCROLL | View is scrolled vertically |
| VW_HPOSITION | Cursor position changed on the x axis |
| VW_VPOSITION | Cursor position changed on the y axis |
The code is quite easy to follow and change to meet your needs, but if you need assistance, contact me. Also please send me bugs or updates, to keep this solution up-to-date. For more details on the sample application, contact me.
Date Last Updated: February 3, 1999

Comments
Thank you very much!!!
Posted by Legacy on 01/15/2004 12:00amOriginally posted by: kpld
Thanks a lot!!!!!!!
ReplyHere
Posted by Legacy on 09/03/2003 12:00amOriginally posted by: Tom Tom
http://www.codeproject.com/splitter/ruler.asp
Reply
Help with source code
Posted by Legacy on 09/02/2003 12:00amOriginally posted by: Ivan
I'm trying to implement a ruler such as shown in your article. But I'm having trouble integrating your codes into my application. Can you e-mail me the whole source code used for implementing the ruler application so that I can see what went wrong with my integration?
Thanks in advance.
ReplyIvan
what is m_wndBar?
Posted by Legacy on 07/10/2003 12:00amOriginally posted by: propeller
I have read your code, but I don't know what is of m_wndBar,
Replywould you like to explain for me?
Thank you a lot.
Need more source code
Posted by Legacy on 07/09/2003 12:00amOriginally posted by: Klaus H.
Your implementation seems to be exactly what I need, but unfortunately I can't get my application built after integrating your code (many undefined items/functions). So I'd be deeply grateful if you could provide me the source code of your application as a whole, to see how I have to amend my
application so that it works together with your implementation.
Many thanks in advance
Replyand best regards
Tom Tom, Thank you very much....!!!(^▽^)//
Posted by Legacy on 03/14/2003 12:00amOriginally posted by: Niccole Mai
The material is excellent!!!I indebted to you for I made program easily... Thank very much.
Replya reference web site
Posted by Legacy on 03/02/2003 12:00amOriginally posted by: TomTom
You had better to see the below site:
Replyhttp://www.codeproject.com/useritems/Ruler.asp
Would you show me your .exe file & program source code?...
Posted by Legacy on 02/28/2003 12:00amOriginally posted by: Niccole Mai
I will insert "ruler" at my program...
So, My programming standard is low...<(^ ^; )
If you show me, I will thank to you.
ReplyHow about a demo source?
Posted by Legacy on 12/19/2002 12:00amOriginally posted by: Huynh Ba Thuy
Dear Stefan Ungureanu,
ReplyYour article is excellent but I can't follow your steps in this paper.I don't understand it. Could you give me a demo source sothat I can complite and run it?
Thank you very much.
Yours sincerely.
Help me!
Posted by Legacy on 09/17/2002 12:00amOriginally posted by: lbwtusm
I cann't use the code in my programe , somebody help me!
ReplyI'll thanks a lot !
Best Regards!
Loading, Please Wait ...