6 """ |
6 """ |
7 Module implementing a dialog for the configuration of eric5's keyboard |
7 Module implementing a dialog for the configuration of eric5's keyboard |
8 shortcuts. |
8 shortcuts. |
9 """ |
9 """ |
10 |
10 |
11 from __future__ import unicode_literals # __IGNORE_WARNING__ |
11 from __future__ import unicode_literals |
12 |
12 |
13 from PyQt4.QtCore import pyqtSignal, QRegExp, Qt, pyqtSlot |
13 from PyQt4.QtCore import pyqtSignal, QRegExp, Qt, pyqtSlot |
14 from PyQt4.QtGui import QKeySequence, QHeaderView, QDialog, QTreeWidgetItem |
14 from PyQt4.QtGui import QKeySequence, QHeaderView, QDialog, QTreeWidgetItem |
15 |
15 |
16 from E5Gui.E5Application import e5App |
16 from E5Gui.E5Application import e5App |