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
|
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
|
+
-
+
-
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
+
+
-
-
+
+
|
#!/bin/sh
#----------------------------------------------------------------------
#
# diff.tcl
# diff.tcl, a Graphical frontend to diff
#
# Purpose
# Graphical frontend to diff
# Copyright (c) 1998-2003, Peter Spjuth (peter.spjuth@space.se)
#
# Usage
# Usage
# Do 'diff.tcl' for interactive mode
# Do 'diff.tcl --help' for command line usage
#
# Author Peter Spjuth 980612
#
# Revised Date Remark
#
# 1.0 980612 New Version.
# 1.1 980807 Parsing of change blocks added
# Options menu and variables changed
# Command line options added
# 1.2 980818 Improved yscroll
# Added map next to y-scrollbar
# 1.3 980921 Added Prev Diff button
# Added colour options, and Only diffs option
# Added 2nd stage line parsing
# Improved block parsing
# Added print
# 1.4 990210 Bug-fix in "Ignore nothing"
# Bug-fix in file handling
# Improved RCS handling.
# 1.5 990623 Bug-fix and improvement in block parsing
# Added font selection
# Added "diff server" functionality
# Split text windows in lineno/text
# Added "Mark last" option
# 1.6 000131 Added scroll-keys
# Bug-fixes in scroll map and printing
# 1.7 000427 Restricted parsing of large blocks.
# Fixed bug with spaces in file names.
# Regular screen updates during processing.
# Added CVS support.
# 1.8 001115 Highlight current diff.
# New -conflict flag to handle merge conflicts.
# 1.9 011105 Added right-click "zoom".
# Added -print option.
# Improved printing, allow print on Windows.
# Display patch mode.
# Added search and incremental search.
# Added context around a 'diffs only' output.
#
#-----------------------------------------------
#----------------------------------------------------------------------
# $Revision$
#-----------------------------------------------
#----------------------------------------------------------------------
# the next line restarts using wish \
exec wish "$0" "$@"
package provide app-diff 1.0
package require Tk
catch {package require textSearch}
set debug 1
set diffver "Version 1.9.6+ 2003-02-06"
set debug 0
set diffver "Version 1.9.7 2003-08-05"
set tmpcnt 0
set tmpfiles {}
set thisscript [file join [pwd] [info script]]
set thisdir [file dirname $thisscript]
set ::diff(cvsExists) [expr {![string equal [auto_execok cvs] ""]}]
set ::diff(diffexe) diff
set ::diff(thisexe) [list [info nameofexecutable] $thisscript]
|
︙ | | |
682
683
684
685
686
687
688
689
690
691
692
693
694
695
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
|
.ft$n.tt insert end "\n"
}
# Insert one line in each text widget.
# Mark them as changed, and optionally parse them.
proc insertMatchingLines {line1 line2} {
global doingLine1 doingLine2 Pref
if {$::diff(filter) != ""} {
if {[regexp $::diff(filter) $line1]} {
insert 1 $doingLine1 $line1
insert 2 $doingLine2 $line2
incr doingLine1
incr doingLine2
set ::diff(filterflag) 1
return
}
set ::diff(filterflag) 0
}
if {$Pref(parse) != 0} {
compareLines $line1 $line2 res1 res2
if {$::diff(diffutil)} {
compareLinesX $line1 $line2 xres1 xres2
if {$res1 != $xres1 || $res2 != $xres2} {
tk_messageBox -title Mismatch! \
|
︙ | | |
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
|
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
|
+
+
+
-
+
+
|
# If block parsing is turned off, only do line parsing for
# blocks of equal size.
for {set t 0} {$t < $n1} {incr t} {
gets $ch1 textline1
gets $ch2 textline2
insertMatchingLines $textline1 $textline2
}
if {$::diff(filter) != "" && $::diff(filterflag)} {
} else {
lappend changesList $mapMax $n1 change $line1 $n1 $line2 $n2
lappend changesList $mapMax $n1 change $line1 $n1 $line2 $n2
}
incr mapMax $n1
} else {
if {$n1 != 0 && $n2 != 0 && $Pref(parse) >= 2 && \
($n1 * $n2 < 1000 || $Pref(parse) == 3)} {
# Full block parsing
set block1 {}
for {set t 0} {$t < $n1} {incr t} {
|
︙ | | |
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
|
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
|
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|
grid columnconfigure $w 0 -weight 1
grid rowconfigure $w 1 -weight 1
collectMergeData
fillMergeWindow
}
#####################################
# Searching
#####################################
namespace eval textSearch {
if {![info exists ::textSearch::widgets]} {
variable widgets {}
}
variable isearchW ""
variable isearchLast ""
variable searchCase 0
variable searchIndex 1.0
variable searchString ""
}
# Setup a text widget for searching
proc textSearch::enableSearch {w} {
variable widgets
if {[winfo class $w] != "Text"} {
error "Only text widgets can be searched!"
}
bind ISearch <Control-Key-s> "textSearch::startIncrementalSearch %W"
bindtags $w "ISearch [bindtags $w]"
if {[lsearch $widgets $w] < 0} {
lappend widgets $w
}
set top [winfo toplevel $w]
bind $top <Control-Key-f> textSearch::search
bind $top <Key-F3> textSearch::searchNext
bind $top <Control-Key-F3> textSearch::searchPrev
}
# Add searching to a menu
proc textSearch::searchMenu {menu} {
$menu add command -label "Find" -accelerator "Ctrl+f" \
-command ::textSearch::search
$menu add command -label "Find Next" -accelerator "F3" \
-command ::textSearch::searchNext
$menu add command -label "Find Prev" -accelerator "Ctrl+F3" \
-command ::textSearch::searchPrev
}
# Start an incremental search
proc textSearch::startIncrementalSearch {w} {
variable isearchW
# This shouldn't happen
if {$isearchW != ""} {
endIncrementalSearch
}
set isearchW $w
# Setup all bindings for incremental search
bind ISearch <Control-Key-s> "textSearch::isearchAgain %W ; break"
bind ISearch <Key-Delete> "textSearch::isearchBack %W ; break"
bind ISearch <Key-BackSpace> "textSearch::isearchBack %W ; break"
bind ISearch <Key> "textSearch::isearchKey %W %A %s %K"
bind ISearch <Key-Escape> "textSearch::endIncrementalSearch ; break"
bind ISearch <Control-Key-g> "textSearch::endIncrementalSearch ; break"
bind ISearch <FocusOut> "textSearch::endIncrementalSearch"
# Initialise variables
set ::textSearch::isearchString ""
set ::textSearch::isearchHistory {}
set ::textSearch::isearchIndex [$w index insert]
set ::textSearch::statusLabel "i"
}
# Highlight a match
proc textSearch::isearchShow {w index string} {
$w tag remove sel 1.0 end
$w tag add sel $index "$index + [string length $string] chars"
$w mark set insert $index
$w see $index
set ::textSearch::isearchIndex $index
set ::textSearch::isearchString $string
set ::textSearch::isearchLast $string
}
# Search the widget
proc textSearch::isearchSearch {w str ix} {
# If the search string is all lower case, search case insensitive
if {[string equal [string tolower $str] $str]} {
set found [$w search -nocase $str $ix]
} else {
set found [$w search $str $ix]
}
return $found
}
# Search for next match
proc textSearch::isearchAgain {w} {
variable isearchW
if {$w != $isearchW} {
bell
endIncrementalSearch
return
}
set str $::textSearch::isearchString
if {$str == ""} {
set str $::textSearch::isearchLast
}
set found [isearchSearch $w $str "$::textSearch::isearchIndex + 1 char"]
if {$found == ""} {
bell
return
}
lappend ::textSearch::isearchHistory $::textSearch::isearchIndex \
$::textSearch::isearchString
isearchShow $w $found $str
}
# A key has been pressed during incremental search
proc textSearch::isearchKey {w key state sym} {
variable isearchW
if {$w != $isearchW} {
bell
endIncrementalSearch
return -code break
}
if {$key == ""} {
# Ignore the Control and Shift keys
if {[string match Contr* $sym]} {return -code break}
if {[string match Shift* $sym]} {return -code break}
# Ignore any Control-ed key
if {$state == 4} {return -code break}
# Break isearch on other non-ascii keys, and let it through
bell
endIncrementalSearch
return
}
set str $::textSearch::isearchString
append str $key
set found [isearchSearch $w $str $::textSearch::isearchIndex]
if {$found == ""} {
bell
return -code break
}
lappend ::textSearch::isearchHistory $::textSearch::isearchIndex \
$::textSearch::isearchString
isearchShow $w $found $str
return -code break
}
# Go backwards in the isearch stack
proc textSearch::isearchBack {w} {
variable isearchW
if {$w != $isearchW} {
bell
endIncrementalSearch
return
}
if {[llength $::textSearch::isearchHistory] < 2} {
bell
return
}
set str [lindex $::textSearch::isearchHistory end]
set found [lindex $::textSearch::isearchHistory end-1]
set ::textSearch::isearchHistory \
[lrange $::textSearch::isearchHistory 0 end-2]
isearchShow $w $found $str
}
# End an incremental search
proc textSearch::endIncrementalSearch {} {
set ::textSearch::isearchW ""
set ::textSearch::statusLabel ""
# Remove all bindings from ISearch
foreach b [bind ISearch] {
bind ISearch $b ""
}
bind ISearch <Control-Key-s> "textSearch::startIncrementalSearch %W"
}
# Dialog functions from "Practical Programming in Tcl And Tk" by Welch.
namespace eval XXtextSearch {}
proc XXtextSearch::DialogCreate {top title args} {
variable dialog
if {[winfo exists $top]} {
switch -- [wm state $top] {
normal {
# Raise a buried window
raise $top
}
withdrawn -
iconified {
# Open and restore geometry
wm deiconify $top
catch {wm geometry $top $dialog(geo,$top)}
}
}
return 0
} else {
eval {toplevel $top} $args
wm title $top $title
return 1
}
}
proc XXtextSearch::DialogWait {top varName {focus {}}} {
upvar $varName var
# Poke the variable if the user nukes the window
bind $top <Destroy> [list set $varName $var]
# Grab focus for the dialog
if {[string length $focus] == 0} {
set focus $top
}
set old [focus -displayof $top]
focus $focus
catch {tkwait visibility $top}
catch {grab $top}
# Wait for the dialog to complete
tkwait variable $varName
catch {grab release $top}
focus $old
}
proc XXtextSearch::DialogDismiss {top} {
variable dialog
# Save current size and position
catch {
# window may have been deleted
set dialog(geo,$top) [wm geometry $top]
wm withdraw $top
}
}
# Ask for a search string
proc XXtextSearch::FindDialog {string} {
variable prompt
set f .prompt
if {[DialogCreate $f "Find" -borderwidth 10]} {
message $f.msg -text $string -aspect 1000
entry $f.entry -textvariable ::textSearch::prompt(result)
checkbutton $f.case -text "Match Case" -anchor w\
-variable ::textSearch::searchCase
button $f.ok -text OK -width 7 \
-command {set ::textSearch::prompt(ok) 1}
button $f.cancel -text Cancel -width 7 \
-command {set ::textSearch::prompt(ok) 0}
grid $f.msg - - -sticky w
grid $f.entry - - -sticky we
grid $f.case - - -sticky w
grid $f.ok x $f.cancel -sticky wes
grid columnconfigure $f {0 2} -weight 1
grid columnconfigure $f 1 -minsize 10 -weight 2
grid rowconfigure $f 3 -weight 1
bind $f.entry <Key-Return> {set ::textSearch::prompt(ok) 1 ; break}
bind $f.entry <Key-Escape> {set ::textSearch::prompt(ok) 0 ; break}
}
set prompt(ok) 0
DialogWait $f ::textSearch::prompt(ok) $f.entry
DialogDismiss $f
if {$prompt(ok)} {
return $prompt(result)
} else {
return {}
}
}
proc textSearch::Dialog {args} {
set arg(-parent) .
set arg(-title) ""
set arg(-body) {pack [button $top.b -text Ok -command "destroy $top"]}
foreach {opt val} $args {
set arg($opt) $val
}
if {$arg(-parent) == "."} {
set arg(-parent) ""
}
set t 0
set top $arg(-parent).dialog_$t
while {[winfo exists $top]} {
incr t
set top $arg(-parent).dialog_$t
}
toplevel $top
wm title $top $arg(-title)
set oldfocus [focus -displayof $top]
if {[uplevel 1 {info exists top}]} {
set oldtop [uplevel 1 {set top}]
}
uplevel 1 [list set top $top]
uplevel 1 $arg(-body)
if {[info exists oldtop]} {
uplevel 1 [list set top $oldtop]
} else {
uplevel 1 {unset top}
}
# Grab focus for the dialog unless the user did it in the body
if {[winfo toplevel [focus -displayof $top]] != $top} {
focus $top
}
catch {tkwait visibility $top}
catch {grab $top}
# Wait for the dialog to complete
tkwait window $top
catch {grab release $top}
focus $oldfocus
}
proc textSearch::DismissDialog {top result} {
variable prompt
set prompt(ok) $result
set prompt(geo) [wm geometry $top]
destroy $top
}
# Ask for a search string
proc textSearch::FindDialog {string} {
variable prompt
set prompt(ok) 0
Dialog -title Find -body {
message $top.msg -text $string -aspect 1000
entry $top.entry -textvariable ::textSearch::prompt(result)
checkbutton $top.case -text "Match Case" -anchor w \
-variable ::textSearch::searchCase
button $top.ok -text OK -width 7 -default active \
-command "::textSearch::DismissDialog $top 1"
button $top.cancel -text Cancel -width 7 \
-command "::textSearch::DismissDialog $top 0"
grid $top.msg - - -sticky w -padx 2 -pady 2
grid $top.entry - - -sticky we -padx 2 -pady 2
grid $top.case - - -sticky nw -padx 2 -pady 2
grid $top.ok x $top.cancel -sticky we -padx 2 -pady 2
grid columnconfigure $top {0 2} -weight 1
grid columnconfigure $top 1 -minsize 10 -weight 2
grid rowconfigure $top 2 -weight 1
bind $top.entry <Key-Return> \
"::textSearch::DismissDialog $top 1 ; break"
bind $top.entry <Key-Escape> \
"::textSearch::DismissDialog $top 0 ; break"
focus $top.entry
if {[info exists prompt(geo)]} {
wm geometry $top $prompt(geo)
}
}
if {$prompt(ok)} {
return $prompt(result)
} else {
return {}
}
}
# "Normal" search
proc textSearch::search {} {
variable searchString
variable searchWin
variable widgets
variable searchCase
variable searchIndex
set searchWin [lindex $widgets 0]
set foc [focus -displayof .]
if {[lsearch $widgets $foc] >= 0} {
set searchWin $foc
}
set searchString [FindDialog "Please enter string to find"]
if {$searchString == ""} return
if {$searchCase} {
set searchPos [$searchWin search -count cnt $searchString @0,0]
} else {
set searchPos [$searchWin search -count cnt -nocase $searchString @0,0]
}
if {$searchPos == ""} {
tk_messageBox -message "Search string not found!" -type ok \
-title Search
return
}
$searchWin see $searchPos
$searchWin tag remove sel 1.0 end
$searchWin tag add sel $searchPos "$searchPos + $cnt chars"
set searchIndex $searchPos
}
# Search again
proc textSearch::searchNext {} {
variable searchString
variable searchWin
variable searchCase
variable searchIndex
if {$searchString == ""} return
if {$searchCase} {
set searchPos [$searchWin search -count cnt \
$searchString "$searchIndex + 1 chars"]
} else {
set searchPos [$searchWin search -count cnt -nocase \
$searchString "$searchIndex + 1 chars"]
}
if {$searchPos == "" || $searchPos == $searchIndex} {
tk_messageBox -message "String not found!" -type ok -title Search
return
}
$searchWin see $searchPos
$searchWin tag remove sel 1.0 end
$searchWin tag add sel $searchPos "$searchPos + $cnt chars"
set searchIndex $searchPos
}
# Search backwards
proc textSearch::searchPrev {} {
variable searchString
variable searchWin
variable searchCase
variable searchIndex
if {$searchString == ""} return
if {$searchCase} {
set searchPos [$searchWin search -count cnt -backwards \
$searchString "$searchIndex - 1 chars"]
} else {
set searchPos [$searchWin search -count cnt -backwards \
-nocase \
$searchString "$searchIndex - 1 chars"]
}
if {$searchPos == "" || $searchPos == $searchIndex} {
tk_messageBox -message "String not found!" -type ok -title Search
return
}
$searchWin see $searchPos
$searchWin tag remove sel 1.0 end
$searchWin tag add sel $searchPos "$searchPos + $cnt chars"
set searchIndex $searchPos
}
#####################################
# Printing stuff
#####################################
# Format a line number for printing
proc formatLineno {lineno gray} {
set res [format "%3d: " $lineno]
|
︙ | | |
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
|
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
|
+
-
+
+
-
-
+
+
+
+
+
+
|
.mo.mp add separator
.mo.mp add checkbutton -label "Use 2nd stage" \
-variable Pref(extralineparse)
.mo.mp add checkbutton -label "Mark last" -variable Pref(marklast)
menubutton .ms -text Search -underline 0 -menu .ms.m
menu .ms.m
if {[info proc textSearch::searchMenu] != ""} {
textSearch::searchMenu .ms.m
textSearch::searchMenu .ms.m
}
menubutton .mh -text Help -underline 0 -menu .mh.m
menu .mh.m
.mh.m add command -label "Help" -command makeHelpWin
.mh.m add command -label "About" -command makeAboutWin
button .bfn -text "Next Diff" -relief raised -command {findDiff 1}
button .bfp -text "Prev Diff" -relief raised -command {findDiff -1}
button .bfn -text "Next Diff" -relief raised -command {findDiff 1} \
-underline 0
button .bfp -text "Prev Diff" -relief raised -command {findDiff -1} \
-underline 0
entry .eo -width 10 -textvariable Pref(dopt)
label .lo -text "Diff Options"
bind . <Alt-n> {findDiff 1}
bind . <Alt-p> {findDiff -1}
catch {font delete myfont}
font create myfont -family $Pref(fontfamily) -size $Pref(fontsize)
#label .l1 -textvariable diff(leftLabel) -anchor e -width 10
#label .l2 -textvariable diff(rightLabel) -anchor e -width 10
fileLabel .l1 -textvariable diff(leftLabel)
|
︙ | | |
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
|
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
|
+
+
+
+
+
-
-
-
+
+
+
+
-
-
-
|
-highlightthickness 0
frame .ft2.f -width 2 -height 2 -bg lightgray
pack .ft2.tl -side left -fill y
pack .ft2.f -side left -fill y
pack .ft2.tt -side right -fill both -expand 1
scrollbar .sbx2 -orient horizontal -command ".ft2.tt xview"
label .le -textvariable ::diff(eqLabel) -width 1
label .ls -width 1 -pady 0 -padx 0
canvas .c -width 6 -bd 0 -selectborderwidth 0 -highlightthickness 0
# Set up a tag for incremental search bindings
if {[info proc textSearch::enableSearch] != ""} {
textSearch::enableSearch .ft1.tt
textSearch::enableSearch .ft2.tt
textSearch::enableSearch .ft1.tt
textSearch::enableSearch .ft2.tt
.ls configure -textvariable ::textSearch::statusLabel
}
label .le -textvariable ::diff(eqLabel) -width 1
label .ls -textvariable ::textSearch::statusLabel -width 1 -pady 0 -padx 0
canvas .c -width 6 -bd 0 -selectborderwidth 0 -highlightthickness 0
applyColor
.ft1.tt tag configure last -underline 1
.ft2.tt tag configure last -underline 1
foreach w {.ft1.tt .ft2.tt} {
$w tag raise sel
bind $w <ButtonPress-3> "zoomRow %W %X %Y %x %y"
|
︙ | | |
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
|
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
|
+
|
.md.m add radiobutton -label "Context 10" -variable ::Pref(context) -value 10
.md.m add radiobutton -label "Context 20" -variable ::Pref(context) -value 20
.md.m add separator
.md.m add checkbutton -label Wrap -variable wrapstate -onvalue char\
-offvalue none -command {.ft1.tt configure -wrap $wrapstate ;\
.ft2.tt configure -wrap $wrapstate}
.md.m add command -label "Merge" -command {makeMergeWin}
.md.m add command -label "Date Filter" -command {set ::diff(filter) {^Date}}
.md.m add command -label "Align" -command {runAlign}
.md.m add separator
.md.m add command -label "Reread Source" -command {source $thisscript}
.md.m add separator
.md.m add command -label "Redraw Window" -command {makeDiffWin}
.md.m add separator
.md.m add command -label "Normal Cursor" -command {normalCursor}
|
︙ | | |
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
|
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
|
+
+
|
global diffver
destroy .ab
toplevel .ab
wm title .ab "About Diff.tcl"
text .ab.t -width 45 -height 11 -wrap word
button .ab.b -text "Close" -command "destroy .ab"
bind .ab <Key-Return> "destroy .ab"
bind .ab <Key-Escape> "destroy .ab"
pack .ab.b -side bottom
pack .ab.t -side top -expand y -fill both
.ab.t insert end "A Tcl/Tk frontend to diff\n\n"
.ab.t insert end "$diffver\n"
.ab.t insert end "Made by Peter Spjuth\n"
.ab.t insert end "E-Mail: peter.spjuth@space.se\n\n"
|
︙ | | |
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
|
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
|
+
+
|
toplevel .he
wm title .he "Diff.tcl Help"
text .he.t -width 82 -height 35 -wrap word -yscrollcommand ".he.sb set"\
-font "Courier 10"
scrollbar .he.sb -orient vert -command ".he.t yview"
button .he.b -text "Close" -command "destroy .he"
bind .he <Key-Return> "destroy .he"
bind .he <Key-Escape> "destroy .he"
pack .he.b -side bottom
pack .he.sb -side right -fill y
pack .he.t -side left -expand y -fill both
.he.t tag configure new1 -foreground $Pref(colornew1) \
-background $Pref(bgnew1)
.he.t tag configure new2 -foreground $Pref(colornew2) \
-background $Pref(bgnew2)
|
︙ | | |
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
|
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
|
+
|
set Pref(bgchange) #ffe0e0
set Pref(bgnew1) #a0ffa0
set Pref(bgnew2) #e0e0ff
set Pref(onlydiffs) 0
set Pref(context) 2
set Pref(crlf) 0
set Pref(marklast) 1
set ::diff(filter) ""
if {[file exists "~/.diffrc"]} {
source "~/.diffrc"
}
}
if {![winfo exists .f]} {
getOptions
makeDiffWin
update idletasks
parseCommandLine
}
|