![]() | InDesign SDK 20.5 |
#include <IMouseRollOver.h>

Public Types | |
| enum | { kDefaultIID = IID_IMOUSEROLLOVER } |
Public Member Functions | |
| virtual void | MouseEnter (const PMPoint &localMousePos)=0 |
| virtual void | MouseOver (const PMPoint &localMousePos)=0 |
| virtual void | MouseLeave ()=0 |
| virtual bool8 | IsMouseOver () const =0 |
| virtual PMPoint | GetMouseOverPosition () const =0 |
Public Member Functions inherited from IPMUnknown | |
| virtual IPMUnknown * | QueryInterface (PMIID interfaceID) const =0 |
| virtual void | AddRef () const =0 |
| virtual void | Release () const =0 |
Interface used to attach "roll over" mouse behavior to a widget. Roll over behavior changes the appearance of a widget, and/or the cursor, as the mouse passes over it.
| pure virtual |
Get the mouse point where it was over the associated control, as determined by the previous calls to MouseEnter/Over/Leave. The value is undefined if the last call to this interface was MouseLeave.
| pure virtual |
Is the mouse is over the associated control, as determined by the previous calls to MouseEnter/Over/Leave.
| pure virtual |
Called once when the mouse enters the associated control.
| pure virtual |
Called when the mouse has left the associated control.
| pure virtual |
Called periodically while the mouse moves within the associated control.