annotate python/codeedit.py @ 262:ed14e077124c

Added conditional branch instructions
author Windel Bouwman
date Fri, 09 Aug 2013 11:30:11 +0200
parents 225f444019b1
children 046017431c6a
rev   line source
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
1 #!/usr/bin/python
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
2
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
3 import sys
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
4 from PyQt4.QtCore import *
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
5 from PyQt4.QtGui import *
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
6 import inspect
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
7
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
8 GAP = 5
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
9
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
10 def clipVal(v, mn, mx):
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
11 if v < mn: return mn
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
12 if v > mx: return mx
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
13 return v
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
14
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
15 class InnerCode(QWidget):
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
16 textChanged = pyqtSignal()
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
17 def __init__(self, scrollArea):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
18 super().__init__(scrollArea)
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
19 self.scrollArea = scrollArea
169
ee0d30533dae Added more tests and improved the diagnostic update
Windel Bouwman
parents: 167
diff changeset
20 self.setFont(QFont('Courier', 12))
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
21 self.setFocusPolicy(Qt.StrongFocus)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
22 # TODO: only beam cursor in text area..
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
23 self.setCursor(Qt.IBeamCursor)
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
24 h = QFontMetrics(self.font()).height()
247
dd8bbb963458 project remove
Windel Bouwman
parents: 169
diff changeset
25 self.errorPixmap = QPixmap('icons/error.png').scaled(h, h)
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
26 self.arrowPixmap = QPixmap('icons/arrow.png').scaled(h, h)
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
27 self.blinkcursor = False
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
28 self.errorlist = []
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
29 self.arrow = None
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
30 # Initial values:
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
31 self.setSource('')
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
32 self.CursorPosition = 0
250
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
33 self.t = QTimer(self)
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
34 self.t.timeout.connect(self.updateCursor)
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
35 self.t.setInterval(500)
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
36 self.t.start()
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
37
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
38 def updateCursor(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
39 self.blinkcursor = not self.blinkcursor
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
40 self.update()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
41 #self.update(self.cursorX, self.cursorY, self.charWidth, self.charHeight)
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
42
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
43 def setSource(self, src):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
44 self.src = src
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
45 self.adjust()
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
46
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
47 def getSource(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
48 return self.src
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
49
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
50 def setErrors(self, el):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
51 self.errorlist = el
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
52 self.update()
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
53
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
54 def setCursorPosition(self, c):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
55 self.cursorPosition = clipVal(c, 0, len(self.src))
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
56 self.update()
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
57
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
58 CursorPosition = property(lambda self: self.cursorPosition, setCursorPosition)
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
59
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
60 @property
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
61 def Rows(self):
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
62 # Make this nicer:
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
63 return self.src.split('\n')
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
64
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
65 @property
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
66 def CursorRow(self):
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
67 # TODO: make this nice.
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
68 txt = self.src[0:self.cursorPosition]
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
69 return len(txt.split('\n'))
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
70
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
71 @property
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
72 def CursorCol(self):
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
73 txt = self.src[0:self.cursorPosition]
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
74 curLine = txt.split('\n')[-1]
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
75 return len(curLine) + 1
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
76
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
77 @property
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
78 def CurrentLine(self):
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
79 return self.getRow(self.CursorRow)
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
80
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
81 def setRowCol(self, r, c):
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
82 prevRows = self.Rows[:r-1]
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
83 txt = '\n'.join(prevRows)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
84 c = clipVal(c, 1, len(self.getRow(r)))
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
85 self.CursorPosition = len(txt) + c + 1
167
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
86 self.showRow(self.CursorRow)
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
87
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
88 def getRow(self, r):
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
89 rows = self.Rows
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
90 r = r - 1
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
91 if r < 0 or r > len(rows) - 1:
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
92 return ''
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
93 else:
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
94 return rows[r]
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
95
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
96 def showRow(self, r):
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
97 self.scrollArea.ensureVisible(self.xposTXT, r * self.charHeight, 4, self.charHeight)
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
98
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
99 # Annotations:
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
100 def addAnnotation(self, row, col, ln, msg):
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
101 pass
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
102
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
103 # Text modification:
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
104 def getChar(self, pos):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
105 pass
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
106
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
107 def insertText(self, txt):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
108 self.setSource(self.src[0:self.CursorPosition] + txt + self.src[self.CursorPosition:])
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
109 self.CursorPosition += len(txt)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
110 self.textChanged.emit()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
111
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
112 def deleteChar(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
113 self.setSource(self.src[0:self.CursorPosition] + self.src[self.CursorPosition+1:])
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
114 self.textChanged.emit()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
115
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
116 def GotoNextChar(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
117 if self.src[self.CursorPosition] != '\n':
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
118 self.CursorPosition += 1
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
119
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
120 def GotoPrevChar(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
121 if self.src[self.CursorPosition - 1] != '\n':
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
122 self.CursorPosition -= 1
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
123
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
124 def GotoNextLine(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
125 curLine = self.CurrentLine
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
126 c = self.CursorCol - 1 # go to zero based
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
127 self.CursorPosition += len(curLine) - c + 1 # line break char!
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
128 curLine = self.CurrentLine
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
129 if len(curLine) < c:
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
130 self.CursorPosition += len(curLine)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
131 else:
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
132 self.CursorPosition += c
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
133 self.showRow(self.CursorRow)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
134
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
135 def GotoPrevLine(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
136 c = self.CursorCol - 1 # go to zero based
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
137 self.CursorPosition -= c + 1 # line break char!
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
138 curLine = self.CurrentLine
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
139 if len(curLine) > c:
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
140 self.CursorPosition -= len(curLine) - c
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
141 self.showRow(self.CursorRow)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
142
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
143 def paintEvent(self, event):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
144 # Helper variables:
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
145 er = event.rect()
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
146 chw, chh = self.charWidth, self.charHeight
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
147 painter = QPainter(self)
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
148 # Background:
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
149 painter.fillRect(er, self.palette().color(QPalette.Base))
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
150 painter.fillRect(QRect(self.xposLNA, er.top(), 4 * chw, er.bottom() + 1), Qt.gray)
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
151 errorPen = QPen(Qt.red, 3)
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
152 # first and last row:
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
153 row1 = max(int(er.top() / chh) - 1, 1)
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
154 row2 = max(int(er.bottom() / chh) + 1, 1)
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
155 # Draw contents:
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
156 ypos = row1 * chh - self.charDescent
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
157 curRow = self.CursorRow
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
158 ydt = -chh + self.charDescent
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
159 for row in range(row1, row2 + 1):
250
f5fba5b554d7 Removal of obsolete editor
Windel Bouwman
parents: 249
diff changeset
160 if curRow == row and self.hasFocus():
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
161 painter.fillRect(self.xposTXT, ypos + ydt, er.width(), chh, Qt.yellow)
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
162 # cursor
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
163 if self.blinkcursor:
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
164 cursorX = self.CursorCol * self.charWidth + self.xposTXT - self.charWidth
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
165 cursorY = ypos + ydt
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
166 painter.fillRect(cursorX, cursorY, 2, chh, Qt.black)
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
167 painter.setPen(Qt.black)
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
168 painter.drawText(self.xposLNA, ypos, '{0}'.format(row))
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
169 xpos = self.xposTXT
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
170 painter.drawText(xpos, ypos, self.getRow(row))
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
171 if self.arrow and self.arrow.row == row:
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
172 painter.drawPixmap(self.xposERR, ypos + ydt, self.arrowPixmap)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
173 curErrors = [e for e in self.errorlist if e.loc.row == row]
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
174 for e in curErrors:
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
175 painter.drawPixmap(self.xposERR, ypos + ydt, self.errorPixmap)
162
d8c735dc31f9 Used new editor in ide
Windel Bouwman
parents: 161
diff changeset
176 painter.setPen(errorPen)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
177 x = self.xposTXT + (e.loc.col - 1) * chw - 2
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
178 wt = e.loc.length * chw + 4
167
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
179 dy = self.charDescent
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
180 painter.drawLine(x, ypos + dy, x + wt, ypos + dy)
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
181 #painter.drawRoundedRect(x, ypos + ydt, wt, chh, 7, 7)
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
182 # print error balloon
167
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
183 #painter.drawText(x, ypos + chh, e.msg)
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
184 #if len(curErrors) > 0:
0b5b2ee6b435 Added 2 unit tests
Windel Bouwman
parents: 163
diff changeset
185 # ypos += chh
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
186 ypos += chh
163
8104fc8b5e90 Added visitor to c3
Windel Bouwman
parents: 162
diff changeset
187
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
188 def keyPressEvent(self, event):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
189 if event.matches(QKeySequence.MoveToNextChar):
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
190 self.GotoNextChar()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
191 elif event.matches(QKeySequence.MoveToPreviousChar):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
192 self.GotoPrevChar()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
193 elif event.matches(QKeySequence.MoveToNextLine):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
194 self.GotoNextLine()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
195 elif event.matches(QKeySequence.MoveToPreviousLine):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
196 self.GotoPrevLine()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
197 elif event.matches(QKeySequence.MoveToNextPage):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
198 for i in range(5):
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
199 self.GotoNextLine()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
200 elif event.matches(QKeySequence.MoveToPreviousPage):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
201 for i in range(5):
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
202 self.GotoPrevLine()
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
203 elif event.matches(QKeySequence.MoveToEndOfLine):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
204 self.CursorPosition += len(self.CurrentLine) - self.CursorCol + 1
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
205 elif event.matches(QKeySequence.MoveToStartOfLine):
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
206 self.CursorPosition -= self.CursorCol - 1
161
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
207 elif event.matches(QKeySequence.Delete):
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
208 self.deleteChar()
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
209 elif event.matches(QKeySequence.InsertParagraphSeparator):
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
210 self.insertText('\n')
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
211 elif event.key() == Qt.Key_Backspace:
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
212 self.CursorPosition -= 1
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
213 self.deleteChar()
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
214 else:
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
215 char = event.text()
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
216 if char:
956f8e5ee48a Improvements to code edit
Windel Bouwman
parents: 160
diff changeset
217 self.insertText(char)
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
218 self.update()
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
219
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
220 def mousePressEvent(self, event):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
221 pos = event.pos()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
222 if pos.x() > self.xposTXT and pos.x():
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
223 c = round((pos.x() - self.xposTXT) / self.charWidth)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
224 r = int(pos.y() / self.charHeight) + 1
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
225 self.setRowCol(r, c)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
226 super().mousePressEvent(event)
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
227
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
228 def adjust(self):
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
229 metrics = self.fontMetrics()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
230 self.charHeight = metrics.height()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
231 self.charWidth = metrics.width('x')
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
232 self.charDescent = metrics.descent()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
233 self.xposERR = GAP
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
234 self.xposLNA = self.xposERR + GAP + self.errorPixmap.width()
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
235 self.xposTXT = self.xposLNA + 4 * self.charWidth + GAP
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
236 self.xposEnd = self.xposTXT + self.charWidth * 80
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
237 self.setMinimumWidth(self.xposEnd)
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
238 txt = self.src.split('\n')
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
239 self.setMinimumHeight(self.charHeight * len(txt))
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
240 self.update()
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
241
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
242 class CodeEdit(QScrollArea):
248
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
243 def __init__(self):
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
244 super().__init__()
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
245 self.ic = InnerCode(self)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
246 self.textChanged = self.ic.textChanged
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
247 self.setWidget(self.ic)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
248 self.setWidgetResizable(True)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
249 self.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
250 self.setFocusPolicy(Qt.NoFocus)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
251 self.showRow = self.ic.showRow
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
252 self.setRowCol = self.ic.setRowCol
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
253 self.FileName = None
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
254 Source = property(lambda s: s.ic.getSource(), lambda s, v: s.ic.setSource(v))
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
255
248
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
256 def setErrors(self, el):
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
257 self.ic.setErrors(el)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
258
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
259 def setFocus(self):
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
260 self.ic.setFocus()
256
225f444019b1 Added build and flash menu option
Windel Bouwman
parents: 250
diff changeset
261 super().setFocus()
248
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
262
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
263 def setFileName(self, fn):
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
264 self.filename = fn
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
265 if not fn:
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
266 fn = 'Untitled'
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
267 self.setWindowTitle(fn)
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
268
248
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
269 def getFileName(self):
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
270 return self.filename
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
271 FileName = property(getFileName, setFileName)
b10d46e5c8dd ide refactor
Windel Bouwman
parents: 247
diff changeset
272
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
273
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
274 if __name__ == '__main__':
249
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
275 app = QApplication(sys.argv)
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
276 ce = CodeEdit()
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
277 ce.show()
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
278 src = ''.join(inspect.getsourcelines(InnerCode)[0])
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
279 ce.Source = src
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
280 ce.resize(600, 800)
e41e4109addd Added current position arrow
Windel Bouwman
parents: 248
diff changeset
281 app.exec()
160
10330be89bc2 Started from scratch with code edit
Windel Bouwman
parents:
diff changeset
282