diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-07-23 21:04:20 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-07-23 21:09:56 +0200 |
commit | 3c077e587d36170be53bad90bd5c87364295426c (patch) | |
tree | c55c9e4d65e132a8e1aafb68d6019f6641d23d4f /uitest/libreoffice/linguistic | |
parent | 741d794adc0fabbcfb9ef847ad0369d7281b964d (diff) |
uitest: handle the case without dictionaries in the UI tests
Change-Id: Icc63deeb182f0c380780332793a3af1f7a51577b
Diffstat (limited to 'uitest/libreoffice/linguistic')
-rw-r--r-- | uitest/libreoffice/linguistic/linguservice.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/uitest/libreoffice/linguistic/linguservice.py b/uitest/libreoffice/linguistic/linguservice.py new file mode 100644 index 000000000000..7ff9c1ac6c62 --- /dev/null +++ b/uitest/libreoffice/linguistic/linguservice.py @@ -0,0 +1,27 @@ +# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + + +def get_lingu_service_manager(xContext): + """ Returns the com.sun.star.linguistic2.LinguServiceManager + + Further information: https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1linguistic2_1_1LinguServiceManager.html + """ + xServiceManager = xContext.getServiceManager() + xLinguServiceManager = xServiceManager.createInstanceWithContext("com.sun.star.linguistic2.LinguServiceManager", xContext) + return xLinguServiceManager + + +def get_spellchecker(xContext): + """ Returns the com.sun.star.linguistic2.XSpellChecker through the + com.sun.star.linguistic2.LinguServiceManager + + Further information: https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1linguistic2_1_1SpellChecker.html""" + xLinguServiceManager = get_lingu_service_manager(xContext) + return xLinguServiceManager.getSpellChecker() + +# vim:set shiftwidth=4 softtabstop=4 expandtab: */ |