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
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
|
if {$::eskil($top,pluginname) ne ""} {
set pinterp [createPluginInterp $::eskil($top,pluginname) $::eskil($top,plugininfo)]
} else {
set pinterp ""
}
set ::eskil($top,plugin) $pinterp
}
# Put Tcl code in a text widget, with some syntax highlighting
proc TextViewTcl {t data} {
$t tag configure comment -foreground "#b22222"
foreach line [split $data \n] {
if {[regexp {^\s*#} $line]} {
$t insert end $line\n comment
} elseif {[regexp {^(.*;\s*)(#.*)$} $line -> pre post]} {
$t insert end $pre
$t insert end $post\n comment
} else {
$t insert end $line\n
}
}
}
proc ShowPlugin {parent plugin} {
set src [LocatePlugin $plugin]
if {$src eq ""} return
set ch [open $src]
set data [read $ch]
close $ch
set w $parent.plugin
if {[winfo exists $w]} {
wm deiconify $w
} else {
toplevel $w -padx 3 -pady 3
}
destroy {*}[winfo children $w]
ttk::frame $w._bg
place $w._bg -x 0 -y 0 -relwidth 1.0 -relheight 1.0 -border outside
wm title $w "Plugin: $plugin"
set t [Scroll both text $w.t -width 80 -height 20 -font myfont]
set t [Scroll both text $w.t -width 80 -height 30 -font myfont -wrap none]
pack $w.t -fill both -expand 1
bind $t <Control-a> "[list $t tag add sel 1.0 end];break"
$t insert end $data
TextViewTcl $t $data
}
|