openlp/scripts/resources.patch

57 lines
2.4 KiB
Diff
Raw Normal View History

=== modified file 'openlp/core/resources.py'
2013-12-24 08:56:50 +00:00
--- openlp/core/resources.py 2014-03-12 08:44:54 +0000
+++ openlp/core/resources.py 2014-03-12 08:45:42 +0000
2015-01-18 13:39:21 +00:00
@@ -1,10 +1,28 @@
2010-06-21 23:26:35 +00:00
# -*- coding: utf-8 -*-
-
2010-06-21 23:26:35 +00:00
-# Resource object code
-#
-#
-# WARNING! All changes made in this file will be lost!
-
+# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
+
2019-04-13 14:08:22 +00:00
+##########################################################################
+# OpenLP - Open Source Lyrics Projection #
+# ---------------------------------------------------------------------- #
2022-02-01 10:10:57 +00:00
+# Copyright (c) 2008-2022 OpenLP Developers #
2019-04-13 14:08: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, either version 3 of the License, or #
+# (at your option) any later version. #
+# #
+# 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, see <https://www.gnu.org/licenses/>. #
+##########################################################################
2010-06-21 23:26:35 +00:00
+"""
+The :mod:`resources` module provides application images and icons in a central
+store for use by OpenLP.
+"""
2015-11-07 00:49:40 +00:00
from PyQt5 import QtCore
2013-03-12 08:53:50 +00:00
2010-06-21 23:26:35 +00:00
qt_resource_data = "\
2015-01-18 13:39:21 +00:00
@@ -71953,9 +71971,14 @@
2018-08-04 21:25:14 +00:00
qt_resource_struct = qt_resource_struct_v2
2013-03-12 08:53:50 +00:00
2010-06-21 23:26:35 +00:00
def qInitResources():
+ """
+ Initialise OpenLP resources at application startup.
+ """
2018-08-04 21:25:14 +00:00
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
2013-03-12 08:53:50 +00:00
2010-06-21 23:26:35 +00:00
def qCleanupResources():
+ """
+ Cleanup OpenLP resources when the application shuts down.
+ """
2018-08-04 21:25:14 +00:00
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
2013-03-12 08:53:50 +00:00
2010-06-21 23:26:35 +00:00
-qInitResources()