forked from openlp/openlp
89 lines
3.9 KiB
Python
89 lines
3.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2011 Raoul Snyman #
|
|
# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan #
|
|
# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, #
|
|
# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias #
|
|
# Põldaru, Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, 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 #
|
|
###############################################################################
|
|
|
|
import logging
|
|
|
|
from openlp.core.lib import Plugin, StringContent, translate, build_icon
|
|
from openlp.plugins.remotes.lib import RemoteTab, HttpServer
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
class RemotesPlugin(Plugin):
|
|
log.info(u'Remote Plugin loaded')
|
|
|
|
def __init__(self, plugin_helpers):
|
|
"""
|
|
remotes constructor
|
|
"""
|
|
Plugin.__init__(self, u'remotes', plugin_helpers,
|
|
settings_tab_class=RemoteTab)
|
|
self.icon_path = u':/plugins/plugin_remote.png'
|
|
self.icon = build_icon(self.icon_path)
|
|
self.weight = -1
|
|
self.server = None
|
|
|
|
def initialise(self):
|
|
"""
|
|
Initialise the remotes plugin, and start the http server
|
|
"""
|
|
log.debug(u'initialise')
|
|
Plugin.initialise(self)
|
|
self.server = HttpServer(self)
|
|
|
|
def finalise(self):
|
|
"""
|
|
Tidy up and close down the http server
|
|
"""
|
|
log.debug(u'finalise')
|
|
Plugin.finalise(self)
|
|
if self.server:
|
|
self.server.close()
|
|
|
|
def about(self):
|
|
"""
|
|
Information about this plugin
|
|
"""
|
|
about_text = translate('RemotePlugin', '<strong>Remote Plugin</strong>'
|
|
'<br />The remote plugin provides the ability to send messages to '
|
|
'a running version of OpenLP on a different computer via a web '
|
|
'browser or through the remote API.')
|
|
return about_text
|
|
|
|
def setPluginTextStrings(self):
|
|
"""
|
|
Called to define all translatable texts of the plugin
|
|
"""
|
|
## Name PluginList ##
|
|
self.textStrings[StringContent.Name] = {
|
|
u'singular': translate('RemotePlugin', 'Remote', 'name singular'),
|
|
u'plural': translate('RemotePlugin', 'Remotes', 'name plural')
|
|
}
|
|
## Name for MediaDockManager, SettingsManager ##
|
|
self.textStrings[StringContent.VisibleName] = {
|
|
u'title': translate('RemotePlugin', 'Remote', 'container title')
|
|
}
|