UI/NumbersWidget.py

changeset 3190
a9a94491c4fd
parent 3160
209a07d7e401
child 3484
645c12de6b0c
equal deleted inserted replaced
3189:9a21c547de5f 3190:a9a94491c4fd
177 self.decInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) 177 self.decInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png"))
178 self.decOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) 178 self.decOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png"))
179 self.hexInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) 179 self.hexInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png"))
180 self.hexOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) 180 self.hexOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png"))
181 181
182 self.formatBox.addItem(self.trUtf8("Auto"), 0) 182 self.formatBox.addItem(self.tr("Auto"), 0)
183 self.formatBox.addItem(self.trUtf8("Dec"), 10) 183 self.formatBox.addItem(self.tr("Dec"), 10)
184 self.formatBox.addItem(self.trUtf8("Hex"), 16) 184 self.formatBox.addItem(self.tr("Hex"), 16)
185 self.formatBox.addItem(self.trUtf8("Oct"), 8) 185 self.formatBox.addItem(self.tr("Oct"), 8)
186 self.formatBox.addItem(self.trUtf8("Bin"), 2) 186 self.formatBox.addItem(self.tr("Bin"), 2)
187 187
188 self.sizeBox.addItem("8", 8) 188 self.sizeBox.addItem("8", 8)
189 self.sizeBox.addItem("16", 16) 189 self.sizeBox.addItem("16", 16)
190 self.sizeBox.addItem("32", 32) 190 self.sizeBox.addItem("32", 32)
191 self.sizeBox.addItem("64", 64) 191 self.sizeBox.addItem("64", 64)

eric ide

mercurial