MouseManager Class Reference

MouseManager Class Reference

#include <mouseman.h>

Class Description

Represents the interface to the mouse manager and handling system and is used internally only. This class should not be instanced directly into plugin code. To retrieve a pointer to the mouse manager you can use the method Interface::GetMouseManager().

See also
BaseInterfaceServer, MouseCallBack, Interface
+ Inheritance diagram for MouseManager:

Public Member Functions

CoreExport MouseManager ()
 
CoreExport ~MouseManager ()
 
CoreExport int SetMouseProc (MouseCallBack *mproc, int button, int nPoints=2)
 
CoreExport int SetDragMode (int mode)
 
CoreExport int GetDragMode ()
 
CoreExport int SetNumPoints (int nPoints, int button)
 
CoreExport int ButtonFlags ()
 
CoreExport void Pan (IPoint2 p)
 
CoreExport LRESULT CALLBACK MouseWinProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
 
CoreExport void Reset ()
 
int GetMouseMode ()
 
UINT GetMouseMsg ()
 
int GetMousePoint ()
 
CoreExport void SetCapture (HWND hWnd)
 
CoreExport HWND HasCapture ()
 
CoreExport void ReleaseCapture ()
 
CoreExport void RestoreCapture ()
 
CoreExport void SetMouseWindProcCallback (WNDPROC pMouseWindProc)
 
WNDPROC GetMouseWindProcCallback () const
 
CoreExport MouseCallBackGetMouseProc (int button)
 To get a mouse callback when the button index was indicated by SetMouseProc function. More...
 
- Public Member Functions inherited from BaseInterfaceServer
virtual UtilExport BaseInterfaceGetInterface (Interface_ID id)
 
virtual UtilExport int NumInterfaces () const
 
virtual UtilExport BaseInterfaceGetInterfaceAt (int i) const
 
virtual UtilExport ~BaseInterfaceServer ()
 
- Public Member Functions inherited from InterfaceServer
virtual UtilExport ~InterfaceServer ()
 Destructor. More...
 

Friends

class MouseManagerStateInterface
 
class MouseOverride
 

Additional Inherited Members

- Static Public Member Functions inherited from MaxHeapOperators
static UtilExport voidoperator new (size_t size)
 Standard new operator used to allocate objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e)
 Standard new operator used to allocate objects if there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate objects that takes the type of memory, filename and line number where the new was called If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate objects that takes the filename and line number where the new was called If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new (size_t size, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate objects that takes extra flags to specify special operations If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, int block_type, const char *filename, int line)
 New operator used to allocate arrays of objects. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, const char *filename, int line)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport voidoperator new[] (size_t size, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, an exception will be thrown. More...
 
static UtilExport voidoperator new[] (size_t size, const std::nothrow_t &e, unsigned long flags)
 New operator used to allocate arrays of objects If there is insufficient memory, NULL will be returned. More...
 
static UtilExport void operator delete (void *ptr)
 Standard delete operator used to deallocate an object If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an object If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an object that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an object that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete (void *ptr, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an object that takes extra flags to specify special operations If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e)
 Standard delete operator used to deallocate an array of objects If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, int block_type, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the type of memory, filename and line number where the delete was called If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, const char *filename, int line)
 Delete operator used to deallocate an array of objects that takes the filename and line number where the delete was called If the pointer is invalid, nothing will happen. More...
 
static UtilExport void operator delete[] (void *ptr, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport void operator delete[] (void *ptr, const std::nothrow_t &e, unsigned long flags)
 Delete operator used to deallocate an array of objects that takes extra flags to specify special operations If the pointer is invalid, an exception will be thrown. More...
 
static UtilExport voidoperator new (size_t size, void *placement_ptr)
 Placement new operator. More...
 
static UtilExport void operator delete (void *ptr, void *placement_ptr)
 Placement delete operator. More...
 
- Protected Attributes inherited from BaseInterfaceServer
Tab< BaseInterface * > interfaces
 

Constructor & Destructor Documentation

Member Function Documentation

CoreExport int SetMouseProc ( MouseCallBack mproc,
int  button,
int  nPoints = 2 
)
CoreExport int SetDragMode ( int  mode)
CoreExport int GetDragMode ( )
CoreExport int SetNumPoints ( int  nPoints,
int  button 
)
CoreExport int ButtonFlags ( )
CoreExport void Pan ( IPoint2  p)
CoreExport LRESULT CALLBACK MouseWinProc ( HWND  hwnd,
UINT  message,
WPARAM  wParam,
LPARAM  lParam 
)
CoreExport void Reset ( )
int GetMouseMode ( )
inline
267 {return mouseMode;}
UINT GetMouseMsg ( )
inline
269 {return m_msg;}
int GetMousePoint ( )
inline
270 {return curPoint;}
CoreExport void SetCapture ( HWND  hWnd)
CoreExport HWND HasCapture ( )
CoreExport void ReleaseCapture ( )
CoreExport void RestoreCapture ( )
CoreExport void SetMouseWindProcCallback ( WNDPROC  pMouseWindProc)
inline
279  { mpMouseWindProc = pMouseWindProc; }
WNDPROC GetMouseWindProcCallback ( ) const
inline
285  { return mpMouseWindProc; }
CoreExport MouseCallBack* GetMouseProc ( int  button)

To get a mouse callback when the button index was indicated by SetMouseProc function.

Parameters
buttonThe button index maps one mouse button.
Returns
a mouse callback corresponding to the given button index. If an invalid button index is given, the corresponding mouse callback will be NULL.

Friends And Related Function Documentation

friend class MouseManagerStateInterface
friend
friend class MouseOverride
friend