2011-04-05 16:53:05 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-03-02 02:55:32 +00:00
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
|
|
|
import pyqtgraph.functions as functions
|
|
|
|
|
|
|
|
__all__ = ['ColorButton']
|
2011-04-05 16:53:05 +00:00
|
|
|
|
|
|
|
class ColorButton(QtGui.QPushButton):
|
2012-04-30 22:20:27 +00:00
|
|
|
"""
|
|
|
|
**Bases:** QtGui.QPushButton
|
2011-04-05 16:53:05 +00:00
|
|
|
|
2012-04-30 22:20:27 +00:00
|
|
|
Button displaying a color and allowing the user to select a new color.
|
|
|
|
|
|
|
|
====================== ============================================================
|
|
|
|
**Signals**:
|
|
|
|
sigColorChanging(self) emitted whenever a new color is picked in the color dialog
|
|
|
|
sigColorChanged(self) emitted when the selected color is accepted (user clicks OK)
|
|
|
|
====================== ============================================================
|
|
|
|
"""
|
2011-04-05 16:53:05 +00:00
|
|
|
sigColorChanging = QtCore.Signal(object) ## emitted whenever a new color is picked in the color dialog
|
|
|
|
sigColorChanged = QtCore.Signal(object) ## emitted when the selected color is accepted (user clicks OK)
|
|
|
|
|
2011-04-25 12:51:18 +00:00
|
|
|
def __init__(self, parent=None, color=(128,128,128)):
|
|
|
|
QtGui.QPushButton.__init__(self, parent)
|
2011-04-05 16:53:05 +00:00
|
|
|
self.setColor(color)
|
|
|
|
self.colorDialog = QtGui.QColorDialog()
|
|
|
|
self.colorDialog.setOption(QtGui.QColorDialog.ShowAlphaChannel, True)
|
|
|
|
self.colorDialog.setOption(QtGui.QColorDialog.DontUseNativeDialog, True)
|
|
|
|
self.colorDialog.currentColorChanged.connect(self.dialogColorChanged)
|
|
|
|
self.colorDialog.rejected.connect(self.colorRejected)
|
|
|
|
self.colorDialog.colorSelected.connect(self.colorSelected)
|
|
|
|
#QtCore.QObject.connect(self.colorDialog, QtCore.SIGNAL('currentColorChanged(const QColor&)'), self.currentColorChanged)
|
|
|
|
#QtCore.QObject.connect(self.colorDialog, QtCore.SIGNAL('rejected()'), self.currentColorRejected)
|
|
|
|
self.clicked.connect(self.selectColor)
|
|
|
|
self.setMinimumHeight(15)
|
|
|
|
self.setMinimumWidth(15)
|
|
|
|
|
|
|
|
def paintEvent(self, ev):
|
|
|
|
QtGui.QPushButton.paintEvent(self, ev)
|
|
|
|
p = QtGui.QPainter(self)
|
2012-03-02 02:55:32 +00:00
|
|
|
rect = self.rect().adjusted(6, 6, -6, -6)
|
|
|
|
## draw white base, then texture for indicating transparency, then actual color
|
|
|
|
p.setBrush(functions.mkBrush('w'))
|
|
|
|
p.drawRect(rect)
|
|
|
|
p.setBrush(QtGui.QBrush(QtCore.Qt.DiagCrossPattern))
|
|
|
|
p.drawRect(rect)
|
2011-04-05 16:53:05 +00:00
|
|
|
p.setBrush(functions.mkBrush(self._color))
|
2012-03-02 02:55:32 +00:00
|
|
|
p.drawRect(rect)
|
2011-04-05 16:53:05 +00:00
|
|
|
p.end()
|
|
|
|
|
|
|
|
def setColor(self, color, finished=True):
|
2012-04-30 22:20:27 +00:00
|
|
|
"""Sets the button's color and emits both sigColorChanged and sigColorChanging."""
|
2011-04-05 16:53:05 +00:00
|
|
|
self._color = functions.mkColor(color)
|
|
|
|
if finished:
|
|
|
|
self.sigColorChanged.emit(self)
|
|
|
|
else:
|
|
|
|
self.sigColorChanging.emit(self)
|
|
|
|
self.update()
|
|
|
|
|
|
|
|
def selectColor(self):
|
|
|
|
self.origColor = self.color()
|
|
|
|
self.colorDialog.setCurrentColor(self.color())
|
|
|
|
self.colorDialog.open()
|
|
|
|
|
|
|
|
def dialogColorChanged(self, color):
|
|
|
|
if color.isValid():
|
|
|
|
self.setColor(color, finished=False)
|
|
|
|
|
|
|
|
def colorRejected(self):
|
|
|
|
self.setColor(self.origColor, finished=False)
|
|
|
|
|
|
|
|
def colorSelected(self, color):
|
|
|
|
self.setColor(self._color, finished=True)
|
|
|
|
|
|
|
|
def saveState(self):
|
|
|
|
return functions.colorTuple(self._color)
|
|
|
|
|
|
|
|
def restoreState(self, state):
|
|
|
|
self.setColor(state)
|
|
|
|
|
|
|
|
def color(self):
|
|
|
|
return functions.mkColor(self._color)
|
|
|
|
|
|
|
|
def widgetGroupInterface(self):
|
|
|
|
return (self.sigColorChanged, ColorButton.saveState, ColorButton.restoreState)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app = QtGui.QApplication([])
|
|
|
|
win = QtGui.QMainWindow()
|
|
|
|
btn = ColorButton()
|
|
|
|
win.setCentralWidget(btn)
|
|
|
|
win.show()
|
|
|
|
|
|
|
|
def change(btn):
|
|
|
|
print "change", btn.color()
|
|
|
|
def done(btn):
|
|
|
|
print "done", btn.color()
|
|
|
|
|
|
|
|
btn.sigColorChanging.connect(change)
|
|
|
|
btn.sigColorChanged.connect(done)
|
2012-03-02 02:55:32 +00:00
|
|
|
|
|
|
|
## Start Qt event loop unless running in interactive mode.
|
|
|
|
import sys
|
|
|
|
if sys.flags.interactive != 1:
|
|
|
|
app.exec_()
|