easymacro/source/easymacro/__init__.py

65 lines
1.9 KiB
Python

#!/usr/bin/env python3
# ~ easymacro - for easily develop macros in LibreOffice
# ~ Copyright (C) 2020-2023 Mauricio Baeza (elmau)
# ~ This program is free software: you can redistribute it and/or modify it
# ~ under the terms of the GNU General Public License as published by the
# ~ Free Software Foundation, either version 3 of the License, or (at your
# ~ option) any later version.
# ~ This program is distributed in the hope that it will be useful, but
# ~ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# ~ for more details.
# ~ You should have received a copy of the GNU General Public License along
# ~ with this program. If not, see <http://www.gnu.org/licenses/>.
from .easymain import *
from .easydialog import *
from .easytools import *
from .constants import *
from .easydocs import LODocuments
from .easydrawpage import LOGalleries
__version__ = '0.5.0'
__author__ = 'Mauricio Baeza (elMau)'
def __getattr__(name):
classes = {
'active': LODocuments().active,
'clipboard': ClipBoard,
'cmd': LOMain.commands,
'color': Color(),
'config': Config,
'dates': Dates,
'dialog': LODialog,
'dispatch': LOMain.dispatch,
'docs': LODocuments(),
'email': Email,
'get_config': get_app_config,
'filters': LOMain.filters,
'fonts': LOMain.fonts,
'hash': Hash,
'inspect': LOInspect,
'macro': Macro,
'menus': LOMenus(),
'paths': Paths,
'url': URL,
'set_config': set_app_config,
'shell': Shell,
'shortcuts': LOShortCuts(),
'timer': Timer,
'galleries': LOGalleries()
}
if name in classes:
return classes[name]
raise AttributeError(f"module '{__name__}' has no attribute '{name}'")