Skip to content
Snippets Groups Projects
Commit 28e6c3a5 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Add color button (for later use in preferences)

parent 3d1d34ef
No related branches found
No related tags found
1 merge request!324Add color button (for later use in preferences)
Pipeline #96042 passed
"""
Qt button for use in preference dialogs, selecting color.
"""
from qtpy.QtCore import Qt, Signal
from qtpy.QtGui import QColor
from qtpy.QtWidgets import QColorDialog, QPushButton
class ColorButton(QPushButton):
"""
Button to select color.
Parameters
----------
color : QColor
The initial color of the button.
*args, **kwargs
Additional arguments are passed to QPushButton.
"""
_color_changed = Signal(QColor)
def __init__(self, color: QColor, *args, **kwargs):
super().__init__(*args, **kwargs)
self._color = None
self._default = color
self.pressed.connect(self.pick_color)
# Set the initial/default state.
self.set_color(self._default)
def set_color(self, color: QColor):
"""Set new color."""
if color != self._color:
self._color = color
self._color_changed.emit(color)
if self._color:
self.setStyleSheet("background-color: %s;" % self._color)
else:
self.setStyleSheet("")
@property
def color(self):
"""Current color."""
return self._color
def pick_color(self):
"""Show color-picker dialog to select color."""
dlg = QColorDialog(self)
if self._color:
dlg.setCurrentColor(self._color)
if dlg.exec_():
self.set_color(dlg.currentColor())
def mousePressEvent(self, e):
if e.button() == Qt.RightButton:
self.set_color(self._default)
return super().mousePressEvent(e)
......@@ -20,6 +20,12 @@ gui\_utils.about\_window module
:members:
:undoc-members:
gui\_utils.color\_button module
-------------------------------
.. automodule:: b_asic.gui_utils.color_button
:members:
:undoc-members:
gui\_utils.plot\_window module
-------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment