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
|
|
|
|
Copyright (c) 2008 Raoul Snyman
|
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
|
2008-12-14 15:49:54 +00:00
|
|
|
import logging
|
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2009-02-11 19:07:34 +00:00
|
|
|
from openlp.core.lib import Receiver
|
2008-10-29 18:51:43 +00:00
|
|
|
|
2008-12-01 05:58:25 +00:00
|
|
|
logging.basicConfig(level=logging.DEBUG,
|
2009-05-20 20:17:20 +00:00
|
|
|
format=u'%(asctime)s %(msecs)d %(name)-12s %(levelname)-8s %(message)s',
|
|
|
|
datefmt=u'%m-%d %H:%M:%S', filename=u'openlp.log', filemode=u'w')
|
2008-12-01 05:58:25 +00:00
|
|
|
|
2008-11-28 14:05:41 +00:00
|
|
|
from openlp.core.resources import *
|
2008-11-25 20:44:41 +00:00
|
|
|
from openlp.core.ui import MainWindow, SplashScreen
|
2008-10-29 18:51:43 +00:00
|
|
|
|
2008-10-27 19:20:39 +00:00
|
|
|
class OpenLP(QtGui.QApplication):
|
2009-04-10 05:59:40 +00:00
|
|
|
global log
|
2009-05-20 20:17:20 +00:00
|
|
|
log = logging.getLogger(u'OpenLP Application')
|
2009-04-10 05:59:40 +00:00
|
|
|
log.info(u'Application Loaded')
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
def run(self):
|
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-04-10 05:59:40 +00:00
|
|
|
QtCore.SIGNAL(u'openlpprocessevents'), self.processEvents)
|
|
|
|
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-05-20 20:17:20 +00:00
|
|
|
self.splash.finish(self.mainWindow.mainWindow)
|
2008-10-29 18:51:43 +00:00
|
|
|
sys.exit(app.exec_())
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2009-05-20 20:17:20 +00:00
|
|
|
if __name__ == u'__main__':
|
2008-10-27 19:20:39 +00:00
|
|
|
app = OpenLP(sys.argv)
|
2008-10-29 18:51:43 +00:00
|
|
|
app.run()
|