diff options
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx index c3fe6fcb80dd..b5f06e71c87f 100644 --- a/sd/source/ui/remotecontrol/Receiver.cxx +++ b/sd/source/ui/remotecontrol/Receiver.cxx @@ -119,6 +119,15 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand ) xSlideShowController->blankScreen( aColour ); } } + // pointer_coordination + // x + // y + else if (aCommand[0].equals( "pointer_coordination" )) + { + float x = aCommand[1].toFloat(); + float y = aCommand[2].toFloat(); + std::cerr << "("<<x<<","<<y<<")"<< std::endl; + } else if ( aCommand[0].equals( "presentation_resume" ) ) { if ( xSlideShowController.is() ) |