QKeySequenceEdit widget support for pyuic
Hans-Peter Jansen <[email protected]>
| Newsgroups | gmane.comp.python.pyqt-pykde |
|---|---|
| Message-ID | <1822220.BXM7RqUUog@xrated> |
Hi Phil, attached is a small patch, that adds support for the QKeySequenceEdit widget in pyuic. It would be nice, if you consider applying it to PyQt5. Cheers, Pete _______________________________________________ PyQt mailing list [email protected] https://www.riverbankcomputing.com/mailman/listinfo/pyqt
add-qkeysequenceedit-to-uic.patch
(text/x-patch, 444 B)
Index: b/pyuic/uic/Compiler/qtproxies.py
===================================================================
--- a/pyuic/uic/Compiler/qtproxies.py
+++ b/pyuic/uic/Compiler/qtproxies.py
@@ -456,6 +456,7 @@ class QtWidgets(ProxyNamespace):
class QPushButton(QAbstractButton): pass
class QCommandLinkButton(QPushButton): pass
+ class QKeySequenceEdit(QWidget): pass
# Add all remaining classes.
for _class in _qwidgets: