zaz-easymacro/source/pythonpath/libo.py

38 lines
679 B
Python
Raw Normal View History

2021-06-14 16:20:56 -05:00
#!/usr/bin/env python3
2022-02-23 14:48:14 -06:00
from net.elmau.zaz.EasyMacro import XZAZDebug
2021-06-14 16:20:56 -05:00
import easymacro as app
2022-02-23 14:48:14 -06:00
class Debug(XZAZDebug):
2021-06-14 16:20:56 -05:00
def info(self, message):
app.info(message)
return
def debug(self, message):
app.debug(message)
return
def error(self, message):
app.error(message)
return
def inspect(self, obj):
app.inspect(obj)
return
class LIBO(Debug):
OS = app.OS
2022-02-23 14:48:14 -06:00
DESKTOP = app.DESKTOP
PC = app.PC
2021-06-14 16:20:56 -05:00
USER = app.USER
2022-02-23 14:48:14 -06:00
IS_WIN = app.IS_WIN
IS_MAC = app.IS_MAC
NAME = app.NAME
VERSION = app.VERSION
LANGUAGE = app.LANGUAGE
LANG = app.LANG
2021-06-14 16:20:56 -05:00
INFO_DEBUG = app.INFO_DEBUG