|  | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Pixmap Button, a custom Qt4 widget
# Copyright (C) 2013 Filipe Coelho <falktx@falktx.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# For a full copy of the GNU General Public License see the GPL.txt file
# ------------------------------------------------------------------------------------------------------------
# Imports (Global)
from PyQt4.QtCore import QRectF
from PyQt4.QtGui import QPainter, QPixmap, QPushButton
# ------------------------------------------------------------------------------------------------------------
# Widget Class
class PixmapButton(QPushButton):
    def __init__(self, parent):
        QPushButton.__init__(self, parent)
        self.fPixmapNormal = QPixmap()
        self.fPixmapDown   = QPixmap()
        self.fPixmapHover  = QPixmap()
        self.fPixmapRect   = QRectF(0, 0, 0, 0)
        self.fIsHovered = False
        self.setText("")
    def setPixmaps(self, normal, down, hover):
        self.fPixmapNormal.load(normal)
        self.fPixmapDown.load(down)
        self.fPixmapHover.load(hover)
        width  = self.fPixmapNormal.width()
        height = self.fPixmapNormal.height()
        self.fPixmapRect = QRectF(0, 0, width, height)
        self.setMinimumSize(width, height)
        self.setMaximumSize(width, height)
    def enterEvent(self, event):
        self.fIsHovered = True
        QPushButton.enterEvent(self, event)
    def leaveEvent(self, event):
        self.fIsHovered = False
        QPushButton.leaveEvent(self, event)
    def paintEvent(self, event):
        painter = QPainter(self)
        event.accept()
        if not self.isEnabled():
            painter.setOpacity(0.2)
            painter.drawPixmap(self.fPixmapRect, self.fPixmapNormal, self.fPixmapRect)
        elif self.isChecked() or self.isDown():
            painter.drawPixmap(self.fPixmapRect, self.fPixmapDown, self.fPixmapRect)
        elif self.fIsHovered:
            painter.drawPixmap(self.fPixmapRect, self.fPixmapHover, self.fPixmapRect)
        else:
            painter.drawPixmap(self.fPixmapRect, self.fPixmapNormal, self.fPixmapRect)
 |