edu.gatech.cs2335.lemmings.gui
Interface IMouseWheelable

All Known Implementing Classes:
GamePlayPanel, LevelContainer

public interface IMouseWheelable

Interface IMouseWheelable: Should be implemented by all components that want to listen to mouse wheel rotations.

 Revision History:
     v1.0 (Apr. 11, 2004) - Created the IMouseWheelable interface
 

Version:
Version 1.0, Apr. 11, 2004
Author:
Vladimir Urazov

Method Summary
 void processMouseWheel(int numClicks)
          Processes the mouse wheel rotation.
 

Method Detail

processMouseWheel

public void processMouseWheel(int numClicks)
Processes the mouse wheel rotation.

Parameters:
numClicks - The number of clicks the wheel was rotated. A negative value means the wheel was rotated away from the user, and positive means it was rotated towards the user.