Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | merge with trunk |
---|---|
Timelines: | family | ancestors | descendants | both | wtf-8-experiment |
Files: | files | file ages | folders |
SHA1: |
6c7a410ba0cb4dfe472e2793fa9b2136 |
User & Date: | chw 2019-06-12 13:05:47.987 |
Context
2019-06-13
| ||
12:55 | merge with trunk check-in: cd7193897b user: chw tags: wtf-8-experiment | |
2019-06-12
| ||
13:05 | merge with trunk check-in: 6c7a410ba0 user: chw tags: wtf-8-experiment | |
13:05 | improve twv demos check-in: d0fc7d3af8 user: chw tags: trunk | |
11:35 | merge with trunk check-in: 7a33036b05 user: chw tags: wtf-8-experiment | |
Changes
Changes to jni/sdl2tk/library/tk.tcl.
︙ | |||
494 495 496 497 498 499 500 | 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 | + + + + + - + + | # ---------------------------------------------------------------------- # Setup flags/vars for SDL, screen dpi, and Android. # ---------------------------------------------------------------------- namespace eval ::tk { variable sdltk [expr {[info command "sdltk"] eq "sdltk"}] variable dpi set dpi [winfo screenmmwidth .] if {$dpi <= 0} { # Observed in X on Wayland in a VM, provide fallback set dpi 75 } else { |
︙ |
Changes to jni/sdl2tk/unix/tkUnixEvent.c.
︙ | |||
163 164 165 166 167 168 169 | 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 | - + + + + + + + + + + + + + + + + + + + | */ display = XkbOpenDisplay((char *)displayNameStr, &event, &error, &major, &minor, &reason); if (display == NULL) { /*fprintf(stderr,"event=%d error=%d major=%d minor=%d reason=%d\nDisabling xkb\n", event, error, major, minor, reason);*/ |
︙ |
Changes to undroid/tsb/examples/cheatsheet.tsb.
1 2 3 4 5 6 7 8 9 10 11 12 | 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 | - + + - + + - + + - + + - + + + + - + + + + - + + + - + + - - + + + + | 1 {h3 "Taygete Scrap Book Cheat Sheet"} 2 {h4 "Important (internal) global variables"} 3 {table 1 [info global {[A-Z]*}]} 4 {#HTML <dl> <dt><b>ID</b></dt> <dd>The current input field during evaluation, an integer number.</dd> <dt><b>W</b></dt> <dd>The Webview for displaying the page.</dd> <dt><b>H</b></dt> <dd>The history array of input fields, keys are integer numbers starting from 1.</dd> </dl>} 5 {# current state of history array table 2 [array get H]} 6 {h4 "Useful procs in the global namespace"} 7 {info proc *} 8 {#HTML <dl> <dt><code><b>parray</b> arrayname ?pattern?</code></dt> |
Changes to undroid/tsb/tsb.tcl.
| 1 2 3 4 5 6 7 8 9 10 11 | - + + |
|
︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | + + + + + + + + + + | set n [string first "\n" $str] if {$n > 4} { incr n set str [string range $str $n end] } $::W call Wraw $id $str 1 $::W call Inhide $id 1 set newfield 1 } elseif {[string first "#MARKDOWN" $str] == 0} { set n [string first "\n" $str] if {$n > 8} { incr n set str [string range $str $n end] } set str [Markdown::convert $str] $::W call Wraw $id $str 1 $::W call Inhide $id 1 set newfield 1 } elseif {[catch {uplevel \#0 $str} ret opts]} { if {[dict get $opts -code] == 4} { # continue $::W call Wclear $id } else { $::W call Werror $id $::errorInfo |
︙ |