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