当前位置: 首页>>代码示例>>Python>>正文


Python QGraphicsScene.keyPressEvent方法代码示例

本文整理汇总了Python中PyQt5.QtWidgets.QGraphicsScene.keyPressEvent方法的典型用法代码示例。如果您正苦于以下问题:Python QGraphicsScene.keyPressEvent方法的具体用法?Python QGraphicsScene.keyPressEvent怎么用?Python QGraphicsScene.keyPressEvent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PyQt5.QtWidgets.QGraphicsScene的用法示例。


在下文中一共展示了QGraphicsScene.keyPressEvent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: keyPressEvent

# 需要导入模块: from PyQt5.QtWidgets import QGraphicsScene [as 别名]
# 或者: from PyQt5.QtWidgets.QGraphicsScene import keyPressEvent [as 别名]
 def keyPressEvent(self, event):
     QGraphicsScene.keyPressEvent(self, event)
     if event.key() == Qt.Key_F:
         if not self.insert_mode:
             self.velocity_mode = False
             self.insert_mode = True
             self.makeGhostNote(self.mousePos.x(), self.mousePos.y())
             self.modeupdate.emit('insert_mode')
         elif self.insert_mode:
             self.insert_mode = False
             if self.place_ghost: self.place_ghost = False
             self.removeItem(self.ghost_note)
             self.ghost_note = None
             self.modeupdate.emit('')
     elif event.key() == Qt.Key_D:
         if self.velocity_mode:
             self.velocity_mode = False
             self.modeupdate.emit('')
         else:
             if self.insert_mode:
                 self.removeItem(self.ghost_note)
             self.ghost_note = None
             self.insert_mode = False
             self.place_ghost = False
             self.velocity_mode = True
             self.modeupdate.emit('velocity_mode')
     elif event.key() == Qt.Key_A:
         if all((note.isSelected() for note in self.notes)):
             for note in self.notes:
                 note.setSelected(False)
             self.selected_notes = []
         else:
             for note in self.notes:
                 note.setSelected(True)
             self.selected_notes = self.notes[:]
     elif event.key() in (Qt.Key_Delete, Qt.Key_Backspace):
         self.notes = [note for note in self.notes if note not in self.selected_notes]
         for note in self.selected_notes:
             self.removeItem(note)
             self.midievent.emit(["midievent-remove", note.note[0], note.note[1], note.note[2], note.note[3]])
             del note
         self.selected_notes = []
开发者ID:ViktorNova,项目名称:Carla,代码行数:44,代码来源:pianoroll.py


注:本文中的PyQt5.QtWidgets.QGraphicsScene.keyPressEvent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。