forked from mtivadar/qiew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TextSelection.py
403 lines (302 loc) · 11.5 KB
/
TextSelection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
#
# Format Viewer, Marius TIVADAR, 2014
#
#
from PyQt4 import QtGui, QtCore
class SelectionType:
NORMAL = 0
PERMANENT = 1
TEXTHIGHLIGHT = 2
IF_CURSOR_IN_RANGE = 3
class Selection(object):
def __init__(self, viewMode):
self.viewMode = viewMode
self.selecting = False
self.Selections = []
self.PermanentSelections = []
self.ConditionalSelections = []
self.MAX_SELECTIONS = 1
self.defaultBrush = QtGui.QBrush(QtGui.QColor(125, 255, 0))
self.last = 0
self.HighlightSelections = []
def drawSelection(self, qp, start, end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0)), opacity=0.4):
raise "Not Implemented"
def addSelection(self, t, type=None):
if len(t) == 4:
u, v, b, o = t
else:
u, v = t
b, o = None, None
if not o:
o = 0.4
if not b:
b = self.defaultBrush
if u - v == 0:
return
t = u, v, b, o
if type == SelectionType.NORMAL:
if len(self.Selections) >= self.MAX_SELECTIONS:
self.Selections = []
self.Selections.append(t)
if type == SelectionType.PERMANENT:
for w in self.PermanentSelections:
if t[0] == w[0] and t[1] == w[1]:
return False
# u, v not found
self.PermanentSelections.append(t)
if type == SelectionType.TEXTHIGHLIGHT:
self.HighlightSelections.append(t)
if type == SelectionType.IF_CURSOR_IN_RANGE:
self.ConditionalSelections.append(t)
return True
def removeSelection(self, u, v, type):
if type == SelectionType.NORMAL:
L = self.selectionStartOffset
elif type == SelectionType.PERMANENT:
L = self.PermanentSelections
elif type == SelectionType.TEXTHIGHLIGHT:
L = self.HighlightSelections
elif type == SelectionType.IF_CURSOR_IN_RANGE:
L = self.ConditionalSelections
else:
raise "Selection type unknown"
L[:] = [t for t in L if t[0] != u and t[1] != v]
return
def drawSelections(self, qp):
# draw permanent
for t in self.PermanentSelections:
start, end, b, o = t
self.drawSelection(qp, start, end, brush=b, opacity=o)
# draw conditional
for t in self.ConditionalSelections:
start, end, b, o = t
position = self.viewMode.getCursorAbsolutePosition() + 1
if position >= start and position <= end:
self.drawSelection(qp, start, end, brush=b, opacity=o)
# draw already selected
for t in self.Selections:
start, end, b, o = t
self.drawSelection(qp, start, end)
#
for t in self.HighlightSelections:
start, end, b, o = t
self.drawSelection(qp, start, end)
self.HighlightSelections = []
#draw current
if self.selecting:
self.drawSelection(qp, *self.getCurrentSelection())
def resetSelections(self):
self.Selections = []
def startSelection(self):
if self.selecting == False:
self.selecting = True
self.selectionStartOffset = self.viewMode.getCursorAbsolutePosition()
if len(self.Selections) >= self.MAX_SELECTIONS:
self.Selections = []
def getCurrentSelection(self):
if self.selecting:
a = self.selectionStartOffset
b = self.viewMode.getCursorAbsolutePosition() + 1
if a < b:
return a, b
else:
return b, a
else:
for s in self.Selections:
u, v, b, o = s
# pass auf! , in theory we could have more then one normal selection
# so here the first one is returned.
# but currently, by design we could only have one NORMAL selection
return u, v
#if self.last:
# return self.last
return None
def stopSelection(self):
if self.selecting == True:
u, v = self.getCurrentSelection()
self.addSelection((u, v, QtGui.QBrush(QtGui.QColor(125, 255, 0)), 0.4) , type=SelectionType.NORMAL)
self.last = u, v
self.selecting = False
self.selectionStartOffset = None
def highlightText(self):
dataModel = self.viewMode.getDataModel()
page = self.viewMode.getDisplayablePage()
# for a search-in-page
t = self.getCurrentSelection()
if not t:
# no selection
return
start, end = t
if start == end:
return
text = dataModel.getStream(start, end)
Exclude = [start]
cols, rows = self.viewMode.getGeometry()
# find all occurrence
lenText = len(text)
M = []
idx = 0
if lenText > 0:
while idx < len(page):
idx = page.find(text, idx, len(page))
if idx == -1:
break
M.append((idx, lenText))
idx += lenText
#Match = [(m.start(), m.end()) for m in re.finditer(bytes(text), bytes(page))]
for start, end in M:
#print start, end
#self._makeSelection(qp, start, end, cols, rows)
off = dataModel.getOffset()
if off+start not in Exclude:
#self._makeSelection(off + start, off + start + end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0)))
#self.viewMode.selector.addSelection((off+start, off + start + end, QtGui.QBrush(QtGui.QColor(125, 255, 0)), 0.4))
self.addSelection((off+start, off + start + end, QtGui.QBrush(QtGui.QColor(125, 255, 0)), 0.4), type=SelectionType.TEXTHIGHLIGHT)
class DefaultSelection(Selection):
def __init__(self, viewMode):
super(DefaultSelection, self).__init__(viewMode)
self.MAX_SELECTIONS = 1
def _makeSelection(self, qp, start, end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0))):
dataModel = self.viewMode.getDataModel()
off = dataModel.getOffset()
length = len(self.viewMode.getDisplayablePage())
cols, rows = self.viewMode.getGeometry()
# return if out of view
if end < off:
return
if start > off + length:
return
if start < off:
d0 = 0
else:
d0 = start - off
if end > off + length:
d1 = length
else:
d1 = end - off
mark = True
height = 14
qp.setOpacity(0.4)
while mark:
if d0/cols == d1/cols:
qp.fillRect((d0%cols)*8, (d0/cols)*height, (d1-d0)*8, 1*height, brush)
d0 += (d1 - d0)
else:
qp.fillRect((d0%cols)*8, (d0/cols)*height, (cols - d0%cols)*8, 1*height, brush)
d0 += (cols - d0%cols)
if (d1 - d0 <= 0):
mark = False
qp.setOpacity(1)
def drawSelection(self, qp, start, end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0)), opacity=0.4):
dataModel = self.viewMode.getDataModel()
off = dataModel.getOffset()
length = len(self.viewMode.getDisplayablePage())
cols, rows = self.viewMode.getGeometry()
# return if out of view
if end < off:
return
if start > off + length:
return
if start < off:
d0 = 0
else:
d0 = start - off
if end > off + length:
d1 = length
else:
d1 = end - off
mark = True
height = self.viewMode.fontHeight
width = self.viewMode.fontWidth
qp.setOpacity(opacity)
offset = 2
while mark:
if d0/cols == d1/cols:
qp.fillRect((d0%cols)*width, (d0/cols)*height + offset, (d1-d0)*width, 1*height, brush)
d0 += (d1 - d0)
else:
qp.fillRect((d0%cols)*width, (d0/cols)*height + offset, (cols - d0%cols)*width, 1*height, brush)
d0 += (cols - d0%cols)
if (d1 - d0 <= 0):
mark = False
qp.setOpacity(1)
class HexSelection(Selection):
def __init__(self, viewMode):
super(HexSelection, self).__init__(viewMode)
self.MAX_SELECTIONS = 1
def drawSelection(self, qp, start, end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0)), opacity=0.4):
dataModel = self.viewMode.getDataModel()
off = dataModel.getOffset()
length = len(self.viewMode.getDisplayablePage())
cols, rows = self.viewMode.getGeometry()
# return if out of view
if end < off:
return
if start > off + length:
return
if start < off:
d0 = 0
else:
d0 = start - off
if end > off + length:
d1 = length
else:
d1 = end - off
mark = True
height = self.viewMode.fontHeight
width = self.viewMode.fontWidth
qp.setOpacity(opacity)
while mark:
if d0/cols == d1/cols:
# +2 is an offset for letters
qp.fillRect(3*(d0%cols)*width, (d0/cols)*height+2, 3*(d1-d0)*width - width, 1*height, brush)
qp.fillRect(3*cols*width + self.viewMode.gap*width + (d0%cols)*width, (d0/cols)*height+2, (d1-d0)*width, 1*height, brush)
d0 += (d1 - d0)
else:
qp.fillRect(3*(d0%cols)*width, (d0/cols)*height+2, 3*(cols - d0%cols)*width - width, 1*height, brush)
qp.fillRect(3*cols*width + self.viewMode.gap*width + (d0%cols)*width, (d0/cols)*height+2, (cols - d0%cols)*width, 1*height, brush)
d0 += (cols - d0%cols)
if (d1 - d0 <= 0):
mark = False
qp.setOpacity(1)
class DisasmSelection(Selection):
def __init__(self, viewMode):
super(DisasmSelection, self).__init__(viewMode)
self.MAX_SELECTIONS = 1
def drawSelection(self, qp, start, end, brush=QtGui.QBrush(QtGui.QColor(125, 255, 0)), opacity=0.4):
dataModel = self.viewMode.getDataModel()
off = dataModel.getOffset()
length = sum([o.size for o in self.viewMode.OPCODES]) # TODO: not nice!
cols, rows = self.viewMode.getGeometry()
# return if out of view
if end < off:
return
if start > off + length:
return
if start < off:
d0 = 0
else:
d0 = start - off
if end > off + length:
d1 = length
else:
d1 = end - off
mark = True
height = self.viewMode.fontHeight
width = self.viewMode.fontWidth
qp.setOpacity(opacity)
offset = 2
size = 0
for i, asm in enumerate(self.viewMode.OPCODES):
if size + asm.size > d0 and size <= d1:
# compute x offset
x = d0-size
if size > d0:
x = 0
# compute width
w = asm.size
if size + asm.size > d1:
w = d1 - size
qp.fillRect(x*3*width, i*height + offset, (w-x)*3*width - width, 1*height, brush)
size += asm.size
qp.setOpacity(1)