Auto-Panning Windows 2
Posted
by Russel Freeman
on August 6th, 1998
How to use it
OWnd is a DLL, I did it this way because it seemd the easiest way to use it without having to copy resource fiels etc all over the place, plus it really is a component that is shared amongst projects. Simply include the OWnd DLL project in as a subproject of yours, include the OWndDLL.h file in your relevant source files and call StartPanning(...) in your OnMButtonDown message handler. That's it really.Additionally you can respond to the registered message OWND_WINDOW_UPDATE if you want to perform extra scrolling, the registered message is sent every time a scroll event is issued, your message handler should look something like this:
static const UINT uOriginWindowUpdateMessage = ::RegisterWindowMessage( OWND_WINDOW_UPDATE );
LRESULT CPanningWindowView::OnOriginWindowUpdate(WPARAM , LPARAM lParam)
//
// Process the update message sent by the origin window.
// You only need to respond to this message if you want to do extra or different scrolling
{
//
// psizeDistance will contain the distance the cursor is from the origin. We then use
// this to calculate the new scroll position and the amount to scroll our window.
const CSize *psizeDistance = reinterpret_cast<const CSize *>( lParam );
#ifdef _DEBUG
afxDump<<_T("CPanningWindowView::OnOriginWindowUpdatesize")<<*psizeDistance<<_T("\n");
#endif // _DEBUG
//
// Return 1 to signal to COriginWnd that you have handled the scrolling, return 0 if you
// want COriginWnd to perform the scrolling.
return 0;
}
The demo project shows all of this behaviour in the source file PanningWindowView.cpp.
This code imroves over the other examples posted to codeguru in the following areas:
- Much closer emulation of IE behaviour, I have tried to do exactly as IE does.
- More easily extended and altered, the other examples have way too many hardcoded values scattered throughout the code.
- Compiles at level four warnings with warnings as errors, it has been linted and it has been built and tested in UNICODE
- Less code.
Download demo project and source code - 42KB
Date Posted: 6/24/98
Posted by: Pat Laplante.

Comments
There are no comments yet. Be the first to comment!