Add difficulty buttons

master
En Yi 2018-07-09 19:20:46 +08:00
parent 822d47f684
commit 2452a9e5e3
2 changed files with 29 additions and 10 deletions

View File

@ -33,7 +33,7 @@ class animBox(QGraphicsObject):
# Whether the mouse hover over the box
self.detected = False
self.btn_rect = self.boundingRect()
self.btn_rect = QRectF(self.x, self.y, self.width, self.height)
# The 4 lines to construct the box
self.left = QLineF()
self.down = QLineF()
@ -71,7 +71,7 @@ class animBox(QGraphicsObject):
# Reimplemented boundingRect
def boundingRect(self):
return QRectF(self.x, self.y, self.width, self.height)
return QRectF(self.x-5, self.y-5, self.width+10, self.height+10)
# Reimplemented paint
def paint(self, painter, style, widget=None):
@ -82,7 +82,7 @@ class animBox(QGraphicsObject):
painter.setPen(self.default_pen)
painter.fillRect(self.btn_rect, Qt.black)
painter.drawRect(self.btn_rect)
painter.drawText(self.boundingRect(),self.text)
painter.drawText(self.btn_rect,self.text)
# Defining the length to be drawn as a pyqtProperty
@pyqtProperty(float)

View File

@ -5,6 +5,7 @@ from PyQt5.QtWidgets import (QSizePolicy, QGraphicsWidget, QGraphicsItem,
from PyQt5.QtCore import (QAbstractAnimation, QObject, QPointF, Qt, QRectF, QLineF,
QPropertyAnimation, pyqtProperty, pyqtSignal, QSizeF)
from graphic_components import buttons
class TimerDisplayer(QGraphicsWidget):
@ -49,7 +50,15 @@ class DifficultyDisplayer(QGraphicsWidget):
self.box_pen.setWidth(self.pen_width)
self.timer_box = QRectF(0, 0, self.width, self.height)
self.diff_box = QRectF(0, 0, self.width, self.height)
self.diff_buttons = []
self.difficulty = ['Easy', 'Normal', 'Hard', 'Insane']
for i in range(4):
btn = buttons.animBox(0, -(self.height + 10) * (i + 1),
self.width, self.height, self.difficulty[i], parent=self)
btn.setVisible(False)
self.diff_buttons.append(btn)
self.setMinimumSize(QSizeF(self.width, self.height))
self.setMaximumSize(QSizeF(self.width, self.height))
@ -57,10 +66,20 @@ class DifficultyDisplayer(QGraphicsWidget):
self.size_policy.setHeightForWidth(True)
self.setSizePolicy(self.size_policy)
def paint(self, painter, style, widget=None):
box = self.timer_box
#print(self.size().width())
painter.setPen(self.box_pen)
painter.drawRect(box)
painter.drawText(box, Qt.AlignCenter, "Normal")
self.selected = False
def paint(self, painter, style, widget=None):
painter.setPen(self.box_pen)
painter.drawRect(self.diff_box)
painter.drawText(self.diff_box, Qt.AlignCenter, "Normal")
def mousePressEvent(self, event):
self.selected = not self.selected
for btn in self.diff_buttons:
btn.setVisible(self.selected)
self.update()
#def boundingRect(self):
# return QRectF(-20, -(self.height+10)*4 -20, self.width+40, (self.height+20) * 5)