Click here to Skip to main content
15,887,683 members
Articles / Programming Languages / C++
Article

Getting messages from the IntelliMouse

Rate me:
Please Sign up or sign in to vote.
3.20/5 (4 votes)
15 Dec 1999 55.2K   27   4
How to set up message handlers for a wheel mouse

The IntelliMouse (the mouse with the wheel in the center) is pretty neat. You can register to get the wheel messages from it in your top level frame. If you want to handle the message in a view you must pass the message down manually as is illustrated. To get messages from the wheel add the following to your application:

  1. To make the wheel act like a simple middle button just add handlers for:

    WM_MBUTTONDOWN
    WM_MBUTTONUP

    and so-on just like left and right buttons. You won't find this in the class wizzard but you can add them manually.

  2.  
  3. For wheel messages do the following:

    Declare a global in your app as follows:

    UINT uMSH_MOUSEWHEEL;

    and everyplace else declare an external so you can get at it

    extern UINT uMSH_MOUSEWHEEL;
  4.  
  5. In your initialization code register the following message

    uMSH_MOUSEWHEEL = RegisterWindowMessage("MSWHEEL_ROLLMSG");
  6.  
  7. (In the MAIN FRAME add the following:

    To the message map in the .H file add

    afx_msg LONG OnWheel(UINT a, LONG b);

    To the message map in the .CPP file add

    ON_REGISTERED_MESSAGE(uMSH_MOUSEWHEEL,OnWheel) 

    And then add the message handler as follows

    LONG CMainFrame::OnMouseWheel(UINT nFlags, LONG pValue) 
    {
    	if(nFlags & 0x0100) // Rolled in
    	{
    		// do rolled in stuff here
    	}
    	else // Rolled out
    	{
    		// do rolled out stuff here
    	}
    	return 0;
    }
  8.  
  9. if you want to receive this message in a view then add the same handlers shown above to your view and then do the following in your main frame.

    LONG CMainFrame::OnWheel(UINT a, LONG b)
    {
    	BOOL yn;
    	MDIChildWnd* aw = (MDIChildWnd*)MDIGetActive(&yn); 
    	if(aw)
    	{
    		CView * junk;
    		junk = aw->GetActiveView();
    		if(junk)
    			junk->SendMessage(uMSH_MOUSEWHEEL,a,b);
    	}
    	return> 0;
    }

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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalback/forward buttons Pin
Franc Morales28-Apr-04 18:37
Franc Morales28-Apr-04 18:37 
GeneralRe: back/forward buttons Pin
CodyDaemon13-Sep-04 10:00
CodyDaemon13-Sep-04 10:00 
GeneralRe: back/forward buttons Pin
Franc Morales13-Sep-04 17:54
Franc Morales13-Sep-04 17:54 
GeneralWM_MOUSEWHEEL Pin
2-Jul-01 13:50
suss2-Jul-01 13:50 

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

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