openlp/openlp/core/ui/__init__.py

62 lines
3.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2009-12-31 12:52:01 +00:00
# Copyright (c) 2008-2010 Raoul Snyman #
# Portions copyright (c) 2008-2010 Tim Bentley, Jonathan Corwin, Michael #
2010-07-24 22:10:47 +00:00
# Gorven, Scott Guerrieri, Meinert Jordan, Andreas Preikschat, Christian #
# Richter, Philip Ridout, Maikel Stuivenberg, Martin Thompson, Jon Tibble, #
# Carsten Tinggaard, Frode Woldsund #
# --------------------------------------------------------------------------- #
# 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; version 2 of the License. #
# #
# 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, write to the Free Software Foundation, Inc., 59 #
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
###############################################################################
2010-06-10 19:45:02 +00:00
"""
The :mod:`ui` module provides the core user interface for OpenLP
"""
2010-04-29 20:56:27 +00:00
class HideMode(object):
"""
This is basically an enumeration class which specifies the mode of a Bible.
Mode refers to whether or not a Bible in OpenLP is a full Bible or needs to
be downloaded from the Internet on an as-needed basis.
"""
Blank = 1
Theme = 2
Screen = 3
2010-09-26 06:20:24 +00:00
from filerenameform import FileRenameForm
2010-07-23 05:05:34 +00:00
from maindisplay import MainDisplay
2010-03-28 15:56:49 +00:00
from slidecontroller import HideMode
2010-03-17 21:08:18 +00:00
from servicenoteform import ServiceNoteForm
from serviceitemeditform import ServiceItemEditForm
2010-01-22 18:59:36 +00:00
from screen import ScreenList
from amendthemeform import AmendThemeForm
from slidecontroller import SlideController
from splashscreen import SplashScreen
from generaltab import GeneralTab
from themestab import ThemesTab
2010-07-09 21:32:32 +00:00
from advancedtab import AdvancedTab
from aboutform import AboutForm
2009-10-06 21:07:12 +00:00
from pluginform import PluginForm
from settingsform import SettingsForm
from mediadockmanager import MediaDockManager
from servicemanager import ServiceManager
2009-03-22 07:11:05 +00:00
from thememanager import ThemeManager
2010-07-30 18:02:03 +00:00
__all__ = ['SplashScreen', 'AboutForm', 'SettingsForm',
2009-09-25 00:43:42 +00:00
'MainDisplay', 'SlideController', 'ServiceManager', 'ThemeManager',
2010-07-27 09:32:52 +00:00
'AmendThemeForm', 'MediaDockManager', 'ServiceItemEditForm']