forked from morten1982/crossviper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeeditor.py
756 lines (596 loc) · 25.9 KB
/
codeeditor.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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
import tkinter as tk
from tkinter import ttk
from tkinter import font
import keyword
import platform
from pygments import lex
from pygments.lexers import PythonLexer
import re
class TextLineNumbers(tk.Canvas):
'''
Canvas for Linenumbers
'''
def __init__(self, *args, **kwargs):
tk.Canvas.__init__(self, *args, **kwargs)
self.textwidget = None
self.fontSize = 12
self.configFont()
def configFont(self):
system = platform.system().lower()
if system == "windows":
self.font = font.Font(family='monospace', size=self.fontSize)
elif system == "linux":
self.font = font.Font(family='monospace', size=self.fontSize)
def attach(self, text_widget):
self.textwidget = text_widget
def redraw(self, *args):
'''redraw line numbers'''
self.delete("all")
i = self.textwidget.index("@0,0")
while True :
dline= self.textwidget.dlineinfo(i)
if dline is None: break
y = dline[1]
linenum = str(i).split(".")[0]
self.create_text(1,y,anchor="nw", font=self.font, text=linenum, fill='white')
i = self.textwidget.index("%s+1line" % i)
class TextPad(tk.Text):
'''
modified text Widget ... thanks to stackoverflow.com :)
'''
def __init__(self, *args, **kwargs):
tk.Text.__init__(self, *args, **kwargs)
self.tk.eval('''
proc widget_proxy {widget widget_command args} {
# call the real tk widget command with the real args
set result [uplevel [linsert $args 0 $widget_command]]
# generate the event for certain types of commands
if {([lindex $args 0] in {insert replace delete}) ||
([lrange $args 0 2] == {mark set insert}) ||
([lrange $args 0 1] == {xview moveto}) ||
([lrange $args 0 1] == {xview scroll}) ||
([lrange $args 0 1] == {yview moveto}) ||
([lrange $args 0 1] == {yview scroll})} {
event generate $widget <<Change>> -when tail
}
# return the result from the real widget command
return $result
}
''')
self.tk.eval('''
rename {widget} _{widget}
interp alias {{}} ::{widget} {{}} widget_proxy {widget} _{widget}
'''.format(widget=str(self)))
self.filename = None
self.tabWidth = 4
self.clipboard = None
self.entry = None
self.fontSize = 13
self.configFont()
self.config(insertbackground='#00FF00')
self.config(background='#000000')
self.config(foreground='#FFFFFF')
self.bind('<Return>', self.indent, add='+')
self.bind('<Tab>', self.tab)
self.bind('<BackSpace>', self.backtab)
self.bind('<KeyRelease>', self.highlight, add='+')
self.bind('<KeyRelease>', self.correctThisLine, add='+')
#self.bind('<KeyPress-Return>', self.getDoublePoint)
self.bind('<KeyRelease-Down>', self.correctLine)
self.bind('<KeyRelease-Up>', self.correctLineUp)
self.bind('<Key>', self.updateAutocompleteEntry, add='+')
self.bind('<Control-x>', self.cut)
self.bind('<Control-c>', self.copy)
self.bind('<Control-v>', self.paste)
#self.bind('<space>', self.highlight)
self.autocompleteList = []
self.SetAutoCompleteList()
#print(self.autocompleteList)
self.charstring = ''
self.list = []
# change selection color
self.tag_config("sel", background="#47494c", foreground="white")
def updateAutoCompleteList(self, event=None):
'''
a simple algorithm for parsing the given text and filter important words
'''
self.SetAutoCompleteList()
autocompleteList = []
liste = []
text = self.get(1.0, tk.END)
text = text.replace('"', " ").replace("'", " ").replace("(", " ").replace\
(")", " ").replace("[", " ").replace("]", " ").replace\
(':', " ").replace(',', " ").replace("<", " ").replace\
(">", " ").replace("/", " ").replace("=", " ").replace\
(";", " ").replace("self.", "").replace('.', ' ')
liste = text.split('\n')
for zeile in liste:
if zeile.strip().startswith('#'):
continue
else:
wortListe = zeile.split()
for wort in wortListe:
if re.match("(^[0-9])", wort):
continue
elif '#' in wort or '//' in wort:
continue
elif wort in self.kwList:
continue
elif wort in self.autocompleteList:
continue
elif not len(wort) < 3:
w = re.sub("{}<>;,:]", '', wort)
#print(w)
autocompleteList.append(w)
x = set(autocompleteList)
autocompleteList = list(x)
#print(autocompleteList)
#self.autocompleteList = autocompleteList
for word in autocompleteList:
if len(word) > 30:
continue
self.autocompleteList.append(word)
#print(self.autocompleteList)
return
def updateAutocompleteEntry(self, event=None):
'''
make new list for the input from the user
'''
char = event.char
key = event.keycode
sym = event.keysym
# debugging ... :)
#print(char)
#print(key)
self.list = []
if (sym=='Space') or (sym=='Up') or (sym=='Down') or (sym=='Left') or (sym=='Right') \
or (sym=='Shift_L') or (sym=='Shift_R') or (sym=='Control_R') or (sym=='Control_R') \
or (sym=='Alt_L'):
# set label and variables to none
self.entry.config(text='---')
self.list = []
self.charstring = ''
elif(char == '.') or (char == '(') or (char == ')') or (char=='"') or (char=="'") or \
(char==',') or (char=='='):
self.entry.config(text='---')
self.list = []
self.charstring = ''
else:
self.charstring += char
for item in self.autocompleteList:
if item.startswith(self.charstring):
self.list.append(item)
if self.list:
self.entry.config(text=self.list[0])
else:
self.entry.config(text='---')
if len(self.list) == 3:
self.entry.config(text=self.list[0])
def paste(self, event=None):
'''
paste method
'''
if self.clipboard == None:
root = tk.Tk() # make tk instance
root.withdraw() # don't display
self.clipboard = root.clipboard_get() # get clipboard
root.clipboard_clear() # clear clipboard
index = str(self.index(tk.INSERT))
code = self.clipboard
print(code)
try:
codelines = code.splitlines()
for item in codelines:
self.insert(tk.INSERT, item)
self.insert(tk.INSERT, '\n')
index = self.index('insert linestart')
line = index.split('.')[0]
line = int(line) - 1
self.highlight(lineNumber=line)
self.see(tk.INSERT)
except:
self.clipboard = None
self.clipboard = None
return 'break'
def copy(self, event=None):
'''
copy method
'''
if self.tag_ranges("sel"):
self.clipboard = self.get(tk.SEL_FIRST, tk.SEL_LAST)
return 'break'
def cut(self, event=None):
'''
cut method
'''
if self.tag_ranges("sel"):
self.clipboard = self.get(tk.SEL_FIRST, tk.SEL_LAST)
self.delete(tk.SEL_FIRST, tk.SEL_LAST)
return 'break'
def selectAll(self, event=None):
self.tag_add('sel', '1.0', 'end')
def indent(self, event=None):
'''
make indent
'''
self.entry.config(text='---')
self.list = []
self.charstring = ''
self.highlight()
index = self.index(tk.INSERT).split(".")
line_no = int(index[0])
pos = int(index[1])
self.updateAutoCompleteList()
if pos == 0:
return
line_text = self.get("%d.%d" % (line_no, 0), "%d.end" % (line_no))
text_only = line_text.lstrip(" ")
no_of_spaces = len(line_text) - len(text_only)
spaces = '\n' + " " * no_of_spaces
if(no_of_spaces % 2 == 0):
self.insert(tk.INSERT, spaces)
else:
while(no_of_spaces % 2 is not 0):
no_of_spaces -= 1
#print('spaces', no_of_spaces)
spaces = '\n' + " " * no_of_spaces
self.insert(tk.INSERT, spaces)
#x, y = self.index(tk.INSERT).split('.')
#x2, y2 = self.index('end-1c').split('.')
#if x == x2:
self.see(self.index(tk.INSERT))
# on Return ends:
self.correctLine()
return 'break'
def highlightThisLine(self, event=None):
index = self.index('insert linestart')
line = index.split('.')[0]
line = int(line)
if line > 0:
self.highlight(lineNumber=line)
def correctLine(self, event=None):
index = self.index(tk.INSERT).split(".")
line = int(index[0])
line -= 1
line_text = self.get("%d.%d" % (line, 0), "%d.end" % (line))
self.delete("%d.0" % (line), "%d.end" %(line))
self.insert("%d.0" % (line), line_text)
if line > 0:
self.highlight(lineNumber=line)
def correctLineUp(self, event=None):
index = self.index(tk.INSERT).split(".")
line = int(index[0])
line += 1
line_text = self.get("%d.%d" % (line, 0), "%d.end" % (line))
self.delete("%d.0" % (line), "%d.end" %(line))
self.insert("%d.0" % (line), line_text)
if line > 0:
self.highlight(lineNumber=line)
def correctThisLine(self, event=None):
' to do !! -> event for <Key-Release>'
key = event.keycode
sym = event.keysym
#print(key)
#print(sym)
# parenleft parenright () bracketleft bracketright [] braceleft braceright {}
line = int(self.index(tk.INSERT).split('.')[0])
line_text = self.get("%d.%d" % (line, 0), "%d.end" % (line))
#for token, content in lex(line, PythonLexer()):
if key == 51: # -> #
if line > 0:
self.highlight(lineNumber=line)
self.tag_configure("braceHighlight", foreground="red")
self.tag_configure('parenHighlight', foreground='red')
self.tag_configure('bracketHighlight', foreground='red')
# paren ()
if sym == 'parenleft':
x = self.isBalancedParen(line_text)
if x == False:
z = line_text.rfind('(')
else:
z = False
if z:
self.tag_add("parenHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('parenHighlight', "%d.0"%(line), '%d.end'%(line))
elif sym == 'parenright':
x = self.isBalancedParen(line_text)
if x == False:
z = line_text.rfind(')')
else:
z = False
if z:
self.tag_add("parenHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('parenHighlight', "%d.0"%(line), '%d.end'%(line))
# bracket []
elif sym == 'bracketleft':
x = self.isBalancedBracket(line_text)
if x == False:
z = line_text.rfind('[')
else:
z = False
if z:
self.tag_add("bracketHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('bracketHighlight', "%d.0"%(line), '%d.end'%(line))
elif sym == 'bracketright':
x = self.isBalancedBracket(line_text)
if x == False:
z = line_text.rfind(']')
else:
z = False
if z:
self.tag_add("bracketHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('bracketHighlight', "%d.0"%(line), '%d.end'%(line))
# brace {}
elif sym == 'braceleft':
x = self.isBalancedBrace(line_text)
if x == False:
z = line_text.rfind('{')
else:
z = False
if z:
self.tag_add("braceHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('braceHighlight', "%d.0"%(line), '%d.end'%(line))
elif sym == 'braceright':
x = self.isBalancedBrace(line_text)
if x == False:
z = line_text.rfind('}')
else:
z = False
if z:
self.tag_add("braceHighlight", "%d.%d"%(line, z), "%d.%d"%(line, z+1))
else:
self.tag_remove('braceHighlight', "%d.0"%(line), '%d.end'%(line))
else:
return
def isBalanced(self, txt):
braced = 0
for ch in txt:
if (ch == '(') or (ch == '[') or (ch == '{'):
braced += 1
if (ch == ')') or (ch == ']') or (ch == '}'):
braced -= 1
if braced < 0: return False
return braced == 0
def isBalancedParen(self, txt):
braced = 0
for ch in txt:
if ch == '(': braced += 1
if ch == ')':
braced -= 1
if braced < 0: return False
return braced == 0
def isBalancedBracket(self, txt):
braced = 0
for ch in txt:
if ch == '[': braced += 1
if ch == ']':
braced -= 1
if braced < 0: return False
return braced == 0
def isBalancedBrace(self, txt):
braced = 0
for ch in txt:
if ch == '{': braced += 1
if ch == '}':
braced -= 1
if braced < 0: return False
return braced == 0
def tab(self, event):
'''
make tab(4 * whitespaces) or insert autocomplete when using tab
'''
if not self.list:
self.insert(tk.INSERT, " " * self.tabWidth)
else:
l = len(self.charstring)
x, y = self.index(tk.INSERT).split(".")
y2 = int(y) - l
y2 = str(y2)
pos = x + '.' + y2
self.mark_set('insert', pos)
self.tag_add("sel", pos, '%d.%d' % (int(x), int(y)))
self.insert(tk.INSERT, self.list[0])
if self.tag_ranges("sel"): # test if selection...
self.delete('sel.first', 'sel.last')
self.charstring == ''
self.entry.config(text='---')
self.list = []
self.highlight()
return 'break'
def backtab(self, event):
'''
make backtab when using backspace
'''
self.entry.config(text='---')
self.list = []
self.charstring = ''
chars = self.get("insert linestart", 'insert')
if not self.tag_ranges("sel"):
if chars.isspace(): # only if there are whitespaces !
if len(chars) >= 4:
self.delete("insert-4c", "insert")
return 'break'
self.correctThisLine(event)
def highlightOpen(self, text):
index = self.index(tk.INSERT).split(".")
line_no = int(index[0])
lines = text.split('\n')
i = 1
for line in lines:
self.insert('%d.0' % i, line)
self.mark_set("range_start", '%d.0' %i)
for token, content in lex(line, PythonLexer()):
# Debug
#print(token)
self.tag_configure("Token.Name", foreground="#FFFFFF")
self.tag_configure("Token.Text", foreground="#FFFFFF")
self.tag_configure("Token.Keyword", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Constant", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Declaration", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Namespace", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Pseudo", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Reserved", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Type", foreground="#CC7A00")
self.tag_configure("Token.Punctuation", foreground="#2d991d")
self.tag_configure("Token.Name.Class", foreground="#ddd313")
self.tag_configure("Token.Name.Exception", foreground="#ddd313")
self.tag_configure("Token.Name.Function", foreground="#298fb5")
self.tag_configure("Token.Name.Function.Magic", foreground="#298fb5")
self.tag_configure("Token.Name.Decorator", foreground="#298fb5")
self.tag_configure("Token.Name.Builtin", foreground="#CC7A00")
self.tag_configure("Token.Name.Builtin.Pseudo", foreground="#CC7A00")
self.tag_configure("Token.Operator.Word", foreground="#CC7A00")
self.tag_configure("Token.Operator", foreground="#FF0000")
self.tag_configure("Token.Comment", foreground="#767d87")
self.tag_configure("Token.Comment.Single", foreground="#767d87")
self.tag_configure("Token.Comment.Double", foreground="#767d87")
self.tag_configure("Token.Literal.Number.Integer", foreground="#88daea")
self.tag_configure("Token.Literal.Number.Float", foreground="#88daea")
#
self.tag_configure("Token.Literal.String.Single", foreground="#35c666")
self.tag_configure("Token.Literal.String.Double", foreground="#35c666")
self.mark_set("range_end", "range_start + %dc" % len(content))
self.tag_add(str(token), "range_start", "range_end")
self.mark_set("range_start", "range_end")
self.insert(tk.INSERT, '\n')
i += 1
self.update()
def highlight(self, event=None, lineNumber=None):
'''
highlight the line where the cursor is ...
'''
index = self.index(tk.INSERT).split(".")
line_no = int(index[0])
if lineNumber == None:
line_text = self.get("%d.%d" % (line_no, 0), "%d.end" % (line_no))
self.mark_set("range_start", str(line_no) + '.0')
elif lineNumber is not None:
line_text = self.get("%d.%d" % (lineNumber, 0), "%d.end" % (lineNumber))
self.mark_set("range_start", str(lineNumber) + '.0')
for token, content in lex(line_text, PythonLexer()):
# Debug
#print(token)
self.tag_configure("Token.Name", foreground="#FFFFFF")
self.tag_configure("Token.Text", foreground="#FFFFFF")
self.tag_configure("Token.Keyword", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Constant", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Declaration", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Namespace", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Pseudo", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Reserved", foreground="#CC7A00")
self.tag_configure("Token.Keyword.Type", foreground="#CC7A00")
self.tag_configure("Token.Punctuation", foreground="#2d991d")
self.tag_configure("Token.Name.Class", foreground="#ddd313")
self.tag_configure("Token.Name.Exception", foreground="#ddd313")
self.tag_configure("Token.Name.Function", foreground="#298fb5")
self.tag_configure("Token.Name.Function.Magic", foreground="#298fb5")
self.tag_configure("Token.Name.Decorator", foreground="#298fb5")
self.tag_configure("Token.Name.Builtin", foreground="#CC7A00")
self.tag_configure("Token.Name.Builtin.Pseudo", foreground="#CC7A00")
self.tag_configure("Token.Operator.Word", foreground="#CC7A00")
self.tag_configure("Token.Operator", foreground="#FF0000")
self.tag_configure("Token.Comment", foreground="#767d87")
self.tag_configure("Token.Comment.Single", foreground="#767d87")
self.tag_configure("Token.Comment.Double", foreground="#767d87")
self.tag_configure("Token.Literal.Number.Integer", foreground="#88daea")
self.tag_configure("Token.Literal.Number.Float", foreground="#88daea")
#
self.tag_configure("Token.Literal.String.Single", foreground="#35c666")
self.tag_configure("Token.Literal.String.Double", foreground="#35c666")
self.mark_set("range_end", "range_start + %dc" % len(content))
self.tag_add(str(token), "range_start", "range_end")
self.mark_set("range_start", "range_end")
def highlightAll(self, event=None):
'''
highlight whole document (when loading a file) ... this can taking a few seconds
if the file is big ..... no better solution found
'''
code = self.get("1.0", "end-1c")
#print(code)
i = 1
for line in code.splitlines():
self.index("%d.0" %i)
self.highlight(lineNumber=i)
self.update()
i += 1
def highlightAll2(self, linesInFile, overlord, event=None):
'''
highlight whole document (when loading a file) ... this can taking a few seconds
if the file is big ..... no better solution found
'''
code = self.get("1.0", "end-1c")
#print(code)
i = 1
for line in code.splitlines():
self.index("%d.0" %i)
self.highlight(lineNumber=i)
percent = i/linesInFile*100
percent = round(percent,2)
overlord.title('Loading ... ' + str(percent) + ' %')
i += 1
def highlightAllOpen(self, code):
pass
def configFont(self):
'''
set the font .... tested only in windows .. if you want to make it cross platform
'''
system = platform.system().lower()
if system == "windows":
self.font = font.Font(family='Consolas', size=self.fontSize)
self.configure(font=self.font)
elif system == "linux":
self.font = font.Font(family='Mono', size=self.fontSize)
self.configure(font=self.font)
def SetAutoCompleteList(self):
'''
basic autocompleteList with keywords and some important things (for me)
'''
self.autocompleteList = ['__init__', '__main__','__name__', '__repr__', '__str__',
'__dict__', 'args', 'kwargs', "self", "__file__", 'super()'] # autocomplete
self.kwList = keyword.kwlist
for item in self.kwList:
self.autocompleteList.append(item)
class Example(ttk.Frame):
'''
The Example App
'''
def __init__(self, master=None):
super().__init__(master)
self.pack(expand=True, fill=tk.BOTH)
self.initUI()
self.style = ttk.Style()
self.style.theme_use('clam')
def initUI(self):
#frame1
frame1 = ttk.Frame(self)
frame1.pack(fill=tk.BOTH, expand=True)
# textPad
self.textPad = TextPad(frame1, undo=True, maxundo=-1, autoseparators=True)
self.textPad.filename = None
self.textPad.pack(side=tk.RIGHT, expand=True, fill=tk.BOTH)
textScrollY = ttk.Scrollbar(self.textPad)
textScrollY.config(cursor="double_arrow")
self.textPad.configure(yscrollcommand=textScrollY.set)
textScrollY.config(command=self.textPad.yview)
textScrollY.pack(side=tk.RIGHT, fill=tk.Y)
# autocompleteEntry
self.autocompleteEntry = tk.Label(self, bg='black', fg='green', text='---', font=('Mono', 13))
self.autocompleteEntry.pack(side='bottom', fill='y')
self.textPad.entry = self.autocompleteEntry
self.linenumber = TextLineNumbers(frame1, width=30)
self.linenumber.attach(self.textPad)
self.linenumber.pack(side="left", fill="y")
self.textPad.bind("<<Change>>", self.on_change)
self.textPad.bind("<Configure>", self.on_change)
def on_change(self, event):
self.linenumber.redraw()
if __name__ == '__main__':
app = Example()
app.master.title('Text-Widget with Autocomplete-Label + BackTab + Indent + Syntax Highlighting with pygments')
app.master.minsize(width=800, height=600)
app.mainloop()