179 self.decInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) |
179 self.decInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) |
180 self.decOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) |
180 self.decOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) |
181 self.hexInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) |
181 self.hexInButton.setIcon(UI.PixmapCache.getIcon("2downarrow.png")) |
182 self.hexOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) |
182 self.hexOutButton.setIcon(UI.PixmapCache.getIcon("2uparrow.png")) |
183 |
183 |
184 self.formatBox.addItem(self.trUtf8("Auto"), 0) |
184 self.formatBox.addItem(self.tr("Auto"), 0) |
185 self.formatBox.addItem(self.trUtf8("Dec"), 10) |
185 self.formatBox.addItem(self.tr("Dec"), 10) |
186 self.formatBox.addItem(self.trUtf8("Hex"), 16) |
186 self.formatBox.addItem(self.tr("Hex"), 16) |
187 self.formatBox.addItem(self.trUtf8("Oct"), 8) |
187 self.formatBox.addItem(self.tr("Oct"), 8) |
188 self.formatBox.addItem(self.trUtf8("Bin"), 2) |
188 self.formatBox.addItem(self.tr("Bin"), 2) |
189 |
189 |
190 self.sizeBox.addItem("8", 8) |
190 self.sizeBox.addItem("8", 8) |
191 self.sizeBox.addItem("16", 16) |
191 self.sizeBox.addItem("16", 16) |
192 self.sizeBox.addItem("32", 32) |
192 self.sizeBox.addItem("32", 32) |
193 self.sizeBox.addItem("64", 64) |
193 self.sizeBox.addItem("64", 64) |