← Back to team overview

openlp-core team mailing list archive

Re: [Merge] lp:~phill-ridout/openlp/color_button into lp:openlp

 

Looks good to me.

Diff comments:

> === modified file 'openlp/core/lib/__init__.py'
> --- openlp/core/lib/__init__.py	2014-07-11 11:35:56 +0000
> +++ openlp/core/lib/__init__.py	2014-10-24 21:04:17 +0000
> @@ -318,6 +318,7 @@
>          return translate('OpenLP.core.lib', '%s, %s', 'Locale list separator: start') % (string_list[0], merged)
>  
>  
> +from .colorbutton import ColorButton
>  from .filedialog import FileDialog
>  from .screen import ScreenList
>  from .listwidgetwithdnd import ListWidgetWithDnD
> 
> === added file 'openlp/core/lib/colorbutton.py'
> --- openlp/core/lib/colorbutton.py	1970-01-01 00:00:00 +0000
> +++ openlp/core/lib/colorbutton.py	2014-10-24 21:04:17 +0000
> @@ -0,0 +1,57 @@
> +from PyQt4 import QtCore, QtGui
> +
> +from openlp.core.common import translate
> +
> +
> +class ColorButton(QtGui.QPushButton):
> +    """
> +    Subclasses QPushbutton to create a "Color Chooser" button
> +    """
> +
> +    colorChanged = QtCore.pyqtSignal(str)
> +
> +    def __init__(self, parent):
> +        """
> +        Initialise the ColorButton
> +        """
> +        super(ColorButton, self).__init__()
> +        self.parent = parent
> +        self._color = '#ffffff'
> +        self.setToolTip(translate('OpenLP.ColorButton', 'Click to select a color.'))

I might be talking nonsense here, but I thought that (according to our string guidelines) tooltips were not supposed to end with a full stop.

> +        self.clicked.connect(self.on_clicked)
> +
> +    def change_color(self, color):
> +        """
> +        Sets the _color variable and the background color.
> +
> +        :param color:  String representation of a hexidecimal color
> +        """
> +        self._color = color
> +        self.setStyleSheet('background-color: %s' % color)
> +
> +    @property
> +    def color(self):
> +        """
> +        Property method to return the color variable
> +
> +        :return:  String representation of a hexidecimal color
> +        """
> +        return self._color
> +
> +    @color.setter
> +    def color(self, color):
> +        """
> +        Property setter to change the imstamce color
> +
> +        :param color:  String representation of a hexidecimal color
> +        """
> +        self.change_color(color)
> +
> +    def on_clicked(self):
> +        """
> +        Handle the PushButton clicked signal, showing the ColorDialog and validating the input
> +        """
> +        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self._color), self.parent)
> +        if new_color.isValid() and self._color != new_color.name():
> +            self.change_color(new_color.name())
> +            self.colorChanged.emit(new_color.name())
> 
> === modified file 'openlp/core/ui/advancedtab.py'
> --- openlp/core/ui/advancedtab.py	2014-04-20 12:06:02 +0000
> +++ openlp/core/ui/advancedtab.py	2014-10-24 21:04:17 +0000
> @@ -37,7 +37,7 @@
>  from PyQt4 import QtCore, QtGui
>  
>  from openlp.core.common import AppLocation, Settings, SlideLimits, UiStrings, translate
> -from openlp.core.lib import SettingsTab, build_icon
> +from openlp.core.lib import ColorButton, SettingsTab, build_icon
>  from openlp.core.utils import format_time, get_images_filter
>  
>  log = logging.getLogger(__name__)
> @@ -181,7 +181,7 @@
>          self.default_image_layout.setObjectName('default_image_layout')
>          self.default_color_label = QtGui.QLabel(self.default_image_group_box)
>          self.default_color_label.setObjectName('default_color_label')
> -        self.default_color_button = QtGui.QPushButton(self.default_image_group_box)
> +        self.default_color_button = ColorButton(self.default_image_group_box)
>          self.default_color_button.setObjectName('default_color_button')
>          self.default_image_layout.addRow(self.default_color_label, self.default_color_button)
>          self.default_file_label = QtGui.QLabel(self.default_image_group_box)
> @@ -247,7 +247,7 @@
>          self.service_name_time.timeChanged.connect(self.update_service_name_example)
>          self.service_name_edit.textChanged.connect(self.update_service_name_example)
>          self.service_name_revert_button.clicked.connect(self.on_service_name_revert_button_clicked)
> -        self.default_color_button.clicked.connect(self.on_default_color_button_clicked)
> +        self.default_color_button.colorChanged.connect(self.on_default_color_button_changed)
>          self.default_browse_button.clicked.connect(self.on_default_browse_button_clicked)
>          self.default_revert_button.clicked.connect(self.on_default_revert_button_clicked)
>          self.alternate_rows_check_box.toggled.connect(self.on_alternate_rows_check_box_toggled)
> @@ -299,7 +299,6 @@
>          self.hide_mouse_check_box.setText(translate('OpenLP.AdvancedTab', 'Hide mouse cursor when over display window'))
>          self.default_image_group_box.setTitle(translate('OpenLP.AdvancedTab', 'Default Image'))
>          self.default_color_label.setText(translate('OpenLP.AdvancedTab', 'Background color:'))
> -        self.default_color_button.setToolTip(translate('OpenLP.AdvancedTab', 'Click to select a color.'))
>          self.default_file_label.setText(translate('OpenLP.AdvancedTab', 'Image file:'))
>          self.default_browse_button.setToolTip(translate('OpenLP.AdvancedTab', 'Browse for an image file to display.'))
>          self.default_revert_button.setToolTip(translate('OpenLP.AdvancedTab', 'Revert to the default OpenLP logo.'))
> @@ -395,7 +394,7 @@
>              self.current_data_path = AppLocation.get_data_path()
>              log.warning('User requested data path set to default %s' % self.current_data_path)
>          self.data_directory_label.setText(os.path.abspath(self.current_data_path))
> -        self.default_color_button.setStyleSheet('background-color: %s' % self.default_color)
> +        self.default_color_button.color = self.default_color
>          # Don't allow data directory move if running portable.
>          if settings.value('advanced/is portable'):
>              self.data_directory_group_box.hide()
> @@ -498,14 +497,11 @@
>          self.service_name_edit.setText(UiStrings().DefaultServiceName)
>          self.service_name_edit.setFocus()
>  
> -    def on_default_color_button_clicked(self):
> +    def on_default_color_button_changed(self, color):

I would call this "on_default_color_changed"

>          """
>          Select the background colour of the default display screen.
>          """
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self.default_color), self)
> -        if new_color.isValid():
> -            self.default_color = new_color.name()
> -            self.default_color_button.setStyleSheet('background-color: %s' % self.default_color)
> +        self.default_color = color
>  
>      def on_default_browse_button_clicked(self):
>          """
> 
> === modified file 'openlp/core/ui/media/playertab.py'
> --- openlp/core/ui/media/playertab.py	2014-03-17 19:05:55 +0000
> +++ openlp/core/ui/media/playertab.py	2014-10-24 21:04:17 +0000
> @@ -32,7 +32,7 @@
>  from PyQt4 import QtCore, QtGui
>  
>  from openlp.core.common import Registry, Settings, UiStrings, translate
> -from openlp.core.lib import SettingsTab
> +from openlp.core.lib import ColorButton, SettingsTab
>  from openlp.core.lib.ui import create_button
>  from openlp.core.ui.media import get_media_players, set_media_players
>  
> @@ -76,7 +76,7 @@
>          self.background_color_label = QtGui.QLabel(self.background_color_group_box)
>          self.background_color_label.setObjectName('background_color_label')
>          self.color_layout.addWidget(self.background_color_label)
> -        self.background_color_button = QtGui.QPushButton(self.background_color_group_box)
> +        self.background_color_button = ColorButton(self.background_color_group_box)
>          self.background_color_button.setObjectName('background_color_button')
>          self.color_layout.addWidget(self.background_color_button)
>          self.form_layout.addRow(self.color_layout)
> @@ -124,7 +124,7 @@
>          self.left_layout.addStretch()
>          self.right_layout.addStretch()
>          # Signals and slots
> -        self.background_color_button.clicked.connect(self.on_background_color_button_clicked)
> +        self.background_color_button.colorChanged.connect(self.on_background_color_button_changed)
>  
>      def retranslateUi(self):
>          """
> @@ -138,14 +138,11 @@
>                                         'Visible background for videos with aspect ratio different to screen.'))
>          self.retranslate_players()
>  
> -    def on_background_color_button_clicked(self):
> +    def on_background_color_button_changed(self, color):

Again, "on_background_color_changed"

>          """
>          Set the background color
>          """
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self.background_color), self)
> -        if new_color.isValid():
> -            self.background_color = new_color.name()
> -            self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> +        self.background_color = color
>  
>      def on_player_check_box_changed(self, check_state):
>          """
> @@ -212,7 +209,7 @@
>          self.background_color = settings.value('background color')
>          self.initial_color = self.background_color
>          settings.endGroup()
> -        self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> +        self.background_color_button.color = self.background_color
>  
>      def save(self):
>          """
> 
> === modified file 'openlp/core/ui/themeform.py'
> --- openlp/core/ui/themeform.py	2014-09-04 20:25:23 +0000
> +++ openlp/core/ui/themeform.py	2014-10-24 21:04:17 +0000
> @@ -65,18 +65,18 @@
>          self.theme_layout_form = ThemeLayoutForm(self)
>          self.background_combo_box.currentIndexChanged.connect(self.on_background_combo_box_current_index_changed)
>          self.gradient_combo_box.currentIndexChanged.connect(self.on_gradient_combo_box_current_index_changed)
> -        self.color_button.clicked.connect(self.on_color_button_clicked)
> -        self.image_color_button.clicked.connect(self.on_image_color_button_clicked)
> -        self.gradient_start_button.clicked.connect(self.on_gradient_start_button_clicked)
> -        self.gradient_end_button.clicked.connect(self.on_gradient_end_button_clicked)
> +        self.color_button.colorChanged.connect(self.on_color_button_changed)
> +        self.image_color_button.colorChanged.connect(self.on_image_color_button_changed)
> +        self.gradient_start_button.colorChanged.connect(self.on_gradient_start_button_changed)
> +        self.gradient_end_button.colorChanged.connect(self.on_gradient_end_button_changed)
>          self.image_browse_button.clicked.connect(self.on_image_browse_button_clicked)
>          self.image_file_edit.editingFinished.connect(self.on_image_file_edit_editing_finished)
> -        self.main_color_button.clicked.connect(self.on_main_color_button_clicked)
> -        self.outline_color_button.clicked.connect(self.on_outline_color_button_clicked)
> -        self.shadow_color_button.clicked.connect(self.on_shadow_color_button_clicked)
> +        self.main_color_button.colorChanged.connect(self.on_main_color_button_changed)
> +        self.outline_color_button.colorChanged.connect(self.on_outline_color_button_changed)
> +        self.shadow_color_button.colorChanged.connect(self.on_shadow_color_button_changed)
>          self.outline_check_box.stateChanged.connect(self.on_outline_check_check_box_state_changed)
>          self.shadow_check_box.stateChanged.connect(self.on_shadow_check_check_box_state_changed)
> -        self.footer_color_button.clicked.connect(self.on_footer_color_button_clicked)
> +        self.footer_color_button.colorChanged.connect(self.on_footer_color_button_changed)
>          self.customButtonClicked.connect(self.on_custom_1_button_clicked)
>          self.main_position_check_box.stateChanged.connect(self.on_main_position_check_box_state_changed)
>          self.footer_position_check_box.stateChanged.connect(self.on_footer_position_check_box_state_changed)
> @@ -295,14 +295,14 @@
>          Handle the display and state of the Background page.
>          """
>          if self.theme.background_type == BackgroundType.to_string(BackgroundType.Solid):
> -            self.color_button.setStyleSheet('background-color: %s' % self.theme.background_color)
> +            self.color_button.color = self.theme.background_color
>              self.setField('background_type', 0)
>          elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Gradient):
> -            self.gradient_start_button.setStyleSheet('background-color: %s' % self.theme.background_start_color)
> -            self.gradient_end_button.setStyleSheet('background-color: %s' % self.theme.background_end_color)
> +            self.gradient_start_button.color = self.theme.background_start_color
> +            self.gradient_end_button.color = self.theme.background_end_color
>              self.setField('background_type', 1)
>          elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Image):
> -            self.image_color_button.setStyleSheet('background-color: %s' % self.theme.background_border_color)
> +            self.image_color_button.color = self.theme.background_border_color
>              self.image_file_edit.setText(self.theme.background_filename)
>              self.setField('background_type', 2)
>          elif self.theme.background_type == BackgroundType.to_string(BackgroundType.Transparent):
> @@ -323,14 +323,14 @@
>          Handle the display and state of the Main Area page.
>          """
>          self.main_font_combo_box.setCurrentFont(QtGui.QFont(self.theme.font_main_name))
> -        self.main_color_button.setStyleSheet('background-color: %s' % self.theme.font_main_color)
> +        self.main_color_button.color = self.theme.font_main_color
>          self.setField('main_size_spin_box', self.theme.font_main_size)
>          self.setField('line_spacing_spin_box', self.theme.font_main_line_adjustment)
>          self.setField('outline_check_box', self.theme.font_main_outline)
> -        self.outline_color_button.setStyleSheet('background-color: %s' % self.theme.font_main_outline_color)
> +        self.outline_color_button.color = self.theme.font_main_outline_color
>          self.setField('outline_size_spin_box', self.theme.font_main_outline_size)
>          self.setField('shadow_check_box', self.theme.font_main_shadow)
> -        self.shadow_color_button.setStyleSheet('background-color: %s' % self.theme.font_main_shadow_color)
> +        self.shadow_color_button.color = self.theme.font_main_shadow_color
>          self.setField('shadow_size_spin_box', self.theme.font_main_shadow_size)
>          self.setField('main_bold_check_box', self.theme.font_main_bold)
>          self.setField('main_italics_check_box', self.theme.font_main_italics)
> @@ -340,7 +340,7 @@
>          Handle the display and state of the Footer Area page.
>          """
>          self.footer_font_combo_box.setCurrentFont(QtGui.QFont(self.theme.font_footer_name))
> -        self.footer_color_button.setStyleSheet('background-color: %s' % self.theme.font_footer_color)
> +        self.footer_color_button.color = self.theme.font_footer_color
>          self.setField('footer_size_spin_box', self.theme.font_footer_size)
>  
>      def set_position_page_values(self):
> @@ -399,33 +399,29 @@
>              self.theme.background_direction = BackgroundGradientType.to_string(index)
>              self.set_background_page_values()
>  
> -    def on_color_button_clicked(self):
> -        """
> -        Background / Gradient 1 _color button pushed.
> -        """
> -        self.theme.background_color = self._color_button(self.theme.background_color)
> -        self.set_background_page_values()
> -
> -    def on_image_color_button_clicked(self):
> -        """
> -        Background / Gradient 1 _color button pushed.
> -        """
> -        self.theme.background_border_color = self._color_button(self.theme.background_border_color)
> -        self.set_background_page_values()
> -
> -    def on_gradient_start_button_clicked(self):
> -        """
> -        Gradient 2 _color button pushed.
> -        """
> -        self.theme.background_start_color = self._color_button(self.theme.background_start_color)
> -        self.set_background_page_values()
> -
> -    def on_gradient_end_button_clicked(self):
> -        """
> -        Gradient 2 _color button pushed.
> -        """
> -        self.theme.background_end_color = self._color_button(self.theme.background_end_color)
> -        self.set_background_page_values()
> +    def on_color_button_changed(self, color):
> +        """
> +        Background / Gradient 1 _color button pushed.
> +        """
> +        self.theme.background_color = color
> +
> +    def on_image_color_button_changed(self, color):
> +        """
> +        Background / Gradient 1 _color button pushed.
> +        """
> +        self.theme.background_border_color = color
> +
> +    def on_gradient_start_button_changed(self, color):
> +        """
> +        Gradient 2 _color button pushed.
> +        """
> +        self.theme.background_start_color = color
> +
> +    def on_gradient_end_button_changed(self, color):
> +        """
> +        Gradient 2 _color button pushed.
> +        """
> +        self.theme.background_end_color = color
>  
>      def on_image_browse_button_clicked(self):
>          """
> @@ -445,33 +441,29 @@
>          """
>          self.theme.background_filename = str(self.image_file_edit.text())
>  
> -    def on_main_color_button_clicked(self):
> +    def on_main_color_button_changed(self, color):
>          """
>          Set the main colour value
>          """
> -        self.theme.font_main_color = self._color_button(self.theme.font_main_color)
> -        self.set_main_area_page_values()
> +        self.theme.font_main_color = color
>  
> -    def on_outline_color_button_clicked(self):
> +    def on_outline_color_button_changed(self, color):
>          """
>          Set the outline colour value
>          """
> -        self.theme.font_main_outline_color = self._color_button(self.theme.font_main_outline_color)
> -        self.set_main_area_page_values()
> +        self.theme.font_main_outline_color = color
>  
> -    def on_shadow_color_button_clicked(self):
> +    def on_shadow_color_button_changed(self, color):
>          """
>          Set the shadow colour value
>          """
> -        self.theme.font_main_shadow_color = self._color_button(self.theme.font_main_shadow_color)
> -        self.set_main_area_page_values()
> +        self.theme.font_main_shadow_color = color
>  
> -    def on_footer_color_button_clicked(self):
> +    def on_footer_color_button_changed(self, color):
>          """
>          Set the footer colour value
>          """
> -        self.theme.font_footer_color = self._color_button(self.theme.font_footer_color)
> -        self.set_footer_area_page_values()
> +        self.theme.font_footer_color = color
>  
>      def update_theme(self):
>          """
> @@ -532,12 +524,3 @@
>              return
>          self.theme_manager.save_theme(self.theme, save_from, save_to)
>          return QtGui.QDialog.accept(self)
> -
> -    def _color_button(self, field):
> -        """
> -        Handle _color buttons
> -        """
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(field), self)
> -        if new_color.isValid():
> -            field = new_color.name()
> -        return field
> 
> === modified file 'openlp/core/ui/themewizard.py'
> --- openlp/core/ui/themewizard.py	2014-10-08 19:42:30 +0000
> +++ openlp/core/ui/themewizard.py	2014-10-24 21:04:17 +0000
> @@ -32,7 +32,7 @@
>  from PyQt4 import QtCore, QtGui
>  
>  from openlp.core.common import UiStrings, translate, is_macosx
> -from openlp.core.lib import build_icon
> +from openlp.core.lib import build_icon, ColorButton
>  from openlp.core.lib.theme import HorizontalType, BackgroundType, BackgroundGradientType
>  from openlp.core.lib.ui import add_welcome_page, create_valign_selection_widgets
>  
> @@ -82,7 +82,7 @@
>          self.color_layout.setObjectName('color_layout')
>          self.color_label = QtGui.QLabel(self.color_widget)
>          self.color_label.setObjectName('color_label')
> -        self.color_button = QtGui.QPushButton(self.color_widget)
> +        self.color_button = ColorButton(self.color_widget)
>          self.color_button.setObjectName('color_button')
>          self.color_layout.addRow(self.color_label, self.color_button)
>          self.color_layout.setItem(1, QtGui.QFormLayout.LabelRole, self.spacer)
> @@ -94,12 +94,12 @@
>          self.gradient_layout.setObjectName('gradient_layout')
>          self.gradient_start_label = QtGui.QLabel(self.gradient_widget)
>          self.gradient_start_label.setObjectName('gradient_start_label')
> -        self.gradient_start_button = QtGui.QPushButton(self.gradient_widget)
> +        self.gradient_start_button = ColorButton(self.gradient_widget)
>          self.gradient_start_button.setObjectName('gradient_start_button')
>          self.gradient_layout.addRow(self.gradient_start_label, self.gradient_start_button)
>          self.gradient_end_label = QtGui.QLabel(self.gradient_widget)
>          self.gradient_end_label.setObjectName('gradient_end_label')
> -        self.gradient_end_button = QtGui.QPushButton(self.gradient_widget)
> +        self.gradient_end_button = ColorButton(self.gradient_widget)
>          self.gradient_end_button.setObjectName('gradient_end_button')
>          self.gradient_layout.addRow(self.gradient_end_label, self.gradient_end_button)
>          self.gradient_type_label = QtGui.QLabel(self.gradient_widget)
> @@ -117,7 +117,7 @@
>          self.image_layout.setObjectName('image_layout')
>          self.image_color_label = QtGui.QLabel(self.color_widget)
>          self.image_color_label.setObjectName('image_color_label')
> -        self.image_color_button = QtGui.QPushButton(self.color_widget)
> +        self.image_color_button = ColorButton(self.color_widget)
>          self.image_color_button.setObjectName('image_color_button')
>          self.image_layout.addRow(self.image_color_label, self.image_color_button)
>          self.image_label = QtGui.QLabel(self.image_widget)
> @@ -156,7 +156,7 @@
>          self.main_color_label.setObjectName('main_color_label')
>          self.main_properties_layout = QtGui.QHBoxLayout()
>          self.main_properties_layout.setObjectName('main_properties_layout')
> -        self.main_color_button = QtGui.QPushButton(self.main_area_page)
> +        self.main_color_button = ColorButton(self.main_area_page)
>          self.main_color_button.setObjectName('main_color_button')
>          self.main_properties_layout.addWidget(self.main_color_button)
>          self.main_properties_layout.addSpacing(20)
> @@ -192,7 +192,7 @@
>          self.outline_check_box.setObjectName('outline_check_box')
>          self.outline_layout = QtGui.QHBoxLayout()
>          self.outline_layout.setObjectName('outline_layout')
> -        self.outline_color_button = QtGui.QPushButton(self.main_area_page)
> +        self.outline_color_button = ColorButton(self.main_area_page)
>          self.outline_color_button.setEnabled(False)
>          self.outline_color_button.setObjectName('Outline_color_button')
>          self.outline_layout.addWidget(self.outline_color_button)
> @@ -209,7 +209,7 @@
>          self.shadow_check_box.setObjectName('shadow_check_box')
>          self.shadow_layout = QtGui.QHBoxLayout()
>          self.shadow_layout.setObjectName('shadow_layout')
> -        self.shadow_color_button = QtGui.QPushButton(self.main_area_page)
> +        self.shadow_color_button = ColorButton(self.main_area_page)
>          self.shadow_color_button.setEnabled(False)
>          self.shadow_color_button.setObjectName('shadow_color_button')
>          self.shadow_layout.addWidget(self.shadow_color_button)
> @@ -235,7 +235,7 @@
>          self.footer_area_layout.addRow(self.footer_font_label, self.footer_font_combo_box)
>          self.footer_color_label = QtGui.QLabel(self.footer_area_page)
>          self.footer_color_label.setObjectName('footer_color_label')
> -        self.footer_color_button = QtGui.QPushButton(self.footer_area_page)
> +        self.footer_color_button = ColorButton(self.footer_area_page)
>          self.footer_color_button.setObjectName('footer_color_button')
>          self.footer_area_layout.addRow(self.footer_color_label, self.footer_color_button)
>          self.footer_size_label = QtGui.QLabel(self.footer_area_page)
> 
> === modified file 'openlp/plugins/alerts/lib/alertstab.py'
> --- openlp/plugins/alerts/lib/alertstab.py	2014-01-01 09:33:07 +0000
> +++ openlp/plugins/alerts/lib/alertstab.py	2014-10-24 21:04:17 +0000
> @@ -30,7 +30,7 @@
>  from PyQt4 import QtGui
>  
>  from openlp.core.common import Settings, UiStrings, translate
> -from openlp.core.lib import SettingsTab
> +from openlp.core.lib import ColorButton, SettingsTab
>  from openlp.core.lib.ui import create_valign_selection_widgets
>  
>  
> @@ -57,14 +57,14 @@
>          self.font_color_label.setObjectName('font_color_label')
>          self.color_layout = QtGui.QHBoxLayout()
>          self.color_layout.setObjectName('color_layout')
> -        self.font_color_button = QtGui.QPushButton(self.font_group_box)
> +        self.font_color_button = ColorButton(self.font_group_box)
>          self.font_color_button.setObjectName('font_color_button')
>          self.color_layout.addWidget(self.font_color_button)
>          self.color_layout.addSpacing(20)
>          self.background_color_label = QtGui.QLabel(self.font_group_box)
>          self.background_color_label.setObjectName('background_color_label')
>          self.color_layout.addWidget(self.background_color_label)
> -        self.background_color_button = QtGui.QPushButton(self.font_group_box)
> +        self.background_color_button = ColorButton(self.font_group_box)
>          self.background_color_button.setObjectName('background_color_button')
>          self.color_layout.addWidget(self.background_color_button)
>          self.font_layout.addRow(self.font_color_label, self.color_layout)
> @@ -95,8 +95,8 @@
>          self.right_layout.addWidget(self.preview_group_box)
>          self.right_layout.addStretch()
>          # Signals and slots
> -        self.background_color_button.clicked.connect(self.on_background_color_button_clicked)
> -        self.font_color_button.clicked.connect(self.on_font_color_button_clicked)
> +        self.background_color_button.colorChanged.connect(self.on_background_color_button_changed)
> +        self.font_color_button.colorChanged.connect(self.on_font_color_button_changed)
>          self.font_combo_box.activated.connect(self.on_font_combo_box_clicked)
>          self.timeout_spin_box.valueChanged.connect(self.on_timeout_spin_box_changed)
>          self.font_size_spin_box.valueChanged.connect(self.on_font_size_spin_box_changed)
> @@ -113,15 +113,12 @@
>          self.preview_group_box.setTitle(UiStrings().Preview)
>          self.font_preview.setText(UiStrings().OLPV2x)
>  
> -    def on_background_color_button_clicked(self):
> +    def on_background_color_button_changed(self, color):
>          """
>          The background color has been changed.
>          """
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self.background_color), self)
> -        if new_color.isValid():
> -            self.background_color = new_color.name()
> -            self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> -            self.update_display()
> +        self.background_color = color
> +        self.update_display()
>  
>      def on_font_combo_box_clicked(self):
>          """
> @@ -129,15 +126,12 @@
>          """
>          self.update_display()
>  
> -    def on_font_color_button_clicked(self):
> +    def on_font_color_button_changed(self, color):
>          """
>          The Font Color button has clicked.
>          """
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self.font_color), self)
> -        if new_color.isValid():
> -            self.font_color = new_color.name()
> -            self.font_color_button.setStyleSheet('background-color: %s' % self.font_color)
> -            self.update_display()
> +        self.font_color = color
> +        self.update_display()
>  
>      def on_timeout_spin_box_changed(self):
>          """
> @@ -169,8 +163,8 @@
>          settings.endGroup()
>          self.font_size_spin_box.setValue(self.font_size)
>          self.timeout_spin_box.setValue(self.timeout)
> -        self.font_color_button.setStyleSheet('background-color: %s' % self.font_color)
> -        self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> +        self.font_color_button.color = self.font_color
> +        self.background_color_button.color = self.background_color
>          self.vertical_combo_box.setCurrentIndex(self.location)
>          font = QtGui.QFont()
>          font.setFamily(self.font_face)
> 
> === modified file 'openlp/plugins/images/lib/imagetab.py'
> --- openlp/plugins/images/lib/imagetab.py	2013-12-24 08:56:50 +0000
> +++ openlp/plugins/images/lib/imagetab.py	2014-10-24 21:04:17 +0000
> @@ -30,7 +30,7 @@
>  from PyQt4 import QtGui
>  
>  from openlp.core.common import Settings, UiStrings, translate
> -from openlp.core.lib import SettingsTab
> +from openlp.core.lib import ColorButton, SettingsTab
>  
>  
>  class ImageTab(SettingsTab):
> @@ -51,7 +51,7 @@
>          self.background_color_label = QtGui.QLabel(self.background_color_group_box)
>          self.background_color_label.setObjectName('background_color_label')
>          self.color_layout.addWidget(self.background_color_label)
> -        self.background_color_button = QtGui.QPushButton(self.background_color_group_box)
> +        self.background_color_button = ColorButton(self.background_color_group_box)
>          self.background_color_button.setObjectName('background_color_button')
>          self.color_layout.addWidget(self.background_color_button)
>          self.form_layout.addRow(self.color_layout)
> @@ -64,7 +64,7 @@
>          self.right_column.setSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Preferred)
>          self.right_layout.addStretch()
>          # Signals and slots
> -        self.background_color_button.clicked.connect(self.on_background_color_button_clicked)
> +        self.background_color_button.colorChanged.connect(self.on_background_color_button_changed)
>  
>      def retranslateUi(self):
>          self.background_color_group_box.setTitle(UiStrings().BackgroundColor)
> @@ -72,11 +72,8 @@
>          self.information_label.setText(
>              translate('ImagesPlugin.ImageTab', 'Visible background for images with aspect ratio different to screen.'))
>  
> -    def on_background_color_button_clicked(self):
> -        new_color = QtGui.QColorDialog.getColor(QtGui.QColor(self.background_color), self)
> -        if new_color.isValid():
> -            self.background_color = new_color.name()
> -            self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> +    def on_background_color_button_changed(self, color):
> +        self.background_color = color
>  
>      def load(self):
>          settings = Settings()
> @@ -84,7 +81,7 @@
>          self.background_color = settings.value('background color')
>          self.initial_color = self.background_color
>          settings.endGroup()
> -        self.background_color_button.setStyleSheet('background-color: %s' % self.background_color)
> +        self.background_color_button.color = self.background_color
>  
>      def save(self):
>          settings = Settings()
> 


-- 
https://code.launchpad.net/~phill-ridout/openlp/color_button/+merge/239487
Your team OpenLP Core is requested to review the proposed merge of lp:~phill-ridout/openlp/color_button into lp:openlp.


References