diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-06-07 14:03:44 +0300 |
---|---|---|
committer | László Németh <laszlo.nemeth@collabora.com> | 2016-06-10 16:30:05 +0200 |
commit | 30104ff4c76b7f31450f525b4a6d7ebad9823aad (patch) | |
tree | 2acb9d7ff08a286c88841943b4cc1bdec2ca2aad /offapi | |
parent | e9fadde3c56a1e8bbb1ffe3ded861fbcd3252407 (diff) |
Add a pause() method to XToolkitExperimental
Pauses the main thread of LibreOffice for the requested amount of
time.
Change-Id: I5978a3a9b9561623c698526d8c29695d71df3d03
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/awt/XToolkitExperimental.idl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/offapi/com/sun/star/awt/XToolkitExperimental.idl b/offapi/com/sun/star/awt/XToolkitExperimental.idl index 89828b2864e1..5764ef5fc44f 100644 --- a/offapi/com/sun/star/awt/XToolkitExperimental.idl +++ b/offapi/com/sun/star/awt/XToolkitExperimental.idl @@ -23,7 +23,6 @@ interface XToolkitExperimental : XToolkit2 */ void processEventsToIdle(); - /** Get the number of OpenGL buffer swaps. */ hyper getOpenGLBufferSwapCounter(); @@ -31,6 +30,10 @@ interface XToolkitExperimental : XToolkit2 /** Turn on or off deterministic scheduling (off is the default). */ void setDeterministicScheduling([in] boolean bDeterministicMode); + + /** Pause the main thread of LibreOffice for the requested amount of time. + */ + void pause([in] long nMilliseconds); }; }; }; }; }; |