List of all members.

Public Member Functions

 MouseLock (Instance *instance)
virtual ~MouseLock ()
virtual void MouseLockLost ()=0
int32_t LockMouse (const CompletionCallback &cc)
void UnlockMouse ()

Detailed Description

This class allows you to associate the PPP_MouseLock and PPB_MouseLock C-based interfaces with an object.

It associates itself with the given instance, and registers as the global handler for handling the PPP_MouseLock interface that the browser calls.

You would typically use this class by inheritance on your instance or by composition.

Example (inheritance):

   class MyInstance : public pp::Instance, public pp::MouseLock {
     class MyInstance() : pp::MouseLock(this) {
     }
     ...
   };

Example (composition):

   class MyMouseLock : public pp::MouseLock {
     ...
   };

   class MyInstance : public pp::Instance {
     MyInstance() : mouse_lock_(this) {
     }

     MyMouseLock mouse_lock_;
   };

Constructor & Destructor Documentation

pp::MouseLock::MouseLock(Instanceinstance) [explicit]

A constructor for creating a MouseLock.

Parameters:
[in]instanceThe instance with which this resource will be associated.
virtual pp::MouseLock::~MouseLock() [virtual]

Destructor.


Member Function Documentation

LockMouse() requests the mouse to be locked.

While the mouse is locked, the cursor is implicitly hidden from the user. Any movement of the mouse will generate a PP_INPUTEVENT_TYPE_MOUSEMOVE event. The GetPosition() function in InputEvent() reports the last known mouse position just as mouse lock was entered. The GetMovement() function provides relative movement information indicating what the change in position of the mouse would be had it not been locked.

The browser may revoke the mouse lock for reasons including (but not limited to) the user pressing the ESC key, the user activating another program using a reserved keystroke (e.g. ALT+TAB), or some other system event.

Parameters:
[in]ccA CompletionCallback to be called upon completion.
Returns:
An int32_t containing an error code from pp_errors.h.
virtual void pp::MouseLock::MouseLockLost() [pure virtual]

PPP_MouseLock functions exposed as virtual functions for you to override.

UnlockMouse causes the mouse to be unlocked, allowing it to track user movement again.

This is an asynchronous operation. The module instance will be notified using the PPP_MouseLock interface when it has lost the mouse lock.


The documentation for this class was generated from the following file:
This site uses cookies to deliver and enhance the quality of its services and to analyze traffic. If you agree, cookies are also used to serve advertising and to personalize the content and advertisements that you see. Learn more about our use of cookies.