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
|
2008-11-22 09:28:03 +00:00
|
|
|
Portions copyright (c) 2008 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
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
|
|
|
2008-12-01 05:58:25 +00:00
|
|
|
import logging
|
|
|
|
logging.basicConfig(level=logging.DEBUG,
|
|
|
|
format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
|
|
|
|
datefmt='%m-%d %H:%M',
|
2008-12-01 20:41:26 +00:00
|
|
|
filename='openlp.log',
|
2008-12-01 05:58:25 +00:00
|
|
|
filemode='w')
|
|
|
|
|
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):
|
2008-03-04 01:08:01 +00:00
|
|
|
|
2008-10-29 18:51:43 +00:00
|
|
|
def run(self):
|
2008-12-02 20:09:08 +00:00
|
|
|
self.setApplicationName('openlp.org')
|
|
|
|
self.setApplicationVersion('1.9.0')
|
2008-11-03 19:32:54 +00:00
|
|
|
self.splash = SplashScreen()
|
|
|
|
self.splash.show()
|
|
|
|
# make sure Qt really display the splash screen
|
|
|
|
self.processEvents()
|
|
|
|
# start tha main app window
|
2008-10-29 18:51:43 +00:00
|
|
|
self.main_window = MainWindow()
|
|
|
|
self.main_window.show()
|
2008-11-03 19:32:54 +00:00
|
|
|
# now kill the splashscreen
|
|
|
|
self.splash.finish(self.main_window.main_window)
|
2008-10-29 18:51:43 +00:00
|
|
|
sys.exit(app.exec_())
|
2008-03-04 01:08:01 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2008-10-27 19:20:39 +00:00
|
|
|
app = OpenLP(sys.argv)
|
2008-10-29 18:51:43 +00:00
|
|
|
app.run()
|