Довідка LibreOffice 7.3
Статичні діалоги LibreOffice створюються за допомогою Редактора діалогів і зберігаються в різних місцях, залежно від того, чи вони є персональними (Мої макроси), спільними (Макроси LibreOffice) чи вбудованими в документ. На противагу цьому, динамічні діалоги створюються під час виконання, за допомогою сценаріїв мовою Basic чи Python, або з використанням іншої мови, підтримуваної LibreOffice. Тут проілюстровано відкриття статичних діалогів за допомогою Python. Для ясності опущено обробку винятків і інтернаціоналізацію.
The examples below open Access2Base Trace console or the imported TutorialsDialog dialog with menu:
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
def consoleDlg():
ctx =XSCRIPTCONTEXT.getComponentContext()
smgr = ctx.getServiceManager()
dp = smgr.createInstanceWithContext("com.sun.star.awt.DialogProvider", ctx)
dlg = dp.createDialog( "vnd.sun.star.script:Access2Base.dlgTrace?location=application")
dlg.execute()
dlg.dispose()
def tutorDialog():
ctx =XSCRIPTCONTEXT.getComponentContext()
smgr = ctx.getServiceManager()
dp = smgr.createInstanceWithContext("com.sun.star.awt.DialogProvider", ctx)
dlg = dp.createDialog("vnd.sun.star.script:Standard.TutorialsDialog?location=application")
dlg.execute()
dlg.dispose()
g_exportedScripts = (consoleDlg, tutorDialog)
The example below opens a newly edited Dialog1 dialog from a document with menu:
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
def docDialog():
""" Display a doc-based dialog """
model = XSCRIPTCONTEXT.getDocument()
smgr = XSCRIPTCONTEXT.getComponentContext().ServiceManager
dp = smgr.createInstanceWithArguments( "com.sun.star.awt.DialogProvider", (model,))
dlg = dp.createDialog( "vnd.sun.star.script:Standard.Dialog1?location=document")
dlg.execute()
dlg.dispose()
g_exportedScripts = (docDialog,)
Refer to msgbox.py in {installation}/program/ directory for Python dynamic dialog examples.