forked from openlp/openlp
Yet more updates
This commit is contained in:
parent
0023359915
commit
6f9d662064
@ -48,7 +48,7 @@ class Ui_ExceptionDialog(object):
|
|||||||
self.message_layout.setContentsMargins(0, 0, 50, 0)
|
self.message_layout.setContentsMargins(0, 0, 50, 0)
|
||||||
self.message_layout.addSpacing(12)
|
self.message_layout.addSpacing(12)
|
||||||
self.bug_label = QtWidgets.QLabel(exception_dialog)
|
self.bug_label = QtWidgets.QLabel(exception_dialog)
|
||||||
self.bug_label.setPixmap(QtGui.QPixmap(':/graphics/exception.png'))
|
self.bug_label.setPixmap(QtGui.QPixmap(UiIcons().exception))
|
||||||
self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
|
self.bug_label.setSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
|
||||||
self.bug_label.setObjectName('bug_label')
|
self.bug_label.setObjectName('bug_label')
|
||||||
self.message_layout.addWidget(self.bug_label)
|
self.message_layout.addWidget(self.bug_label)
|
||||||
|
@ -74,6 +74,7 @@ class UiIcons(object):
|
|||||||
'bottom': {'icon': 'fa.angle-double-down'},
|
'bottom': {'icon': 'fa.angle-double-down'},
|
||||||
'clock': {'icon': 'fa.clock-o'},
|
'clock': {'icon': 'fa.clock-o'},
|
||||||
'clone': {'icon': 'fa.clone'},
|
'clone': {'icon': 'fa.clone'},
|
||||||
|
'close': {'icon': 'fa.times-circle-o'},
|
||||||
'copy': {'icon': 'fa.copy'},
|
'copy': {'icon': 'fa.copy'},
|
||||||
'copyright': {'icon': 'fa.copyright'},
|
'copyright': {'icon': 'fa.copyright'},
|
||||||
'database': {'icon': 'fa.database'},
|
'database': {'icon': 'fa.database'},
|
||||||
@ -83,12 +84,15 @@ class UiIcons(object):
|
|||||||
'download': {'icon': 'fa.cloud-download'},
|
'download': {'icon': 'fa.cloud-download'},
|
||||||
'edit': {'icon': 'fa.edit'},
|
'edit': {'icon': 'fa.edit'},
|
||||||
'email': {'icon': 'fa.envelope'},
|
'email': {'icon': 'fa.envelope'},
|
||||||
|
'exception': {'icon': 'fa.times-circle'},
|
||||||
'exit': {'icon': 'fa.sign-out'},
|
'exit': {'icon': 'fa.sign-out'},
|
||||||
'group': {'icon': 'fa.object-group'},
|
'group': {'icon': 'fa.object-group'},
|
||||||
'inactive': {'icon': 'fa.child', 'attr': 'lightGray'},
|
'inactive': {'icon': 'fa.child', 'attr': 'lightGray'},
|
||||||
'info': {'icon': 'fa.info'},
|
'info': {'icon': 'fa.info'},
|
||||||
|
'lightbulb': {'icon': 'fa.lightbulb-o'},
|
||||||
'live': {'icon': 'fa.desktop'},
|
'live': {'icon': 'fa.desktop'},
|
||||||
'manual': {'icon': 'fa.graduation-cap'},
|
'manual': {'icon': 'fa.graduation-cap'},
|
||||||
|
'media': {'icon': 'fa.fax'},
|
||||||
'minus': {'icon': 'fa.minus'},
|
'minus': {'icon': 'fa.minus'},
|
||||||
'music': {'icon': 'fa.music'},
|
'music': {'icon': 'fa.music'},
|
||||||
'new': {'icon': 'fa.file'},
|
'new': {'icon': 'fa.file'},
|
||||||
@ -113,10 +117,12 @@ class UiIcons(object):
|
|||||||
'search_ref': {'icon': 'fa.institution'},
|
'search_ref': {'icon': 'fa.institution'},
|
||||||
'settings': {'icon': 'fa.cogs'},
|
'settings': {'icon': 'fa.cogs'},
|
||||||
'shortcuts': {'icon': 'fa.wrench'},
|
'shortcuts': {'icon': 'fa.wrench'},
|
||||||
|
'song_usage': {'icon': 'fa.line-chart'},
|
||||||
'sort': {'icon': 'fa.sort'},
|
'sort': {'icon': 'fa.sort'},
|
||||||
'stop': {'icon': 'fa.stop'},
|
'stop': {'icon': 'fa.stop'},
|
||||||
'square': {'icon': 'fa.square'},
|
'square': {'icon': 'fa.square'},
|
||||||
'text': {'icon': 'op.file-text'},
|
'text': {'icon': 'op.file-text'},
|
||||||
|
'time': {'icon': 'fa.history'},
|
||||||
'theme': {'icon': 'fa.file-image-o'},
|
'theme': {'icon': 'fa.file-image-o'},
|
||||||
'top': {'icon': 'fa.angle-double-up'},
|
'top': {'icon': 'fa.angle-double-up'},
|
||||||
'undo': {'icon': 'fa.undo'},
|
'undo': {'icon': 'fa.undo'},
|
||||||
|
@ -43,6 +43,7 @@ from openlp.core.display.screens import ScreenList
|
|||||||
from openlp.core.lib import ServiceItem, ImageSource, build_html, expand_tags, image_to_byte
|
from openlp.core.lib import ServiceItem, ImageSource, build_html, expand_tags, image_to_byte
|
||||||
from openlp.core.lib.theme import BackgroundType
|
from openlp.core.lib.theme import BackgroundType
|
||||||
from openlp.core.ui import HideMode, AlertLocation, DisplayControllerType
|
from openlp.core.ui import HideMode, AlertLocation, DisplayControllerType
|
||||||
|
from openlp.core.ui.icons import UiIcons
|
||||||
|
|
||||||
if is_macosx():
|
if is_macosx():
|
||||||
from ctypes import pythonapi, c_void_p, c_char_p, py_object
|
from ctypes import pythonapi, c_void_p, c_char_p, py_object
|
||||||
@ -492,7 +493,7 @@ class MainDisplay(Display, LogMixin, RegistryProperties):
|
|||||||
path = str(AppLocation.get_section_data_path('themes') / self.service_item.theme_data.theme_name)
|
path = str(AppLocation.get_section_data_path('themes') / self.service_item.theme_data.theme_name)
|
||||||
service_item.add_from_command(path,
|
service_item.add_from_command(path,
|
||||||
path_to_str(self.service_item.theme_data.background_filename),
|
path_to_str(self.service_item.theme_data.background_filename),
|
||||||
':/media/slidecontroller_multimedia.png')
|
UiIcons().media)
|
||||||
self.media_controller.video(DisplayControllerType.Live, service_item, video_behind_text=True)
|
self.media_controller.video(DisplayControllerType.Live, service_item, video_behind_text=True)
|
||||||
self._hide_mouse()
|
self._hide_mouse()
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ class Ui_ServiceManager(object):
|
|||||||
icon=UiIcons().notes,
|
icon=UiIcons().notes,
|
||||||
triggers=self.on_service_item_note_form)
|
triggers=self.on_service_item_note_form)
|
||||||
self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'),
|
self.time_action = create_widget_action(self.menu, text=translate('OpenLP.ServiceManager', '&Start Time'),
|
||||||
icon=':/media/media_time.png', triggers=self.on_start_time_form)
|
icon=UiIcons().time, triggers=self.on_start_time_form)
|
||||||
self.auto_start_action = create_widget_action(self.menu, text='',
|
self.auto_start_action = create_widget_action(self.menu, text='',
|
||||||
icon=UiIcons().active,
|
icon=UiIcons().active,
|
||||||
triggers=self.on_auto_start)
|
triggers=self.on_auto_start)
|
||||||
|
@ -28,7 +28,7 @@ from openlp.core.api.http import register_endpoint
|
|||||||
from openlp.core.common.actions import ActionList
|
from openlp.core.common.actions import ActionList
|
||||||
from openlp.core.common.i18n import UiStrings, translate
|
from openlp.core.common.i18n import UiStrings, translate
|
||||||
from openlp.core.common.settings import Settings
|
from openlp.core.common.settings import Settings
|
||||||
from openlp.core.lib import Plugin, StringContent, build_icon
|
from openlp.core.lib import Plugin, StringContent
|
||||||
from openlp.core.lib.db import Manager
|
from openlp.core.lib.db import Manager
|
||||||
from openlp.core.lib.theme import VerticalType
|
from openlp.core.lib.theme import VerticalType
|
||||||
from openlp.core.lib.ui import create_action
|
from openlp.core.lib.ui import create_action
|
||||||
@ -139,8 +139,8 @@ class AlertsPlugin(Plugin):
|
|||||||
"""
|
"""
|
||||||
super(AlertsPlugin, self).__init__('alerts', __default_settings__, settings_tab_class=AlertsTab)
|
super(AlertsPlugin, self).__init__('alerts', __default_settings__, settings_tab_class=AlertsTab)
|
||||||
self.weight = -3
|
self.weight = -3
|
||||||
self.icon_path = ':/plugins/plugin_alerts.png'
|
self.icon_path = UiIcons().alert
|
||||||
self.icon = build_icon(self.icon_path)
|
self.icon = self.icon_path
|
||||||
AlertsManager(self)
|
AlertsManager(self)
|
||||||
self.manager = Manager('alerts', init_schema)
|
self.manager = Manager('alerts', init_schema)
|
||||||
self.alert_form = AlertForm(self)
|
self.alert_form = AlertForm(self)
|
||||||
|
@ -193,7 +193,7 @@ class ImageMediaItem(MediaManagerItem):
|
|||||||
self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png',
|
self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png',
|
||||||
triggers=self.on_replace_click)
|
triggers=self.on_replace_click)
|
||||||
self.reset_action_context = create_widget_action(
|
self.reset_action_context = create_widget_action(
|
||||||
self.list_view, text=UiStrings().ReplaceLiveBG, icon=':/system/system_close.png',
|
self.list_view, text=UiStrings().ReplaceLiveBG, icon=UiIcons().close,
|
||||||
visible=False, triggers=self.on_reset_click)
|
visible=False, triggers=self.on_reset_click)
|
||||||
|
|
||||||
def add_start_header_bar(self):
|
def add_start_header_bar(self):
|
||||||
@ -212,7 +212,7 @@ class ImageMediaItem(MediaManagerItem):
|
|||||||
icon=':/slides/slide_theme.png',
|
icon=':/slides/slide_theme.png',
|
||||||
triggers=self.on_replace_click)
|
triggers=self.on_replace_click)
|
||||||
self.reset_action = self.toolbar.add_toolbar_action('reset_action',
|
self.reset_action = self.toolbar.add_toolbar_action('reset_action',
|
||||||
icon=':/system/system_close.png',
|
icon=UiIcons().close,
|
||||||
visible=False, triggers=self.on_reset_click)
|
visible=False, triggers=self.on_reset_click)
|
||||||
|
|
||||||
def recursively_delete_group(self, image_group):
|
def recursively_delete_group(self, image_group):
|
||||||
|
@ -153,7 +153,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties):
|
|||||||
self.replace_action.setDisabled(True)
|
self.replace_action.setDisabled(True)
|
||||||
if hasattr(self, 'replace_action_context'):
|
if hasattr(self, 'replace_action_context'):
|
||||||
self.replace_action_context.setDisabled(True)
|
self.replace_action_context.setDisabled(True)
|
||||||
self.reset_action = self.toolbar.add_toolbar_action('reset_action', icon=':/system/system_close.png',
|
self.reset_action = self.toolbar.add_toolbar_action('reset_action', icon=UiIcons().close,
|
||||||
visible=False, triggers=self.on_reset_click)
|
visible=False, triggers=self.on_reset_click)
|
||||||
self.media_widget = QtWidgets.QWidget(self)
|
self.media_widget = QtWidgets.QWidget(self)
|
||||||
self.media_widget.setObjectName('media_widget')
|
self.media_widget.setObjectName('media_widget')
|
||||||
@ -177,7 +177,7 @@ class MediaMediaItem(MediaManagerItem, RegistryProperties):
|
|||||||
self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png',
|
self.list_view, text=UiStrings().ReplaceBG, icon=':/slides/slide_theme.png',
|
||||||
triggers=self.on_replace_click)
|
triggers=self.on_replace_click)
|
||||||
self.reset_action_context = create_widget_action(
|
self.reset_action_context = create_widget_action(
|
||||||
self.list_view, text=UiStrings().ReplaceLiveBG, icon=':/system/system_close.png',
|
self.list_view, text=UiStrings().ReplaceLiveBG, icon=UiIcons().close,
|
||||||
visible=False, triggers=self.on_reset_click)
|
visible=False, triggers=self.on_reset_click)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
from PyQt5 import QtCore, QtWidgets
|
from PyQt5 import QtCore, QtWidgets
|
||||||
|
|
||||||
from openlp.core.common.i18n import UiStrings
|
from openlp.core.common.i18n import UiStrings
|
||||||
from openlp.core.lib import build_icon
|
|
||||||
from openlp.core.lib.ui import create_button_box
|
from openlp.core.lib.ui import create_button_box
|
||||||
from openlp.core.ui.icons import UiIcons
|
from openlp.core.ui.icons import UiIcons
|
||||||
from openlp.plugins.songs.lib.ui import SongStrings
|
from openlp.plugins.songs.lib.ui import SongStrings
|
||||||
@ -50,7 +49,7 @@ class Ui_SongMaintenanceDialog(object):
|
|||||||
self.authors_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
self.authors_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
||||||
self.authors_list_item.setIcon(UiIcons().usermo)
|
self.authors_list_item.setIcon(UiIcons().usermo)
|
||||||
self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
self.topics_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
||||||
self.topics_list_item.setIcon(build_icon(':/songs/topic_maintenance.png'))
|
self.topics_list_item.setIcon(UiIcons().lightbulb)
|
||||||
self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
self.books_list_item = QtWidgets.QListWidgetItem(self.type_list_widget)
|
||||||
self.books_list_item.setIcon(UiIcons().book)
|
self.books_list_item.setIcon(UiIcons().book)
|
||||||
self.dialog_layout.addWidget(self.type_list_widget, 0, 0)
|
self.dialog_layout.addWidget(self.type_list_widget, 0, 0)
|
||||||
|
@ -32,6 +32,7 @@ from openlp.core.common.settings import Settings
|
|||||||
from openlp.core.lib import Plugin, StringContent, build_icon
|
from openlp.core.lib import Plugin, StringContent, build_icon
|
||||||
from openlp.core.lib.db import Manager
|
from openlp.core.lib.db import Manager
|
||||||
from openlp.core.lib.ui import create_action
|
from openlp.core.lib.ui import create_action
|
||||||
|
from openlp.core.ui.icons import UiIcons
|
||||||
from openlp.plugins.songusage.forms import SongUsageDetailForm, SongUsageDeleteForm
|
from openlp.plugins.songusage.forms import SongUsageDetailForm, SongUsageDeleteForm
|
||||||
from openlp.plugins.songusage.lib import upgrade
|
from openlp.plugins.songusage.lib import upgrade
|
||||||
from openlp.plugins.songusage.lib.db import init_schema, SongUsageItem
|
from openlp.plugins.songusage.lib.db import init_schema, SongUsageItem
|
||||||
@ -63,7 +64,7 @@ class SongUsagePlugin(Plugin):
|
|||||||
super(SongUsagePlugin, self).__init__('songusage', __default_settings__)
|
super(SongUsagePlugin, self).__init__('songusage', __default_settings__)
|
||||||
self.manager = Manager('songusage', init_schema, upgrade_mod=upgrade)
|
self.manager = Manager('songusage', init_schema, upgrade_mod=upgrade)
|
||||||
self.weight = -4
|
self.weight = -4
|
||||||
self.icon = build_icon(':/plugins/plugin_songusage.png')
|
self.icon = UiIcons().song_usage
|
||||||
self.active_icon = build_icon(':/songusage/song_usage_active.png')
|
self.active_icon = build_icon(':/songusage/song_usage_active.png')
|
||||||
self.inactive_icon = build_icon(':/songusage/song_usage_inactive.png')
|
self.inactive_icon = build_icon(':/songusage/song_usage_inactive.png')
|
||||||
self.song_usage_active = False
|
self.song_usage_active = False
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 975 B |
@ -5,17 +5,14 @@
|
|||||||
<file>song_search_lyrics.png</file>
|
<file>song_search_lyrics.png</file>
|
||||||
<file>song_search_title.png</file>
|
<file>song_search_title.png</file>
|
||||||
<file>song_search_topic.png</file>
|
<file>song_search_topic.png</file>
|
||||||
<file>topic_maintenance.png</file>
|
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="images">
|
<qresource prefix="images">
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="bibles">
|
<qresource prefix="bibles">
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="plugins">
|
<qresource prefix="plugins">
|
||||||
<file>plugin_alerts.png</file>
|
|
||||||
<file>plugin_songs.png</file>
|
<file>plugin_songs.png</file>
|
||||||
<file>plugin_songusage.png</file>
|
</qresource>
|
||||||
</qresource>
|
|
||||||
<qresource prefix="general">
|
<qresource prefix="general">
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="slides">
|
<qresource prefix="slides">
|
||||||
@ -25,7 +22,6 @@
|
|||||||
<file>openlp-logo.svg</file>
|
<file>openlp-logo.svg</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="graphics">
|
<qresource prefix="graphics">
|
||||||
<file>exception.png</file>
|
|
||||||
<file>openlp-splash-screen.png</file>
|
<file>openlp-splash-screen.png</file>
|
||||||
<file>openlp-about-logo.png</file>
|
<file>openlp-about-logo.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
@ -44,7 +40,6 @@
|
|||||||
<qresource prefix="services">
|
<qresource prefix="services">
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="system">
|
<qresource prefix="system">
|
||||||
<file>system_close.png</file>
|
|
||||||
<file>system_mediamanager.png</file>
|
<file>system_mediamanager.png</file>
|
||||||
<file>system_volunteer.png</file>
|
<file>system_volunteer.png</file>
|
||||||
<file>system_servicemanager.png</file>
|
<file>system_servicemanager.png</file>
|
||||||
@ -53,7 +48,6 @@
|
|||||||
<file>system_edit_copy.png</file>
|
<file>system_edit_copy.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="media">
|
<qresource prefix="media">
|
||||||
<file>media_time.png</file>
|
|
||||||
<file>slidecontroller_multimedia.png</file>
|
<file>slidecontroller_multimedia.png</file>
|
||||||
<file>multimedia-player.png</file>
|
<file>multimedia-player.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 762 B |
Binary file not shown.
Before Width: | Height: | Size: 946 B |
Binary file not shown.
Before Width: | Height: | Size: 813 B |
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
Loading…
Reference in New Issue
Block a user