33 """ |
33 """ |
34 Constructor |
34 Constructor |
35 |
35 |
36 @param parent parent widget (QWidget) |
36 @param parent parent widget (QWidget) |
37 """ |
37 """ |
38 QDialog.__init__(self, parent) |
38 super().__init__(parent) |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 |
40 |
41 self.comboItems = [] |
41 self.comboItems = [] |
42 self.comboItems.append(self.trUtf8("Normal character")) |
42 self.comboItems.append(self.trUtf8("Normal character")) |
43 self.comboItems.append(self.trUtf8("Unicode character in hexadecimal notation")) |
43 self.comboItems.append(self.trUtf8("Unicode character in hexadecimal notation")) |