def __init__(self, parent):
        # initialize the super class
        QWidget.__init__(self, parent)

        self._hue = 0  # defines red color
        self._saturation = 255
        self._lightness = 255
        self._alpha = 255
        self._showAlpha = True
        self._editing = None
    def __init__( self, parent ):
        # initialize the super class
        QWidget.__init__( self, parent )

        self._hue			= 0			# defines red color
        self._saturation	= 255
        self._lightness		= 255
        self._alpha			= 255
        self._showAlpha		= True
        self._editing		= None