Skip to content
Advertisement

How to monitor keyboard input in a Libreoffice document using a python macro?

Please note, this is a self answered question for reference. I haven’t found it documented for python, in spite of determined searching.

Rather than create a listener for a specific element in a dialog, I want to “listen” to keyboard input for a text document. The object being to perform an action if certain keys or combinations are seen.
Having created the following code using an Uno com.sun.star.awt XKeyListener, I had expected to see at least some indictation that it was functioning.

JavaScript

The code will activate and run but produces no output for keyboard input, after “listener added”.
Where am I going wrong?

Advertisement

Answer

Counter-intuitively, it appears that adding a KeyListener to the CurrentController doesn’t do what one would think. It would appear to prime the document to receive input, which you’d think, it would be doing anyway.
The function that will produce a response to keyboard input, is an XKeyHandler.
It isn’t added as an EventListener though, it’s added as a KeyHandler.

This function has it’s own quirk, in that to cancel it, you need to remove the handler with exactly the same instance of oEventListener as was used to start it. Not an issue with oobasic, where the instance can be stored as “Global” and I assume, because it’s integral, it is maintained or stored in some way.

The problem for python is it can’t be stored in this way, unless someone reading this, knows of a way. It will not “pickle” and I ended up in a pickle, as to how to store it. I may well have missed something obvious.

The solution I ended up using, was to make the function self-cancelling, based on keyboard input.

Caveat: This has been tested on Linux only

The following can tested by starting LibreOffice from the command line lowriter and then run as any other macro, terminate with Shift+Alt+Ctrl+k

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement