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 #
|
|
|
|
# --------------------------------------------------------------------------- #
|
2012-12-29 20:56:56 +00:00
|
|
|
# Copyright (c) 2008-2013 Raoul Snyman #
|
|
|
|
# Portions copyright (c) 2008-2013 Tim Bentley, Gerald Britton, Jonathan #
|
2012-06-22 14:14:53 +00:00
|
|
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
|
|
|
# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, #
|
|
|
|
# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, #
|
|
|
|
# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon #
|
|
|
|
# Tibble, Dave Warnock, Frode Woldsund #
|
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 #
|
|
|
|
###############################################################################
|
2011-08-25 10:04:17 +00:00
|
|
|
|
2012-05-17 15:13:09 +00:00
|
|
|
import sip
|
2012-06-27 21:32:43 +00:00
|
|
|
import sys
|
2012-05-19 15:10:05 +00:00
|
|
|
sip.setapi(u'QDate', 2)
|
|
|
|
sip.setapi(u'QDateTime', 2)
|
2012-05-17 15:13:09 +00:00
|
|
|
sip.setapi(u'QString', 2)
|
2012-05-19 15:10:05 +00:00
|
|
|
sip.setapi(u'QTextStream', 2)
|
|
|
|
sip.setapi(u'QTime', 2)
|
|
|
|
sip.setapi(u'QUrl', 2)
|
2012-05-19 09:13:32 +00:00
|
|
|
sip.setapi(u'QVariant', 2)
|
2010-07-30 22:48:09 +00:00
|
|
|
|
2011-08-25 10:04:17 +00:00
|
|
|
from openlp.core import main
|
2008-10-29 18:51:43 +00:00
|
|
|
|
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.
|
|
|
|
"""
|
2012-06-27 21:32:43 +00:00
|
|
|
# Mac OS X passes arguments like '-psn_XXXX' to gui application.
|
|
|
|
# This argument is process serial number. However, this causes
|
|
|
|
# conflict with other OpenLP arguments. Since we do not use this
|
|
|
|
# argument we can delete it to avoid any potential conflicts.
|
|
|
|
if sys.platform.startswith('darwin'):
|
|
|
|
sys.argv = filter(lambda x: not x.startswith('-psn'), sys.argv)
|
2011-04-30 07:42:20 +00:00
|
|
|
main()
|