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
|
2008-03-04 01:08:01 +00:00
|
|
|
"""
|
2008-10-23 19:41:22 +00:00
|
|
|
OpenLP - Open Source Lyrics Projection
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2008-10-23 19:41:22 +00:00
|
|
|
Copyright (c) 2008 Raoul Snyman
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2009-05-20 20:17:20 +00:00
|
|
|
Portions copyright (c) 2008-2009 Martin Thompson, Tim Bentley,
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-23 19:41:22 +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.
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-23 19:41:22 +00:00
|
|
|
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.
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-23 19:41:22 +00:00
|
|
|
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
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
import sys
|
2009-08-30 21:14:15 +00:00
|
|
|
import logging, logging.handlers
|
|
|
|
from optparse import OptionParser
|
2008-12-14 15:49:54 +00:00
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2009-07-08 06:55:08 +00:00
|
|
|
|
2009-02-11 19:07:34 +00:00
|
|
|
from openlp.core.lib import Receiver
|
2009-07-08 06:55:08 +00:00
|
|
|
from openlp.core.resources import *
|
|
|
|
from openlp.core.ui import MainWindow, SplashScreen
|
2008-10-29 18:51:43 +00:00
|
|
|
|
2009-08-31 08:39:19 +00:00
|
|
|
log = logging.getLogger()
|
2008-12-01 05:58:25 +00:00
|
|
|
|
2008-10-27 19:20:39 +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-04-10 05:59:40 +00:00
|
|
|
global log
|
2009-08-31 08:39:19 +00:00
|
|
|
log.info(u'OpenLP Application Loaded')
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
def run(self):
|
2009-07-08 06:55:08 +00:00
|
|
|
"""
|
|
|
|
Run the OpenLP application.
|
|
|
|
"""
|
|
|
|
#set the default string encoding
|
2009-06-21 07:30:15 +00:00
|
|
|
try:
|
|
|
|
sys.setappdefaultencoding(u'utf-8')
|
|
|
|
except:
|
|
|
|
pass
|
2009-02-11 20:52:06 +00:00
|
|
|
#provide a listener for widgets to reqest a screen update.
|
2009-03-10 16:46:25 +00:00
|
|
|
QtCore.QObject.connect(Receiver.get_receiver(),
|
2009-08-24 04:30:04 +00:00
|
|
|
QtCore.SIGNAL(u'process_events'), self.processEvents)
|
2009-04-10 05:59:40 +00:00
|
|
|
self.setApplicationName(u'openlp.org')
|
|
|
|
self.setApplicationVersion(u'1.9.0')
|
2009-04-25 06:11:15 +00:00
|
|
|
self.splash = SplashScreen(self.applicationVersion())
|
2008-11-03 19:32:54 +00:00
|
|
|
self.splash.show()
|
|
|
|
# make sure Qt really display the splash screen
|
|
|
|
self.processEvents()
|
2009-04-09 18:50:20 +00:00
|
|
|
screens = []
|
|
|
|
# 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()):
|
|
|
|
screens.append({u'number': screen,
|
|
|
|
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-05-20 20:17:20 +00:00
|
|
|
self.mainWindow = MainWindow(screens)
|
|
|
|
self.mainWindow.show()
|
2008-11-03 19:32:54 +00:00
|
|
|
# now kill the splashscreen
|
2009-08-09 17:58:37 +00:00
|
|
|
self.splash.finish(self.mainWindow)
|
2009-09-02 20:42:57 +00:00
|
|
|
sys.exit(self.exec_())
|
|
|
|
|
2008-03-04 01:08:01 +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-09-02 20:42:57 +00:00
|
|
|
parser.add_option("-d", "--debug", dest="debug",
|
|
|
|
action="store_true", help="set logging to DEBUG level")
|
|
|
|
# Set up logging
|
|
|
|
filename = u'openlp.log'
|
|
|
|
logfile = logging.handlers.RotatingFileHandler(
|
|
|
|
filename, maxBytes=200000, backupCount=5)
|
|
|
|
logfile.setFormatter(
|
|
|
|
logging.Formatter(u'%(asctime)s %(name)-15s %(levelname)-8s %(message)s'))
|
|
|
|
log.addHandler(logfile)
|
|
|
|
# Parse command line options and deal with them.
|
2009-08-30 21:14:15 +00:00
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
if options.debug is not None:
|
2009-08-31 08:39:19 +00:00
|
|
|
log.setLevel(logging.DEBUG)
|
2009-09-02 20:42:57 +00:00
|
|
|
else:
|
|
|
|
log.setLevel(logging.INFO)
|
|
|
|
# Now create and actually run the application.
|
|
|
|
app = OpenLP(sys.argv)
|
|
|
|
app.run()
|
|
|
|
|
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.
|
|
|
|
"""
|
2009-08-09 18:38:44 +00:00
|
|
|
#import cProfile
|
2009-09-02 20:42:57 +00:00
|
|
|
#cProfile.run("main()", "profile.out")
|
|
|
|
main()
|