Overview
| Comment: | [lo] update helpers |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | lo |
| Files: | files | file ages | folders |
| SHA3-256: |
cec1932c2090b31e385ffdb3af131104 |
| User & Date: | olr on 2019-07-12 17:40:41 |
| Other Links: | manifest | tags |
Context
|
2019-07-13
| ||
| 06:25 | [lo] option to launch Python console at start check-in: 6a5d9d3cff user: olr tags: trunk, lo | |
|
2019-07-12
| ||
| 17:40 | [lo] update helpers check-in: cec1932c20 user: olr tags: trunk, lo | |
| 15:03 | [lo] launch Python console from About dialog check-in: 20cfc29a6c user: olr tags: trunk, lo | |
Changes
Modified gc_core/py/oxt/helpers.py from [fdf5448ff6] to [4f4ff311ba].
| ︙ | ︙ | |||
9 10 11 12 13 14 15 |
from com.sun.star.beans import PropertyValue
from com.sun.star.uno import RuntimeException as _rtex
def start_console ():
"open console from APSO extension"
try:
| | | | | | | | | | | > | | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
from com.sun.star.beans import PropertyValue
from com.sun.star.uno import RuntimeException as _rtex
def start_console ():
"open console from APSO extension"
try:
xContext = uno.getComponentContext()
xContext.ServiceManager.createInstance("apso.python.script.organizer.impl")
# now we can import apso_utils library
from apso_utils import console
console()
except:
try:
xContext = uno.getComponentContext()
xSvMgr = xContext.getServiceManager()
xPathSettings = xSvMgr.createInstanceWithContext("com.sun.star.util.PathSettings", xContext)
spPyInstallion = uno.fileUrlToSystemPath(xPathSettings.Module)
subprocess.Popen(spPyInstallion + os.sep + "python") # Start Python interactive Shell
except:
traceback.print_exc()
def xray (xObject):
"XRay - API explorer"
try:
xSvMgr = uno.getComponentContext().ServiceManager
xMSPF = xSvMgr.createInstanceWithContext("com.sun.star.script.provider.MasterScriptProviderFactory", uno.getComponentContext())
xScriptProvider = xMSPF.createScriptProvider("")
xScript = xScriptProvider.getScript("vnd.sun.star.script:XrayTool._Main.Xray?language=Basic&location=application")
xScript.invoke((xObject,), (), ())
return
except:
raise _rtex("\nBasic library Xray is not installed", uno.getComponentContext())
def mri (xObject):
"MRI - API Explorer"
try:
xContext = uno.getComponentContext()
xMri = xContext.ServiceManager.createInstanceWithContext("mytools.Mri", xContext)
xMri.inspect(xObject)
except:
raise _rtex("\nPython extension MRI is not installed", uno.getComponentContext())
def getConfigSetting (sNodeConfig, bUpdate=False):
"get a configuration node"
# example: xNode = getConfigSetting("/org.openoffice.Office.Common/Path/Current", False)
|
| ︙ | ︙ | |||
69 70 71 72 73 74 75 |
def printServices (o):
for s in o.getAvailableServiceNames():
print(' > '+s)
def getWindowSize ():
"return main window size"
| | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
def printServices (o):
for s in o.getAvailableServiceNames():
print(' > '+s)
def getWindowSize ():
"return main window size"
xContext = uno.getComponentContext()
xDesktop = xContext.getServiceManager().createInstanceWithContext('com.sun.star.frame.Desktop', xContext)
xContainerWindow = xDesktop.getCurrentComponent().CurrentController.Frame.ContainerWindow
xWindowSize = xContainerWindow.convertSizeToLogic(xContainerWindow.Size, uno.getConstantByName("com.sun.star.util.MeasureUnit.POINT"))
#print(xContainerWindow.Size.Width, ">", xWindowSize.Width)
#print(xContainerWindow.Size.Height, ">", xWindowSize.Height)
xWindowSize.Width = xWindowSize.Width * 0.666
xWindowSize.Height = xWindowSize.Height * 0.666
return xWindowSize
|
| ︙ | ︙ |