7 Module to get the object name, class name or signatures of a Qt form (*.ui). |
7 Module to get the object name, class name or signatures of a Qt form (*.ui). |
8 """ |
8 """ |
9 |
9 |
10 import sys |
10 import sys |
11 import json |
11 import json |
12 import xml.etree.ElementTree |
12 import xml.etree.ElementTree # secok |
13 |
13 |
14 try: |
14 try: |
15 from PyQt5.QtCore import QMetaMethod, QByteArray |
15 from PyQt5.QtCore import QMetaMethod, QByteArray |
16 from PyQt5.QtWidgets import QAction, QWidget, QApplication |
16 from PyQt5.QtWidgets import QAction, QWidget, QApplication |
17 from PyQt5 import uic |
17 from PyQt5 import uic |