私のアプリケーションでは、ユーザーがマウスボタンをクリックしてアイテムにカーソルを合わせることでアイテムの色を変更できるQGraphicsSceneがあります。以下はPyQtをクリックしている間のホバーイベント
私は別の質問から借りサンプルコードです:だから
PyQt: hover and click events for graphicscene ellipse
from PyQt5 import QtGui, QtCore, QtWidgets
class MyFrame(QtWidgets.QGraphicsView):
def __init__(self, parent = None):
super(MyFrame, self).__init__(parent)
self.setScene(QtWidgets.QGraphicsScene())
# add some items
x = 0
y = 0
w = 15
h = 15
pen = QtGui.QPen(QtGui.QColor(QtCore.Qt.green))
brush = QtGui.QBrush(pen.color().darker(150))
# i want a mouse over and mouse click event for this ellipse
for xi in range(3):
for yi in range(3):
item = callbackRect(x+xi*30, y+yi*30, w, h)
item.setAcceptHoverEvents(True)
item.setPen(pen)
item.setBrush(brush)
self.scene().addItem(item)
item.setFlag(QtWidgets.QGraphicsItem.ItemIsMovable)
class callbackRect(QtWidgets.QGraphicsRectItem):
'''
Rectangle call-back class.
'''
def mouseReleaseEvent(self, event):
# recolor on click
color = QtGui.QColor(180, 174, 185)
brush = QtGui.QBrush(color)
QtWidgets.QGraphicsRectItem.setBrush(self, brush)
return QtWidgets.QGraphicsRectItem.mouseReleaseEvent(self, event)
def hoverMoveEvent(self, event):
# Do your stuff here.
pass
def hoverEnterEvent(self, event):
color = QtGui.QColor(0, 174, 185)
brush = QtGui.QBrush(color)
QtWidgets.QGraphicsRectItem.setBrush(self, brush)
def hoverLeaveEvent(self, event):
color = QtGui.QColor(QtCore.Qt.green)
brush = QtGui.QBrush(color.darker(150))
QtWidgets.QGraphicsRectItem.setBrush(self, brush)
if (__name__ == '__main__'):
app = QtWidgets.QApplication([])
f = MyFrame()
f.show()
app.exec_()
、押されていない状態でマウスボタンがない場合、このコードでホバリングメソッドのみが呼び出されます。ドキュメンテーション(PySideの場合)に記載されているように、mousePressEventは、「マウスイベントを受け取るグラフィックスアイテムを決定します」。何らかの方法で他のアイテムのマウスイベントをブロックします。
しかし、同時にマウスボタンを押したまま、別の項目のホバーイベントを呼び出す方法はありますか?
は、より良い説明、あなたの説明が混乱して、アイテムが押されたときに、マウスがアイテムを推移されたときにそれが起こるしたいです – eyllanesc
だから、アイテムの横の位置をクリックしたいと思って、その上にカーソルを移動している間に(マウスのボタンをクリックしても)このアイテムのホバーイベントがトリガーされます。 –
私はあなたが望む出来事を理解しています、起こったときにどんな仕事をしたいですか? – eyllanesc