|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #!/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):
- STATE_NULL = 0
- STATE_NORMAL = 1
- STATE_DOWN = 2
- STATE_HOVER = 3
-
- 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)
-
- self.setPixmapSize(self.fPixmapNormal.width())
-
- def setPixmapSize(self, size):
- self.fPixmapRect = QRectF(0, 0, size, size)
-
- self.setMinimumSize(size, size)
- self.setMaximumSize(size, size)
-
- 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)
|