annotate python/hexedit.py @ 145:c101826ffe2b

Fixed scrollbar width
author Windel Bouwman
date Fri, 22 Feb 2013 10:03:12 +0100
parents 982ddb5f786d
children 2ccd57b1d78c
rev   line source
142
982ddb5f786d Added shbang string
Windel Bouwman
parents: 140
diff changeset
1 #!/usr/bin/python
982ddb5f786d Added shbang string
Windel Bouwman
parents: 140
diff changeset
2
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
3 import sys
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
4 from PyQt4.QtCore import *
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
5 from PyQt4.QtGui import *
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
6 from PyQt4 import uic
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
7
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
8 BYTES_PER_LINE, GAP = 16, 12
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
9
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
10 def clamp(minimum, x, maximum):
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
11 return max(minimum, min(x, maximum))
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
12
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
13 def asciiChar(v):
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
14 if v < 0x20 or v > 0x7e:
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
15 return '.'
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
16 else:
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
17 return chr(v)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
18
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
19 class BinViewer(QWidget):
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
20 """ The view has an address, hex byte and ascii column """
134
1a50d6db24ed Changes on hexedit
Windel Bouwman
parents: 133
diff changeset
21 def __init__(self, scrollArea):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
22 super().__init__(scrollArea)
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
23 self.scrollArea = scrollArea
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
24 self.setFont(QFont('Courier', 16))
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
25 self.setFocusPolicy(Qt.StrongFocus)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
26 self.blinkcursor = False
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
27 self.cursorX = self.cursorY = 0
134
1a50d6db24ed Changes on hexedit
Windel Bouwman
parents: 133
diff changeset
28 self.scrollArea = scrollArea
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
29 self.Data = bytearray()
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
30 self.Offset = 0
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
31 t = QTimer(self)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
32 t.timeout.connect(self.updateCursor)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
33 t.setInterval(500)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
34 t.start()
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
35 def updateCursor(self):
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
36 self.blinkcursor = not self.blinkcursor
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
37 self.update(self.cursorX, self.cursorY, self.charWidth, self.charHeight)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
38 def setCursorPosition(self, position):
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
39 position = clamp(0, int(position), len(self.Data) * 2 - 1)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
40 self.cursorPosition = position
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
41 x = position % (2 * BYTES_PER_LINE)
137
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
42 x = x + int(x / 2) # Create a gap between hex values
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
43 self.cursorX = self.xposHex + x * self.charWidth
137
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
44 y = int(position / (2 * BYTES_PER_LINE))
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
45 self.cursorY = y * self.charHeight + 2
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
46 self.blinkcursor = True
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
47 self.update()
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
48 def getCursorPosition(self):
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
49 return self.cursorPosition
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
50 CursorPosition = property(getCursorPosition, setCursorPosition)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
51 def setOffset(self, off):
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
52 self.offset = off
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
53 self.update()
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
54 Offset = property(lambda self: self.offset, setOffset)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
55 def paintEvent(self, event):
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
56 # Helper variables:
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
57 er = event.rect()
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
58 chw, chh = self.charWidth, self.charHeight
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
59 painter = QPainter(self)
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
60 # Background:
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
61 painter.fillRect(er, self.palette().color(QPalette.Base))
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
62 painter.fillRect(QRect(self.xposAddr, er.top(), 8 * chw, er.bottom() + 1), Qt.gray)
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
63 painter.setPen(Qt.gray)
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
64 x = self.xposAscii - (GAP / 2)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
65 painter.drawLine(x, er.top(), x, er.bottom())
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
66 x = self.xposEnd - (GAP / 2)
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
67 painter.drawLine(x, er.top(), x, er.bottom())
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
68 # first and last index
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
69 firstIndex = max((int(er.top() / chh) - chh) * BYTES_PER_LINE, 0)
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
70 lastIndex = max((int(er.bottom() / chh) + chh) * BYTES_PER_LINE, 0)
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
71 yposStart = int(firstIndex / BYTES_PER_LINE) * chh + chh
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
72 # Draw contents:
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
73 painter.setPen(Qt.black)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
74 ypos = yposStart
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
75 for index in range(firstIndex, lastIndex, BYTES_PER_LINE):
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
76 painter.setPen(Qt.black)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
77 painter.drawText(self.xposAddr, ypos, '{0:08X}'.format(index + self.Offset))
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
78 xpos = self.xposHex
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
79 xposAscii = self.xposAscii
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
80 for colIndex in range(BYTES_PER_LINE):
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
81 if index + colIndex < len(self.Data):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
82 b = self.Data[index + colIndex]
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
83 bo = self.originalData[index + colIndex]
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
84 if b == bo:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
85 painter.setPen(Qt.black)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
86 else:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
87 painter.setPen(Qt.red)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
88 painter.drawText(xpos, ypos, '{0:02X}'.format(b))
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
89 painter.drawText(xposAscii, ypos, asciiChar(b))
137
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
90 xpos += 3 * chw
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
91 xposAscii += chw
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
92 ypos += chh
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
93 # cursor
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
94 if self.blinkcursor:
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
95 painter.fillRect(self.cursorX, self.cursorY + chh - 2, chw, 2, Qt.black)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
96 def keyPressEvent(self, event):
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
97 if event.matches(QKeySequence.MoveToNextChar):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
98 self.CursorPosition += 1
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
99 if event.matches(QKeySequence.MoveToPreviousChar):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
100 self.CursorPosition -= 1
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
101 if event.matches(QKeySequence.MoveToNextLine):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
102 self.CursorPosition += 2 * BYTES_PER_LINE
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
103 if event.matches(QKeySequence.MoveToPreviousLine):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
104 self.CursorPosition -= 2 * BYTES_PER_LINE
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
105 if event.matches(QKeySequence.MoveToNextPage):
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
106 rows = int(self.scrollArea.viewport().height() / self.charHeight)
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
107 self.CursorPosition += (rows - 1) * 2 * BYTES_PER_LINE
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
108 if event.matches(QKeySequence.MoveToPreviousPage):
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
109 rows = int(self.scrollArea.viewport().height() / self.charHeight)
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
110 self.CursorPosition -= (rows - 1) * 2 * BYTES_PER_LINE
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
111 char = event.text().lower()
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
112 if char and char in '0123456789abcdef':
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
113 i = int(self.CursorPosition / 2)
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
114 hb = self.CursorPosition % 2
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
115 v = int(char, 16)
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
116 if hb == 0:
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
117 # high half byte
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
118 self.data[i] = (self.data[i] & 0xF) | (v << 4)
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
119 else:
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
120 self.data[i] = (self.data[i] & 0xF0) | v
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
121 self.CursorPosition += 1
137
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
122 self.scrollArea.ensureVisible(self.cursorX, self.cursorY + self.charHeight / 2, 4, self.charHeight / 2 + 4)
134
1a50d6db24ed Changes on hexedit
Windel Bouwman
parents: 133
diff changeset
123 self.update()
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
124 def setCursorPositionAt(self, pos):
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
125 """ Calculate cursor position at a certain point """
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
126 if pos.x() > self.xposHex and pos.x() < self.xposAscii:
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
127 x = round((2 * (pos.x() - self.xposHex)) / (self.charWidth * 3))
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
128 y = int(pos.y() / self.charHeight) * 2 * BYTES_PER_LINE
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
129 self.setCursorPosition(x + y)
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
130 def mousePressEvent(self, event):
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
131 self.setCursorPositionAt(event.pos())
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
132 def adjust(self):
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
133 self.charHeight = self.fontMetrics().height()
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
134 self.charWidth = self.fontMetrics().width('x')
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
135 self.xposAddr = GAP
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
136 self.xposHex = self.xposAddr + 8 * self.charWidth + GAP
137
0a540ce31cd5 Added debug toolbar and spaced hexedit
Windel Bouwman
parents: 136
diff changeset
137 self.xposAscii = self.xposHex + (BYTES_PER_LINE * 3 - 1) * self.charWidth + GAP
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
138 self.xposEnd = self.xposAscii + self.charWidth * BYTES_PER_LINE + GAP
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
139 self.setMinimumWidth(self.xposEnd)
145
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
140 if self.isVisible():
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
141 sbw = self.scrollArea.verticalScrollBar().width()
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
142 self.scrollArea.setMinimumWidth(self.xposEnd + sbw + 5)
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
143 r = len(self.Data) % BYTES_PER_LINE
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
144 r = 1 if r > 0 else 0
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
145 self.setMinimumHeight((int(len(self.Data) / BYTES_PER_LINE) + r) * self.charHeight + 4)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
146 self.scrollArea.setMinimumHeight(self.charHeight * 8)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
147 self.update()
145
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
148 def showEvent(self, e):
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
149 self.adjust()
c101826ffe2b Fixed scrollbar width
Windel Bouwman
parents: 142
diff changeset
150 super().showEvent(e)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
151 def setData(self, d):
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
152 self.data = bytearray(d)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
153 self.originalData = bytearray(d)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
154 self.adjust()
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
155 self.setCursorPosition(0)
139
2ec4d4332b7a Improve hexedit
Windel Bouwman
parents: 137
diff changeset
156 Data = property(lambda self: self.data, setData)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
157
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
158 class HexEdit(QScrollArea):
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
159 def __init__(self):
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
160 super().__init__()
134
1a50d6db24ed Changes on hexedit
Windel Bouwman
parents: 133
diff changeset
161 self.bv = BinViewer(self)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
162 self.setWidget(self.bv)
135
01d88140dc03 Improve hexedit
Windel Bouwman
parents: 134
diff changeset
163 self.setWidgetResizable(True)
136
9af544be5d2a Added hexfile edit
Windel Bouwman
parents: 135
diff changeset
164 self.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
165 self.setFocusPolicy(Qt.NoFocus)
132
205578c96a79 Moved hexview to seperate class
Windel Bouwman
parents:
diff changeset
166
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
167 class HexEditor(QMainWindow):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
168 def __init__(self):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
169 super().__init__()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
170 uic.loadUi('hexeditor.ui', baseinstance=self)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
171 self.he = HexEdit()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
172 self.setCentralWidget(self.he)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
173 self.actionOpen.triggered.connect(self.doOpen)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
174 self.actionSave.triggered.connect(self.doSave)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
175 self.actionSaveAs.triggered.connect(self.doSaveAs)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
176 self.fileName = None
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
177 self.updateControls()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
178 def updateControls(self):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
179 s = True if self.fileName else False
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
180 self.actionSave.setEnabled(s)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
181 self.actionSaveAs.setEnabled(s)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
182 def doOpen(self):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
183 filename = QFileDialog.getOpenFileName(self)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
184 if filename:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
185 with open(filename, 'rb') as f:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
186 self.he.bv.Data = f.read()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
187 self.fileName = filename
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
188 self.updateControls()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
189 def doSave(self):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
190 self.updateControls()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
191 def doSaveAs(self):
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
192 filename = QFileDialog.getSaveFileName(self)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
193 if filename:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
194 with open(filename, 'wb') as f:
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
195 f.write(self.he.bv.Data)
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
196 self.fileName = filename
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
197 self.updateControls()
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
198
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
199 if __name__ == '__main__':
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
200 app = QApplication(sys.argv)
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
201 he = HexEditor()
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
202 he.show()
140
104037b292cc Added ui file for hexeditor
Windel Bouwman
parents: 139
diff changeset
203 #he.bv.Data = bytearray(range(100)) * 8 + b'x'
133
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
204 app.exec()
a816c683c1c0 Fixes in hexedit
Windel Bouwman
parents: 132
diff changeset
205