2008-11-27 20:09:11 +00:00
|
|
|
#!/usr/bin/env python
|
2008-11-22 09:28:03 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2008-11-29 05:36:16 +00:00
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2009-09-08 19:58:05 +00:00
|
|
|
###############################################################################
|
|
|
|
# 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-03-21 23:58:01 +00:00
|
|
|
# Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin #
|
|
|
|
# Thompson, Jon Tibble, Carsten Tinggaard #
|
2009-09-08 19:58:05 +00:00
|
|
|
# --------------------------------------------------------------------------- #
|
|
|
|
# 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 #
|
|
|
|
###############################################################################
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2009-10-17 22:13:32 +00:00
|
|
|
import os
|
2008-10-29 18:51:43 +00:00
|
|
|
import sys
|
2009-09-25 23:06:54 +00:00
|
|
|
import logging
|
2008-12-14 15:49:54 +00:00
|
|
|
|
2010-01-24 13:58:39 +00:00
|
|
|
from logging import FileHandler
|
2009-09-25 23:06:54 +00:00
|
|
|
from optparse import OptionParser
|
2009-09-29 12:51:38 +00:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2009-07-08 06:55:08 +00:00
|
|
|
|
2010-03-05 23:03:00 +00:00
|
|
|
log = logging.getLogger()
|
|
|
|
|
2010-04-27 16:27:57 +00:00
|
|
|
from openlp.core.lib import Receiver
|
2009-09-20 15:45:33 +00:00
|
|
|
from openlp.core.resources import qInitResources
|
2010-01-22 18:59:36 +00:00
|
|
|
from openlp.core.ui import MainWindow, SplashScreen, ScreenList
|
2010-04-30 19:23:02 +00:00
|
|
|
from openlp.core.utils import AppLocation, LanguageManager
|
2008-10-29 18:51:43 +00:00
|
|
|
|
2009-10-17 22:06:38 +00:00
|
|
|
application_stylesheet = u"""
|
|
|
|
QMainWindow::separator
|
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDockWidget::title
|
|
|
|
{
|
2010-02-21 10:28:35 +00:00
|
|
|
/*background: palette(dark);*/
|
|
|
|
border: 1px solid palette(dark);
|
2009-10-18 15:56:59 +00:00
|
|
|
padding-left: 5px;
|
2010-02-21 10:28:35 +00:00
|
|
|
padding-top: 2px;
|
|
|
|
margin: 1px 0;
|
2009-10-17 22:06:38 +00:00
|
|
|
}
|
2009-10-18 17:06:34 +00:00
|
|
|
|
|
|
|
QToolBar
|
|
|
|
{
|
|
|
|
border: none;
|
2009-10-18 18:15:20 +00:00
|
|
|
margin: 0;
|
2009-10-18 17:06:34 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
2009-10-17 22:06:38 +00:00
|
|
|
"""
|
|
|
|
|
2009-09-29 12:51:38 +00:00
|
|
|
class OpenLP(QtGui.QApplication):
|
2009-07-08 06:55:08 +00:00
|
|
|
"""
|
|
|
|
The core application class. This class inherits from Qt's QApplication
|
|
|
|
class in order to provide the core of the application.
|
|
|
|
"""
|
2009-08-31 08:39:19 +00:00
|
|
|
log.info(u'OpenLP Application Loaded')
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2010-01-28 17:36:13 +00:00
|
|
|
def notify(self, obj, evt):
|
|
|
|
#TODO needed for presentation exceptions
|
|
|
|
return QtGui.QApplication.notify(self, obj, evt)
|
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
def run(self):
|
2009-07-08 06:55:08 +00:00
|
|
|
"""
|
|
|
|
Run the OpenLP application.
|
|
|
|
"""
|
2009-11-01 09:07:10 +00:00
|
|
|
#Load and store current Application Version
|
2010-04-10 22:24:22 +00:00
|
|
|
filepath = AppLocation.get_directory(AppLocation.VersionDir)
|
2010-02-28 17:43:05 +00:00
|
|
|
filepath = os.path.join(filepath, u'.version')
|
2009-11-07 00:00:36 +00:00
|
|
|
fversion = None
|
2009-11-01 09:07:10 +00:00
|
|
|
try:
|
2009-11-29 14:07:25 +00:00
|
|
|
fversion = open(filepath, u'r')
|
2009-11-01 09:07:10 +00:00
|
|
|
for line in fversion:
|
2009-11-29 14:07:25 +00:00
|
|
|
full_version = unicode(line).rstrip() #\
|
|
|
|
#.replace(u'\r', u'').replace(u'\n', u'')
|
|
|
|
bits = full_version.split(u'-')
|
|
|
|
app_version = {
|
|
|
|
u'full': full_version,
|
|
|
|
u'version': bits[0],
|
2010-03-27 12:37:21 +00:00
|
|
|
u'build': bits[1] if len(bits) > 1 else None
|
2009-11-29 14:07:25 +00:00
|
|
|
}
|
2010-03-27 12:37:21 +00:00
|
|
|
if app_version[u'build']:
|
|
|
|
log.info(
|
|
|
|
u'Openlp version %s build %s',
|
|
|
|
app_version[u'version'],
|
|
|
|
app_version[u'build']
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
log.info(u'Openlp version %s' % app_version[u'version'])
|
2010-05-30 23:07:15 +00:00
|
|
|
except IOError:
|
2010-03-27 12:37:21 +00:00
|
|
|
log.exception('Error in version file.')
|
|
|
|
app_version = {
|
|
|
|
u'full': u'1.9.0-bzr000',
|
|
|
|
u'version': u'1.9.0',
|
|
|
|
u'build': u'bzr000'
|
|
|
|
}
|
2009-11-07 00:00:36 +00:00
|
|
|
finally:
|
|
|
|
if fversion:
|
|
|
|
fversion.close()
|
2009-02-11 20:52:06 +00:00
|
|
|
#provide a listener for widgets to reqest a screen update.
|
2009-09-29 12:51:38 +00:00
|
|
|
QtCore.QObject.connect(Receiver.get_receiver(),
|
2010-04-16 07:31:01 +00:00
|
|
|
QtCore.SIGNAL(u'openlp_process_events'), self.processEvents)
|
2010-04-23 18:30:53 +00:00
|
|
|
self.setOrganizationName(u'OpenLP')
|
|
|
|
self.setOrganizationDomain(u'openlp.org')
|
2009-09-12 21:31:35 +00:00
|
|
|
self.setApplicationName(u'OpenLP')
|
2009-11-29 14:07:25 +00:00
|
|
|
self.setApplicationVersion(app_version[u'version'])
|
2009-10-17 22:13:32 +00:00
|
|
|
if os.name == u'nt':
|
|
|
|
self.setStyleSheet(application_stylesheet)
|
2010-04-27 16:27:57 +00:00
|
|
|
show_splash = QtCore.QSettings().value(
|
2010-04-28 14:17:42 +00:00
|
|
|
u'general/show splash', QtCore.QVariant(True)).toBool()
|
2009-09-12 21:31:35 +00:00
|
|
|
if show_splash:
|
|
|
|
self.splash = SplashScreen(self.applicationVersion())
|
|
|
|
self.splash.show()
|
2008-11-03 19:32:54 +00:00
|
|
|
# make sure Qt really display the splash screen
|
|
|
|
self.processEvents()
|
2010-01-22 18:59:36 +00:00
|
|
|
screens = ScreenList()
|
2009-04-09 18:50:20 +00:00
|
|
|
# Decide how many screens we have and their size
|
2009-05-01 11:50:09 +00:00
|
|
|
for screen in xrange(0, self.desktop().numScreens()):
|
2010-01-16 07:22:50 +00:00
|
|
|
screens.add_screen({u'number': screen,
|
2010-04-28 14:17:42 +00:00
|
|
|
u'size': self.desktop().availableGeometry(screen),
|
|
|
|
u'primary': (self.desktop().primaryScreen() == screen)})
|
2009-05-20 20:17:20 +00:00
|
|
|
log.info(u'Screen %d found with resolution %s',
|
|
|
|
screen, self.desktop().availableGeometry(screen))
|
2009-04-09 18:50:20 +00:00
|
|
|
# start the main app window
|
2009-11-29 14:07:25 +00:00
|
|
|
self.mainWindow = MainWindow(screens, app_version)
|
2009-05-20 20:17:20 +00:00
|
|
|
self.mainWindow.show()
|
2009-09-12 21:31:35 +00:00
|
|
|
if show_splash:
|
|
|
|
# now kill the splashscreen
|
|
|
|
self.splash.finish(self.mainWindow)
|
2010-01-28 11:46:25 +00:00
|
|
|
self.mainWindow.repaint()
|
2010-02-02 20:05:21 +00:00
|
|
|
self.mainWindow.versionThread()
|
2009-09-12 21:31:35 +00:00
|
|
|
return self.exec_()
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2009-08-30 21:14:15 +00:00
|
|
|
def main():
|
2009-09-02 20:42:57 +00:00
|
|
|
"""
|
|
|
|
The main function which parses command line options and then runs
|
|
|
|
the PyQt4 Application.
|
|
|
|
"""
|
|
|
|
# Set up command line options.
|
|
|
|
usage = u'Usage: %prog [options] [qt-options]'
|
2009-08-30 21:14:15 +00:00
|
|
|
parser = OptionParser(usage=usage)
|
2009-11-09 19:10:28 +00:00
|
|
|
parser.add_option("-l", "--log-level", dest="loglevel",
|
2010-02-03 17:23:33 +00:00
|
|
|
default="warning", metavar="LEVEL",
|
2009-11-09 19:10:28 +00:00
|
|
|
help="Set logging to LEVEL level. Valid values are "
|
|
|
|
"\"debug\", \"info\", \"warning\".")
|
|
|
|
parser.add_option("-p", "--portable", dest="portable",
|
|
|
|
action="store_true",
|
|
|
|
help="Specify if this should be run as a portable app, "
|
|
|
|
"off a USB flash drive.")
|
|
|
|
parser.add_option("-s", "--style", dest="style",
|
|
|
|
help="Set the Qt4 style (passed directly to Qt4).")
|
2009-09-02 20:42:57 +00:00
|
|
|
# Set up logging
|
2010-03-05 18:37:52 +00:00
|
|
|
log_path = AppLocation.get_directory(AppLocation.ConfigDir)
|
2010-03-02 20:40:01 +00:00
|
|
|
if not os.path.exists(log_path):
|
|
|
|
os.makedirs(log_path)
|
|
|
|
filename = os.path.join(log_path, u'openlp.log')
|
2010-01-29 16:38:28 +00:00
|
|
|
logfile = FileHandler(filename, u'w')
|
2009-09-29 02:54:32 +00:00
|
|
|
logfile.setFormatter(logging.Formatter(
|
2010-05-07 20:29:21 +00:00
|
|
|
u'%(asctime)s %(name)-55s %(levelname)-8s %(message)s'))
|
2009-09-02 20:42:57 +00:00
|
|
|
log.addHandler(logfile)
|
2009-11-11 19:10:38 +00:00
|
|
|
logging.addLevelName(15, u'Timer')
|
2009-09-02 20:42:57 +00:00
|
|
|
# Parse command line options and deal with them.
|
2009-08-30 21:14:15 +00:00
|
|
|
(options, args) = parser.parse_args()
|
2009-11-09 19:10:28 +00:00
|
|
|
qt_args = []
|
|
|
|
if options.loglevel.lower() in ['d', 'debug']:
|
2009-08-31 08:39:19 +00:00
|
|
|
log.setLevel(logging.DEBUG)
|
2010-02-21 10:28:35 +00:00
|
|
|
print 'Logging to:', filename
|
2009-11-09 19:10:28 +00:00
|
|
|
elif options.loglevel.lower() in ['w', 'warning']:
|
|
|
|
log.setLevel(logging.WARNING)
|
2009-09-02 20:42:57 +00:00
|
|
|
else:
|
|
|
|
log.setLevel(logging.INFO)
|
2009-11-09 19:10:28 +00:00
|
|
|
if options.style:
|
|
|
|
qt_args.extend(['-style', options.style])
|
|
|
|
# Throw the rest of the arguments at Qt, just in case.
|
|
|
|
qt_args.extend(args)
|
2009-09-20 15:45:33 +00:00
|
|
|
# Initialise the resources
|
|
|
|
qInitResources()
|
2009-09-02 20:42:57 +00:00
|
|
|
# Now create and actually run the application.
|
2009-11-09 19:10:28 +00:00
|
|
|
app = OpenLP(qt_args)
|
2010-04-16 22:06:28 +00:00
|
|
|
#i18n Set Language
|
2010-04-19 19:12:34 +00:00
|
|
|
language = LanguageManager.get_language()
|
|
|
|
appTranslator = LanguageManager.get_translator(language)
|
2010-04-16 22:06:28 +00:00
|
|
|
app.installTranslator(appTranslator)
|
2010-03-31 09:43:52 +00:00
|
|
|
|
2009-09-12 21:31:35 +00:00
|
|
|
sys.exit(app.run())
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2009-05-20 20:17:20 +00:00
|
|
|
if __name__ == u'__main__':
|
2009-07-08 06:55:08 +00:00
|
|
|
"""
|
|
|
|
Instantiate and run the application.
|
|
|
|
"""
|
2010-04-28 14:17:42 +00:00
|
|
|
main()
|