Example #1
0
 def keyPressEvent (self, event):
     if event.key() == Qt.Key_Escape:
         self.command.end_edit_item(True)
     else:
         QLineEdit.keyPressEvent(self, event)
Example #2
0
 def keyPressEvent(self, event):
     if event.key() == Qt.Key_Escape:
         self.command.end_edit_item(True)
     else:
         QLineEdit.keyPressEvent(self, event)
Example #3
0
 def __init__(self, command):
     QLineEdit.__init__(self)
     self.command = command
Example #4
0
 def __init__(self, command):
     QLineEdit.__init__(self)
     self.command = command