tags:

views:

29

answers:

1

I want to write my own chart control which requires scrolling. I found that there is a CScrollView but nothing like this for a control.

Other toolkits like Cocoa, QT or GTK offer me a base class where i can set a content view which is displayed in a viewport and saves me from writting all of the scrolling code.

A: 

The code for custom scrolling isn't that much. Create the scrollbars, write the message handlers and remember one rectangle for the current visible part.

I would just try it. If you have problems, we are here to help :-)

dwo