2 # Tcl ignores the next line -*- tcl -*- \
5 # Copyright © 2005-2011 Paul Mackerras. All rights reserved.
6 # This program is free software; it may be used, copied, modified
7 # and distributed under the terms of the GNU General Public Licence,
8 # either version 2, or (at your option) any later version.
13 return [expr {[exec git rev-parse
--is-bare-repository] == "false" &&
14 [exec git rev-parse
--is-inside-git-dir] == "false"}]
19 set n
[file normalize
$gitdir]
20 if {[string match
"*/.git" $n]} {
21 set n
[string range
$n 0 end-5
]
28 if {[info exists _gitworktree
]} {
31 # v1.7.0 introduced --show-toplevel to return the canonical work-tree
32 if {[catch
{set _gitworktree
[exec git rev-parse
--show-toplevel]}]} {
33 # try to set work tree from environment, core.worktree or use
34 # cdup to obtain a relative path to the top of the worktree. If
35 # run from the top, the ./ prefix ensures normalize expands pwd.
36 if {[catch
{ set _gitworktree
$env(GIT_WORK_TREE
) }]} {
37 catch
{set _gitworktree
[exec git config
--get core.worktree
]}
38 if {$_gitworktree eq
""} {
39 set _gitworktree
[file normalize .
/[exec git rev-parse
--show-cdup]]
46 # A simple scheduler for compute-intensive stuff.
47 # The aim is to make sure that event handlers for GUI actions can
48 # run at least every 50-100 ms. Unfortunately fileevent handlers are
49 # run before X event handlers, so reading from a fast source can
50 # make the GUI completely unresponsive.
52 global isonrunq runq currunq
55 if {[info exists isonrunq
($script)]} return
56 if {$runq eq
{} && ![info exists currunq
]} {
59 lappend runq
[list
{} $script]
60 set isonrunq
($script) 1
63 proc filerun
{fd
script} {
64 fileevent
$fd readable
[list filereadable
$fd $script]
67 proc filereadable
{fd
script} {
70 fileevent
$fd readable
{}
71 if {$runq eq
{} && ![info exists currunq
]} {
74 lappend runq
[list
$fd $script]
80 for {set i
0} {$i < [llength
$runq]} {} {
81 if {[lindex
$runq $i 0] eq
$fd} {
82 set runq
[lreplace
$runq $i $i]
90 global isonrunq runq currunq
92 set tstart
[clock clicks
-milliseconds]
94 while {[llength
$runq] > 0} {
95 set fd
[lindex
$runq 0 0]
96 set script [lindex
$runq 0 1]
97 set currunq
[lindex
$runq 0]
98 set runq
[lrange
$runq 1 end
]
99 set repeat
[eval $script]
101 set t1
[clock clicks
-milliseconds]
102 set t
[expr {$t1 - $t0}]
103 if {$repeat ne
{} && $repeat} {
104 if {$fd eq
{} ||
$repeat == 2} {
105 # script returns 1 if it wants to be readded
106 # file readers return 2 if they could do more straight away
107 lappend runq
[list
$fd $script]
109 fileevent
$fd readable
[list filereadable
$fd $script]
111 } elseif
{$fd eq
{}} {
112 unset isonrunq
($script)
115 if {$t1 - $tstart >= 80} break
122 proc reg_instance
{fd
} {
123 global commfd leftover loginstance
125 set i
[incr loginstance
]
131 proc unmerged_files
{files
} {
134 # find the list of unmerged files
138 set fd
[open
"| git ls-files -u" r
]
140 show_error
{} .
"[mc "Couldn
't get list of unmerged files:"] $err"
143 while {[gets $fd line] >= 0} {
144 set i [string first "\t" $line]
146 set fname [string range $line [expr {$i+1}] end]
147 if {[lsearch -exact $mlist $fname] >= 0} continue
149 if {$files eq {} || [path_filter $files $fname]} {
157 proc parseviewargs {n arglist} {
158 global vdatemode vmergeonly vflags vdflags vrevs vfiltered vorigargs env
159 global worddiff git_version
167 set origargs $arglist
171 foreach arg $arglist {
178 switch -glob -- $arg {
182 # remove from origargs in case we hit an unknown option
183 set origargs [lreplace $origargs $i $i]
187 "--no-renames" - "--full-index" - "--binary" - "--abbrev=*" -
188 "--find-copies-harder" - "-l*" - "--ext-diff" - "--no-ext-diff" -
189 "--src-prefix=*" - "--dst-prefix=*" - "--no-prefix" -
190 "-O*" - "--text" - "--full-diff" - "--ignore-space-at-eol" -
191 "--ignore-space-change" - "-U*" - "--unified=*" {
192 # These request or affect diff output, which we don't want.
193 # Some could be used to set our defaults for diff display.
194 lappend diffargs
$arg
196 "--raw" - "--patch-with-raw" - "--patch-with-stat" -
197 "--name-only" - "--name-status" - "--color" -
198 "--log-size" - "--pretty=*" - "--decorate" - "--abbrev-commit" -
199 "--cc" - "-z" - "--header" - "--parents" - "--boundary" -
200 "--no-color" - "-g" - "--walk-reflogs" - "--no-walk" -
201 "--timestamp" - "relative-date" - "--date=*" - "--stdin" -
202 "--objects" - "--objects-edge" - "--reverse" {
203 # These cause our parsing of git log's output to fail, or else
204 # they're options we want to set ourselves, so ignore them.
206 "--color-words*" - "--word-diff=color" {
207 # These trigger a word diff in the console interface,
208 # so help the user by enabling our own support
209 if {[package vcompare
$git_version "1.7.2"] >= 0} {
210 set worddiff
[mc
"Color words"]
214 if {[package vcompare
$git_version "1.7.2"] >= 0} {
215 set worddiff
[mc
"Markup words"]
218 "--stat=*" - "--numstat" - "--shortstat" - "--summary" -
219 "--check" - "--exit-code" - "--quiet" - "--topo-order" -
220 "--full-history" - "--dense" - "--sparse" -
221 "--follow" - "--left-right" - "--encoding=*" {
222 # These are harmless, and some are even useful
225 "--diff-filter=*" - "--no-merges" - "--unpacked" -
226 "--max-count=*" - "--skip=*" - "--since=*" - "--after=*" -
227 "--until=*" - "--before=*" - "--max-age=*" - "--min-age=*" -
228 "--author=*" - "--committer=*" - "--grep=*" - "-[iE]" -
229 "--remove-empty" - "--first-parent" - "--cherry-pick" -
230 "-S*" - "--pickaxe-all" - "--pickaxe-regex" -
231 "--simplify-by-decoration" {
232 # These mean that we get a subset of the commits
237 # This appears to be the only one that has a value as a
238 # separate word following it
248 # git rev-parse doesn't understand --merge
249 lappend revargs
--gitk-symmetric-diff-marker MERGE_HEAD...HEAD
251 "--no-replace-objects" {
252 set env
(GIT_NO_REPLACE_OBJECTS
) "1"
255 # Other flag arguments including -<n>
256 if {[string is digit
-strict [string range
$arg 1 end
]]} {
259 # a flag argument that we don't recognize;
260 # that means we can't optimize
266 # Non-flag arguments specify commits or ranges of commits
267 if {[string match
"*...*" $arg]} {
268 lappend revargs
--gitk-symmetric-diff-marker
274 set vdflags
($n) $diffargs
275 set vflags
($n) $glflags
276 set vrevs
($n) $revargs
277 set vfiltered
($n) $filtered
278 set vorigargs
($n) $origargs
282 proc parseviewrevs
{view revs
} {
283 global vposids vnegids
288 if {[catch
{set ids
[eval exec git rev-parse
$revs]} err
]} {
289 # we get stdout followed by stderr in $err
290 # for an unknown rev, git rev-parse echoes it and then errors out
291 set errlines
[split $err "\n"]
293 for {set l
0} {$l < [llength
$errlines]} {incr l
} {
294 set line
[lindex
$errlines $l]
295 if {!([string length
$line] == 40 && [string is xdigit
$line])} {
296 if {[string match
"fatal:*" $line]} {
297 if {[string match
"fatal: ambiguous argument*" $line]
299 if {[llength
$badrev] == 1} {
300 set err
"unknown revision $badrev"
302 set err
"unknown revisions: [join $badrev ", "]"
305 set err
[join [lrange
$errlines $l end
] "\n"]
312 error_popup
"[mc "Error parsing revisions
:"] $err"
319 foreach id
[split $ids "\n"] {
320 if {$id eq
"--gitk-symmetric-diff-marker"} {
322 } elseif
{[string match
"^*" $id]} {
329 lappend neg
[string range
$id 1 end
]
334 lset ret end
$id...
[lindex
$ret end
]
340 set vposids
($view) $pos
341 set vnegids
($view) $neg
345 # Start off a git log process and arrange to read its output
346 proc start_rev_list
{view
} {
347 global startmsecs commitidx viewcomplete curview
349 global viewargs viewargscmd viewfiles vfilelimit
350 global showlocalchanges
351 global viewactive viewinstances vmergeonly
352 global mainheadid viewmainheadid viewmainheadid_orig
353 global vcanopt vflags vrevs vorigargs
356 set startmsecs
[clock clicks
-milliseconds]
357 set commitidx
($view) 0
358 # these are set this way for the error exits
359 set viewcomplete
($view) 1
360 set viewactive
($view) 0
363 set args
$viewargs($view)
364 if {$viewargscmd($view) ne
{}} {
366 set str
[exec sh
-c $viewargscmd($view)]
368 error_popup
"[mc "Error executing
--argscmd command:"] $err"
371 set args
[concat
$args [split $str "\n"]]
373 set vcanopt
($view) [parseviewargs
$view $args]
375 set files
$viewfiles($view)
376 if {$vmergeonly($view)} {
377 set files
[unmerged_files
$files]
380 if {$nr_unmerged == 0} {
381 error_popup
[mc
"No files selected: --merge specified but\
382 no files are unmerged."]
384 error_popup
[mc
"No files selected: --merge specified but\
385 no unmerged files are within file limit."]
390 set vfilelimit
($view) $files
392 if {$vcanopt($view)} {
393 set revs
[parseviewrevs
$view $vrevs($view)]
397 set args
[concat
$vflags($view) $revs]
399 set args
$vorigargs($view)
403 set fd
[open
[concat | git log
--no-color -z --pretty=raw
$show_notes \
404 --parents --boundary $args "--" $files] r
]
406 error_popup
"[mc "Error executing git log
:"] $err"
409 set i
[reg_instance
$fd]
410 set viewinstances
($view) [list
$i]
411 set viewmainheadid
($view) $mainheadid
412 set viewmainheadid_orig
($view) $mainheadid
413 if {$files ne
{} && $mainheadid ne
{}} {
414 get_viewmainhead
$view
416 if {$showlocalchanges && $viewmainheadid($view) ne
{}} {
417 interestedin
$viewmainheadid($view) dodiffindex
419 fconfigure
$fd -blocking 0 -translation lf
-eofchar {}
420 if {$tclencoding != {}} {
421 fconfigure
$fd -encoding $tclencoding
423 filerun
$fd [list getcommitlines
$fd $i $view 0]
424 nowbusy
$view [mc
"Reading"]
425 set viewcomplete
($view) 0
426 set viewactive
($view) 1
430 proc stop_instance
{inst
} {
431 global commfd leftover
433 set fd
$commfd($inst)
437 if {$
::tcl_platform
(platform
) eq
{windows
}} {
446 unset leftover
($inst)
449 proc stop_backends
{} {
452 foreach inst
[array names commfd
] {
457 proc stop_rev_list
{view
} {
460 foreach inst
$viewinstances($view) {
463 set viewinstances
($view) {}
466 proc reset_pending_select
{selid
} {
467 global pending_select mainheadid selectheadid
470 set pending_select
$selid
471 } elseif
{$selectheadid ne
{}} {
472 set pending_select
$selectheadid
474 set pending_select
$mainheadid
478 proc getcommits
{selid
} {
479 global canv curview need_redisplay viewactive
482 if {[start_rev_list
$curview]} {
483 reset_pending_select
$selid
484 show_status
[mc
"Reading commits..."]
487 show_status
[mc
"No commits selected"]
491 proc updatecommits
{} {
492 global curview vcanopt vorigargs vfilelimit viewinstances
493 global viewactive viewcomplete tclencoding
494 global startmsecs showneartags showlocalchanges
495 global mainheadid viewmainheadid viewmainheadid_orig pending_select
497 global varcid vposids vnegids vflags vrevs
500 set hasworktree
[hasworktree
]
503 if {$mainheadid ne
$viewmainheadid_orig($view)} {
504 if {$showlocalchanges} {
507 set viewmainheadid
($view) $mainheadid
508 set viewmainheadid_orig
($view) $mainheadid
509 if {$vfilelimit($view) ne
{}} {
510 get_viewmainhead
$view
513 if {$showlocalchanges} {
516 if {$vcanopt($view)} {
517 set oldpos
$vposids($view)
518 set oldneg
$vnegids($view)
519 set revs
[parseviewrevs
$view $vrevs($view)]
523 # note: getting the delta when negative refs change is hard,
524 # and could require multiple git log invocations, so in that
525 # case we ask git log for all the commits (not just the delta)
526 if {$oldneg eq
$vnegids($view)} {
529 # take out positive refs that we asked for before or
530 # that we have already seen
532 if {[string length
$rev] == 40} {
533 if {[lsearch
-exact $oldpos $rev] < 0
534 && ![info exists varcid
($view,$rev)]} {
539 lappend
$newrevs $rev
542 if {$npos == 0} return
544 set vposids
($view) [lsort
-unique [concat
$oldpos $vposids($view)]]
546 set args
[concat
$vflags($view) $revs --not $oldpos]
548 set args
$vorigargs($view)
551 set fd
[open
[concat | git log
--no-color -z --pretty=raw
$show_notes \
552 --parents --boundary $args "--" $vfilelimit($view)] r
]
554 error_popup
"[mc "Error executing git log
:"] $err"
557 if {$viewactive($view) == 0} {
558 set startmsecs
[clock clicks
-milliseconds]
560 set i
[reg_instance
$fd]
561 lappend viewinstances
($view) $i
562 fconfigure
$fd -blocking 0 -translation lf
-eofchar {}
563 if {$tclencoding != {}} {
564 fconfigure
$fd -encoding $tclencoding
566 filerun
$fd [list getcommitlines
$fd $i $view 1]
567 incr viewactive
($view)
568 set viewcomplete
($view) 0
569 reset_pending_select
{}
570 nowbusy
$view [mc
"Reading"]
576 proc reloadcommits
{} {
577 global curview viewcomplete selectedline currentid thickerline
578 global showneartags treediffs commitinterest cached_commitrow
582 if {$selectedline ne
{}} {
586 if {!$viewcomplete($curview)} {
587 stop_rev_list
$curview
591 catch
{unset currentid
}
592 catch
{unset thickerline
}
593 catch
{unset treediffs
}
600 catch
{unset commitinterest
}
601 catch
{unset cached_commitrow
}
602 catch
{unset targetid
}
608 # This makes a string representation of a positive integer which
609 # sorts as a string in numerical order
612 return [format
"%x" $n]
613 } elseif
{$n < 256} {
614 return [format
"x%.2x" $n]
615 } elseif
{$n < 65536} {
616 return [format
"y%.4x" $n]
618 return [format
"z%.8x" $n]
621 # Procedures used in reordering commits from git log (without
622 # --topo-order) into the order for display.
624 proc varcinit
{view
} {
625 global varcstart vupptr vdownptr vleftptr vbackptr varctok varcrow
626 global vtokmod varcmod vrowmod varcix vlastins
628 set varcstart
($view) {{}}
629 set vupptr
($view) {0}
630 set vdownptr
($view) {0}
631 set vleftptr
($view) {0}
632 set vbackptr
($view) {0}
633 set varctok
($view) {{}}
634 set varcrow
($view) {{}}
635 set vtokmod
($view) {}
638 set varcix
($view) {{}}
639 set vlastins
($view) {0}
642 proc resetvarcs
{view
} {
643 global varcid varccommits parents children vseedcount ordertok
646 foreach vid
[array names varcid
$view,*] {
651 foreach vid
[array names vshortids
$view,*] {
652 unset vshortids
($vid)
654 # some commits might have children but haven't been seen yet
655 foreach vid
[array names children
$view,*] {
658 foreach va
[array names varccommits
$view,*] {
659 unset varccommits
($va)
661 foreach vd
[array names vseedcount
$view,*] {
662 unset vseedcount
($vd)
664 catch
{unset ordertok
}
667 # returns a list of the commits with no children
669 global vdownptr vleftptr varcstart
672 set a
[lindex
$vdownptr($v) 0]
674 lappend ret
[lindex
$varcstart($v) $a]
675 set a
[lindex
$vleftptr($v) $a]
680 proc newvarc
{view id
} {
681 global varcid varctok parents children vdatemode
682 global vupptr vdownptr vleftptr vbackptr varcrow varcix varcstart
683 global commitdata commitinfo vseedcount varccommits vlastins
685 set a
[llength
$varctok($view)]
687 if {[llength
$children($vid)] == 0 ||
$vdatemode($view)} {
688 if {![info exists commitinfo
($id)]} {
689 parsecommit
$id $commitdata($id) 1
691 set cdate
[lindex
[lindex
$commitinfo($id) 4] 0]
692 if {![string is integer
-strict $cdate]} {
695 if {![info exists vseedcount
($view,$cdate)]} {
696 set vseedcount
($view,$cdate) -1
698 set c
[incr vseedcount
($view,$cdate)]
699 set cdate
[expr {$cdate ^
0xffffffff}]
700 set tok
"s[strrep $cdate][strrep $c]"
705 if {[llength
$children($vid)] > 0} {
706 set kid
[lindex
$children($vid) end
]
707 set k
$varcid($view,$kid)
708 if {[string compare
[lindex
$varctok($view) $k] $tok] > 0} {
711 set tok
[lindex
$varctok($view) $k]
715 set i
[lsearch
-exact $parents($view,$ki) $id]
716 set j
[expr {[llength
$parents($view,$ki)] - 1 - $i}]
717 append tok
[strrep
$j]
719 set c
[lindex
$vlastins($view) $ka]
720 if {$c == 0 ||
[string compare
$tok [lindex
$varctok($view) $c]] < 0} {
722 set b
[lindex
$vdownptr($view) $ka]
724 set b
[lindex
$vleftptr($view) $c]
726 while {$b != 0 && [string compare
$tok [lindex
$varctok($view) $b]] >= 0} {
728 set b
[lindex
$vleftptr($view) $c]
731 lset vdownptr
($view) $ka $a
732 lappend vbackptr
($view) 0
734 lset vleftptr
($view) $c $a
735 lappend vbackptr
($view) $c
737 lset vlastins
($view) $ka $a
738 lappend vupptr
($view) $ka
739 lappend vleftptr
($view) $b
741 lset vbackptr
($view) $b $a
743 lappend varctok
($view) $tok
744 lappend varcstart
($view) $id
745 lappend vdownptr
($view) 0
746 lappend varcrow
($view) {}
747 lappend varcix
($view) {}
748 set varccommits
($view,$a) {}
749 lappend vlastins
($view) 0
753 proc splitvarc
{p v
} {
754 global varcid varcstart varccommits varctok vtokmod
755 global vupptr vdownptr vleftptr vbackptr varcix varcrow vlastins
757 set oa
$varcid($v,$p)
758 set otok
[lindex
$varctok($v) $oa]
759 set ac
$varccommits($v,$oa)
760 set i
[lsearch
-exact $varccommits($v,$oa) $p]
762 set na
[llength
$varctok($v)]
763 # "%" sorts before "0"...
764 set tok
"$otok%[strrep $i]"
765 lappend varctok
($v) $tok
766 lappend varcrow
($v) {}
767 lappend varcix
($v) {}
768 set varccommits
($v,$oa) [lrange
$ac 0 [expr {$i - 1}]]
769 set varccommits
($v,$na) [lrange
$ac $i end
]
770 lappend varcstart
($v) $p
771 foreach id
$varccommits($v,$na) {
772 set varcid
($v,$id) $na
774 lappend vdownptr
($v) [lindex
$vdownptr($v) $oa]
775 lappend vlastins
($v) [lindex
$vlastins($v) $oa]
776 lset vdownptr
($v) $oa $na
777 lset vlastins
($v) $oa 0
778 lappend vupptr
($v) $oa
779 lappend vleftptr
($v) 0
780 lappend vbackptr
($v) 0
781 for {set b
[lindex
$vdownptr($v) $na]} {$b != 0} {set b
[lindex
$vleftptr($v) $b]} {
782 lset vupptr
($v) $b $na
784 if {[string compare
$otok $vtokmod($v)] <= 0} {
789 proc renumbervarc
{a v
} {
790 global parents children varctok varcstart varccommits
791 global vupptr vdownptr vleftptr vbackptr vlastins varcid vtokmod vdatemode
793 set t1
[clock clicks
-milliseconds]
799 if {[info exists isrelated
($a)]} {
801 set id
[lindex
$varccommits($v,$a) end
]
802 foreach p
$parents($v,$id) {
803 if {[info exists varcid
($v,$p)]} {
804 set isrelated
($varcid($v,$p)) 1
809 set b
[lindex
$vdownptr($v) $a]
812 set b
[lindex
$vleftptr($v) $a]
814 set a
[lindex
$vupptr($v) $a]
820 if {![info exists kidchanged
($a)]} continue
821 set id
[lindex
$varcstart($v) $a]
822 if {[llength
$children($v,$id)] > 1} {
823 set children
($v,$id) [lsort
-command [list vtokcmp
$v] \
826 set oldtok
[lindex
$varctok($v) $a]
827 if {!$vdatemode($v)} {
833 set kid
[last_real_child
$v,$id]
835 set k
$varcid($v,$kid)
836 if {[string compare
[lindex
$varctok($v) $k] $tok] > 0} {
839 set tok
[lindex
$varctok($v) $k]
843 set i
[lsearch
-exact $parents($v,$ki) $id]
844 set j
[expr {[llength
$parents($v,$ki)] - 1 - $i}]
845 append tok
[strrep
$j]
847 if {$tok eq
$oldtok} {
850 set id
[lindex
$varccommits($v,$a) end
]
851 foreach p
$parents($v,$id) {
852 if {[info exists varcid
($v,$p)]} {
853 set kidchanged
($varcid($v,$p)) 1
858 lset varctok
($v) $a $tok
859 set b
[lindex
$vupptr($v) $a]
861 if {[string compare
[lindex
$varctok($v) $ka] $vtokmod($v)] < 0} {
864 if {[string compare
[lindex
$varctok($v) $b] $vtokmod($v)] < 0} {
867 set c
[lindex
$vbackptr($v) $a]
868 set d
[lindex
$vleftptr($v) $a]
870 lset vdownptr
($v) $b $d
872 lset vleftptr
($v) $c $d
875 lset vbackptr
($v) $d $c
877 if {[lindex
$vlastins($v) $b] == $a} {
878 lset vlastins
($v) $b $c
880 lset vupptr
($v) $a $ka
881 set c
[lindex
$vlastins($v) $ka]
883 [string compare
$tok [lindex
$varctok($v) $c]] < 0} {
885 set b
[lindex
$vdownptr($v) $ka]
887 set b
[lindex
$vleftptr($v) $c]
890 [string compare
$tok [lindex
$varctok($v) $b]] >= 0} {
892 set b
[lindex
$vleftptr($v) $c]
895 lset vdownptr
($v) $ka $a
896 lset vbackptr
($v) $a 0
898 lset vleftptr
($v) $c $a
899 lset vbackptr
($v) $a $c
901 lset vleftptr
($v) $a $b
903 lset vbackptr
($v) $b $a
905 lset vlastins
($v) $ka $a
908 foreach id
[array names sortkids
] {
909 if {[llength
$children($v,$id)] > 1} {
910 set children
($v,$id) [lsort
-command [list vtokcmp
$v] \
914 set t2
[clock clicks
-milliseconds]
915 #puts "renumbervarc did [llength $todo] of $ntot arcs in [expr {$t2-$t1}]ms"
918 # Fix up the graph after we have found out that in view $v,
919 # $p (a commit that we have already seen) is actually the parent
920 # of the last commit in arc $a.
921 proc fix_reversal
{p a v
} {
922 global varcid varcstart varctok vupptr
924 set pa
$varcid($v,$p)
925 if {$p ne
[lindex
$varcstart($v) $pa]} {
927 set pa
$varcid($v,$p)
929 # seeds always need to be renumbered
930 if {[lindex
$vupptr($v) $pa] == 0 ||
931 [string compare
[lindex
$varctok($v) $a] \
932 [lindex
$varctok($v) $pa]] > 0} {
937 proc insertrow
{id p v
} {
938 global cmitlisted children parents varcid varctok vtokmod
939 global varccommits ordertok commitidx numcommits curview
940 global targetid targetrow vshortids
944 set cmitlisted
($vid) 1
945 set children
($vid) {}
946 set parents
($vid) [list
$p]
947 set a
[newvarc
$v $id]
949 lappend vshortids
($v,[string range
$id 0 3]) $id
950 if {[string compare
[lindex
$varctok($v) $a] $vtokmod($v)] < 0} {
953 lappend varccommits
($v,$a) $id
955 if {[llength
[lappend children
($vp) $id]] > 1} {
956 set children
($vp) [lsort
-command [list vtokcmp
$v] $children($vp)]
957 catch
{unset ordertok
}
959 fix_reversal
$p $a $v
961 if {$v == $curview} {
962 set numcommits
$commitidx($v)
964 if {[info exists targetid
]} {
965 if {![comes_before
$targetid $p]} {
972 proc insertfakerow
{id p
} {
973 global varcid varccommits parents children cmitlisted
974 global commitidx varctok vtokmod targetid targetrow curview numcommits
978 set i
[lsearch
-exact $varccommits($v,$a) $p]
980 puts
"oops: insertfakerow can't find [shortids $p] on arc $a"
983 set children
($v,$id) {}
984 set parents
($v,$id) [list
$p]
985 set varcid
($v,$id) $a
986 lappend children
($v,$p) $id
987 set cmitlisted
($v,$id) 1
988 set numcommits
[incr commitidx
($v)]
989 # note we deliberately don't update varcstart($v) even if $i == 0
990 set varccommits
($v,$a) [linsert
$varccommits($v,$a) $i $id]
992 if {[info exists targetid
]} {
993 if {![comes_before
$targetid $p]} {
1001 proc removefakerow
{id
} {
1002 global varcid varccommits parents children commitidx
1003 global varctok vtokmod cmitlisted currentid selectedline
1004 global targetid curview numcommits
1007 if {[llength
$parents($v,$id)] != 1} {
1008 puts
"oops: removefakerow [shortids $id] has [llength $parents($v,$id)] parents"
1011 set p
[lindex
$parents($v,$id) 0]
1012 set a
$varcid($v,$id)
1013 set i
[lsearch
-exact $varccommits($v,$a) $id]
1015 puts
"oops: removefakerow can't find [shortids $id] on arc $a"
1018 unset varcid
($v,$id)
1019 set varccommits
($v,$a) [lreplace
$varccommits($v,$a) $i $i]
1020 unset parents
($v,$id)
1021 unset children
($v,$id)
1022 unset cmitlisted
($v,$id)
1023 set numcommits
[incr commitidx
($v) -1]
1024 set j
[lsearch
-exact $children($v,$p) $id]
1026 set children
($v,$p) [lreplace
$children($v,$p) $j $j]
1029 if {[info exist currentid
] && $id eq
$currentid} {
1033 if {[info exists targetid
] && $targetid eq
$id} {
1040 proc real_children
{vp
} {
1041 global children nullid nullid2
1044 foreach id
$children($vp) {
1045 if {$id ne
$nullid && $id ne
$nullid2} {
1052 proc first_real_child
{vp
} {
1053 global children nullid nullid2
1055 foreach id
$children($vp) {
1056 if {$id ne
$nullid && $id ne
$nullid2} {
1063 proc last_real_child
{vp
} {
1064 global children nullid nullid2
1066 set kids
$children($vp)
1067 for {set i
[llength
$kids]} {[incr i
-1] >= 0} {} {
1068 set id
[lindex
$kids $i]
1069 if {$id ne
$nullid && $id ne
$nullid2} {
1076 proc vtokcmp
{v a b
} {
1077 global varctok varcid
1079 return [string compare
[lindex
$varctok($v) $varcid($v,$a)] \
1080 [lindex
$varctok($v) $varcid($v,$b)]]
1083 # This assumes that if lim is not given, the caller has checked that
1084 # arc a's token is less than $vtokmod($v)
1085 proc modify_arc
{v a
{lim
{}}} {
1086 global varctok vtokmod varcmod varcrow vupptr curview vrowmod varccommits
1089 set c
[string compare
[lindex
$varctok($v) $a] $vtokmod($v)]
1092 set r
[lindex
$varcrow($v) $a]
1093 if {$r ne
{} && $vrowmod($v) <= $r + $lim} return
1096 set vtokmod
($v) [lindex
$varctok($v) $a]
1098 if {$v == $curview} {
1099 while {$a != 0 && [lindex
$varcrow($v) $a] eq
{}} {
1100 set a
[lindex
$vupptr($v) $a]
1106 set lim
[llength
$varccommits($v,$a)]
1108 set r
[expr {[lindex
$varcrow($v) $a] + $lim}]
1115 proc update_arcrows
{v
} {
1116 global vtokmod varcmod vrowmod varcrow commitidx currentid selectedline
1117 global varcid vrownum varcorder varcix varccommits
1118 global vupptr vdownptr vleftptr varctok
1119 global displayorder parentlist curview cached_commitrow
1121 if {$vrowmod($v) == $commitidx($v)} return
1122 if {$v == $curview} {
1123 if {[llength
$displayorder] > $vrowmod($v)} {
1124 set displayorder
[lrange
$displayorder 0 [expr {$vrowmod($v) - 1}]]
1125 set parentlist
[lrange
$parentlist 0 [expr {$vrowmod($v) - 1}]]
1127 catch
{unset cached_commitrow
}
1129 set narctot
[expr {[llength
$varctok($v)] - 1}]
1131 while {$a != 0 && [lindex
$varcix($v) $a] eq
{}} {
1132 # go up the tree until we find something that has a row number,
1133 # or we get to a seed
1134 set a
[lindex
$vupptr($v) $a]
1137 set a
[lindex
$vdownptr($v) 0]
1140 set varcorder
($v) [list
$a]
1141 lset varcix
($v) $a 0
1142 lset varcrow
($v) $a 0
1146 set arcn
[lindex
$varcix($v) $a]
1147 if {[llength
$vrownum($v)] > $arcn + 1} {
1148 set vrownum
($v) [lrange
$vrownum($v) 0 $arcn]
1149 set varcorder
($v) [lrange
$varcorder($v) 0 $arcn]
1151 set row
[lindex
$varcrow($v) $a]
1155 incr row
[llength
$varccommits($v,$a)]
1156 # go down if possible
1157 set b
[lindex
$vdownptr($v) $a]
1159 # if not, go left, or go up until we can go left
1161 set b
[lindex
$vleftptr($v) $a]
1163 set a
[lindex
$vupptr($v) $a]
1169 lappend vrownum
($v) $row
1170 lappend varcorder
($v) $a
1171 lset varcix
($v) $a $arcn
1172 lset varcrow
($v) $a $row
1174 set vtokmod
($v) [lindex
$varctok($v) $p]
1176 set vrowmod
($v) $row
1177 if {[info exists currentid
]} {
1178 set selectedline
[rowofcommit
$currentid]
1182 # Test whether view $v contains commit $id
1183 proc commitinview
{id v
} {
1186 return [info exists varcid
($v,$id)]
1189 # Return the row number for commit $id in the current view
1190 proc rowofcommit
{id
} {
1191 global varcid varccommits varcrow curview cached_commitrow
1192 global varctok vtokmod
1195 if {![info exists varcid
($v,$id)]} {
1196 puts
"oops rowofcommit no arc for [shortids $id]"
1199 set a
$varcid($v,$id)
1200 if {[string compare
[lindex
$varctok($v) $a] $vtokmod($v)] >= 0} {
1203 if {[info exists cached_commitrow
($id)]} {
1204 return $cached_commitrow($id)
1206 set i
[lsearch
-exact $varccommits($v,$a) $id]
1208 puts
"oops didn't find commit [shortids $id] in arc $a"
1211 incr i
[lindex
$varcrow($v) $a]
1212 set cached_commitrow
($id) $i
1216 # Returns 1 if a is on an earlier row than b, otherwise 0
1217 proc comes_before
{a b
} {
1218 global varcid varctok curview
1221 if {$a eq
$b ||
![info exists varcid
($v,$a)] || \
1222 ![info exists varcid
($v,$b)]} {
1225 if {$varcid($v,$a) != $varcid($v,$b)} {
1226 return [expr {[string compare
[lindex
$varctok($v) $varcid($v,$a)] \
1227 [lindex
$varctok($v) $varcid($v,$b)]] < 0}]
1229 return [expr {[rowofcommit
$a] < [rowofcommit
$b]}]
1232 proc bsearch
{l elt
} {
1233 if {[llength
$l] == 0 ||
$elt <= [lindex
$l 0]} {
1238 while {$hi - $lo > 1} {
1239 set mid
[expr {int
(($lo + $hi) / 2)}]
1240 set t
[lindex
$l $mid]
1243 } elseif
{$elt > $t} {
1252 # Make sure rows $start..$end-1 are valid in displayorder and parentlist
1253 proc make_disporder
{start end
} {
1254 global vrownum curview commitidx displayorder parentlist
1255 global varccommits varcorder parents vrowmod varcrow
1256 global d_valid_start d_valid_end
1258 if {$end > $vrowmod($curview)} {
1259 update_arcrows
$curview
1261 set ai
[bsearch
$vrownum($curview) $start]
1262 set start
[lindex
$vrownum($curview) $ai]
1263 set narc
[llength
$vrownum($curview)]
1264 for {set r
$start} {$ai < $narc && $r < $end} {incr ai
} {
1265 set a
[lindex
$varcorder($curview) $ai]
1266 set l
[llength
$displayorder]
1267 set al
[llength
$varccommits($curview,$a)]
1268 if {$l < $r + $al} {
1270 set pad
[ntimes
[expr {$r - $l}] {}]
1271 set displayorder
[concat
$displayorder $pad]
1272 set parentlist
[concat
$parentlist $pad]
1273 } elseif
{$l > $r} {
1274 set displayorder
[lrange
$displayorder 0 [expr {$r - 1}]]
1275 set parentlist
[lrange
$parentlist 0 [expr {$r - 1}]]
1277 foreach id
$varccommits($curview,$a) {
1278 lappend displayorder
$id
1279 lappend parentlist
$parents($curview,$id)
1281 } elseif
{[lindex
$displayorder [expr {$r + $al - 1}]] eq
{}} {
1283 foreach id
$varccommits($curview,$a) {
1284 lset displayorder
$i $id
1285 lset parentlist
$i $parents($curview,$id)
1293 proc commitonrow
{row
} {
1296 set id
[lindex
$displayorder $row]
1298 make_disporder
$row [expr {$row + 1}]
1299 set id
[lindex
$displayorder $row]
1304 proc closevarcs
{v
} {
1305 global varctok varccommits varcid parents children
1306 global cmitlisted commitidx vtokmod
1308 set missing_parents
0
1310 set narcs
[llength
$varctok($v)]
1311 for {set a
1} {$a < $narcs} {incr a
} {
1312 set id
[lindex
$varccommits($v,$a) end
]
1313 foreach p
$parents($v,$id) {
1314 if {[info exists varcid
($v,$p)]} continue
1315 # add p as a new commit
1316 incr missing_parents
1317 set cmitlisted
($v,$p) 0
1318 set parents
($v,$p) {}
1319 if {[llength
$children($v,$p)] == 1 &&
1320 [llength
$parents($v,$id)] == 1} {
1323 set b
[newvarc
$v $p]
1325 set varcid
($v,$p) $b
1326 if {[string compare
[lindex
$varctok($v) $b] $vtokmod($v)] < 0} {
1329 lappend varccommits
($v,$b) $p
1331 set scripts
[check_interest
$p $scripts]
1334 if {$missing_parents > 0} {
1335 foreach s
$scripts {
1341 # Use $rwid as a substitute for $id, i.e. reparent $id's children to $rwid
1342 # Assumes we already have an arc for $rwid.
1343 proc rewrite_commit
{v id rwid
} {
1344 global children parents varcid varctok vtokmod varccommits
1346 foreach ch
$children($v,$id) {
1347 # make $rwid be $ch's parent in place of $id
1348 set i
[lsearch
-exact $parents($v,$ch) $id]
1350 puts
"oops rewrite_commit didn't find $id in parent list for $ch"
1352 set parents
($v,$ch) [lreplace
$parents($v,$ch) $i $i $rwid]
1353 # add $ch to $rwid's children and sort the list if necessary
1354 if {[llength
[lappend children
($v,$rwid) $ch]] > 1} {
1355 set children
($v,$rwid) [lsort
-command [list vtokcmp
$v] \
1356 $children($v,$rwid)]
1358 # fix the graph after joining $id to $rwid
1359 set a
$varcid($v,$ch)
1360 fix_reversal
$rwid $a $v
1361 # parentlist is wrong for the last element of arc $a
1362 # even if displayorder is right, hence the 3rd arg here
1363 modify_arc
$v $a [expr {[llength
$varccommits($v,$a)] - 1}]
1367 # Mechanism for registering a command to be executed when we come
1368 # across a particular commit. To handle the case when only the
1369 # prefix of the commit is known, the commitinterest array is now
1370 # indexed by the first 4 characters of the ID. Each element is a
1371 # list of id, cmd pairs.
1372 proc interestedin
{id cmd
} {
1373 global commitinterest
1375 lappend commitinterest
([string range
$id 0 3]) $id $cmd
1378 proc check_interest
{id scripts
} {
1379 global commitinterest
1381 set prefix
[string range
$id 0 3]
1382 if {[info exists commitinterest
($prefix)]} {
1384 foreach
{i
script} $commitinterest($prefix) {
1385 if {[string match
"$i*" $id]} {
1386 lappend scripts
[string map
[list
"%I" $id "%P" $i] $script]
1388 lappend newlist
$i $script
1391 if {$newlist ne
{}} {
1392 set commitinterest
($prefix) $newlist
1394 unset commitinterest
($prefix)
1400 proc getcommitlines
{fd inst view updating
} {
1401 global cmitlisted leftover
1402 global commitidx commitdata vdatemode
1403 global parents children curview hlview
1404 global idpending ordertok
1405 global varccommits varcid varctok vtokmod vfilelimit vshortids
1407 set stuff
[read $fd 500000]
1408 # git log doesn't terminate the last commit with a null...
1409 if {$stuff == {} && $leftover($inst) ne
{} && [eof
$fd]} {
1416 global commfd viewcomplete viewactive viewname
1417 global viewinstances
1419 set i
[lsearch
-exact $viewinstances($view) $inst]
1421 set viewinstances
($view) [lreplace
$viewinstances($view) $i $i]
1423 # set it blocking so we wait for the process to terminate
1424 fconfigure
$fd -blocking 1
1425 if {[catch
{close
$fd} err
]} {
1427 if {$view != $curview} {
1428 set fv
" for the \"$viewname($view)\" view"
1430 if {[string range
$err 0 4] == "usage"} {
1431 set err
"Gitk: error reading commits$fv:\
1432 bad arguments to git log."
1433 if {$viewname($view) eq
"Command line"} {
1435 " (Note: arguments to gitk are passed to git log\
1436 to allow selection of commits to be displayed.)"
1439 set err
"Error reading commits$fv: $err"
1443 if {[incr viewactive
($view) -1] <= 0} {
1444 set viewcomplete
($view) 1
1445 # Check if we have seen any ids listed as parents that haven't
1446 # appeared in the list
1450 if {$view == $curview} {
1459 set i
[string first
"\0" $stuff $start]
1461 append leftover
($inst) [string range
$stuff $start end
]
1465 set cmit
$leftover($inst)
1466 append cmit
[string range
$stuff 0 [expr {$i - 1}]]
1467 set leftover
($inst) {}
1469 set cmit
[string range
$stuff $start [expr {$i - 1}]]
1471 set start
[expr {$i + 1}]
1472 set j
[string first
"\n" $cmit]
1475 if {$j >= 0 && [string match
"commit *" $cmit]} {
1476 set ids
[string range
$cmit 7 [expr {$j - 1}]]
1477 if {[string match
{[-^
<>]*} $ids]} {
1478 switch
-- [string index
$ids 0] {
1484 set ids
[string range
$ids 1 end
]
1488 if {[string length
$id] != 40} {
1496 if {[string length
$shortcmit] > 80} {
1497 set shortcmit
"[string range $shortcmit 0 80]..."
1499 error_popup
"[mc "Can
't parse git log output:"] {$shortcmit}"
1502 set id [lindex $ids 0]
1505 lappend vshortids($view,[string range $id 0 3]) $id
1507 if {!$listed && $updating && ![info exists varcid($vid)] &&
1508 $vfilelimit($view) ne {}} {
1509 # git log doesn't rewrite parents
for unlisted commits
1510 # when doing path limiting, so work around that here
1511 # by working out the rewritten parent with git rev-list
1512 # and if we already know about it, using the rewritten
1513 # parent as a substitute parent for $id's children.
1515 set rwid
[exec git rev-list
--first-parent --max-count=1 \
1516 $id -- $vfilelimit($view)]
1518 if {$rwid ne
{} && [info exists varcid
($view,$rwid)]} {
1519 # use $rwid in place of $id
1520 rewrite_commit
$view $id $rwid
1527 if {[info exists varcid
($vid)]} {
1528 if {$cmitlisted($vid) ||
!$listed} continue
1532 set olds
[lrange
$ids 1 end
]
1536 set commitdata
($id) [string range
$cmit [expr {$j + 1}] end
]
1537 set cmitlisted
($vid) $listed
1538 set parents
($vid) $olds
1539 if {![info exists children
($vid)]} {
1540 set children
($vid) {}
1541 } elseif
{$a == 0 && [llength
$children($vid)] == 1} {
1542 set k
[lindex
$children($vid) 0]
1543 if {[llength
$parents($view,$k)] == 1 &&
1544 (!$vdatemode($view) ||
1545 $varcid($view,$k) == [llength
$varctok($view)] - 1)} {
1546 set a
$varcid($view,$k)
1551 set a
[newvarc
$view $id]
1553 if {[string compare
[lindex
$varctok($view) $a] $vtokmod($view)] < 0} {
1556 if {![info exists varcid
($vid)]} {
1558 lappend varccommits
($view,$a) $id
1559 incr commitidx
($view)
1564 if {$i == 0 ||
[lsearch
-exact $olds $p] >= $i} {
1566 if {[llength
[lappend children
($vp) $id]] > 1 &&
1567 [vtokcmp
$view [lindex
$children($vp) end-1
] $id] > 0} {
1568 set children
($vp) [lsort
-command [list vtokcmp
$view] \
1570 catch
{unset ordertok
}
1572 if {[info exists varcid
($view,$p)]} {
1573 fix_reversal
$p $a $view
1579 set scripts
[check_interest
$id $scripts]
1583 global numcommits hlview
1585 if {$view == $curview} {
1586 set numcommits
$commitidx($view)
1589 if {[info exists hlview
] && $view == $hlview} {
1590 # we never actually get here...
1593 foreach s
$scripts {
1600 proc chewcommits
{} {
1601 global curview hlview viewcomplete
1602 global pending_select
1605 if {$viewcomplete($curview)} {
1606 global commitidx varctok
1607 global numcommits startmsecs
1609 if {[info exists pending_select
]} {
1611 reset_pending_select
{}
1613 if {[commitinview
$pending_select $curview]} {
1614 selectline
[rowofcommit
$pending_select] 1
1616 set row
[first_real_row
]
1620 if {$commitidx($curview) > 0} {
1621 #set ms [expr {[clock clicks -milliseconds] - $startmsecs}]
1622 #puts "overall $ms ms for $numcommits commits"
1623 #puts "[llength $varctok($view)] arcs, $commitidx($view) commits"
1625 show_status
[mc
"No commits selected"]
1632 proc do_readcommit
{id
} {
1635 # Invoke git-log to handle automatic encoding conversion
1636 set fd
[open
[concat | git log
--no-color --pretty=raw
-1 $id] r
]
1637 # Read the results using i18n.logoutputencoding
1638 fconfigure
$fd -translation lf
-eofchar {}
1639 if {$tclencoding != {}} {
1640 fconfigure
$fd -encoding $tclencoding
1642 set contents
[read $fd]
1644 # Remove the heading line
1645 regsub
{^commit
[0-9a-f]+\n} $contents {} contents
1650 proc readcommit
{id
} {
1651 if {[catch
{set contents
[do_readcommit
$id]}]} return
1652 parsecommit
$id $contents 1
1655 proc parsecommit
{id contents listed
} {
1665 set hdrend
[string first
"\n\n" $contents]
1667 # should never happen...
1668 set hdrend
[string length
$contents]
1670 set header
[string range
$contents 0 [expr {$hdrend - 1}]]
1671 set comment
[string range
$contents [expr {$hdrend + 2}] end
]
1672 foreach line
[split $header "\n"] {
1673 set line
[split $line " "]
1674 set tag
[lindex
$line 0]
1675 if {$tag == "author"} {
1676 set audate
[lrange
$line end-1 end
]
1677 set auname
[join [lrange
$line 1 end-2
] " "]
1678 } elseif
{$tag == "committer"} {
1679 set comdate
[lrange
$line end-1 end
]
1680 set comname
[join [lrange
$line 1 end-2
] " "]
1684 # take the first non-blank line of the comment as the headline
1685 set headline
[string trimleft
$comment]
1686 set i
[string first
"\n" $headline]
1688 set headline
[string range
$headline 0 $i]
1690 set headline
[string trimright
$headline]
1691 set i
[string first
"\r" $headline]
1693 set headline
[string trimright
[string range
$headline 0 $i]]
1696 # git log indents the comment by 4 spaces;
1697 # if we got this via git cat-file, add the indentation
1699 foreach line
[split $comment "\n"] {
1700 append newcomment
" "
1701 append newcomment
$line
1702 append newcomment
"\n"
1704 set comment
$newcomment
1706 set hasnote
[string first
"\nNotes:\n" $contents]
1707 set commitinfo
($id) [list
$headline $auname $audate \
1708 $comname $comdate $comment $hasnote]
1711 proc getcommit
{id
} {
1712 global commitdata commitinfo
1714 if {[info exists commitdata
($id)]} {
1715 parsecommit
$id $commitdata($id) 1
1718 if {![info exists commitinfo
($id)]} {
1719 set commitinfo
($id) [list
[mc
"No commit information available"]]
1725 # Expand an abbreviated commit ID to a list of full 40-char IDs that match
1726 # and are present in the current view.
1727 # This is fairly slow...
1728 proc longid
{prefix
} {
1729 global varcid curview vshortids
1732 if {[string length
$prefix] >= 4} {
1733 set vshortid
$curview,[string range
$prefix 0 3]
1734 if {[info exists vshortids
($vshortid)]} {
1735 foreach id
$vshortids($vshortid) {
1736 if {[string match
"$prefix*" $id]} {
1737 if {[lsearch
-exact $ids $id] < 0} {
1739 if {[llength
$ids] >= 2} break
1745 foreach match
[array names varcid
"$curview,$prefix*"] {
1746 lappend ids
[lindex
[split $match ","] 1]
1747 if {[llength
$ids] >= 2} break
1754 global tagids idtags headids idheads tagobjid
1755 global otherrefids idotherrefs mainhead mainheadid
1756 global selecthead selectheadid
1759 foreach v
{tagids idtags headids idheads otherrefids idotherrefs
} {
1762 set refd
[open
[list | git show-ref
-d] r
]
1763 while {[gets
$refd line
] >= 0} {
1764 if {[string index
$line 40] ne
" "} continue
1765 set id
[string range
$line 0 39]
1766 set ref
[string range
$line 41 end
]
1767 if {![string match
"refs/*" $ref]} continue
1768 set name
[string range
$ref 5 end
]
1769 if {[string match
"remotes/*" $name]} {
1770 if {![string match
"*/HEAD" $name] && !$hideremotes} {
1771 set headids
($name) $id
1772 lappend idheads
($id) $name
1774 } elseif
{[string match
"heads/*" $name]} {
1775 set name
[string range
$name 6 end
]
1776 set headids
($name) $id
1777 lappend idheads
($id) $name
1778 } elseif
{[string match
"tags/*" $name]} {
1779 # this lets refs/tags/foo^{} overwrite refs/tags/foo,
1780 # which is what we want since the former is the commit ID
1781 set name
[string range
$name 5 end
]
1782 if {[string match
"*^{}" $name]} {
1783 set name
[string range
$name 0 end-3
]
1785 set tagobjid
($name) $id
1787 set tagids
($name) $id
1788 lappend idtags
($id) $name
1790 set otherrefids
($name) $id
1791 lappend idotherrefs
($id) $name
1798 set mainheadid
[exec git rev-parse HEAD
]
1799 set thehead
[exec git symbolic-ref HEAD
]
1800 if {[string match
"refs/heads/*" $thehead]} {
1801 set mainhead
[string range
$thehead 11 end
]
1805 if {$selecthead ne
{}} {
1807 set selectheadid
[exec git rev-parse
--verify $selecthead]
1812 # skip over fake commits
1813 proc first_real_row
{} {
1814 global nullid nullid2 numcommits
1816 for {set row
0} {$row < $numcommits} {incr row
} {
1817 set id
[commitonrow
$row]
1818 if {$id ne
$nullid && $id ne
$nullid2} {
1825 # update things for a head moved to a child of its previous location
1826 proc movehead
{id name
} {
1827 global headids idheads
1829 removehead
$headids($name) $name
1830 set headids
($name) $id
1831 lappend idheads
($id) $name
1834 # update things when a head has been removed
1835 proc removehead
{id name
} {
1836 global headids idheads
1838 if {$idheads($id) eq
$name} {
1841 set i
[lsearch
-exact $idheads($id) $name]
1843 set idheads
($id) [lreplace
$idheads($id) $i $i]
1846 unset headids
($name)
1849 proc ttk_toplevel
{w args
} {
1851 eval [linsert
$args 0 ::toplevel
$w]
1853 place
[ttk
::frame
$w._toplevel_background
] -x 0 -y 0 -relwidth 1 -relheight 1
1858 proc make_transient
{window origin
} {
1861 # In MacOS Tk 8.4 transient appears to work by setting
1862 # overrideredirect, which is utterly useless, since the
1863 # windows get no border, and are not even kept above
1865 if {!$have_tk85 && [tk windowingsystem
] eq
{aqua
}} return
1867 wm transient
$window $origin
1869 # Windows fails to place transient windows normally, so
1870 # schedule a callback to center them on the parent.
1871 if {[tk windowingsystem
] eq
{win32
}} {
1872 after idle
[list tk
::PlaceWindow
$window widget
$origin]
1876 proc show_error
{w top msg
{mc mc
}} {
1878 if {![info exists NS
]} {set NS
""}
1879 if {[wm state
$top] eq
"withdrawn"} { wm deiconify
$top }
1880 message
$w.m
-text $msg -justify center
-aspect 400
1881 pack
$w.m
-side top
-fill x
-padx 20 -pady 20
1882 ${NS}::button
$w.ok
-default active
-text [$mc OK
] -command "destroy $top"
1883 pack
$w.ok
-side bottom
-fill x
1884 bind $top <Visibility
> "grab $top; focus $top"
1885 bind $top <Key-Return
> "destroy $top"
1886 bind $top <Key-space
> "destroy $top"
1887 bind $top <Key-Escape
> "destroy $top"
1891 proc error_popup
{msg
{owner .
}} {
1892 if {[tk windowingsystem
] eq
"win32"} {
1893 tk_messageBox
-icon error
-type ok
-title [wm title .
] \
1894 -parent $owner -message $msg
1898 make_transient
$w $owner
1899 show_error
$w $w $msg
1903 proc confirm_popup
{msg
{owner .
}} {
1904 global confirm_ok NS
1908 make_transient
$w $owner
1909 message
$w.m
-text $msg -justify center
-aspect 400
1910 pack
$w.m
-side top
-fill x
-padx 20 -pady 20
1911 ${NS}::button
$w.ok
-text [mc OK
] -command "set confirm_ok 1; destroy $w"
1912 pack
$w.ok
-side left
-fill x
1913 ${NS}::button
$w.cancel
-text [mc Cancel
] -command "destroy $w"
1914 pack
$w.cancel
-side right
-fill x
1915 bind $w <Visibility
> "grab $w; focus $w"
1916 bind $w <Key-Return
> "set confirm_ok 1; destroy $w"
1917 bind $w <Key-space
> "set confirm_ok 1; destroy $w"
1918 bind $w <Key-Escape
> "destroy $w"
1919 tk
::PlaceWindow
$w widget
$owner
1924 proc setoptions
{} {
1925 if {[tk windowingsystem
] ne
"win32"} {
1926 option add
*Panedwindow.showHandle
1 startupFile
1927 option add
*Panedwindow.sashRelief raised startupFile
1928 if {[tk windowingsystem
] ne
"aqua"} {
1929 option add
*Menu.font uifont startupFile
1932 option add
*Menu.TearOff
0 startupFile
1934 option add
*Button.font uifont startupFile
1935 option add
*Checkbutton.font uifont startupFile
1936 option add
*Radiobutton.font uifont startupFile
1937 option add
*Menubutton.font uifont startupFile
1938 option add
*Label.font uifont startupFile
1939 option add
*Message.font uifont startupFile
1940 option add
*Entry.font textfont startupFile
1941 option add
*Text.font textfont startupFile
1942 option add
*Labelframe.font uifont startupFile
1943 option add
*Spinbox.font textfont startupFile
1944 option add
*Listbox.font mainfont startupFile
1947 # Make a menu and submenus.
1948 # m is the window name for the menu, items is the list of menu items to add.
1949 # Each item is a list {mc label type description options...}
1950 # mc is ignored; it's so we can put mc there to alert xgettext
1951 # label is the string that appears in the menu
1952 # type is cascade, command or radiobutton (should add checkbutton)
1953 # description depends on type; it's the sublist for cascade, the
1954 # command to invoke for command, or {variable value} for radiobutton
1955 proc makemenu
{m items
} {
1957 if {[tk windowingsystem
] eq
{aqua
}} {
1963 set name
[mc
[lindex
$i 1]]
1964 set type [lindex
$i 2]
1965 set thing
[lindex
$i 3]
1966 set params
[list
$type]
1968 set u
[string first
"&" [string map
{&& x
} $name]]
1969 lappend params
-label [string map
{&& & & {}} $name]
1971 lappend params
-underline $u
1976 set submenu
[string tolower
[string map
{& ""} [lindex
$i 1]]]
1977 lappend params
-menu $m.
$submenu
1980 lappend params
-command $thing
1983 lappend params
-variable [lindex
$thing 0] \
1984 -value [lindex
$thing 1]
1987 set tail [lrange
$i 4 end
]
1988 regsub
-all {\yMeta1\y
} $tail $Meta1 tail
1989 eval $m add
$params $tail
1990 if {$type eq
"cascade"} {
1991 makemenu
$m.
$submenu $thing
1996 # translate string and remove ampersands
1998 return [string map
{&& & & {}} [mc
$str]]
2001 proc makedroplist
{w varname args
} {
2005 foreach label
$args {
2006 set cx
[string length
$label]
2007 if {$cx > $width} {set width
$cx}
2009 set gm
[ttk
::combobox
$w -width $width -state readonly\
2010 -textvariable $varname -values $args]
2012 set gm
[eval [linsert
$args 0 tk_optionMenu
$w $varname]]
2017 proc makewindow
{} {
2018 global canv canv2 canv3 linespc charspc ctext cflist cscroll
2020 global findtype findtypemenu findloc findstring fstring geometry
2021 global entries sha1entry sha1string sha1but
2022 global diffcontextstring diffcontext
2024 global maincursor textcursor curtextcursor
2025 global rowctxmenu fakerowmenu mergemax wrapcomment
2026 global highlight_files gdttype
2027 global searchstring sstring
2028 global bgcolor fgcolor bglist fglist diffcolors selectbgcolor
2029 global headctxmenu progresscanv progressitem progresscoords statusw
2030 global fprogitem fprogcoord lastprogupdate progupdatepending
2031 global rprogitem rprogcoord rownumsel numcommits
2032 global have_tk85 use_ttk NS
2036 # The "mc" arguments here are purely so that xgettext
2037 # sees the following string as needing to be translated
2040 {mc
"Update" command updatecommits
-accelerator F5
}
2041 {mc
"Reload" command reloadcommits
-accelerator Shift-F5
}
2042 {mc
"Reread references" command rereadrefs
}
2043 {mc
"List references" command showrefs
-accelerator F2
}
2045 {mc
"Start git gui" command {exec git gui
&}}
2047 {mc
"Quit" command doquit
-accelerator Meta1-Q
}
2051 {mc
"Preferences" command doprefs
}
2055 {mc
"New view..." command {newview
0} -accelerator Shift-F4
}
2056 {mc
"Edit view..." command editview
-state disabled
-accelerator F4
}
2057 {mc
"Delete view" command delview
-state disabled
}
2059 {mc
"All files" radiobutton
{selectedview
0} -command {showview
0}}
2061 if {[tk windowingsystem
] ne
"aqua"} {
2064 {mc
"About gitk" command about
}
2065 {mc
"Key bindings" command keys
}
2067 set bar
[list
$file $edit $view $help]
2069 proc
::tk
::mac
::ShowPreferences
{} {doprefs
}
2070 proc
::tk
::mac
::Quit
{} {doquit
}
2071 lset
file end
[lreplace
[lindex
$file end
] end-1 end
]
2073 xx
"Apple" cascade
{
2074 {mc
"About gitk" command about
}
2079 {mc
"Key bindings" command keys
}
2081 set bar
[list
$apple $file $view $help]
2084 . configure
-menu .bar
2087 # cover the non-themed toplevel with a themed frame.
2088 place
[ttk
::frame ._main_background
] -x 0 -y 0 -relwidth 1 -relheight 1
2091 # the gui has upper and lower half, parts of a paned window.
2092 ${NS}::panedwindow .ctop
-orient vertical
2094 # possibly use assumed geometry
2095 if {![info exists geometry
(pwsash0
)]} {
2096 set geometry
(topheight
) [expr {15 * $linespc}]
2097 set geometry
(topwidth
) [expr {80 * $charspc}]
2098 set geometry
(botheight
) [expr {15 * $linespc}]
2099 set geometry
(botwidth
) [expr {50 * $charspc}]
2100 set geometry
(pwsash0
) [list
[expr {40 * $charspc}] 2]
2101 set geometry
(pwsash1
) [list
[expr {60 * $charspc}] 2]
2104 # the upper half will have a paned window, a scroll bar to the right, and some stuff below
2105 ${NS}::frame .tf
-height $geometry(topheight
) -width $geometry(topwidth
)
2106 ${NS}::frame .tf.histframe
2107 ${NS}::panedwindow .tf.histframe.pwclist
-orient horizontal
2109 .tf.histframe.pwclist configure
-sashpad 0 -handlesize 4
2112 # create three canvases
2113 set cscroll .tf.histframe.csb
2114 set canv .tf.histframe.pwclist.canv
2116 -selectbackground $selectbgcolor \
2117 -background $bgcolor -bd 0 \
2118 -yscrollincr $linespc -yscrollcommand "scrollcanv $cscroll"
2119 .tf.histframe.pwclist add
$canv
2120 set canv2 .tf.histframe.pwclist.canv2
2122 -selectbackground $selectbgcolor \
2123 -background $bgcolor -bd 0 -yscrollincr $linespc
2124 .tf.histframe.pwclist add
$canv2
2125 set canv3 .tf.histframe.pwclist.canv3
2127 -selectbackground $selectbgcolor \
2128 -background $bgcolor -bd 0 -yscrollincr $linespc
2129 .tf.histframe.pwclist add
$canv3
2131 bind .tf.histframe.pwclist
<Map
> {
2133 .tf.histframe.pwclist sashpos
1 [lindex $
::geometry
(pwsash1
) 0]
2134 .tf.histframe.pwclist sashpos
0 [lindex $
::geometry
(pwsash0
) 0]
2137 eval .tf.histframe.pwclist sash place
0 $geometry(pwsash0
)
2138 eval .tf.histframe.pwclist sash place
1 $geometry(pwsash1
)
2141 # a scroll bar to rule them
2142 ${NS}::scrollbar
$cscroll -command {allcanvs yview
}
2143 if {!$use_ttk} {$cscroll configure
-highlightthickness 0}
2144 pack
$cscroll -side right
-fill y
2145 bind .tf.histframe.pwclist
<Configure
> {resizeclistpanes
%W
%w
}
2146 lappend bglist
$canv $canv2 $canv3
2147 pack .tf.histframe.pwclist
-fill both
-expand 1 -side left
2149 # we have two button bars at bottom of top frame. Bar 1
2150 ${NS}::frame .tf.bar
2151 ${NS}::frame .tf.lbar
-height 15
2153 set sha1entry .tf.bar.sha1
2154 set entries
$sha1entry
2155 set sha1but .tf.bar.sha1label
2156 button
$sha1but -text "[mc "SHA1 ID
:"] " -state disabled
-relief flat \
2157 -command gotocommit
-width 8
2158 $sha1but conf
-disabledforeground [$sha1but cget
-foreground]
2159 pack .tf.bar.sha1label
-side left
2160 ${NS}::entry
$sha1entry -width 40 -font textfont
-textvariable sha1string
2161 trace add variable sha1string
write sha1change
2162 pack
$sha1entry -side left
-pady 2
2165 #define left_width 16
2166 #define left_height 16
2167 static unsigned char left_bits
[] = {
2168 0x00, 0x00, 0xc0, 0x01, 0xe0, 0x00, 0x70, 0x00, 0x38, 0x00, 0x1c, 0x00,
2169 0x0e, 0x00, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0x0e, 0x00, 0x1c, 0x00,
2170 0x38, 0x00, 0x70, 0x00, 0xe0, 0x00, 0xc0, 0x01};
2173 #define right_width 16
2174 #define right_height 16
2175 static unsigned char right_bits
[] = {
2176 0x00, 0x00, 0xc0, 0x01, 0x80, 0x03, 0x00, 0x07, 0x00, 0x0e, 0x00, 0x1c,
2177 0x00, 0x38, 0xff, 0x7f, 0xff, 0x7f, 0xff, 0x7f, 0x00, 0x38, 0x00, 0x1c,
2178 0x00, 0x0e, 0x00, 0x07, 0x80, 0x03, 0xc0, 0x01};
2180 image create bitmap bm-left
-data $bm_left_data
2181 image create bitmap bm-left-gray
-data $bm_left_data -foreground "#999"
2182 image create bitmap bm-right
-data $bm_right_data
2183 image create bitmap bm-right-gray
-data $bm_right_data -foreground "#999"
2185 ${NS}::button .tf.bar.leftbut
-command goback
-state disabled
-width 26
2187 .tf.bar.leftbut configure
-image [list bm-left disabled bm-left-gray
]
2189 .tf.bar.leftbut configure
-image bm-left
2191 pack .tf.bar.leftbut
-side left
-fill y
2192 ${NS}::button .tf.bar.rightbut
-command goforw
-state disabled
-width 26
2194 .tf.bar.rightbut configure
-image [list bm-right disabled bm-right-gray
]
2196 .tf.bar.rightbut configure
-image bm-right
2198 pack .tf.bar.rightbut
-side left
-fill y
2200 ${NS}::label .tf.bar.rowlabel
-text [mc
"Row"]
2202 ${NS}::label .tf.bar.rownum
-width 7 -textvariable rownumsel \
2203 -relief sunken
-anchor e
2204 ${NS}::label .tf.bar.rowlabel2
-text "/"
2205 ${NS}::label .tf.bar.numcommits
-width 7 -textvariable numcommits \
2206 -relief sunken
-anchor e
2207 pack .tf.bar.rowlabel .tf.bar.rownum .tf.bar.rowlabel2 .tf.bar.numcommits \
2210 foreach w
{rownum numcommits
} {.tf.bar.
$w configure
-font textfont
}
2213 trace add variable selectedline
write selectedline_change
2215 # Status label and progress bar
2216 set statusw .tf.bar.status
2217 ${NS}::label
$statusw -width 15 -relief sunken
2218 pack
$statusw -side left
-padx 5
2220 set progresscanv
[ttk
::progressbar .tf.bar.progress
]
2222 set h
[expr {[font metrics uifont
-linespace] + 2}]
2223 set progresscanv .tf.bar.progress
2224 canvas
$progresscanv -relief sunken
-height $h -borderwidth 2
2225 set progressitem
[$progresscanv create rect
-1 0 0 $h -fill green
]
2226 set fprogitem
[$progresscanv create rect
-1 0 0 $h -fill yellow
]
2227 set rprogitem
[$progresscanv create rect
-1 0 0 $h -fill red
]
2229 pack
$progresscanv -side right
-expand 1 -fill x
-padx {0 2}
2230 set progresscoords
{0 0}
2233 bind $progresscanv <Configure
> adjustprogress
2234 set lastprogupdate
[clock clicks
-milliseconds]
2235 set progupdatepending
0
2237 # build up the bottom bar of upper window
2238 ${NS}::label .tf.lbar.flabel
-text "[mc "Find
"] "
2239 ${NS}::button .tf.lbar.fnext
-text [mc
"next"] -command {dofind
1 1}
2240 ${NS}::button .tf.lbar.fprev
-text [mc
"prev"] -command {dofind
-1 1}
2241 ${NS}::label .tf.lbar.flab2
-text " [mc "commit
"] "
2242 pack .tf.lbar.flabel .tf.lbar.fnext .tf.lbar.fprev .tf.lbar.flab2 \
2244 set gdttype
[mc
"containing:"]
2245 set gm
[makedroplist .tf.lbar.gdttype gdttype \
2246 [mc
"containing:"] \
2247 [mc
"touching paths:"] \
2248 [mc
"adding/removing string:"]]
2249 trace add variable gdttype
write gdttype_change
2250 pack .tf.lbar.gdttype
-side left
-fill y
2253 set fstring .tf.lbar.findstring
2254 lappend entries
$fstring
2255 ${NS}::entry
$fstring -width 30 -textvariable findstring
2256 trace add variable findstring
write find_change
2257 set findtype
[mc
"Exact"]
2258 set findtypemenu
[makedroplist .tf.lbar.findtype \
2259 findtype
[mc
"Exact"] [mc
"IgnCase"] [mc
"Regexp"]]
2260 trace add variable findtype
write findcom_change
2261 set findloc
[mc
"All fields"]
2262 makedroplist .tf.lbar.findloc findloc
[mc
"All fields"] [mc
"Headline"] \
2263 [mc
"Comments"] [mc
"Author"] [mc
"Committer"]
2264 trace add variable findloc
write find_change
2265 pack .tf.lbar.findloc
-side right
2266 pack .tf.lbar.findtype
-side right
2267 pack
$fstring -side left
-expand 1 -fill x
2269 # Finish putting the upper half of the viewer together
2270 pack .tf.lbar
-in .tf
-side bottom
-fill x
2271 pack .tf.bar
-in .tf
-side bottom
-fill x
2272 pack .tf.histframe
-fill both
-side top
-expand 1
2275 .ctop paneconfigure .tf
-height $geometry(topheight
)
2276 .ctop paneconfigure .tf
-width $geometry(topwidth
)
2279 # now build up the bottom
2280 ${NS}::panedwindow .pwbottom
-orient horizontal
2282 # lower left, a text box over search bar, scroll bar to the right
2283 # if we know window height, then that will set the lower text height, otherwise
2284 # we set lower text height which will drive window height
2285 if {[info exists geometry
(main
)]} {
2286 ${NS}::frame .bleft
-width $geometry(botwidth
)
2288 ${NS}::frame .bleft
-width $geometry(botwidth
) -height $geometry(botheight
)
2290 ${NS}::frame .bleft.top
2291 ${NS}::frame .bleft.mid
2292 ${NS}::frame .bleft.bottom
2294 ${NS}::button .bleft.top.search
-text [mc
"Search"] -command dosearch
2295 pack .bleft.top.search
-side left
-padx 5
2296 set sstring .bleft.top.sstring
2298 ${NS}::entry
$sstring -width 20 -textvariable searchstring
2299 lappend entries
$sstring
2300 trace add variable searchstring
write incrsearch
2301 pack
$sstring -side left
-expand 1 -fill x
2302 ${NS}::radiobutton .bleft.mid.
diff -text [mc
"Diff"] \
2303 -command changediffdisp
-variable diffelide
-value {0 0}
2304 ${NS}::radiobutton .bleft.mid.old
-text [mc
"Old version"] \
2305 -command changediffdisp
-variable diffelide
-value {0 1}
2306 ${NS}::radiobutton .bleft.mid.new
-text [mc
"New version"] \
2307 -command changediffdisp
-variable diffelide
-value {1 0}
2308 ${NS}::label .bleft.mid.labeldiffcontext
-text " [mc "Lines of context
"]: "
2309 pack .bleft.mid.
diff .bleft.mid.old .bleft.mid.new
-side left
2310 spinbox .bleft.mid.diffcontext
-width 5 \
2311 -from 0 -increment 1 -to 10000000 \
2312 -validate all
-validatecommand "diffcontextvalidate %P" \
2313 -textvariable diffcontextstring
2314 .bleft.mid.diffcontext
set $diffcontext
2315 trace add variable diffcontextstring
write diffcontextchange
2316 lappend entries .bleft.mid.diffcontext
2317 pack .bleft.mid.labeldiffcontext .bleft.mid.diffcontext
-side left
2318 ${NS}::checkbutton .bleft.mid.ignspace
-text [mc
"Ignore space change"] \
2319 -command changeignorespace
-variable ignorespace
2320 pack .bleft.mid.ignspace
-side left
-padx 5
2322 set worddiff
[mc
"Line diff"]
2323 if {[package vcompare
$git_version "1.7.2"] >= 0} {
2324 makedroplist .bleft.mid.worddiff worddiff
[mc
"Line diff"] \
2325 [mc
"Markup words"] [mc
"Color words"]
2326 trace add variable worddiff
write changeworddiff
2327 pack .bleft.mid.worddiff
-side left
-padx 5
2330 set ctext .bleft.bottom.ctext
2331 text
$ctext -background $bgcolor -foreground $fgcolor \
2332 -state disabled
-font textfont \
2333 -yscrollcommand scrolltext
-wrap none \
2334 -xscrollcommand ".bleft.bottom.sbhorizontal set"
2336 $ctext conf
-tabstyle wordprocessor
2338 ${NS}::scrollbar .bleft.bottom.sb
-command "$ctext yview"
2339 ${NS}::scrollbar .bleft.bottom.sbhorizontal
-command "$ctext xview" -orient h
2340 pack .bleft.top
-side top
-fill x
2341 pack .bleft.mid
-side top
-fill x
2342 grid
$ctext .bleft.bottom.sb
-sticky nsew
2343 grid .bleft.bottom.sbhorizontal
-sticky ew
2344 grid columnconfigure .bleft.bottom
0 -weight 1
2345 grid rowconfigure .bleft.bottom
0 -weight 1
2346 grid rowconfigure .bleft.bottom
1 -weight 0
2347 pack .bleft.bottom
-side top
-fill both
-expand 1
2348 lappend bglist
$ctext
2349 lappend fglist
$ctext
2351 $ctext tag conf comment
-wrap $wrapcomment
2352 $ctext tag conf filesep
-font textfontbold
-back "#aaaaaa"
2353 $ctext tag conf hunksep
-fore [lindex
$diffcolors 2]
2354 $ctext tag conf d0
-fore [lindex
$diffcolors 0]
2355 $ctext tag conf dresult
-fore [lindex
$diffcolors 1]
2356 $ctext tag conf m0
-fore red
2357 $ctext tag conf m1
-fore blue
2358 $ctext tag conf m2
-fore green
2359 $ctext tag conf m3
-fore purple
2360 $ctext tag conf
m4 -fore brown
2361 $ctext tag conf m5
-fore "#009090"
2362 $ctext tag conf m6
-fore magenta
2363 $ctext tag conf m7
-fore "#808000"
2364 $ctext tag conf m8
-fore "#009000"
2365 $ctext tag conf m9
-fore "#ff0080"
2366 $ctext tag conf m10
-fore cyan
2367 $ctext tag conf m11
-fore "#b07070"
2368 $ctext tag conf m12
-fore "#70b0f0"
2369 $ctext tag conf m13
-fore "#70f0b0"
2370 $ctext tag conf m14
-fore "#f0b070"
2371 $ctext tag conf m15
-fore "#ff70b0"
2372 $ctext tag conf mmax
-fore darkgrey
2374 $ctext tag conf mresult
-font textfontbold
2375 $ctext tag conf msep
-font textfontbold
2376 $ctext tag conf found
-back yellow
2377 $ctext tag conf currentsearchhit
-back orange
2379 .pwbottom add .bleft
2381 .pwbottom paneconfigure .bleft
-width $geometry(botwidth
)
2385 ${NS}::frame .bright
2386 ${NS}::frame .bright.mode
2387 ${NS}::radiobutton .bright.mode.
patch -text [mc
"Patch"] \
2388 -command reselectline
-variable cmitmode
-value "patch"
2389 ${NS}::radiobutton .bright.mode.tree
-text [mc
"Tree"] \
2390 -command reselectline
-variable cmitmode
-value "tree"
2391 grid .bright.mode.
patch .bright.mode.tree
-sticky ew
2392 pack .bright.mode
-side top
-fill x
2393 set cflist .bright.cfiles
2394 set indent
[font measure mainfont
"nn"]
2396 -selectbackground $selectbgcolor \
2397 -background $bgcolor -foreground $fgcolor \
2399 -tabs [list
$indent [expr {2 * $indent}]] \
2400 -yscrollcommand ".bright.sb set" \
2401 -cursor [. cget
-cursor] \
2402 -spacing1 1 -spacing3 1
2403 lappend bglist
$cflist
2404 lappend fglist
$cflist
2405 ${NS}::scrollbar .bright.sb
-command "$cflist yview"
2406 pack .bright.sb
-side right
-fill y
2407 pack
$cflist -side left
-fill both
-expand 1
2408 $cflist tag configure highlight \
2409 -background [$cflist cget
-selectbackground]
2410 $cflist tag configure bold
-font mainfontbold
2412 .pwbottom add .bright
2415 # restore window width & height if known
2416 if {[info exists geometry
(main
)]} {
2417 if {[scan
$geometry(main
) "%dx%d" w h
] >= 2} {
2418 if {$w > [winfo screenwidth .
]} {
2419 set w
[winfo screenwidth .
]
2421 if {$h > [winfo screenheight .
]} {
2422 set h
[winfo screenheight .
]
2424 wm geometry .
"${w}x$h"
2428 if {[info exists geometry
(state
)] && $geometry(state
) eq
"zoomed"} {
2429 wm state .
$geometry(state
)
2432 if {[tk windowingsystem
] eq
{aqua
}} {
2443 %W sashpos
0 $
::geometry
(topheight
)
2445 bind .pwbottom
<Map
> {
2447 %W sashpos
0 $
::geometry
(botwidth
)
2451 bind .pwbottom
<Configure
> {resizecdetpanes
%W
%w
}
2452 pack .ctop
-fill both
-expand 1
2453 bindall
<1> {selcanvline
%W
%x
%y
}
2454 #bindall <B1-Motion> {selcanvline %W %x %y}
2455 if {[tk windowingsystem
] == "win32"} {
2456 bind .
<MouseWheel
> { windows_mousewheel_redirector
%W
%X
%Y
%D
}
2457 bind $ctext <MouseWheel
> { windows_mousewheel_redirector
%W
%X
%Y
%D
; break }
2459 bindall
<ButtonRelease-4
> "allcanvs yview scroll -5 units"
2460 bindall
<ButtonRelease-5
> "allcanvs yview scroll 5 units"
2461 if {[tk windowingsystem
] eq
"aqua"} {
2462 bindall
<MouseWheel
> {
2463 set delta
[expr {- (%D
)}]
2464 allcanvs yview scroll
$delta units
2466 bindall
<Shift-MouseWheel
> {
2467 set delta
[expr {- (%D
)}]
2468 $canv xview scroll
$delta units
2472 bindall
<$
::BM
> "canvscan mark %W %x %y"
2473 bindall
<B$
::BM-Motion
> "canvscan dragto %W %x %y"
2474 bind all
<$M1B-Key-w> {destroy
[winfo toplevel
%W
]}
2475 bind .
<$M1B-Key-w> doquit
2476 bindkey
<Home
> selfirstline
2477 bindkey
<End
> sellastline
2478 bind .
<Key-Up
> "selnextline -1"
2479 bind .
<Key-Down
> "selnextline 1"
2480 bind .
<Shift-Key-Up
> "dofind -1 0"
2481 bind .
<Shift-Key-Down
> "dofind 1 0"
2482 bindkey
<Key-Right
> "goforw"
2483 bindkey
<Key-Left
> "goback"
2484 bind .
<Key-Prior
> "selnextpage -1"
2485 bind .
<Key-Next
> "selnextpage 1"
2486 bind .
<$M1B-Home> "allcanvs yview moveto 0.0"
2487 bind .
<$M1B-End> "allcanvs yview moveto 1.0"
2488 bind .
<$M1B-Key-Up> "allcanvs yview scroll -1 units"
2489 bind .
<$M1B-Key-Down> "allcanvs yview scroll 1 units"
2490 bind .
<$M1B-Key-Prior> "allcanvs yview scroll -1 pages"
2491 bind .
<$M1B-Key-Next> "allcanvs yview scroll 1 pages"
2492 bindkey
<Key-Delete
> "$ctext yview scroll -1 pages"
2493 bindkey
<Key-BackSpace
> "$ctext yview scroll -1 pages"
2494 bindkey
<Key-space
> "$ctext yview scroll 1 pages"
2495 bindkey p
"selnextline -1"
2496 bindkey n
"selnextline 1"
2499 bindkey k
"selnextline -1"
2500 bindkey j
"selnextline 1"
2504 bindkey d
"$ctext yview scroll 18 units"
2505 bindkey u
"$ctext yview scroll -18 units"
2506 bindkey
/ {focus
$fstring}
2507 bindkey
<Key-KP_Divide
> {focus
$fstring}
2508 bindkey
<Key-Return
> {dofind
1 1}
2509 bindkey ?
{dofind
-1 1}
2511 bind .
<F5
> updatecommits
2512 bindmodfunctionkey Shift
5 reloadcommits
2513 bind .
<F2
> showrefs
2514 bindmodfunctionkey Shift
4 {newview
0}
2515 bind .
<F4
> edit_or_newview
2516 bind .
<$M1B-q> doquit
2517 bind .
<$M1B-f> {dofind
1 1}
2518 bind .
<$M1B-g> {dofind
1 0}
2519 bind .
<$M1B-r> dosearchback
2520 bind .
<$M1B-s> dosearch
2521 bind .
<$M1B-equal> {incrfont
1}
2522 bind .
<$M1B-plus> {incrfont
1}
2523 bind .
<$M1B-KP_Add> {incrfont
1}
2524 bind .
<$M1B-minus> {incrfont
-1}
2525 bind .
<$M1B-KP_Subtract> {incrfont
-1}
2526 wm protocol . WM_DELETE_WINDOW doquit
2527 bind .
<Destroy
> {stop_backends
}
2528 bind .
<Button-1
> "click %W"
2529 bind $fstring <Key-Return
> {dofind
1 1}
2530 bind $sha1entry <Key-Return
> {gotocommit
; break}
2531 bind $sha1entry <<PasteSelection>> clearsha1
2532 bind $cflist <1> {sel_flist %W %x %y; break}
2533 bind $cflist <B1-Motion> {sel_flist %W %x %y; break}
2534 bind $cflist <ButtonRelease-1> {treeclick %W %x %y}
2536 bind $cflist $ctxbut {pop_flist_menu %W %X %Y %x %y}
2537 bind $ctext $ctxbut {pop_diff_menu %W %X %Y %x %y}
2538 bind $ctext <Button-1> {focus %W}
2539 bind $ctext <<Selection>> rehighlight_search_results
2541 set maincursor [. cget -cursor]
2542 set textcursor [$ctext cget -cursor]
2543 set curtextcursor $textcursor
2545 set rowctxmenu .rowctxmenu
2546 makemenu $rowctxmenu {
2547 {mc "Diff this -> selected" command {diffvssel 0}}
2548 {mc "Diff selected -> this" command {diffvssel 1}}
2549 {mc "Make patch" command mkpatch}
2550 {mc "Create tag" command mktag}
2551 {mc "Write commit to file" command writecommit}
2552 {mc "Create new branch" command mkbranch}
2553 {mc "Cherry-pick this commit" command cherrypick}
2554 {mc "Reset HEAD branch to here" command resethead}
2555 {mc "Mark this commit" command markhere}
2556 {mc "Return to mark" command gotomark}
2557 {mc "Find descendant of this and mark" command find_common_desc}
2558 {mc "Compare with marked commit" command compare_commits}
2559 {mc "Diff this -> marked commit" command {diffvsmark 0}}
2560 {mc "Diff marked commit -> this" command {diffvsmark 1}}
2562 $rowctxmenu configure -tearoff 0
2564 set fakerowmenu .fakerowmenu
2565 makemenu $fakerowmenu {
2566 {mc "Diff this -> selected" command {diffvssel 0}}
2567 {mc "Diff selected -> this" command {diffvssel 1}}
2568 {mc "Make patch" command mkpatch}
2569 {mc "Diff this -> marked commit" command {diffvsmark 0}}
2570 {mc "Diff marked commit -> this" command {diffvsmark 1}}
2572 $fakerowmenu configure -tearoff 0
2574 set headctxmenu .headctxmenu
2575 makemenu $headctxmenu {
2576 {mc "Check out this branch" command cobranch}
2577 {mc "Remove this branch" command rmbranch}
2579 $headctxmenu configure -tearoff 0
2582 set flist_menu .flistctxmenu
2583 makemenu $flist_menu {
2584 {mc "Highlight this too" command {flist_hl 0}}
2585 {mc "Highlight this only" command {flist_hl 1}}
2586 {mc "External diff" command {external_diff}}
2587 {mc "Blame parent commit" command {external_blame 1}}
2589 $flist_menu configure -tearoff 0
2592 set diff_menu .diffctxmenu
2593 makemenu $diff_menu {
2594 {mc "Show origin of this line" command show_line_source}
2595 {mc "Run git gui blame on this line" command {external_blame_diff}}
2597 $diff_menu configure -tearoff 0
2600 # Windows sends all mouse wheel events to the current focused window, not
2601 # the one where the mouse hovers, so bind those events here and redirect
2602 # to the correct window
2603 proc windows_mousewheel_redirector {W X Y D} {
2604 global canv canv2 canv3
2605 set w [winfo containing -displayof $W $X $Y]
2607 set u [expr {$D < 0 ? 5 : -5}]
2608 if {$w == $canv || $w == $canv2 || $w == $canv3} {
2609 allcanvs yview scroll $u units
2612 $w yview scroll $u units
2618 # Update row number label when selectedline changes
2619 proc selectedline_change {n1 n2 op} {
2620 global selectedline rownumsel
2622 if {$selectedline eq {}} {
2625 set rownumsel [expr {$selectedline + 1}]
2629 # mouse-2 makes all windows scan vertically, but only the one
2630 # the cursor is in scans horizontally
2631 proc canvscan {op w x y} {
2632 global canv canv2 canv3
2633 foreach c [list $canv $canv2 $canv3] {
2642 proc scrollcanv {cscroll f0 f1} {
2643 $cscroll set $f0 $f1
2648 # when we make a key binding for the toplevel, make sure
2649 # it doesn't get triggered when that key is pressed in the
2650 # find string entry widget.
2651 proc bindkey {ev script} {
2654 set escript [bind Entry $ev]
2655 if {$escript == {}} {
2656 set escript [bind Entry <Key>]
2658 foreach e $entries {
2659 bind $e $ev "$escript; break"
2663 proc bindmodfunctionkey {mod n script} {
2664 bind . <$mod-F$n> $script
2665 catch { bind . <$mod-XF86_Switch_VT_$n> $script }
2668 # set the focus back to the toplevel for any click outside
2671 global ctext entries
2672 foreach e [concat $entries $ctext] {
2673 if {$w == $e} return
2678 # Adjust the progress bar for a change in requested extent or canvas size
2679 proc adjustprogress {} {
2680 global progresscanv progressitem progresscoords
2681 global fprogitem fprogcoord lastprogupdate progupdatepending
2682 global rprogitem rprogcoord use_ttk
2685 $progresscanv configure -value [expr {int($fprogcoord * 100)}]
2689 set w [expr {[winfo width $progresscanv] - 4}]
2690 set x0 [expr {$w * [lindex $progresscoords 0]}]
2691 set x1 [expr {$w * [lindex $progresscoords 1]}]
2692 set h [winfo height $progresscanv]
2693 $progresscanv coords $progressitem $x0 0 $x1 $h
2694 $progresscanv coords $fprogitem 0 0 [expr {$w * $fprogcoord}] $h
2695 $progresscanv coords $rprogitem 0 0 [expr {$w * $rprogcoord}] $h
2696 set now [clock clicks -milliseconds]
2697 if {$now >= $lastprogupdate + 100} {
2698 set progupdatepending 0
2700 } elseif {!$progupdatepending} {
2701 set progupdatepending 1
2702 after [expr {$lastprogupdate + 100 - $now}] doprogupdate
2706 proc doprogupdate {} {
2707 global lastprogupdate progupdatepending
2709 if {$progupdatepending} {
2710 set progupdatepending 0
2711 set lastprogupdate [clock clicks -milliseconds]
2716 proc savestuff {w} {
2717 global canv canv2 canv3 mainfont textfont uifont tabstop
2718 global stuffsaved findmergefiles maxgraphpct
2719 global maxwidth showneartags showlocalchanges
2720 global viewname viewfiles viewargs viewargscmd viewperm nextviewnum
2721 global cmitmode wrapcomment datetimeformat limitdiffs
2722 global colors uicolor bgcolor fgcolor diffcolors diffcontext selectbgcolor
2723 global autoselect autosellen extdifftool perfile_attrs markbgcolor use_ttk
2724 global hideremotes want_ttk
2726 if {$stuffsaved} return
2727 if {![winfo viewable .]} return
2729 if {[file exists ~/.gitk-new]} {file delete -force ~/.gitk-new}
2730 set f [open "~/.gitk-new" w]
2731 if {$::tcl_platform(platform) eq {windows}} {
2732 file attributes "~/.gitk-new" -hidden true
2734 puts $f [list set mainfont $mainfont]
2735 puts $f [list set textfont $textfont]
2736 puts $f [list set uifont $uifont]
2737 puts $f [list set tabstop $tabstop]
2738 puts $f [list set findmergefiles $findmergefiles]
2739 puts $f [list set maxgraphpct $maxgraphpct]
2740 puts $f [list set maxwidth $maxwidth]
2741 puts $f [list set cmitmode $cmitmode]
2742 puts $f [list set wrapcomment $wrapcomment]
2743 puts $f [list set autoselect $autoselect]
2744 puts $f [list set autosellen $autosellen]
2745 puts $f [list set showneartags $showneartags]
2746 puts $f [list set hideremotes $hideremotes]
2747 puts $f [list set showlocalchanges $showlocalchanges]
2748 puts $f [list set datetimeformat $datetimeformat]
2749 puts $f [list set limitdiffs $limitdiffs]
2750 puts $f [list set uicolor $uicolor]
2751 puts $f [list set want_ttk $want_ttk]
2752 puts $f [list set bgcolor $bgcolor]
2753 puts $f [list set fgcolor $fgcolor]
2754 puts $f [list set colors $colors]
2755 puts $f [list set diffcolors $diffcolors]
2756 puts $f [list set markbgcolor $markbgcolor]
2757 puts $f [list set diffcontext $diffcontext]
2758 puts $f [list set selectbgcolor $selectbgcolor]
2759 puts $f [list set extdifftool $extdifftool]
2760 puts $f [list set perfile_attrs $perfile_attrs]
2762 puts $f "set geometry(main) [wm geometry .]"
2763 puts $f "set geometry(state) [wm state .]"
2764 puts $f "set geometry(topwidth) [winfo width .tf]"
2765 puts $f "set geometry(topheight) [winfo height .tf]"
2767 puts $f "set geometry(pwsash0) \"[.tf.histframe.pwclist sashpos 0] 1\""
2768 puts $f "set geometry(pwsash1) \"[.tf.histframe.pwclist sashpos 1] 1\""
2770 puts $f "set geometry(pwsash0) \"[.tf.histframe.pwclist sash coord 0]\""
2771 puts $f "set geometry(pwsash1) \"[.tf.histframe.pwclist sash coord 1]\""
2773 puts $f "set geometry(botwidth) [winfo width .bleft]"
2774 puts $f "set geometry(botheight) [winfo height .bleft]"
2776 puts -nonewline $f "set permviews {"
2777 for {set v 0} {$v < $nextviewnum} {incr v} {
2778 if {$viewperm($v)} {
2779 puts $f "{[list $viewname($v) $viewfiles($v) $viewargs($v) $viewargscmd($v)]}"
2784 file rename -force "~/.gitk-new" "~/.gitk"
2789 proc resizeclistpanes {win w} {
2790 global oldwidth use_ttk
2791 if {[info exists oldwidth($win)]} {
2793 set s0 [$win sashpos 0]
2794 set s1 [$win sashpos 1]
2796 set s0 [$win sash coord 0]
2797 set s1 [$win sash coord 1]
2800 set sash0 [expr {int($w/2 - 2)}]
2801 set sash1 [expr {int($w*5/6 - 2)}]
2803 set factor [expr {1.0 * $w / $oldwidth($win)}]
2804 set sash0 [expr {int($factor * [lindex $s0 0])}]
2805 set sash1 [expr {int($factor * [lindex $s1 0])}]
2809 if {$sash1 < $sash0 + 20} {
2810 set sash1 [expr {$sash0 + 20}]
2812 if {$sash1 > $w - 10} {
2813 set sash1 [expr {$w - 10}]
2814 if {$sash0 > $sash1 - 20} {
2815 set sash0 [expr {$sash1 - 20}]
2820 $win sashpos 0 $sash0
2821 $win sashpos 1 $sash1
2823 $win sash place 0 $sash0 [lindex $s0 1]
2824 $win sash place 1 $sash1 [lindex $s1 1]
2827 set oldwidth($win) $w
2830 proc resizecdetpanes {win w} {
2831 global oldwidth use_ttk
2832 if {[info exists oldwidth($win)]} {
2834 set s0 [$win sashpos 0]
2836 set s0 [$win sash coord 0]
2839 set sash0 [expr {int($w*3/4 - 2)}]
2841 set factor [expr {1.0 * $w / $oldwidth($win)}]
2842 set sash0 [expr {int($factor * [lindex $s0 0])}]
2846 if {$sash0 > $w - 15} {
2847 set sash0 [expr {$w - 15}]
2851 $win sashpos 0 $sash0
2853 $win sash place 0 $sash0 [lindex $s0 1]
2856 set oldwidth($win) $w
2859 proc allcanvs args {
2860 global canv canv2 canv3
2866 proc bindall {event action} {
2867 global canv canv2 canv3
2868 bind $canv $event $action
2869 bind $canv2 $event $action
2870 bind $canv3 $event $action
2876 if {[winfo exists $w]} {
2881 wm title $w [mc "About gitk"]
2883 message $w.m -text [mc "
2884 Gitk - a commit viewer for git
2886 Copyright \u00a9 2005-2011 Paul Mackerras
2888 Use and redistribute under the terms of the GNU General Public License"] \
2889 -justify center -aspect 400 -border 2 -bg white -relief groove
2890 pack $w.m -side top -fill x -padx 2 -pady 2
2891 ${NS}::button $w.ok -text [mc "Close"] -command "destroy $w" -default active
2892 pack $w.ok -side bottom
2893 bind $w <Visibility> "focus $w.ok"
2894 bind $w <Key-Escape> "destroy $w"
2895 bind $w <Key-Return> "destroy $w"
2896 tk::PlaceWindow $w widget .
2902 if {[winfo exists $w]} {
2906 if {[tk windowingsystem] eq {aqua}} {
2912 wm title $w [mc "Gitk key bindings"]
2914 message $w.m -text "
2915 [mc "Gitk key bindings:"]
2917 [mc "<%s-Q> Quit" $M1T]
2918 [mc "<%s-W> Close window" $M1T]
2919 [mc "<Home> Move to first commit"]
2920 [mc "<End> Move to last commit"]
2921 [mc "<Up>, p, k Move up one commit"]
2922 [mc "<Down>, n, j Move down one commit"]
2923 [mc "<Left>, z, h Go back in history list"]
2924 [mc "<Right>, x, l Go forward in history list"]
2925 [mc "<PageUp> Move up one page in commit list"]
2926 [mc "<PageDown> Move down one page in commit list"]
2927 [mc "<%s-Home> Scroll to top of commit list" $M1T]
2928 [mc "<%s-End> Scroll to bottom of commit list" $M1T]
2929 [mc "<%s-Up> Scroll commit list up one line" $M1T]
2930 [mc "<%s-Down> Scroll commit list down one line" $M1T]
2931 [mc "<%s-PageUp> Scroll commit list up one page" $M1T]
2932 [mc "<%s-PageDown> Scroll commit list down one page" $M1T]
2933 [mc "<Shift-Up> Find backwards (upwards, later commits)"]
2934 [mc "<Shift-Down> Find forwards (downwards, earlier commits)"]
2935 [mc "<Delete>, b Scroll diff view up one page"]
2936 [mc "<Backspace> Scroll diff view up one page"]
2937 [mc "<Space> Scroll diff view down one page"]
2938 [mc "u Scroll diff view up 18 lines"]
2939 [mc "d Scroll diff view down 18 lines"]
2940 [mc "<%s-F> Find" $M1T]
2941 [mc "<%s-G> Move to next find hit" $M1T]
2942 [mc "<Return> Move to next find hit"]
2943 [mc "/ Focus the search box"]
2944 [mc "? Move to previous find hit"]
2945 [mc "f Scroll diff view to next file"]
2946 [mc "<%s-S> Search for next hit in diff view" $M1T]
2947 [mc "<%s-R> Search for previous hit in diff view" $M1T]
2948 [mc "<%s-KP+> Increase font size" $M1T]
2949 [mc "<%s-plus> Increase font size" $M1T]
2950 [mc "<%s-KP-> Decrease font size" $M1T]
2951 [mc "<%s-minus> Decrease font size" $M1T]
2954 -justify left -bg white -border 2 -relief groove
2955 pack $w.m -side top -fill both -padx 2 -pady 2
2956 ${NS}::button $w.ok -text [mc "Close"] -command "destroy $w" -default active
2957 bind $w <Key-Escape> [list destroy $w]
2958 pack $w.ok -side bottom
2959 bind $w <Visibility> "focus $w.ok"
2960 bind $w <Key-Escape> "destroy $w"
2961 bind $w <Key-Return> "destroy $w"
2964 # Procedures for manipulating the file list window at the
2965 # bottom right of the overall window.
2967 proc treeview {w l openlevs} {
2968 global treecontents treediropen treeheight treeparent treeindex
2978 set treecontents() {}
2979 $w conf -state normal
2981 while {[string range $f 0 $prefixend] ne $prefix} {
2982 if {$lev <= $openlevs} {
2983 $w mark set e:$treeindex($prefix) "end -1c"
2984 $w mark gravity e:$treeindex($prefix) left
2986 set treeheight($prefix) $ht
2987 incr ht [lindex $htstack end]
2988 set htstack [lreplace $htstack end end]
2989 set prefixend [lindex $prefendstack end]
2990 set prefendstack [lreplace $prefendstack end end]
2991 set prefix [string range $prefix 0 $prefixend]
2994 set tail [string range $f [expr {$prefixend+1}] end]
2995 while {[set slash [string first "/" $tail]] >= 0} {
2998 lappend prefendstack $prefixend
2999 incr prefixend [expr {$slash + 1}]
3000 set d [string range $tail 0 $slash]
3001 lappend treecontents($prefix) $d
3002 set oldprefix $prefix
3004 set treecontents($prefix) {}
3005 set treeindex($prefix) [incr ix]
3006 set treeparent($prefix) $oldprefix
3007 set tail [string range $tail [expr {$slash+1}] end]
3008 if {$lev <= $openlevs} {
3010 set treediropen($prefix) [expr {$lev < $openlevs}]
3011 set bm [expr {$lev == $openlevs? "tri-rt": "tri-dn"}]
3012 $w mark set d:$ix "end -1c"
3013 $w mark gravity d:$ix left
3015 for {set i 0} {$i < $lev} {incr i} {append str "\t"}
3017 $w image create end -align center -image $bm -padx 1 \
3019 $w insert end $d [highlight_tag $prefix]
3020 $w mark set s:$ix "end -1c"
3021 $w mark gravity s:$ix left
3026 if {$lev <= $openlevs} {
3029 for {set i 0} {$i < $lev} {incr i} {append str "\t"}
3031 $w insert end $tail [highlight_tag $f]
3033 lappend treecontents($prefix) $tail
3036 while {$htstack ne {}} {
3037 set treeheight($prefix) $ht
3038 incr ht [lindex $htstack end]
3039 set htstack [lreplace $htstack end end]
3040 set prefixend [lindex $prefendstack end]
3041 set prefendstack [lreplace $prefendstack end end]
3042 set prefix [string range $prefix 0 $prefixend]
3044 $w conf -state disabled
3047 proc linetoelt {l} {
3048 global treeheight treecontents
3053 foreach e $treecontents($prefix) {
3058 if {[string index $e end] eq "/"} {
3059 set n $treeheight($prefix$e)
3071 proc highlight_tree {y prefix} {
3072 global treeheight treecontents cflist
3074 foreach e $treecontents($prefix) {
3076 if {[highlight_tag $path] ne {}} {
3077 $cflist tag add bold $y.0 "$y.0 lineend"
3080 if {[string index $e end] eq "/" && $treeheight($path) > 1} {
3081 set y [highlight_tree $y $path]
3087 proc treeclosedir {w dir} {
3088 global treediropen treeheight treeparent treeindex
3090 set ix $treeindex($dir)
3091 $w conf -state normal
3092 $w delete s:$ix e:$ix
3093 set treediropen($dir) 0
3094 $w image configure a:$ix -image tri-rt
3095 $w conf -state disabled
3096 set n [expr {1 - $treeheight($dir)}]
3097 while {$dir ne {}} {
3098 incr treeheight($dir) $n
3099 set dir $treeparent($dir)
3103 proc treeopendir {w dir} {
3104 global treediropen treeheight treeparent treecontents treeindex
3106 set ix $treeindex($dir)
3107 $w conf -state normal
3108 $w image configure a:$ix -image tri-dn
3109 $w mark set e:$ix s:$ix
3110 $w mark gravity e:$ix right
3113 set n [llength $treecontents($dir)]
3114 for {set x $dir} {$x ne {}} {set x $treeparent($x)} {
3117 incr treeheight($x) $n
3119 foreach e $treecontents($dir) {
3121 if {[string index $e end] eq "/"} {
3122 set iy $treeindex($de)
3123 $w mark set d:$iy e:$ix
3124 $w mark gravity d:$iy left
3125 $w insert e:$ix $str
3126 set treediropen($de) 0
3127 $w image create e:$ix -align center -image tri-rt -padx 1 \
3129 $w insert e:$ix $e [highlight_tag $de]
3130 $w mark set s:$iy e:$ix
3131 $w mark gravity s:$iy left
3132 set treeheight($de) 1
3134 $w insert e:$ix $str
3135 $w insert e:$ix $e [highlight_tag $de]
3138 $w mark gravity e:$ix right
3139 $w conf -state disabled
3140 set treediropen($dir) 1
3141 set top [lindex [split [$w index @0,0] .] 0]
3142 set ht [$w cget -height]
3143 set l [lindex [split [$w index s:$ix] .] 0]
3146 } elseif {$l + $n + 1 > $top + $ht} {
3147 set top [expr {$l + $n + 2 - $ht}]
3155 proc treeclick {w x y} {
3156 global treediropen cmitmode ctext cflist cflist_top
3158 if {$cmitmode ne "tree"} return
3159 if {![info exists cflist_top]} return
3160 set l [lindex [split [$w index "@$x,$y"] "."] 0]
3161 $cflist tag remove highlight $cflist_top.0 "$cflist_top.0 lineend"
3162 $cflist tag add highlight $l.0 "$l.0 lineend"
3168 set e [linetoelt $l]
3169 if {[string index $e end] ne "/"} {
3171 } elseif {$treediropen($e)} {
3178 proc setfilelist {id} {
3179 global treefilelist cflist jump_to_here
3181 treeview $cflist $treefilelist($id) 0
3182 if {$jump_to_here ne {}} {
3183 set f [lindex $jump_to_here 0]
3184 if {[lsearch -exact $treefilelist($id) $f] >= 0} {
3190 image create bitmap tri-rt -background black -foreground blue -data {
3191 #define tri-rt_width 13
3192 #define tri-rt_height 13
3193 static unsigned char tri-rt_bits[] = {
3194 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x30, 0x00, 0x70, 0x00, 0xf0, 0x00,
3195 0xf0, 0x01, 0xf0, 0x00, 0x70, 0x00, 0x30, 0x00, 0x10, 0x00, 0x00, 0x00,
3198 #define tri-rt-mask_width 13
3199 #define tri-rt-mask_height 13
3200 static unsigned char tri-rt-mask_bits[] = {
3201 0x08, 0x00, 0x18, 0x00, 0x38, 0x00, 0x78, 0x00, 0xf8, 0x00, 0xf8, 0x01,
3202 0xf8, 0x03, 0xf8, 0x01, 0xf8, 0x00, 0x78, 0x00, 0x38, 0x00, 0x18, 0x00,
3205 image create bitmap tri-dn -background black -foreground blue -data {
3206 #define tri-dn_width 13
3207 #define tri-dn_height 13
3208 static unsigned char tri-dn_bits[] = {
3209 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x07, 0xf8, 0x03,
3210 0xf0, 0x01, 0xe0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3213 #define tri-dn-mask_width 13
3214 #define tri-dn-mask_height 13
3215 static unsigned char tri-dn-mask_bits[] = {
3216 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x1f, 0xfe, 0x0f, 0xfc, 0x07,
3217 0xf8, 0x03, 0xf0, 0x01, 0xe0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00,
3221 image create bitmap reficon-T -background black -foreground yellow -data {
3222 #define tagicon_width 13
3223 #define tagicon_height 9
3224 static unsigned char tagicon_bits[] = {
3225 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0xf8, 0x07,
3226 0xfc, 0x07, 0xf8, 0x07, 0xf0, 0x07, 0x00, 0x00, 0x00, 0x00};
3228 #define tagicon-mask_width 13
3229 #define tagicon-mask_height 9
3230 static unsigned char tagicon-mask_bits[] = {
3231 0x00, 0x00, 0xf0, 0x0f, 0xf8, 0x0f, 0xfc, 0x0f,
3232 0xfe, 0x0f, 0xfc, 0x0f, 0xf8, 0x0f, 0xf0, 0x0f, 0x00, 0x00};
3235 #define headicon_width 13
3236 #define headicon_height 9
3237 static unsigned char headicon_bits[] = {
3238 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0xf8, 0x07,
3239 0xf8, 0x07, 0xf8, 0x07, 0xf8, 0x07, 0x00, 0x00, 0x00, 0x00};
3242 #define headicon-mask_width 13
3243 #define headicon-mask_height 9
3244 static unsigned char headicon-mask_bits[] = {
3245 0x00, 0x00, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f,
3246 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0xfc, 0x0f, 0x00, 0x00};
3248 image create bitmap reficon-H -background black -foreground green \
3249 -data $rectdata -maskdata $rectmask
3250 image create bitmap reficon-o -background black -foreground "#ddddff" \
3251 -data $rectdata -maskdata $rectmask
3253 proc init_flist {first} {
3254 global cflist cflist_top difffilestart
3256 $cflist conf -state normal
3257 $cflist delete 0.0 end
3259 $cflist insert end $first
3261 $cflist tag add highlight 1.0 "1.0 lineend"
3263 catch {unset cflist_top}
3265 $cflist conf -state disabled
3266 set difffilestart {}
3269 proc highlight_tag {f} {
3270 global highlight_paths
3272 foreach p $highlight_paths {
3273 if {[string match $p $f]} {
3280 proc highlight_filelist {} {
3281 global cmitmode cflist
3283 $cflist conf -state normal
3284 if {$cmitmode ne "tree"} {
3285 set end [lindex [split [$cflist index end] .] 0]
3286 for {set l 2} {$l < $end} {incr l} {
3287 set line [$cflist get $l.0 "$l.0 lineend"]
3288 if {[highlight_tag $line] ne {}} {
3289 $cflist tag add bold $l.0 "$l.0 lineend"
3295 $cflist conf -state disabled
3298 proc unhighlight_filelist {} {
3301 $cflist conf -state normal
3302 $cflist tag remove bold 1.0 end
3303 $cflist conf -state disabled
3306 proc add_flist {fl} {
3309 $cflist conf -state normal
3311 $cflist insert end "\n"
3312 $cflist insert end $f [highlight_tag $f]
3314 $cflist conf -state disabled
3317 proc sel_flist {w x y} {
3318 global ctext difffilestart cflist cflist_top cmitmode
3320 if {$cmitmode eq "tree"} return
3321 if {![info exists cflist_top]} return
3322 set l [lindex [split [$w index "@$x,$y"] "."] 0]
3323 $cflist tag remove highlight $cflist_top.0 "$cflist_top.0 lineend"
3324 $cflist tag add highlight $l.0 "$l.0 lineend"
3329 catch {$ctext yview [lindex $difffilestart [expr {$l - 2}]]}
3331 suppress_highlighting_file_for_current_scrollpos
3334 proc pop_flist_menu {w X Y x y} {
3335 global ctext cflist cmitmode flist_menu flist_menu_file
3336 global treediffs diffids
3339 set l [lindex [split [$w index "@$x,$y"] "."] 0]
3341 if {$cmitmode eq "tree"} {
3342 set e [linetoelt $l]
3343 if {[string index $e end] eq "/"} return
3345 set e [lindex $treediffs($diffids) [expr {$l-2}]]
3347 set flist_menu_file $e
3348 set xdiffstate "normal"
3349 if {$cmitmode eq "tree"} {
3350 set xdiffstate "disabled"
3352 # Disable "External diff" item in tree mode
3353 $flist_menu entryconf 2 -state $xdiffstate
3354 tk_popup $flist_menu $X $Y
3357 proc find_ctext_fileinfo {line} {
3358 global ctext_file_names ctext_file_lines
3360 set ok [bsearch $ctext_file_lines $line]
3361 set tline [lindex $ctext_file_lines $ok]
3363 if {$ok >= [llength $ctext_file_lines] || $line < $tline} {
3366 return [list [lindex $ctext_file_names $ok] $tline]
3370 proc pop_diff_menu {w X Y x y} {
3371 global ctext diff_menu flist_menu_file
3372 global diff_menu_txtpos diff_menu_line
3373 global diff_menu_filebase
3375 set diff_menu_txtpos [split [$w index "@$x,$y"] "."]
3376 set diff_menu_line [lindex $diff_menu_txtpos 0]
3377 # don't pop up the menu on hunk-separator or file-separator lines
3378 if {[lsearch -glob [$ctext tag names $diff_menu_line.0] "*sep"] >= 0} {
3382 set f [find_ctext_fileinfo $diff_menu_line]
3383 if {$f eq {}} return
3384 set flist_menu_file [lindex $f 0]
3385 set diff_menu_filebase [lindex $f 1]
3386 tk_popup $diff_menu $X $Y
3389 proc flist_hl {only} {
3390 global flist_menu_file findstring gdttype
3392 set x [shellquote $flist_menu_file]
3393 if {$only || $findstring eq {} || $gdttype ne [mc "touching paths:"]} {
3396 append findstring " " $x
3398 set gdttype [mc "touching paths:"]
3401 proc gitknewtmpdir {} {
3402 global diffnum gitktmpdir gitdir
3404 if {![info exists gitktmpdir]} {
3405 set gitktmpdir [file join $gitdir [format ".gitk-tmp.%s" [pid]]]
3406 if {[catch {file mkdir $gitktmpdir} err]} {
3407 error_popup "[mc "Error creating temporary directory %s:" $gitktmpdir] $err"
3414 set diffdir [file join $gitktmpdir $diffnum]
3415 if {[catch {file mkdir $diffdir} err]} {
3416 error_popup "[mc "Error creating temporary directory %s:" $diffdir] $err"
3422 proc save_file_from_commit {filename output what} {
3425 if {[catch {exec git show $filename -- > $output} err]} {
3426 if {[string match "fatal: bad revision *" $err]} {
3429 error_popup "[mc "Error getting \"%s\" from %s:" $filename $what] $err"
3435 proc external_diff_get_one_file {diffid filename diffdir} {
3436 global nullid nullid2 nullfile
3439 if {$diffid == $nullid} {
3440 set difffile [file join $worktree $filename]
3441 if {[file exists $difffile]} {
3446 if {$diffid == $nullid2} {
3447 set difffile [file join $diffdir "\[index\] [file tail $filename]"]
3448 return [save_file_from_commit :$filename $difffile index]
3450 set difffile [file join $diffdir "\[$diffid\] [file tail $filename]"]
3451 return [save_file_from_commit $diffid:$filename $difffile \
3455 proc external_diff {} {
3456 global nullid nullid2
3457 global flist_menu_file
3461 if {[llength $diffids] == 1} {
3462 # no reference commit given
3463 set diffidto [lindex $diffids 0]
3464 if {$diffidto eq $nullid} {
3465 # diffing working copy with index
3466 set diffidfrom $nullid2
3467 } elseif {$diffidto eq $nullid2} {
3468 # diffing index with HEAD
3469 set diffidfrom "HEAD"
3471 # use first parent commit
3472 global parentlist selectedline
3473 set diffidfrom [lindex $parentlist $selectedline 0]
3476 set diffidfrom [lindex $diffids 0]
3477 set diffidto [lindex $diffids 1]
3480 # make sure that several diffs wont collide
3481 set diffdir [gitknewtmpdir]
3482 if {$diffdir eq {}} return
3484 # gather files to diff
3485 set difffromfile [external_diff_get_one_file $diffidfrom $flist_menu_file $diffdir]
3486 set difftofile [external_diff_get_one_file $diffidto $flist_menu_file $diffdir]
3488 if {$difffromfile ne {} && $difftofile ne {}} {
3489 set cmd [list [shellsplit $extdifftool] $difffromfile $difftofile]
3490 if {[catch {set fl [open |$cmd r]} err]} {
3491 file delete -force $diffdir
3492 error_popup "$extdifftool: [mc "command failed:"] $err"
3494 fconfigure $fl -blocking 0
3495 filerun $fl [list delete_at_eof $fl $diffdir]
3500 proc find_hunk_blamespec {base line} {
3503 # Find and parse the hunk header
3504 set s_lix [$ctext search -backwards -regexp ^@@ "$line.0 lineend" $base.0]
3505 if {$s_lix eq {}} return
3507 set s_line [$ctext get $s_lix "$s_lix + 1 lines"]
3508 if {![regexp {^@@@*(( -\d+(,\d+)?)+) \+(\d+)(,\d+)? @@} $s_line \
3509 s_line old_specs osz osz1 new_line nsz]} {
3513 # base lines for the parents
3514 set base_lines [list $new_line]
3515 foreach old_spec [lrange [split $old_specs " "] 1 end] {
3516 if {![regexp -- {-(\d+)(,\d+)?} $old_spec \
3517 old_spec old_line osz]} {
3520 lappend base_lines $old_line
3523 # Now scan the lines to determine offset within the hunk
3524 set max_parent [expr {[llength $base_lines]-2}]
3526 set s_lno [lindex [split $s_lix "."] 0]
3528 # Determine if the line is removed
3529 set chunk [$ctext get $line.0 "$line.1 + $max_parent chars"]
3530 if {[string match {[-+ ]*} $chunk]} {
3531 set removed_idx [string first "-" $chunk]
3532 # Choose a parent index
3533 if {$removed_idx >= 0} {
3534 set parent $removed_idx
3536 set unchanged_idx [string first " " $chunk]
3537 if {$unchanged_idx >= 0} {
3538 set parent $unchanged_idx
3540 # blame the current commit
3544 # then count other lines that belong to it
3545 for {set i $line} {[incr i -1] > $s_lno} {} {
3546 set chunk [$ctext get $i.0 "$i.1 + $max_parent chars"]
3547 # Determine if the line is removed
3548 set removed_idx [string first "-" $chunk]
3550 set code [string index $chunk $parent]
3551 if {$code eq "-" || ($removed_idx < 0 && $code ne "+")} {
3555 if {$removed_idx < 0} {
3565 incr dline [lindex $base_lines $parent]
3566 return [list $parent $dline]
3569 proc external_blame_diff {} {
3570 global currentid cmitmode
3571 global diff_menu_txtpos diff_menu_line
3572 global diff_menu_filebase flist_menu_file
3574 if {$cmitmode eq "tree"} {
3576 set line [expr {$diff_menu_line - $diff_menu_filebase}]
3578 set hinfo [find_hunk_blamespec $diff_menu_filebase $diff_menu_line]
3580 set parent_idx [lindex $hinfo 0]
3581 set line [lindex $hinfo 1]
3588 external_blame $parent_idx $line
3591 # Find the SHA1 ID of the blob for file $fname in the index
3593 proc index_sha1 {fname} {
3594 set f [open [list | git ls-files -s $fname] r]
3595 while {[gets $f line] >= 0} {
3596 set info [lindex [split $line "\t"] 0]
3597 set stage [lindex $info 2]
3598 if {$stage eq "0" || $stage eq "2"} {
3600 return [lindex $info 1]
3607 # Turn an absolute path into one relative to the current directory
3608 proc make_relative {f} {
3609 if {[file pathtype $f] eq "relative"} {
3612 set elts [file split $f]
3613 set here [file split [pwd]]
3618 if {$ei < $hi || $ei >= [llength $elts] || [lindex $elts $ei] ne $d} {
3625 set elts [concat $res [lrange $elts $ei end]]
3626 return [eval file join $elts]
3629 proc external_blame {parent_idx {line {}}} {
3630 global flist_menu_file cdup
3631 global nullid nullid2
3632 global parentlist selectedline currentid
3634 if {$parent_idx > 0} {
3635 set base_commit [lindex $parentlist $selectedline [expr {$parent_idx-1}]]
3637 set base_commit $currentid
3640 if {$base_commit eq {} || $base_commit eq $nullid || $base_commit eq $nullid2} {
3641 error_popup [mc "No such commit"]
3645 set cmdline [list git gui blame]
3646 if {$line ne {} && $line > 1} {
3647 lappend cmdline "--line=$line"
3649 set f [file join $cdup $flist_menu_file]
3650 # Unfortunately it seems git gui blame doesn't like
3651 # being given an absolute path...
3652 set f [make_relative $f]
3653 lappend cmdline $base_commit $f
3654 if {[catch {eval exec $cmdline &} err]} {
3655 error_popup "[mc "git gui blame: command failed:"] $err"
3659 proc show_line_source {} {
3660 global cmitmode currentid parents curview blamestuff blameinst
3661 global diff_menu_line diff_menu_filebase flist_menu_file
3662 global nullid nullid2 gitdir cdup
3665 if {$cmitmode eq "tree"} {
3667 set line [expr {$diff_menu_line - $diff_menu_filebase}]
3669 set h [find_hunk_blamespec $diff_menu_filebase $diff_menu_line]
3670 if {$h eq {}} return
3671 set pi [lindex $h 0]
3673 mark_ctext_line $diff_menu_line
3677 if {$currentid eq $nullid} {
3679 # must be a merge in progress...
3681 # get the last line from .git/MERGE_HEAD
3682 set f [open [file join $gitdir MERGE_HEAD] r]
3683 set id [lindex [split [read $f] "\n"] end-1]
3686 error_popup [mc "Couldn't read merge head: %s" $err]
3689 } elseif {$parents($curview,$currentid) eq $nullid2} {
3690 # need to do the blame from the index
3692 set from_index [index_sha1 $flist_menu_file]
3694 error_popup [mc "Error reading index: %s" $err]
3698 set id $parents($curview,$currentid)
3701 set id [lindex $parents($curview,$currentid) $pi]
3703 set line [lindex $h 1]
3706 if {$from_index ne {}} {
3707 lappend blameargs | git cat-file blob $from_index
3709 lappend blameargs | git blame -p -L$line,+1
3710 if {$from_index ne {}} {
3711 lappend blameargs --contents -
3713 lappend blameargs $id
3715 lappend blameargs -- [file join $cdup $flist_menu_file]
3717 set f [open $blameargs r]
3719 error_popup [mc "Couldn't start git blame: %s" $err]
3722 nowbusy blaming [mc "Searching"]
3723 fconfigure $f -blocking 0
3724 set i [reg_instance $f]
3725 set blamestuff($i) {}
3727 filerun $f [list read_line_source $f $i]
3730 proc stopblaming {} {
3733 if {[info exists blameinst]} {
3734 stop_instance $blameinst
3740 proc read_line_source {fd inst} {
3741 global blamestuff curview commfd blameinst nullid nullid2
3743 while {[gets $fd line] >= 0} {
3744 lappend blamestuff($inst) $line
3752 fconfigure $fd -blocking 1
3753 if {[catch {close $fd} err]} {
3754 error_popup [mc "Error running git blame: %s" $err]
3759 set line [split [lindex $blamestuff($inst) 0] " "]
3760 set id [lindex $line 0]
3761 set lnum [lindex $line 1]
3762 if {[string length $id] == 40 && [string is xdigit $id] &&
3763 [string is digit -strict $lnum]} {
3764 # look for "filename" line
3765 foreach l $blamestuff($inst) {
3766 if {[string match "filename *" $l]} {
3767 set fname [string range $l 9 end]
3773 # all looks good, select it
3774 if {$id eq $nullid} {
3775 # blame uses all-zeroes to mean not committed,
3776 # which would mean a change in the index
3779 if {[commitinview $id $curview]} {
3780 selectline [rowofcommit $id] 1 [list $fname $lnum]
3782 error_popup [mc "That line comes from commit %s, \
3783 which is not in this view" [shortids $id]]
3786 puts "oops couldn't parse git blame output"
3791 # delete $dir when we see eof on $f (presumably because the child has exited)
3792 proc delete_at_eof {f dir} {
3793 while {[gets $f line] >= 0} {}
3795 if {[catch {close $f} err]} {
3796 error_popup "[mc "External diff viewer failed:"] $err"
3798 file delete -force $dir
3804 # Functions for adding and removing shell-type quoting
3806 proc shellquote {str} {
3807 if {![string match "*\['\"\\ \t]*" $str]} {
3810 if {![string match "*\['\"\\]*" $str]} {
3813 if {![string match "*'*" $str]} {
3816 return "\"[string map {\" \\\" \\ \\\\} $str]\""
3819 proc shellarglist {l} {
3825 append str [shellquote $a]
3830 proc shelldequote {str} {
3835 if {![regexp -start $used -indices "\['\"\\\\ \t]" $str first]} {
3836 append ret [string range $str $used end]
3837 set used [string length $str]
3840 set first [lindex $first 0]
3841 set ch [string index $str $first]
3842 if {$first > $used} {
3843 append ret [string range $str $used [expr {$first - 1}]]
3846 if {$ch eq " " || $ch eq "\t"} break
3849 set first [string first "'" $str $used]
3851 error "unmatched single-quote"
3853 append ret [string range $str $used [expr {$first - 1}]]
3858 if {$used >= [string length $str]} {
3859 error "trailing backslash"
3861 append ret [string index $str $used]
3866 if {![regexp -start $used -indices "\[\"\\\\]" $str first]} {
3867 error "unmatched double-quote"
3869 set first [lindex $first 0]
3870 set ch [string index $str $first]
3871 if {$first > $used} {
3872 append ret [string range $str $used [expr {$first - 1}]]
3875 if {$ch eq "\""} break
3877 append ret [string index $str $used]
3881 return [list $used $ret]
3884 proc shellsplit {str} {
3887 set str [string trimleft $str]
3888 if {$str eq {}} break
3889 set dq [shelldequote $str]
3890 set n [lindex $dq 0]
3891 set word [lindex $dq 1]
3892 set str [string range $str $n end]
3898 # Code to implement multiple views
3900 proc newview {ishighlight} {
3901 global nextviewnum newviewname newishighlight
3902 global revtreeargs viewargscmd newviewopts curview
3904 set newishighlight $ishighlight
3906 if {[winfo exists $top]} {
3910 decode_view_opts $nextviewnum $revtreeargs
3911 set newviewname($nextviewnum) "[mc "View"] $nextviewnum"
3912 set newviewopts($nextviewnum,perm) 0
3913 set newviewopts($nextviewnum,cmd) $viewargscmd($curview)
3914 vieweditor $top $nextviewnum [mc "Gitk view definition"]
3917 set known_view_options {
3918 {perm b . {} {mc "Remember this view"}}
3919 {reflabel l + {} {mc "References (space separated list):"}}
3920 {refs t15 .. {} {mc "Branches & tags:"}}
3921 {allrefs b *. "--all" {mc "All refs"}}
3922 {branches b . "--branches" {mc "All (local) branches"}}
3923 {tags b . "--tags" {mc "All tags"}}
3924 {remotes b . "--remotes" {mc "All remote-tracking branches"}}
3925 {commitlbl l + {} {mc "Commit Info (regular expressions):"}}
3926 {author t15 .. "--author=*" {mc "Author:"}}
3927 {committer t15 . "--committer=*" {mc "Committer:"}}
3928 {loginfo t15 .. "--grep=*" {mc "Commit Message:"}}
3929 {allmatch b .. "--all-match" {mc "Matches all Commit Info criteria"}}
3930 {changes_l l + {} {mc "Changes to Files:"}}
3931 {pickaxe_s r0 . {} {mc "Fixed String"}}
3932 {pickaxe_t r1 . "--pickaxe-regex" {mc "Regular Expression"}}
3933 {pickaxe t15 .. "-S*" {mc "Search string:"}}
3934 {datelabel l + {} {mc "Commit Dates (\"2 weeks ago\", \"2009-03-17 15:27:38\", \"March 17, 2009 15:27:38\"):"}}
3935 {since t15 .. {"--since=*" "--after=*"} {mc "Since:"}}
3936 {until t15 . {"--until=*" "--before=*"} {mc "Until:"}}
3937 {limit_lbl l + {} {mc "Limit and/or skip a number of revisions (positive integer):"}}
3938 {limit t10 *. "--max-count=*" {mc "Number to show:"}}
3939 {skip t10 . "--skip=*" {mc "Number to skip:"}}
3940 {misc_lbl l + {} {mc "Miscellaneous options:"}}
3941 {dorder b *. {"--date-order" "-d"} {mc "Strictly sort by date"}}
3942 {lright b . "--left-right" {mc "Mark branch sides"}}
3943 {first b . "--first-parent" {mc "Limit to first parent"}}
3944 {smplhst b . "--simplify-by-decoration" {mc "Simple history"}}
3945 {args t50 *. {} {mc "Additional arguments to git log:"}}
3946 {allpaths path + {} {mc "Enter files and directories to include, one per line:"}}
3947 {cmd t50= + {} {mc "Command to generate more commits to include:"}}
3950 # Convert $newviewopts($n, ...) into args for git log.
3951 proc encode_view_opts {n} {
3952 global known_view_options newviewopts
3955 foreach opt $known_view_options {
3956 set patterns [lindex $opt 3]
3957 if {$patterns eq {}} continue
3958 set pattern [lindex $patterns 0]
3960 if {[lindex $opt 1] eq "b"} {
3961 set val $newviewopts($n,[lindex $opt 0])
3963 lappend rargs $pattern
3965 } elseif {[regexp {^r(\d+)$} [lindex $opt 1] type value]} {
3966 regexp {^(.*_)} [lindex $opt 0] uselessvar button_id
3967 set val $newviewopts($n,$button_id)
3968 if {$val eq $value} {
3969 lappend rargs $pattern
3972 set val $newviewopts($n,[lindex $opt 0])
3973 set val [string trim $val]
3975 set pfix [string range $pattern 0 end-1]
3976 lappend rargs $pfix$val
3980 set rargs [concat $rargs [shellsplit $newviewopts($n,refs)]]
3981 return [concat $rargs [shellsplit $newviewopts($n,args)]]
3984 # Fill $newviewopts($n, ...) based on args for git log.
3985 proc decode_view_opts {n view_args} {
3986 global known_view_options newviewopts
3988 foreach opt $known_view_options {
3989 set id [lindex $opt 0]
3990 if {[lindex $opt 1] eq "b"} {
3993 } elseif {[regexp {^r(\d+)$} [lindex $opt 1]]} {
3995 regexp {^(.*_)} $id uselessvar id
4001 set newviewopts($n,$id) $val
4005 foreach arg $view_args {
4006 if {[regexp -- {^-([0-9]+)$} $arg arg cnt]
4007 && ![info exists found(limit)]} {
4008 set newviewopts($n,limit) $cnt
4013 foreach opt $known_view_options {
4014 set id [lindex $opt 0]
4015 if {[info exists found($id)]} continue
4016 foreach pattern [lindex $opt 3] {
4017 if {![string match $pattern $arg]} continue
4018 if {[lindex $opt 1] eq "b"} {
4021 } elseif {[regexp {^r(\d+)$} [lindex $opt 1] match num]} {
4023 regexp {^(.*_)} $id uselessvar id
4027 set size [string length $pattern]
4028 set val [string range $arg [expr {$size-1}] end]
4030 set newviewopts($n,$id) $val
4034 if {[info exists val]} break
4036 if {[info exists val]} continue
4037 if {[regexp {^-} $arg]} {
4040 lappend refargs $arg
4043 set newviewopts($n,refs) [shellarglist $refargs]
4044 set newviewopts($n,args) [shellarglist $oargs]
4047 proc edit_or_newview {} {
4059 global viewname viewperm newviewname newviewopts
4060 global viewargs viewargscmd
4062 set top .gitkvedit-$curview
4063 if {[winfo exists $top]} {
4067 decode_view_opts $curview $viewargs($curview)
4068 set newviewname($curview) $viewname($curview)
4069 set newviewopts($curview,perm) $viewperm($curview)
4070 set newviewopts($curview,cmd) $viewargscmd($curview)
4071 vieweditor $top $curview "[mc "Gitk: edit view"] $viewname($curview)"
4074 proc vieweditor {top n title} {
4075 global newviewname newviewopts viewfiles bgcolor
4076 global known_view_options NS
4079 wm title $top [concat $title [mc "-- criteria for selecting revisions"]]
4080 make_transient $top .
4083 ${NS}::frame $top.nfr
4084 ${NS}::label $top.nl -text [mc "View Name"]
4085 ${NS}::entry $top.name -width 20 -textvariable newviewname($n)
4086 pack $top.nfr -in $top -fill x -pady 5 -padx 3
4087 pack $top.nl -in $top.nfr -side left -padx {0 5}
4088 pack $top.name -in $top.nfr -side left -padx {0 25}
4094 foreach opt $known_view_options {
4095 set id [lindex $opt 0]
4096 set type [lindex $opt 1]
4097 set flags [lindex $opt 2]
4098 set title [eval [lindex $opt 4]]
4101 if {$flags eq "+" || $flags eq "*"} {
4102 set cframe $top.fr$cnt
4104 ${NS}::frame $cframe
4105 pack $cframe -in $top -fill x -pady 3 -padx 3
4106 set cexpand [expr {$flags eq "*"}]
4107 } elseif {$flags eq ".." || $flags eq "*."} {
4108 set cframe $top.fr$cnt
4110 ${NS}::frame $cframe
4111 pack $cframe -in $top -fill x -pady 3 -padx [list 15 3]
4112 set cexpand [expr {$flags eq "*."}]
4118 ${NS}::label $cframe.l_$id -text $title
4119 pack $cframe.l_$id -in $cframe -side left -pady [list 3 0] -anchor w
4120 } elseif {$type eq "b"} {
4121 ${NS}::checkbutton $cframe.c_$id -text $title -variable newviewopts($n,$id)
4122 pack $cframe.c_$id -in $cframe -side left \
4123 -padx [list $lxpad 0] -expand $cexpand -anchor w
4124 } elseif {[regexp {^r(\d+)$} $type type sz]} {
4125 regexp {^(.*_)} $id uselessvar button_id
4126 ${NS}::radiobutton $cframe.c_$id -text $title -variable newviewopts($n,$button_id) -value $sz
4127 pack $cframe.c_$id -in $cframe -side left \
4128 -padx [list $lxpad 0] -expand $cexpand -anchor w
4129 } elseif {[regexp {^t(\d+)$} $type type sz]} {
4130 ${NS}::label $cframe.l_$id -text $title
4131 ${NS}::entry $cframe.e_$id -width $sz -background $bgcolor \
4132 -textvariable newviewopts($n,$id)
4133 pack $cframe.l_$id -in $cframe -side left -padx [list $lxpad 0]
4134 pack $cframe.e_$id -in $cframe -side left -expand 1 -fill x
4135 } elseif {[regexp {^t(\d+)=$} $type type sz]} {
4136 ${NS}::label $cframe.l_$id -text $title
4137 ${NS}::entry $cframe.e_$id -width $sz -background $bgcolor \
4138 -textvariable newviewopts($n,$id)
4139 pack $cframe.l_$id -in $cframe -side top -pady [list 3 0] -anchor w
4140 pack $cframe.e_$id -in $cframe -side top -fill x
4141 } elseif {$type eq "path"} {
4142 ${NS}::label $top.l -text $title
4143 pack $top.l -in $top -side top -pady [list 3 0] -anchor w -padx 3
4144 text $top.t -width 40 -height 5 -background $bgcolor
4145 if {[info exists viewfiles($n)]} {
4146 foreach f $viewfiles($n) {
4147 $top.t insert end $f
4148 $top.t insert end "\n"
4150 $top.t delete {end - 1c} end
4151 $top.t mark set insert 0.0
4153 pack $top.t -in $top -side top -pady [list 0 5] -fill both -expand 1 -padx 3
4157 ${NS}::frame $top.buts
4158 ${NS}::button $top.buts.ok -text [mc "OK"] -command [list newviewok $top $n]
4159 ${NS}::button $top.buts.apply -text [mc "Apply (F5)"] -command [list newviewok $top $n 1]
4160 ${NS}::button $top.buts.can -text [mc "Cancel"] -command [list destroy $top]
4161 bind $top <Control-Return> [list newviewok $top $n]
4162 bind $top <F5> [list newviewok $top $n 1]
4163 bind $top <Escape> [list destroy $top]
4164 grid $top.buts.ok $top.buts.apply $top.buts.can
4165 grid columnconfigure $top.buts 0 -weight 1 -uniform a
4166 grid columnconfigure $top.buts 1 -weight 1 -uniform a
4167 grid columnconfigure $top.buts 2 -weight 1 -uniform a
4168 pack $top.buts -in $top -side top -fill x
4172 proc doviewmenu {m first cmd op argv} {
4173 set nmenu [$m index end]
4174 for {set i $first} {$i <= $nmenu} {incr i} {
4175 if {[$m entrycget $i -command] eq $cmd} {
4176 eval $m $op $i $argv
4182 proc allviewmenus {n op args} {
4185 doviewmenu .bar.view 5 [list showview $n] $op $args
4186 # doviewmenu $viewhlmenu 1 [list addvhighlight $n] $op $args
4189 proc newviewok {top n {apply 0}} {
4190 global nextviewnum newviewperm newviewname newishighlight
4191 global viewname viewfiles viewperm selectedview curview
4192 global viewargs viewargscmd newviewopts viewhlmenu
4195 set newargs [encode_view_opts $n]
4197 error_popup "[mc "Error in commit selection arguments:"] $err" $top
4201 foreach f [split [$top.t get 0.0 end] "\n"] {
4202 set ft [string trim $f]
4207 if {![info exists viewfiles($n)]} {
4208 # creating a new view
4210 set viewname($n) $newviewname($n)
4211 set viewperm($n) $newviewopts($n,perm)
4212 set viewfiles($n) $files
4213 set viewargs($n) $newargs
4214 set viewargscmd($n) $newviewopts($n,cmd)
4216 if {!$newishighlight} {
4219 run addvhighlight $n
4222 # editing an existing view
4223 set viewperm($n) $newviewopts($n,perm)
4224 if {$newviewname($n) ne $viewname($n)} {
4225 set viewname($n) $newviewname($n)
4226 doviewmenu .bar.view 5 [list showview $n] \
4227 entryconf [list -label $viewname($n)]
4228 # doviewmenu $viewhlmenu 1 [list addvhighlight $n] \
4229 # entryconf [list -label $viewname($n) -value $viewname($n)]
4231 if {$files ne $viewfiles($n) || $newargs ne $viewargs($n) || \
4232 $newviewopts($n,cmd) ne $viewargscmd($n)} {
4233 set viewfiles($n) $files
4234 set viewargs($n) $newargs
4235 set viewargscmd($n) $newviewopts($n,cmd)
4236 if {$curview == $n} {
4242 catch {destroy $top}
4246 global curview viewperm hlview selectedhlview
4248 if {$curview == 0} return
4249 if {[info exists hlview] && $hlview == $curview} {
4250 set selectedhlview [mc "None"]
4253 allviewmenus $curview delete
4254 set viewperm($curview) 0
4258 proc addviewmenu {n} {
4259 global viewname viewhlmenu
4261 .bar.view add radiobutton -label $viewname($n) \
4262 -command [list showview $n] -variable selectedview -value $n
4263 #$viewhlmenu add radiobutton -label $viewname($n) \
4264 # -command [list addvhighlight $n] -variable selectedhlview
4268 global curview cached_commitrow ordertok
4269 global displayorder parentlist rowidlist rowisopt rowfinal
4270 global colormap rowtextx nextcolor canvxmax
4271 global numcommits viewcomplete
4272 global selectedline currentid canv canvy0
4274 global pending_select mainheadid
4277 global hlview selectedhlview commitinterest
4279 if {$n == $curview} return
4281 set ymax [lindex [$canv cget -scrollregion] 3]
4282 set span [$canv yview]
4283 set ytop [expr {[lindex $span 0] * $ymax}]
4284 set ybot [expr {[lindex $span 1] * $ymax}]
4285 set yscreen [expr {($ybot - $ytop) / 2}]
4286 if {$selectedline ne {}} {
4287 set selid $currentid
4288 set y [yc $selectedline]
4289 if {$ytop < $y && $y < $ybot} {
4290 set yscreen [expr {$y - $ytop}]
4292 } elseif {[info exists pending_select]} {
4293 set selid $pending_select
4294 unset pending_select
4298 catch {unset treediffs}
4300 if {[info exists hlview] && $hlview == $n} {
4302 set selectedhlview [mc "None"]
4304 catch {unset commitinterest}
4305 catch {unset cached_commitrow}
4306 catch {unset ordertok}
4310 .bar.view entryconf [mca "Edit view..."] -state [expr {$n == 0? "disabled": "normal"}]
4311 .bar.view entryconf [mca "Delete view"] -state [expr {$n == 0? "disabled": "normal"}]
4314 if {![info exists viewcomplete($n)]} {
4324 set numcommits $commitidx($n)
4326 catch {unset colormap}
4327 catch {unset rowtextx}
4329 set canvxmax [$canv cget -width]
4335 if {$selid ne {} && [commitinview $selid $n]} {
4336 set row [rowofcommit $selid]
4337 # try to get the selected row in the same position on the screen
4338 set ymax [lindex [$canv cget -scrollregion] 3]
4339 set ytop [expr {[yc $row] - $yscreen}]
4343 set yf [expr {$ytop * 1.0 / $ymax}]
4345 allcanvs yview moveto $yf
4349 } elseif {!$viewcomplete($n)} {
4350 reset_pending_select $selid
4352 reset_pending_select {}
4354 if {[commitinview $pending_select $curview]} {
4355 selectline [rowofcommit $pending_select] 1
4357 set row [first_real_row]
4358 if {$row < $numcommits} {
4363 if {!$viewcomplete($n)} {
4364 if {$numcommits == 0} {
4365 show_status [mc "Reading commits..."]
4367 } elseif {$numcommits == 0} {
4368 show_status [mc "No commits selected"]
4372 # Stuff relating to the highlighting facility
4374 proc ishighlighted {id} {
4375 global vhighlights fhighlights nhighlights rhighlights
4377 if {[info exists nhighlights($id)] && $nhighlights($id) > 0} {
4378 return $nhighlights($id)
4380 if {[info exists vhighlights($id)] && $vhighlights($id) > 0} {
4381 return $vhighlights($id)
4383 if {[info exists fhighlights($id)] && $fhighlights($id) > 0} {
4384 return $fhighlights($id)
4386 if {[info exists rhighlights($id)] && $rhighlights($id) > 0} {
4387 return $rhighlights($id)
4392 proc bolden {id font} {
4393 global canv linehtag currentid boldids need_redisplay markedid
4395 # need_redisplay = 1 means the display is stale and about to be redrawn
4396 if {$need_redisplay} return
4398 $canv itemconf $linehtag($id) -font $font
4399 if {[info exists currentid] && $id eq $currentid} {
4401 set t [eval $canv create rect [$canv bbox $linehtag($id)] \
4402 -outline {{}} -tags secsel \
4403 -fill [$canv cget -selectbackground]]
4406 if {[info exists markedid] && $id eq $markedid} {
4411 proc bolden_name {id font} {
4412 global canv2 linentag currentid boldnameids need_redisplay
4414 if {$need_redisplay} return
4415 lappend boldnameids $id
4416 $canv2 itemconf $linentag($id) -font $font
4417 if {[info exists currentid] && $id eq $currentid} {
4418 $canv2 delete secsel
4419 set t [eval $canv2 create rect [$canv2 bbox $linentag($id)] \
4420 -outline {{}} -tags secsel \
4421 -fill [$canv2 cget -selectbackground]]
4430 foreach id $boldids {
4431 if {![ishighlighted $id]} {
4434 lappend stillbold $id
4437 set boldids $stillbold
4440 proc addvhighlight {n} {
4441 global hlview viewcomplete curview vhl_done commitidx
4443 if {[info exists hlview]} {
4447 if {$n != $curview && ![info exists viewcomplete($n)]} {
4450 set vhl_done $commitidx($hlview)
4451 if {$vhl_done > 0} {
4456 proc delvhighlight {} {
4457 global hlview vhighlights
4459 if {![info exists hlview]} return
4461 catch {unset vhighlights}
4465 proc vhighlightmore {} {
4466 global hlview vhl_done commitidx vhighlights curview
4468 set max $commitidx($hlview)
4469 set vr [visiblerows]
4470 set r0 [lindex $vr 0]
4471 set r1 [lindex $vr 1]
4472 for {set i $vhl_done} {$i < $max} {incr i} {
4473 set id [commitonrow $i $hlview]
4474 if {[commitinview $id $curview]} {
4475 set row [rowofcommit $id]
4476 if {$r0 <= $row && $row <= $r1} {
4477 if {![highlighted $row]} {
4478 bolden $id mainfontbold
4480 set vhighlights($id) 1
4488 proc askvhighlight {row id} {
4489 global hlview vhighlights iddrawn
4491 if {[commitinview $id $hlview]} {
4492 if {[info exists iddrawn($id)] && ![ishighlighted $id]} {
4493 bolden $id mainfontbold
4495 set vhighlights($id) 1
4497 set vhighlights($id) 0
4501 proc hfiles_change {} {
4502 global highlight_files filehighlight fhighlights fh_serial
4503 global highlight_paths
4505 if {[info exists filehighlight]} {
4506 # delete previous highlights
4507 catch {close $filehighlight}
4509 catch {unset fhighlights}
4511 unhighlight_filelist
4513 set highlight_paths {}
4514 after cancel do_file_hl $fh_serial
4516 if {$highlight_files ne {}} {
4517 after 300 do_file_hl $fh_serial
4521 proc gdttype_change {name ix op} {
4522 global gdttype highlight_files findstring findpattern
4525 if {$findstring ne {}} {
4526 if {$gdttype eq [mc "containing:"]} {
4527 if {$highlight_files ne {}} {
4528 set highlight_files {}
4533 if {$findpattern ne {}} {
4537 set highlight_files $findstring
4542 # enable/disable findtype/findloc menus too
4545 proc find_change {name ix op} {
4546 global gdttype findstring highlight_files
4549 if {$gdttype eq [mc "containing:"]} {
4552 if {$highlight_files ne $findstring} {
4553 set highlight_files $findstring
4560 proc findcom_change args {
4561 global nhighlights boldnameids
4562 global findpattern findtype findstring gdttype
4565 # delete previous highlights, if any
4566 foreach id $boldnameids {
4567 bolden_name $id mainfont
4570 catch {unset nhighlights}
4573 if {$gdttype ne [mc "containing:"] || $findstring eq {}} {
4575 } elseif {$findtype eq [mc "Regexp"]} {
4576 set findpattern $findstring
4578 set e [string map {"*" "\\*" "?" "\\?" "\[" "\\\[" "\\" "\\\\"} \
4580 set findpattern "*$e*"
4584 proc makepatterns {l} {
4587 set ee [string map {"*" "\\*" "?" "\\?" "\[" "\\\[" "\\" "\\\\"} $e]
4588 if {[string index $ee end] eq "/"} {
4598 proc do_file_hl {serial} {
4599 global highlight_files filehighlight highlight_paths gdttype fhl_list
4600 global cdup findtype
4602 if {$gdttype eq [mc "touching paths:"]} {
4603 # If "exact" match then convert backslashes to forward slashes.
4604 # Most useful to support Windows-flavoured file paths.
4605 if {$findtype eq [mc "Exact"]} {
4606 set highlight_files [string map {"\\" "/"} $highlight_files]
4608 if {[catch {set paths [shellsplit $highlight_files]}]} return
4609 set highlight_paths [makepatterns $paths]
4611 set relative_paths {}
4612 foreach path $paths {
4613 lappend relative_paths [file join $cdup $path]
4615 set gdtargs [concat -- $relative_paths]
4616 } elseif {$gdttype eq [mc "adding/removing string:"]} {
4617 set gdtargs [list "-S$highlight_files"]
4619 # must be "containing:", i.e. we're searching commit info
4622 set cmd [concat | git diff-tree -r -s --stdin $gdtargs]
4623 set filehighlight [open $cmd r+]
4624 fconfigure $filehighlight -blocking 0
4625 filerun $filehighlight readfhighlight
4631 proc flushhighlights {} {
4632 global filehighlight fhl_list
4634 if {[info exists filehighlight]} {
4636 puts $filehighlight ""
4637 flush $filehighlight
4641 proc askfilehighlight {row id} {
4642 global filehighlight fhighlights fhl_list
4644 lappend fhl_list $id
4645 set fhighlights($id) -1
4646 puts $filehighlight $id
4649 proc readfhighlight {} {
4650 global filehighlight fhighlights curview iddrawn
4651 global fhl_list find_dirn
4653 if {![info exists filehighlight]} {
4657 while {[incr nr] <= 100 && [gets $filehighlight line] >= 0} {
4658 set line [string trim $line]
4659 set i [lsearch -exact $fhl_list $line]
4660 if {$i < 0} continue
4661 for {set j 0} {$j < $i} {incr j} {
4662 set id [lindex $fhl_list $j]
4663 set fhighlights($id) 0
4665 set fhl_list [lrange $fhl_list [expr {$i+1}] end]
4666 if {$line eq {}} continue
4667 if {![commitinview $line $curview]} continue
4668 if {[info exists iddrawn($line)] && ![ishighlighted $line]} {
4669 bolden $line mainfontbold
4671 set fhighlights($line) 1
4673 if {[eof $filehighlight]} {
4675 puts "oops, git diff-tree died"
4676 catch {close $filehighlight}
4680 if {[info exists find_dirn]} {
4686 proc doesmatch {f} {
4687 global findtype findpattern
4689 if {$findtype eq [mc "Regexp"]} {
4690 return [regexp $findpattern $f]
4691 } elseif {$findtype eq [mc "IgnCase"]} {
4692 return [string match -nocase $findpattern $f]
4694 return [string match $findpattern $f]
4698 proc askfindhighlight {row id} {
4699 global nhighlights commitinfo iddrawn
4701 global markingmatches
4703 if {![info exists commitinfo($id)]} {
4706 set info $commitinfo($id)
4708 set fldtypes [list [mc Headline] [mc Author] "" [mc Committer] "" [mc Comments]]
4709 foreach f $info ty $fldtypes {
4710 if {$ty eq ""} continue
4711 if {($findloc eq [mc "All fields"] || $findloc eq $ty) &&
4713 if {$ty eq [mc "Author"]} {
4720 if {$isbold && [info exists iddrawn($id)]} {
4721 if {![ishighlighted $id]} {
4722 bolden $id mainfontbold
4724 bolden_name $id mainfontbold
4727 if {$markingmatches} {
4728 markrowmatches $row $id
4731 set nhighlights($id) $isbold
4734 proc markrowmatches {row id} {
4735 global canv canv2 linehtag linentag commitinfo findloc
4737 set headline [lindex $commitinfo($id) 0]
4738 set author [lindex $commitinfo($id) 1]
4739 $canv delete match$row
4740 $canv2 delete match$row
4741 if {$findloc eq [mc "All fields"] || $findloc eq [mc "Headline"]} {
4742 set m [findmatches $headline]
4744 markmatches $canv $row $headline $linehtag($id) $m \
4745 [$canv itemcget $linehtag($id) -font] $row
4748 if {$findloc eq [mc "All fields"] || $findloc eq [mc "Author"]} {
4749 set m [findmatches $author]
4751 markmatches $canv2 $row $author $linentag($id) $m \
4752 [$canv2 itemcget $linentag($id) -font] $row
4757 proc vrel_change {name ix op} {
4758 global highlight_related
4761 if {$highlight_related ne [mc "None"]} {
4766 # prepare for testing whether commits are descendents or ancestors of a
4767 proc rhighlight_sel {a} {
4768 global descendent desc_todo ancestor anc_todo
4769 global highlight_related
4771 catch {unset descendent}
4772 set desc_todo [list $a]
4773 catch {unset ancestor}
4774 set anc_todo [list $a]
4775 if {$highlight_related ne [mc "None"]} {
4781 proc rhighlight_none {} {
4784 catch {unset rhighlights}
4788 proc is_descendent {a} {
4789 global curview children descendent desc_todo
4792 set la [rowofcommit $a]
4796 for {set i 0} {$i < [llength $todo]} {incr i} {
4797 set do [lindex $todo $i]
4798 if {[rowofcommit $do] < $la} {
4799 lappend leftover $do
4802 foreach nk $children($v,$do) {
4803 if {![info exists descendent($nk)]} {
4804 set descendent($nk) 1
4812 set desc_todo [concat $leftover [lrange $todo [expr {$i+1}] end]]
4816 set descendent($a) 0
4817 set desc_todo $leftover
4820 proc is_ancestor {a} {
4821 global curview parents ancestor anc_todo
4824 set la [rowofcommit $a]
4828 for {set i 0} {$i < [llength $todo]} {incr i} {
4829 set do [lindex $todo $i]
4830 if {![commitinview $do $v] || [rowofcommit $do] > $la} {
4831 lappend leftover $do
4834 foreach np $parents($v,$do) {
4835 if {![info exists ancestor($np)]} {
4844 set anc_todo [concat $leftover [lrange $todo [expr {$i+1}] end]]
4849 set anc_todo $leftover
4852 proc askrelhighlight {row id} {
4853 global descendent highlight_related iddrawn rhighlights
4854 global selectedline ancestor
4856 if {$selectedline eq {}} return
4858 if {$highlight_related eq [mc "Descendant"] ||
4859 $highlight_related eq [mc "Not descendant"]} {
4860 if {![info exists descendent($id)]} {
4863 if {$descendent($id) == ($highlight_related eq [mc "Descendant"])} {
4866 } elseif {$highlight_related eq [mc "Ancestor"] ||
4867 $highlight_related eq [mc "Not ancestor"]} {
4868 if {![info exists ancestor($id)]} {
4871 if {$ancestor($id) == ($highlight_related eq [mc "Ancestor"])} {
4875 if {[info exists iddrawn($id)]} {
4876 if {$isbold && ![ishighlighted $id]} {
4877 bolden $id mainfontbold
4880 set rhighlights($id) $isbold
4883 # Graph layout functions
4885 proc shortids {ids} {
4888 if {[llength $id] > 1} {
4889 lappend res [shortids $id]
4890 } elseif {[regexp {^[0-9a-f]{40}$} $id]} {
4891 lappend res [string range $id 0 7]
4902 for {set mask 1} {$mask <= $n} {incr mask $mask} {
4903 if {($n & $mask) != 0} {
4904 set ret [concat $ret $o]
4906 set o [concat $o $o]
4911 proc ordertoken {id} {
4912 global ordertok curview varcid varcstart varctok curview parents children
4913 global nullid nullid2
4915 if {[info exists ordertok($id)]} {
4916 return $ordertok($id)
4921 if {[info exists varcid($curview,$id)]} {
4922 set a $varcid($curview,$id)
4923 set p [lindex $varcstart($curview) $a]
4925 set p [lindex $children($curview,$id) 0]
4927 if {[info exists ordertok($p)]} {
4928 set tok $ordertok($p)
4931 set id [first_real_child $curview,$p]
4934 set tok [lindex $varctok($curview) $varcid($curview,$p)]
4937 if {[llength $parents($curview,$id)] == 1} {
4938 lappend todo [list $p {}]
4940 set j [lsearch -exact $parents($curview,$id) $p]
4942 puts "oops didn't find [shortids $p] in parents of [shortids $id]"
4944 lappend todo [list $p [strrep $j]]
4947 for {set i [llength $todo]} {[incr i -1] >= 0} {} {
4948 set p [lindex $todo $i 0]
4949 append tok [lindex $todo $i 1]
4950 set ordertok($p) $tok
4952 set ordertok($origid) $tok
4956 # Work out where id should go in idlist so that order-token
4957 # values increase from left to right
4958 proc idcol {idlist id {i 0}} {
4959 set t [ordertoken $id]
4963 if {$i >= [llength $idlist] || $t < [ordertoken [lindex $idlist $i]]} {
4964 if {$i > [llength $idlist]} {
4965 set i [llength $idlist]
4967 while {[incr i -1] >= 0 && $t < [ordertoken [lindex $idlist $i]]} {}
4970 if {$t > [ordertoken [lindex $idlist $i]]} {
4971 while {[incr i] < [llength $idlist] &&
4972 $t >= [ordertoken [lindex $idlist $i]]} {}
4978 proc initlayout {} {
4979 global rowidlist rowisopt rowfinal displayorder parentlist
4980 global numcommits canvxmax canv
4982 global colormap rowtextx
4991 set canvxmax [$canv cget -width]
4992 catch {unset colormap}
4993 catch {unset rowtextx}
4997 proc setcanvscroll {} {
4998 global canv canv2 canv3 numcommits linespc canvxmax canvy0
4999 global lastscrollset lastscrollrows
5001 set ymax [expr {$canvy0 + ($numcommits - 0.5) * $linespc + 2}]
5002 $canv conf -scrollregion [list 0 0 $canvxmax $ymax]
5003 $canv2 conf -scrollregion [list 0 0 0 $ymax]
5004 $canv3 conf -scrollregion [list 0 0 0 $ymax]
5005 set lastscrollset [clock clicks -milliseconds]
5006 set lastscrollrows $numcommits
5009 proc visiblerows {} {
5010 global canv numcommits linespc
5012 set ymax [lindex [$canv cget -scrollregion] 3]
5013 if {$ymax eq {} || $ymax == 0} return
5015 set y0 [expr {int([lindex $f 0] * $ymax)}]
5016 set r0 [expr {int(($y0 - 3) / $linespc) - 1}]
5020 set y1 [expr {int([lindex $f 1] * $ymax)}]
5021 set r1 [expr {int(($y1 - 3) / $linespc) + 1}]
5022 if {$r1 >= $numcommits} {
5023 set r1 [expr {$numcommits - 1}]
5025 return [list $r0 $r1]
5028 proc layoutmore {} {
5029 global commitidx viewcomplete curview
5030 global numcommits pending_select curview
5031 global lastscrollset lastscrollrows
5033 if {$lastscrollrows < 100 || $viewcomplete($curview) ||
5034 [clock clicks -milliseconds] - $lastscrollset > 500} {
5037 if {[info exists pending_select] &&
5038 [commitinview $pending_select $curview]} {
5040 selectline [rowofcommit $pending_select] 1
5045 # With path limiting, we mightn't get the actual HEAD commit,
5046 # so ask git rev-list what is the first ancestor of HEAD that
5047 # touches a file in the path limit.
5048 proc get_viewmainhead {view} {
5049 global viewmainheadid vfilelimit viewinstances mainheadid
5052 set rfd [open [concat | git rev-list -1 $mainheadid \
5053 -- $vfilelimit($view)] r]
5054 set j [reg_instance $rfd]
5055 lappend viewinstances($view) $j
5056 fconfigure $rfd -blocking 0
5057 filerun $rfd [list getviewhead $rfd $j $view]
5058 set viewmainheadid($curview) {}
5062 # git rev-list should give us just 1 line to use as viewmainheadid($view)
5063 proc getviewhead {fd inst view} {
5064 global viewmainheadid commfd curview viewinstances showlocalchanges
5067 if {[gets $fd line] < 0} {
5071 } elseif {[string length $line] == 40 && [string is xdigit $line]} {
5074 set viewmainheadid($view) $id
5077 set i [lsearch -exact $viewinstances($view) $inst]
5079 set viewinstances($view) [lreplace $viewinstances($view) $i $i]
5081 if {$showlocalchanges && $id ne {} && $view == $curview} {
5087 proc doshowlocalchanges {} {
5088 global curview viewmainheadid
5090 if {$viewmainheadid($curview) eq {}} return
5091 if {[commitinview $viewmainheadid($curview) $curview]} {
5094 interestedin $viewmainheadid($curview) dodiffindex
5098 proc dohidelocalchanges {} {
5099 global nullid nullid2 lserial curview
5101 if {[commitinview $nullid $curview]} {
5102 removefakerow $nullid
5104 if {[commitinview $nullid2 $curview]} {
5105 removefakerow $nullid2
5110 # spawn off a process to do git diff-index --cached HEAD
5111 proc dodiffindex {} {
5112 global lserial showlocalchanges vfilelimit curview
5115 if {!$showlocalchanges || !$hasworktree} return
5117 set cmd "|git diff-index --cached HEAD"
5118 if {$vfilelimit($curview) ne {}} {
5119 set cmd [concat $cmd -- $vfilelimit($curview)]
5121 set fd [open $cmd r]
5122 fconfigure $fd -blocking 0
5123 set i [reg_instance $fd]
5124 filerun $fd [list readdiffindex $fd $lserial $i]
5127 proc readdiffindex {fd serial inst} {
5128 global viewmainheadid nullid nullid2 curview commitinfo commitdata lserial
5132 if {[gets $fd line] < 0} {
5138 # we only need to see one line and we don't really care what it says...
5141 if {$serial != $lserial} {
5145 # now see if there are any local changes not checked in to the index
5146 set cmd "|git diff-files"
5147 if {$vfilelimit($curview) ne {}} {
5148 set cmd [concat $cmd -- $vfilelimit($curview)]
5150 set fd [open $cmd r]
5151 fconfigure $fd -blocking 0
5152 set i [reg_instance $fd]
5153 filerun $fd [list readdifffiles $fd $serial $i]
5155 if {$isdiff && ![commitinview $nullid2 $curview]} {
5156 # add the line for the changes in the index to the graph
5157 set hl [mc "Local changes checked in to index but not committed"]
5158 set commitinfo($nullid2) [list $hl {} {} {} {} " $hl\n"]
5159 set commitdata($nullid2) "\n $hl\n"
5160 if {[commitinview $nullid $curview]} {
5161 removefakerow $nullid
5163 insertfakerow $nullid2 $viewmainheadid($curview)
5164 } elseif {!$isdiff && [commitinview $nullid2 $curview]} {
5165 if {[commitinview $nullid $curview]} {
5166 removefakerow $nullid
5168 removefakerow $nullid2
5173 proc readdifffiles {fd serial inst} {
5174 global viewmainheadid nullid nullid2 curview
5175 global commitinfo commitdata lserial
5178 if {[gets $fd line] < 0} {
5184 # we only need to see one line and we don't really care what it says...
5187 if {$serial != $lserial} {
5191 if {$isdiff && ![commitinview $nullid $curview]} {
5192 # add the line for the local diff to the graph
5193 set hl [mc "Local uncommitted changes, not checked in to index"]
5194 set commitinfo($nullid) [list $hl {} {} {} {} " $hl\n"]
5195 set commitdata($nullid) "\n $hl\n"
5196 if {[commitinview $nullid2 $curview]} {
5199 set p $viewmainheadid($curview)
5201 insertfakerow $nullid $p
5202 } elseif {!$isdiff && [commitinview $nullid $curview]} {
5203 removefakerow $nullid
5208 proc nextuse {id row} {
5209 global curview children
5211 if {[info exists children($curview,$id)]} {
5212 foreach kid $children($curview,$id) {
5213 if {![commitinview $kid $curview]} {
5216 if {[rowofcommit $kid] > $row} {
5217 return [rowofcommit $kid]
5221 if {[commitinview $id $curview]} {
5222 return [rowofcommit $id]
5227 proc prevuse {id row} {
5228 global curview children
5231 if {[info exists children($curview,$id)]} {
5232 foreach kid $children($curview,$id) {
5233 if {![commitinview $kid $curview]} break
5234 if {[rowofcommit $kid] < $row} {
5235 set ret [rowofcommit $kid]
5242 proc make_idlist {row} {
5243 global displayorder parentlist uparrowlen downarrowlen mingaplen
5244 global commitidx curview children
5246 set r [expr {$row - $mingaplen - $downarrowlen - 1}]
5250 set ra [expr {$row - $downarrowlen}]
5254 set rb [expr {$row + $uparrowlen}]
5255 if {$rb > $commitidx($curview)} {
5256 set rb $commitidx($curview)
5258 make_disporder $r [expr {$rb + 1}]
5260 for {} {$r < $ra} {incr r} {
5261 set nextid [lindex $displayorder [expr {$r + 1}]]
5262 foreach p [lindex $parentlist $r] {
5263 if {$p eq $nextid} continue
5264 set rn [nextuse $p $r]
5266 $rn <= $r + $downarrowlen + $mingaplen + $uparrowlen} {
5267 lappend ids [list [ordertoken $p] $p]
5271 for {} {$r < $row} {incr r} {
5272 set nextid [lindex $displayorder [expr {$r + 1}]]
5273 foreach p [lindex $parentlist $r] {
5274 if {$p eq $nextid} continue
5275 set rn [nextuse $p $r]
5276 if {$rn < 0 || $rn >= $row} {
5277 lappend ids [list [ordertoken $p] $p]
5281 set id [lindex $displayorder $row]
5282 lappend ids [list [ordertoken $id] $id]
5284 foreach p [lindex $parentlist $r] {
5285 set firstkid [lindex $children($curview,$p) 0]
5286 if {[rowofcommit $firstkid] < $row} {
5287 lappend ids [list [ordertoken $p] $p]
5291 set id [lindex $displayorder $r]
5293 set firstkid [lindex $children($curview,$id) 0]
5294 if {$firstkid ne {} && [rowofcommit $firstkid] < $row} {
5295 lappend ids [list [ordertoken $id] $id]
5300 foreach idx [lsort -unique $ids] {
5301 lappend idlist [lindex $idx 1]
5306 proc rowsequal {a b} {
5307 while {[set i [lsearch -exact $a {}]] >= 0} {
5308 set a [lreplace $a $i $i]
5310 while {[set i [lsearch -exact $b {}]] >= 0} {
5311 set b [lreplace $b $i $i]
5313 return [expr {$a eq $b}]
5316 proc makeupline {id row rend col} {
5317 global rowidlist uparrowlen downarrowlen mingaplen
5319 for {set r $rend} {1} {set r $rstart} {
5320 set rstart [prevuse $id $r]
5321 if {$rstart < 0} return
5322 if {$rstart < $row} break
5324 if {$rstart + $uparrowlen + $mingaplen + $downarrowlen < $rend} {
5325 set rstart [expr {$rend - $uparrowlen - 1}]
5327 for {set r $rstart} {[incr r] <= $row} {} {
5328 set idlist [lindex $rowidlist $r]
5329 if {$idlist ne {} && [lsearch -exact $idlist $id] < 0} {
5330 set col [idcol $idlist $id $col]
5331 lset rowidlist $r [linsert $idlist $col $id]
5337 proc layoutrows {row endrow} {
5338 global rowidlist rowisopt rowfinal displayorder
5339 global uparrowlen downarrowlen maxwidth mingaplen
5340 global children parentlist
5341 global commitidx viewcomplete curview
5343 make_disporder [expr {$row - 1}] [expr {$endrow + $uparrowlen}]
5346 set rm1 [expr {$row - 1}]
5347 foreach id [lindex $rowidlist $rm1] {
5352 set final [lindex $rowfinal $rm1]
5354 for {} {$row < $endrow} {incr row} {
5355 set rm1 [expr {$row - 1}]
5356 if {$rm1 < 0 || $idlist eq {}} {
5357 set idlist [make_idlist $row]
5360 set id [lindex $displayorder $rm1]
5361 set col [lsearch -exact $idlist $id]
5362 set idlist [lreplace $idlist $col $col]
5363 foreach p [lindex $parentlist $rm1] {
5364 if {[lsearch -exact $idlist $p] < 0} {
5365 set col [idcol $idlist $p $col]
5366 set idlist [linsert $idlist $col $p]
5367 # if not the first child, we have to insert a line going up
5368 if {$id ne [lindex $children($curview,$p) 0]} {
5369 makeupline $p $rm1 $row $col
5373 set id [lindex $displayorder $row]
5374 if {$row > $downarrowlen} {
5375 set termrow [expr {$row - $downarrowlen - 1}]
5376 foreach p [lindex $parentlist $termrow] {
5377 set i [lsearch -exact $idlist $p]
5378 if {$i < 0} continue
5379 set nr [nextuse $p $termrow]
5380 if {$nr < 0 || $nr >= $row + $mingaplen + $uparrowlen} {
5381 set idlist [lreplace $idlist $i $i]
5385 set col [lsearch -exact $idlist $id]
5387 set col [idcol $idlist $id]
5388 set idlist [linsert $idlist $col $id]
5389 if {$children($curview,$id) ne {}} {
5390 makeupline $id $rm1 $row $col
5393 set r [expr {$row + $uparrowlen - 1}]
5394 if {$r < $commitidx($curview)} {
5396 foreach p [lindex $parentlist $r] {
5397 if {[lsearch -exact $idlist $p] >= 0} continue
5398 set fk [lindex $children($curview,$p) 0]
5399 if {[rowofcommit $fk] < $row} {
5400 set x [idcol $idlist $p $x]
5401 set idlist [linsert $idlist $x $p]
5404 if {[incr r] < $commitidx($curview)} {
5405 set p [lindex $displayorder $r]
5406 if {[lsearch -exact $idlist $p] < 0} {
5407 set fk [lindex $children($curview,$p) 0]
5408 if {$fk ne {} && [rowofcommit $fk] < $row} {
5409 set x [idcol $idlist $p $x]
5410 set idlist [linsert $idlist $x $p]
5416 if {$final && !$viewcomplete($curview) &&
5417 $row + $uparrowlen + $mingaplen + $downarrowlen
5418 >= $commitidx($curview)} {
5421 set l [llength $rowidlist]
5423 lappend rowidlist $idlist
5425 lappend rowfinal $final
5426 } elseif {$row < $l} {
5427 if {![rowsequal $idlist [lindex $rowidlist $row]]} {
5428 lset rowidlist $row $idlist
5431 lset rowfinal $row $final
5433 set pad [ntimes [expr {$row - $l}] {}]
5434 set rowidlist [concat $rowidlist $pad]
5435 lappend rowidlist $idlist
5436 set rowfinal [concat $rowfinal $pad]
5437 lappend rowfinal $final
5438 set rowisopt [concat $rowisopt [ntimes [expr {$row - $l + 1}] 0]]
5444 proc changedrow {row} {
5445 global displayorder iddrawn rowisopt need_redisplay
5447 set l [llength $rowisopt]
5449 lset rowisopt $row 0
5450 if {$row + 1 < $l} {
5451 lset rowisopt [expr {$row + 1}] 0
5452 if {$row + 2 < $l} {
5453 lset rowisopt [expr {$row + 2}] 0
5457 set id [lindex $displayorder $row]
5458 if {[info exists iddrawn($id)]} {
5459 set need_redisplay 1
5463 proc insert_pad {row col npad} {
5466 set pad [ntimes $npad {}]
5467 set idlist [lindex $rowidlist $row]
5468 set bef [lrange $idlist 0 [expr {$col - 1}]]
5469 set aft [lrange $idlist $col end]
5470 set i [lsearch -exact $aft {}]
5472 set aft [lreplace $aft $i $i]
5474 lset rowidlist $row [concat $bef $pad $aft]
5478 proc optimize_rows {row col endrow} {
5479 global rowidlist rowisopt displayorder curview children
5484 for {} {$row < $endrow} {incr row; set col 0} {
5485 if {[lindex $rowisopt $row]} continue
5487 set y0 [expr {$row - 1}]
5488 set ym [expr {$row - 2}]
5489 set idlist [lindex $rowidlist $row]
5490 set previdlist [lindex $rowidlist $y0]
5491 if {$idlist eq {} || $previdlist eq {}} continue
5493 set pprevidlist [lindex $rowidlist $ym]
5494 if {$pprevidlist eq {}} continue
5500 for {} {$col < [llength $idlist]} {incr col} {
5501 set id [lindex $idlist $col]
5502 if {[lindex $previdlist $col] eq $id} continue
5507 set x0 [lsearch -exact $previdlist $id]
5508 if {$x0 < 0} continue
5509 set z [expr {$x0 - $col}]
5513 set xm [lsearch -exact $pprevidlist $id]
5515 set z0 [expr {$xm - $x0}]
5519 # if row y0 is the first child of $id then it's not an arrow
5520 if {[lindex $children($curview,$id) 0] ne
5521 [lindex $displayorder $y0]} {
5525 if {!$isarrow && $id ne [lindex $displayorder $row] &&
5526 [lsearch -exact [lindex $rowidlist [expr {$row+1}]] $id] < 0} {
5529 # Looking at lines from this row to the previous row,
5530 # make them go straight up if they end in an arrow on
5531 # the previous row; otherwise make them go straight up
5533 if {$z < -1 || ($z < 0 && $isarrow)} {
5534 # Line currently goes left too much;
5535 # insert pads in the previous row, then optimize it
5536 set npad [expr {-1 - $z + $isarrow}]
5537 insert_pad $y0 $x0 $npad
5539 optimize_rows $y0 $x0 $row
5541 set previdlist [lindex $rowidlist $y0]
5542 set x0 [lsearch -exact $previdlist $id]
5543 set z [expr {$x0 - $col}]
5545 set pprevidlist [lindex $rowidlist $ym]
5546 set xm [lsearch -exact $pprevidlist $id]
5547 set z0 [expr {$xm - $x0}]
5549 } elseif {$z > 1 || ($z > 0 && $isarrow)} {
5550 # Line currently goes right too much;
5551 # insert pads in this line
5552 set npad [expr {$z - 1 + $isarrow}]
5553 insert_pad $row $col $npad
5554 set idlist [lindex $rowidlist $row]
5556 set z [expr {$x0 - $col}]
5559 if {$z0 eq {} && !$isarrow && $ym >= 0} {
5560 # this line links to its first child on row $row-2
5561 set id [lindex $displayorder $ym]
5562 set xc [lsearch -exact $pprevidlist $id]
5564 set z0 [expr {$xc - $x0}]
5567 # avoid lines jigging left then immediately right
5568 if {$z0 ne {} && $z < 0 && $z0 > 0} {
5569 insert_pad $y0 $x0 1
5571 optimize_rows $y0 $x0 $row
5572 set previdlist [lindex $rowidlist $y0]
5576 # Find the first column that doesn't have a line going right
5577 for {set col [llength $idlist]} {[incr col -1] >= 0} {} {
5578 set id [lindex $idlist $col]
5579 if {$id eq {}} break
5580 set x0 [lsearch -exact $previdlist $id]
5582 # check if this is the link to the first child
5583 set kid [lindex $displayorder $y0]
5584 if {[lindex $children($curview,$id) 0] eq $kid} {
5585 # it is, work out offset to child
5586 set x0 [lsearch -exact $previdlist $kid]
5589 if {$x0 <= $col} break
5591 # Insert a pad at that column as long as it has a line and
5592 # isn't the last column
5593 if {$x0 >= 0 && [incr col] < [llength $idlist]} {
5594 set idlist [linsert $idlist $col {}]
5595 lset rowidlist $row $idlist
5603 global canvx0 linespc
5604 return [expr {$canvx0 + $col * $linespc}]
5608 global canvy0 linespc
5609 return [expr {$canvy0 + $row * $linespc}]
5612 proc linewidth {id} {
5613 global thickerline lthickness
5616 if {[info exists thickerline] && $id eq $thickerline} {
5617 set wid [expr {2 * $lthickness}]
5622 proc rowranges {id} {
5623 global curview children uparrowlen downarrowlen
5626 set kids $children($curview,$id)
5632 foreach child $kids {
5633 if {![commitinview $child $curview]} break
5634 set row [rowofcommit $child]
5635 if {![info exists prev]} {
5636 lappend ret [expr {$row + 1}]
5638 if {$row <= $prevrow} {
5639 puts "oops children of [shortids $id] out of order [shortids $child] $row <= [shortids $prev] $prevrow"
5641 # see if the line extends the whole way from prevrow to row
5642 if {$row > $prevrow + $uparrowlen + $downarrowlen &&
5643 [lsearch -exact [lindex $rowidlist \
5644 [expr {int(($row + $prevrow) / 2)}]] $id] < 0} {
5645 # it doesn't, see where it ends
5646 set r [expr {$prevrow + $downarrowlen}]
5647 if {[lsearch -exact [lindex $rowidlist $r] $id] < 0} {
5648 while {[incr r -1] > $prevrow &&
5649 [lsearch -exact [lindex $rowidlist $r] $id] < 0} {}
5651 while {[incr r] <= $row &&
5652 [lsearch -exact [lindex $rowidlist $r] $id] >= 0} {}
5656 # see where it starts up again
5657 set r [expr {$row - $uparrowlen}]
5658 if {[lsearch -exact [lindex $rowidlist $r] $id] < 0} {
5659 while {[incr r] < $row &&
5660 [lsearch -exact [lindex $rowidlist $r] $id] < 0} {}
5662 while {[incr r -1] >= $prevrow &&
5663 [lsearch -exact [lindex $rowidlist $r] $id] >= 0} {}
5669 if {$child eq $id} {
5678 proc drawlineseg {id row endrow arrowlow} {
5679 global rowidlist displayorder iddrawn linesegs
5680 global canv colormap linespc curview maxlinelen parentlist
5682 set cols [list [lsearch -exact [lindex $rowidlist $row] $id]]
5683 set le [expr {$row + 1}]
5686 set c [lsearch -exact [lindex $rowidlist $le] $id]
5692 set x [lindex $displayorder $le]
5697 if {[info exists iddrawn($x)] || $le == $endrow} {
5698 set c [lsearch -exact [lindex $rowidlist [expr {$le+1}]] $id]
5714 if {[info exists linesegs($id)]} {
5715 set lines $linesegs($id)
5717 set r0 [lindex $li 0]
5719 if {$r0 == $le && [lindex $li 1] - $row <= $maxlinelen} {
5729 set li [lindex $lines [expr {$i-1}]]
5730 set r1 [lindex $li 1]
5731 if {$r1 == $row && $le - [lindex $li 0] <= $maxlinelen} {
5736 set x [lindex $cols [expr {$le - $row}]]
5737 set xp [lindex $cols [expr {$le - 1 - $row}]]
5738 set dir [expr {$xp - $x}]
5740 set ith [lindex $lines $i 2]
5741 set coords [$canv coords $ith]
5742 set ah [$canv itemcget $ith -arrow]
5743 set arrowhigh [expr {$ah eq "first" || $ah eq "both"}]
5744 set x2 [lindex $cols [expr {$le + 1 - $row}]]
5745 if {$x2 ne {} && $x - $x2 == $dir} {
5746 set coords [lrange $coords 0 end-2]
5749 set coords [list [xc $le $x] [yc $le]]
5752 set itl [lindex $lines [expr {$i-1}] 2]
5753 set al [$canv itemcget $itl -arrow]
5754 set arrowlow [expr {$al eq "last" || $al eq "both"}]
5755 } elseif {$arrowlow} {
5756 if {[lsearch -exact [lindex $rowidlist [expr {$row-1}]] $id] >= 0 ||
5757 [lsearch -exact [lindex $parentlist [expr {$row-1}]] $id] >= 0} {
5761 set arrow [lindex {none first last both} [expr {$arrowhigh + 2*$arrowlow}]]
5762 for {set y $le} {[incr y -1] > $row} {} {
5764 set xp [lindex $cols [expr {$y - 1 - $row}]]
5765 set ndir [expr {$xp - $x}]
5766 if {$dir != $ndir || $xp < 0} {
5767 lappend coords [xc $y $x] [yc $y]
5773 # join parent line to first child
5774 set ch [lindex $displayorder $row]
5775 set xc [lsearch -exact [lindex $rowidlist $row] $ch]
5777 puts "oops: drawlineseg: child $ch not on row $row"
5778 } elseif {$xc != $x} {
5779 if {($arrowhigh && $le == $row + 1) || $dir == 0} {
5780 set d [expr {int(0.5 * $linespc)}]
5783 set x2 [expr {$x1 - $d}]
5785 set x2 [expr {$x1 + $d}]
5788 set y1 [expr {$y2 + $d}]
5789 lappend coords $x1 $y1 $x2 $y2
5790 } elseif {$xc < $x - 1} {
5791 lappend coords [xc $row [expr {$x-1}]] [yc $row]
5792 } elseif {$xc > $x + 1} {
5793 lappend coords [xc $row [expr {$x+1}]] [yc $row]
5797 lappend coords [xc $row $x] [yc $row]
5799 set xn [xc $row $xp]
5801 lappend coords $xn $yn
5805 set t [$canv create line $coords -width [linewidth $id] \
5806 -fill $colormap($id) -tags lines.$id -arrow $arrow]
5809 set lines [linsert $lines $i [list $row $le $t]]
5811 $canv coords $ith $coords
5812 if {$arrow ne $ah} {
5813 $canv itemconf $ith -arrow $arrow
5815 lset lines $i 0 $row
5818 set xo [lsearch -exact [lindex $rowidlist [expr {$row - 1}]] $id]
5819 set ndir [expr {$xo - $xp}]
5820 set clow [$canv coords $itl]
5821 if {$dir == $ndir} {
5822 set clow [lrange $clow 2 end]
5824 set coords [concat $coords $clow]
5826 lset lines [expr {$i-1}] 1 $le
5828 # coalesce two pieces
5830 set b [lindex $lines [expr {$i-1}] 0]
5831 set e [lindex $lines $i 1]
5832 set lines [lreplace $lines [expr {$i-1}] $i [list $b $e $itl]]
5834 $canv coords $itl $coords
5835 if {$arrow ne $al} {
5836 $canv itemconf $itl -arrow $arrow
5840 set linesegs($id) $lines
5844 proc drawparentlinks {id row} {
5845 global rowidlist canv colormap curview parentlist
5846 global idpos linespc
5848 set rowids [lindex $rowidlist $row]
5849 set col [lsearch -exact $rowids $id]
5850 if {$col < 0} return
5851 set olds [lindex $parentlist $row]
5852 set row2 [expr {$row + 1}]
5853 set x [xc $row $col]
5856 set d [expr {int(0.5 * $linespc)}]
5857 set ymid [expr {$y + $d}]
5858 set ids [lindex $rowidlist $row2]
5859 # rmx = right-most X coord used
5862 set i [lsearch -exact $ids $p]
5864 puts "oops, parent $p of $id not in list"
5867 set x2 [xc $row2 $i]
5871 set j [lsearch -exact $rowids $p]
5873 # drawlineseg will do this one for us
5877 # should handle duplicated parents here...
5878 set coords [list $x $y]
5880 # if attaching to a vertical segment, draw a smaller
5881 # slant for visual distinctness
5884 lappend coords [expr {$x2 + $d}] $y $x2 $ymid
5886 lappend coords [expr {$x2 - $d}] $y $x2 $ymid
5888 } elseif {$i < $col && $i < $j} {
5889 # segment slants towards us already
5890 lappend coords [xc $row $j] $y
5892 if {$i < $col - 1} {
5893 lappend coords [expr {$x2 + $linespc}] $y
5894 } elseif {$i > $col + 1} {
5895 lappend coords [expr {$x2 - $linespc}] $y
5897 lappend coords $x2 $y2
5900 lappend coords $x2 $y2
5902 set t [$canv create line $coords -width [linewidth $p] \
5903 -fill $colormap($p) -tags lines.$p]
5907 if {$rmx > [lindex $idpos($id) 1]} {
5908 lset idpos($id) 1 $rmx
5913 proc drawlines {id} {
5916 $canv itemconf lines.$id -width [linewidth $id]
5919 proc drawcmittext {id row col} {
5920 global linespc canv canv2 canv3 fgcolor curview
5921 global cmitlisted commitinfo rowidlist parentlist
5922 global rowtextx idpos idtags idheads idotherrefs
5923 global linehtag linentag linedtag selectedline
5924 global canvxmax boldids boldnameids fgcolor markedid
5925 global mainheadid nullid nullid2 circleitem circlecolors ctxbut
5927 # listed is 0 for boundary, 1 for normal, 2 for negative, 3 for left, 4 for right
5928 set listed $cmitlisted($curview,$id)
5929 if {$id eq $nullid} {
5931 } elseif {$id eq $nullid2} {
5933 } elseif {$id eq $mainheadid} {
5936 set ofill [lindex $circlecolors $listed]
5938 set x [xc $row $col]
5940 set orad [expr {$linespc / 3}]
5942 set t [$canv create oval [expr {$x - $orad}] [expr {$y - $orad}] \
5943 [expr {$x + $orad - 1}] [expr {$y + $orad - 1}] \
5944 -fill $ofill -outline $fgcolor -width 1 -tags circle]
5945 } elseif {$listed == 3} {
5946 # triangle pointing left for left-side commits
5947 set t [$canv create polygon \
5948 [expr {$x - $orad}] $y \
5949 [expr {$x + $orad - 1}] [expr {$y - $orad}] \
5950 [expr {$x + $orad - 1}] [expr {$y + $orad - 1}] \
5951 -fill $ofill -outline $fgcolor -width 1 -tags circle]
5953 # triangle pointing right for right-side commits
5954 set t [$canv create polygon \
5955 [expr {$x + $orad - 1}] $y \
5956 [expr {$x - $orad}] [expr {$y - $orad}] \
5957 [expr {$x - $orad}] [expr {$y + $orad - 1}] \
5958 -fill $ofill -outline $fgcolor -width 1 -tags circle]
5960 set circleitem($row) $t
5962 $canv bind $t <1> {selcanvline {} %x %y}
5963 set rmx [llength [lindex $rowidlist $row]]
5964 set olds [lindex $parentlist $row]
5966 set nextids [lindex $rowidlist [expr {$row + 1}]]
5968 set i [lsearch -exact $nextids $p]
5974 set xt [xc $row $rmx]
5975 set rowtextx($row) $xt
5976 set idpos($id) [list $x $xt $y]
5977 if {[info exists idtags($id)] || [info exists idheads($id)]
5978 || [info exists idotherrefs($id)]} {
5979 set xt [drawtags $id $x $xt $y]
5981 if {[lindex $commitinfo($id) 6] > 0} {
5982 set xt [drawnotesign $xt $y]
5984 set headline [lindex $commitinfo($id) 0]
5985 set name [lindex $commitinfo($id) 1]
5986 set date [lindex $commitinfo($id) 2]
5987 set date [formatdate $date]
5990 set isbold [ishighlighted $id]
5993 set font mainfontbold
5995 lappend boldnameids $id
5996 set nfont mainfontbold
5999 set linehtag($id) [$canv create text $xt $y -anchor w -fill $fgcolor \
6000 -text $headline -font $font -tags text]
6001 $canv bind $linehtag($id) $ctxbut "rowmenu %X %Y $id"
6002 set linentag($id) [$canv2 create text 3 $y -anchor w -fill $fgcolor \
6003 -text $name -font $nfont -tags text]
6004 set linedtag($id) [$canv3 create text 3 $y -anchor w -fill $fgcolor \
6005 -text $date -font mainfont -tags text]
6006 if {$selectedline == $row} {
6009 if {[info exists markedid] && $markedid eq $id} {
6012 set xr [expr {$xt + [font measure $font $headline]}]
6013 if {$xr > $canvxmax} {
6019 proc drawcmitrow {row} {
6020 global displayorder rowidlist nrows_drawn
6021 global iddrawn markingmatches
6022 global commitinfo numcommits
6023 global filehighlight fhighlights findpattern nhighlights
6024 global hlview vhighlights
6025 global highlight_related rhighlights
6027 if {$row >= $numcommits} return
6029 set id [lindex $displayorder $row]
6030 if {[info exists hlview] && ![info exists vhighlights($id)]} {
6031 askvhighlight $row $id
6033 if {[info exists filehighlight] && ![info exists fhighlights($id)]} {
6034 askfilehighlight $row $id
6036 if {$findpattern ne {} && ![info exists nhighlights($id)]} {
6037 askfindhighlight $row $id
6039 if {$highlight_related ne [mc "None"] && ![info exists rhighlights($id)]} {
6040 askrelhighlight $row $id
6042 if {![info exists iddrawn($id)]} {
6043 set col [lsearch -exact [lindex $rowidlist $row] $id]
6045 puts "oops, row $row id $id not in list"
6048 if {![info exists commitinfo($id)]} {
6052 drawcmittext $id $row $col
6056 if {$markingmatches} {
6057 markrowmatches $row $id
6061 proc drawcommits {row {endrow {}}} {
6062 global numcommits iddrawn displayorder curview need_redisplay
6063 global parentlist rowidlist rowfinal uparrowlen downarrowlen nrows_drawn
6068 if {$endrow eq {}} {
6071 if {$endrow >= $numcommits} {
6072 set endrow [expr {$numcommits - 1}]
6075 set rl1 [expr {$row - $downarrowlen - 3}]
6079 set ro1 [expr {$row - 3}]
6083 set r2 [expr {$endrow + $uparrowlen + 3}]
6084 if {$r2 > $numcommits} {
6087 for {set r $rl1} {$r < $r2} {incr r} {
6088 if {[lindex $rowidlist $r] ne {} && [lindex $rowfinal $r]} {
6092 set rl1 [expr {$r + 1}]
6098 optimize_rows $ro1 0 $r2
6099 if {$need_redisplay || $nrows_drawn > 2000} {
6103 # make the lines join to already-drawn rows either side
6104 set r [expr {$row - 1}]
6105 if {$r < 0 || ![info exists iddrawn([lindex $displayorder $r])]} {
6108 set er [expr {$endrow + 1}]
6109 if {$er >= $numcommits ||
6110 ![info exists iddrawn([lindex $displayorder $er])]} {
6113 for {} {$r <= $er} {incr r} {
6114 set id [lindex $displayorder $r]
6115 set wasdrawn [info exists iddrawn($id)]
6117 if {$r == $er} break
6118 set nextid [lindex $displayorder [expr {$r + 1}]]
6119 if {$wasdrawn && [info exists iddrawn($nextid)]} continue
6120 drawparentlinks $id $r
6122 set rowids [lindex $rowidlist $r]
6123 foreach lid $rowids {
6124 if {$lid eq {}} continue
6125 if {[info exists lineend($lid)] && $lineend($lid) > $r} continue
6127 # see if this is the first child of any of its parents
6128 foreach p [lindex $parentlist $r] {
6129 if {[lsearch -exact $rowids $p] < 0} {
6130 # make this line extend up to the child
6131 set lineend($p) [drawlineseg $p $r $er 0]
6135 set lineend($lid) [drawlineseg $lid $r $er 1]
6141 proc undolayout {row} {
6142 global uparrowlen mingaplen downarrowlen
6143 global rowidlist rowisopt rowfinal need_redisplay
6145 set r [expr {$row - ($uparrowlen + $mingaplen + $downarrowlen)}]
6149 if {[llength $rowidlist] > $r} {
6151 set rowidlist [lrange $rowidlist 0 $r]
6152 set rowfinal [lrange $rowfinal 0 $r]
6153 set rowisopt [lrange $rowisopt 0 $r]
6154 set need_redisplay 1
6159 proc drawvisible {} {
6160 global canv linespc curview vrowmod selectedline targetrow targetid
6161 global need_redisplay cscroll numcommits
6163 set fs [$canv yview]
6164 set ymax [lindex [$canv cget -scrollregion] 3]
6165 if {$ymax eq {} || $ymax == 0 || $numcommits == 0} return
6166 set f0 [lindex $fs 0]
6167 set f1 [lindex $fs 1]
6168 set y0 [expr {int($f0 * $ymax)}]
6169 set y1 [expr {int($f1 * $ymax)}]
6171 if {[info exists targetid]} {
6172 if {[commitinview $targetid $curview]} {
6173 set r [rowofcommit $targetid]
6174 if {$r != $targetrow} {
6175 # Fix up the scrollregion and change the scrolling position
6176 # now that our target row has moved.
6177 set diff [expr {($r - $targetrow) * $linespc}]
6180 set ymax [lindex [$canv cget -scrollregion] 3]
6183 set f0 [expr {$y0 / $ymax}]
6184 set f1 [expr {$y1 / $ymax}]
6185 allcanvs yview moveto $f0
6186 $cscroll set $f0 $f1
6187 set need_redisplay 1
6194 set row [expr {int(($y0 - 3) / $linespc) - 1}]
6195 set endrow [expr {int(($y1 - 3) / $linespc) + 1}]
6196 if {$endrow >= $vrowmod($curview)} {
6197 update_arcrows $curview
6199 if {$selectedline ne {} &&
6200 $row <= $selectedline && $selectedline <= $endrow} {
6201 set targetrow $selectedline
6202 } elseif {[info exists targetid]} {
6203 set targetrow [expr {int(($row + $endrow) / 2)}]
6205 if {[info exists targetrow]} {
6206 if {$targetrow >= $numcommits} {
6207 set targetrow [expr {$numcommits - 1}]
6209 set targetid [commitonrow $targetrow]
6211 drawcommits $row $endrow
6214 proc clear_display {} {
6215 global iddrawn linesegs need_redisplay nrows_drawn
6216 global vhighlights fhighlights nhighlights rhighlights
6217 global linehtag linentag linedtag boldids boldnameids
6220 catch {unset iddrawn}
6221 catch {unset linesegs}
6222 catch {unset linehtag}
6223 catch {unset linentag}
6224 catch {unset linedtag}
6227 catch {unset vhighlights}
6228 catch {unset fhighlights}
6229 catch {unset nhighlights}
6230 catch {unset rhighlights}
6231 set need_redisplay 0
6235 proc findcrossings {id} {
6236 global rowidlist parentlist numcommits displayorder
6240 foreach {s e} [rowranges $id] {
6241 if {$e >= $numcommits} {
6242 set e [expr {$numcommits - 1}]
6244 if {$e <= $s} continue
6245 for {set row $e} {[incr row -1] >= $s} {} {
6246 set x [lsearch -exact [lindex $rowidlist $row] $id]
6248 set olds [lindex $parentlist $row]
6249 set kid [lindex $displayorder $row]
6250 set kidx [lsearch -exact [lindex $rowidlist $row] $kid]
6251 if {$kidx < 0} continue
6252 set nextrow [lindex $rowidlist [expr {$row + 1}]]
6254 set px [lsearch -exact $nextrow $p]
6255 if {$px < 0} continue
6256 if {($kidx < $x && $x < $px) || ($px < $x && $x < $kidx)} {
6257 if {[lsearch -exact $ccross $p] >= 0} continue
6258 if {$x == $px + ($kidx < $px? -1: 1)} {
6260 } elseif {[lsearch -exact $cross $p] < 0} {
6267 return [concat $ccross {{}} $cross]
6270 proc assigncolor {id} {
6271 global colormap colors nextcolor
6272 global parents children children curview
6274 if {[info exists colormap($id)]} return
6275 set ncolors [llength $colors]
6276 if {[info exists children($curview,$id)]} {
6277 set kids $children($curview,$id)
6281 if {[llength $kids] == 1} {
6282 set child [lindex $kids 0]
6283 if {[info exists colormap($child)]
6284 && [llength $parents($curview,$child)] == 1} {
6285 set colormap($id) $colormap($child)
6291 foreach x [findcrossings $id] {
6293 # delimiter between corner crossings and other crossings
6294 if {[llength $badcolors] >= $ncolors - 1} break
6295 set origbad $badcolors
6297 if {[info exists colormap($x)]
6298 && [lsearch -exact $badcolors $colormap($x)] < 0} {
6299 lappend badcolors $colormap($x)
6302 if {[llength $badcolors] >= $ncolors} {
6303 set badcolors $origbad
6305 set origbad $badcolors
6306 if {[llength $badcolors] < $ncolors - 1} {
6307 foreach child $kids {
6308 if {[info exists colormap($child)]
6309 && [lsearch -exact $badcolors $colormap($child)] < 0} {
6310 lappend badcolors $colormap($child)
6312 foreach p $parents($curview,$child) {
6313 if {[info exists colormap($p)]
6314 && [lsearch -exact $badcolors $colormap($p)] < 0} {
6315 lappend badcolors $colormap($p)
6319 if {[llength $badcolors] >= $ncolors} {
6320 set badcolors $origbad
6323 for {set i 0} {$i <= $ncolors} {incr i} {
6324 set c [lindex $colors $nextcolor]
6325 if {[incr nextcolor] >= $ncolors} {
6328 if {[lsearch -exact $badcolors $c]} break
6330 set colormap($id) $c
6333 proc bindline {t id} {
6336 $canv bind $t <Enter> "lineenter %x %y $id"
6337 $canv bind $t <Motion> "linemotion %x %y $id"
6338 $canv bind $t <Leave> "lineleave $id"
6339 $canv bind $t <Button-1> "lineclick %x %y $id 1"
6342 proc drawtags {id x xt y1} {
6343 global idtags idheads idotherrefs mainhead
6344 global linespc lthickness
6345 global canv rowtextx curview fgcolor bgcolor ctxbut
6350 if {[info exists idtags($id)]} {
6351 set marks $idtags($id)
6352 set ntags [llength $marks]
6354 if {[info exists idheads($id)]} {
6355 set marks [concat $marks $idheads($id)]
6356 set nheads [llength $idheads($id)]
6358 if {[info exists idotherrefs($id)]} {
6359 set marks [concat $marks $idotherrefs($id)]
6365 set delta [expr {int(0.5 * ($linespc - $lthickness))}]
6366 set yt [expr {$y1 - 0.5 * $linespc}]
6367 set yb [expr {$yt + $linespc - 1}]
6371 foreach tag $marks {
6373 if {$i >= $ntags && $i < $ntags + $nheads && $tag eq $mainhead} {
6374 set wid [font measure mainfontbold $tag]
6376 set wid [font measure mainfont $tag]
6380 set xt [expr {$xt + $delta + $wid + $lthickness + $linespc}]
6382 set t [$canv create line $x $y1 [lindex $xvals end] $y1 \
6383 -width $lthickness -fill black -tags tag.$id]
6385 foreach tag $marks x $xvals wid $wvals {
6386 set tag_quoted [string map {% %%} $tag]
6387 set xl [expr {$x + $delta}]
6388 set xr [expr {$x + $delta + $wid + $lthickness}]
6390 if {[incr ntags -1] >= 0} {
6392 set t [$canv create polygon $x [expr {$yt + $delta}] $xl $yt \
6393 $xr $yt $xr $yb $xl $yb $x [expr {$yb - $delta}] \
6394 -width 1 -outline black -fill yellow -tags tag.$id]
6395 $canv bind $t <1> [list showtag $tag_quoted 1]
6396 set rowtextx([rowofcommit $id]) [expr {$xr + $linespc}]
6398 # draw a head or other ref
6399 if {[incr nheads -1] >= 0} {
6401 if {$tag eq $mainhead} {
6402 set font mainfontbold
6407 set xl [expr {$xl - $delta/2}]
6408 $canv create polygon $x $yt $xr $yt $xr $yb $x $yb \
6409 -width 1 -outline black -fill $col -tags tag.$id
6410 if {[regexp {^(remotes/.*/|remotes/)} $tag match remoteprefix]} {
6411 set rwid [font measure mainfont $remoteprefix]
6412 set xi [expr {$x + 1}]
6413 set yti [expr {$yt + 1}]
6414 set xri [expr {$x + $rwid}]
6415 $canv create polygon $xi $yti $xri $yti $xri $yb $xi $yb \
6416 -width 0 -fill "#ffddaa" -tags tag.$id
6419 set t [$canv create text $xl $y1 -anchor w -text $tag -fill $fgcolor \
6420 -font $font -tags [list tag.$id text]]
6422 $canv bind $t <1> [list showtag $tag_quoted 1]
6423 } elseif {$nheads >= 0} {
6424 $canv bind $t $ctxbut [list headmenu %X %Y $id $tag_quoted]
6430 proc drawnotesign {xt y} {
6431 global linespc canv fgcolor
6433 set orad [expr {$linespc / 3}]
6434 set t [$canv create rectangle [expr {$xt - $orad}] [expr {$y - $orad}] \
6435 [expr {$xt + $orad - 1}] [expr {$y + $orad - 1}] \
6436 -fill yellow -outline $fgcolor -width 1 -tags circle]
6437 set xt [expr {$xt + $orad * 3}]
6441 proc xcoord {i level ln} {
6442 global canvx0 xspc1 xspc2
6444 set x [expr {$canvx0 + $i * $xspc1($ln)}]
6445 if {$i > 0 && $i == $level} {
6446 set x [expr {$x + 0.5 * ($xspc2 - $xspc1($ln))}]
6447 } elseif {$i > $level} {
6448 set x [expr {$x + $xspc2 - $xspc1($ln)}]
6453 proc show_status {msg} {
6457 $canv create text 3 3 -anchor nw -text $msg -font mainfont \
6458 -tags text -fill $fgcolor
6461 # Don't change the text pane cursor if it is currently the hand cursor,
6462 # showing that we are over a sha1 ID link.
6463 proc settextcursor {c} {
6464 global ctext curtextcursor
6466 if {[$ctext cget -cursor] == $curtextcursor} {
6467 $ctext config -cursor $c
6469 set curtextcursor $c
6472 proc nowbusy {what {name {}}} {
6473 global isbusy busyname statusw
6475 if {[array names isbusy] eq {}} {
6476 . config -cursor watch
6480 set busyname($what) $name
6482 $statusw conf -text $name
6486 proc notbusy {what} {
6487 global isbusy maincursor textcursor busyname statusw
6491 if {$busyname($what) ne {} &&
6492 [$statusw cget -text] eq $busyname($what)} {
6493 $statusw conf -text {}
6496 if {[array names isbusy] eq {}} {
6497 . config -cursor $maincursor
6498 settextcursor $textcursor
6502 proc findmatches {f} {
6503 global findtype findstring
6504 if {$findtype == [mc "Regexp"]} {
6505 set matches [regexp -indices -all -inline $findstring $f]
6508 if {$findtype == [mc "IgnCase"]} {
6509 set f [string tolower $f]
6510 set fs [string tolower $fs]
6514 set l [string length $fs]
6515 while {[set j [string first $fs $f $i]] >= 0} {
6516 lappend matches [list $j [expr {$j+$l-1}]]
6517 set i [expr {$j + $l}]
6523 proc dofind {{dirn 1} {wrap 1}} {
6524 global findstring findstartline findcurline selectedline numcommits
6525 global gdttype filehighlight fh_serial find_dirn findallowwrap
6527 if {[info exists find_dirn]} {
6528 if {$find_dirn == $dirn} return
6532 if {$findstring eq {} || $numcommits == 0} return
6533 if {$selectedline eq {}} {
6534 set findstartline [lindex [visiblerows] [expr {$dirn < 0}]]
6536 set findstartline $selectedline
6538 set findcurline $findstartline
6539 nowbusy finding [mc "Searching"]
6540 if {$gdttype ne [mc "containing:"] && ![info exists filehighlight]} {
6541 after cancel do_file_hl $fh_serial
6542 do_file_hl $fh_serial
6545 set findallowwrap $wrap
6549 proc stopfinding {} {
6550 global find_dirn findcurline fprogcoord
6552 if {[info exists find_dirn]} {
6563 global commitdata commitinfo numcommits findpattern findloc
6564 global findstartline findcurline findallowwrap
6565 global find_dirn gdttype fhighlights fprogcoord
6566 global curview varcorder vrownum varccommits vrowmod
6568 if {![info exists find_dirn]} {
6571 set fldtypes [list [mc "Headline"] [mc "Author"] "" [mc "Committer"] "" [mc "Comments"]]
6574 if {$find_dirn > 0} {
6576 if {$l >= $numcommits} {
6579 if {$l <= $findstartline} {
6580 set lim [expr {$findstartline + 1}]
6583 set moretodo $findallowwrap
6590 if {$l >= $findstartline} {
6591 set lim [expr {$findstartline - 1}]
6594 set moretodo $findallowwrap
6597 set n [expr {($lim - $l) * $find_dirn}]
6602 if {$l + ($find_dirn > 0? $n: 1) > $vrowmod($curview)} {
6603 update_arcrows $curview
6607 set ai [bsearch $vrownum($curview) $l]
6608 set a [lindex $varcorder($curview) $ai]
6609 set arow [lindex $vrownum($curview) $ai]
6610 set ids [lindex $varccommits($curview,$a)]
6611 set arowend [expr {$arow + [llength $ids]}]
6612 if {$gdttype eq [mc "containing:"]} {
6613 for {} {$n > 0} {incr n -1; incr l $find_dirn} {
6614 if {$l < $arow || $l >= $arowend} {
6616 set a [lindex $varcorder($curview) $ai]
6617 set arow [lindex $vrownum($curview) $ai]
6618 set ids [lindex $varccommits($curview,$a)]
6619 set arowend [expr {$arow + [llength $ids]}]
6621 set id [lindex $ids [expr {$l - $arow}]]
6622 # shouldn't happen unless git log doesn't give all the commits...
6623 if {![info exists commitdata($id)] ||
6624 ![doesmatch $commitdata($id)]} {
6627 if {![info exists commitinfo($id)]} {
6630 set info $commitinfo($id)
6631 foreach f $info ty $fldtypes {
6632 if {$ty eq ""} continue
6633 if {($findloc eq [mc "All fields"] || $findloc eq $ty) &&
6642 for {} {$n > 0} {incr n -1; incr l $find_dirn} {
6643 if {$l < $arow || $l >= $arowend} {
6645 set a [lindex $varcorder($curview) $ai]
6646 set arow [lindex $vrownum($curview) $ai]
6647 set ids [lindex $varccommits($curview,$a)]
6648 set arowend [expr {$arow + [llength $ids]}]
6650 set id [lindex $ids [expr {$l - $arow}]]
6651 if {![info exists fhighlights($id)]} {
6652 # this sets fhighlights($id) to -1
6653 askfilehighlight $l $id
6655 if {$fhighlights($id) > 0} {
6659 if {$fhighlights($id) < 0} {
6662 set findcurline [expr {$l - $find_dirn}]
6667 if {$found || ($domore && !$moretodo)} {
6683 set findcurline [expr {$l - $find_dirn}]
6685 set n [expr {($findcurline - $findstartline) * $find_dirn - 1}]
6689 set fprogcoord [expr {$n * 1.0 / $numcommits}]
6694 proc findselectline {l} {
6695 global findloc commentend ctext findcurline markingmatches gdttype
6697 set markingmatches [expr {$gdttype eq [mc "containing:"]}]
6700 if {$markingmatches &&
6701 ($findloc eq [mc "All fields"] || $findloc eq [mc "Comments"])} {
6702 # highlight the matches in the comments
6703 set f [$ctext get 1.0 $commentend]
6704 set matches [findmatches $f]
6705 foreach match $matches {
6706 set start [lindex $match 0]
6707 set end [expr {[lindex $match 1] + 1}]
6708 $ctext tag add found "1.0 + $start c" "1.0 + $end c"
6714 # mark the bits of a headline or author that match a find string
6715 proc markmatches {canv l str tag matches font row} {
6718 set bbox [$canv bbox $tag]
6719 set x0 [lindex $bbox 0]
6720 set y0 [lindex $bbox 1]
6721 set y1 [lindex $bbox 3]
6722 foreach match $matches {
6723 set start [lindex $match 0]
6724 set end [lindex $match 1]
6725 if {$start > $end} continue
6726 set xoff [font measure $font [string range $str 0 [expr {$start-1}]]]
6727 set xlen [font measure $font [string range $str 0 [expr {$end}]]]
6728 set t [$canv create rect [expr {$x0+$xoff}] $y0 \
6729 [expr {$x0+$xlen+2}] $y1 \
6730 -outline {} -tags [list match$l matches] -fill yellow]
6732 if {$row == $selectedline} {
6733 $canv raise $t secsel
6738 proc unmarkmatches {} {
6739 global markingmatches
6741 allcanvs delete matches
6742 set markingmatches 0
6746 proc selcanvline {w x y} {
6747 global canv canvy0 ctext linespc
6749 set ymax [lindex [$canv cget -scrollregion] 3]
6750 if {$ymax == {}} return
6751 set yfrac [lindex [$canv yview] 0]
6752 set y [expr {$y + $yfrac * $ymax}]
6753 set l [expr {int(($y - $canvy0) / $linespc + 0.5)}]
6758 set xmax [lindex [$canv cget -scrollregion] 2]
6759 set xleft [expr {[lindex [$canv xview] 0] * $xmax}]
6760 if {![info exists rowtextx($l)] || $xleft + $x < $rowtextx($l)} return
6766 proc commit_descriptor {p} {
6768 if {![info exists commitinfo($p)]} {
6772 if {[llength $commitinfo($p)] > 1} {
6773 set l [lindex $commitinfo($p) 0]
6778 # append some text to the ctext widget, and make any SHA1 ID
6779 # that we know about be a clickable link.
6780 proc appendwithlinks {text tags} {
6781 global ctext linknum curview
6783 set start [$ctext index "end - 1c"]
6784 $ctext insert end $text $tags
6785 set links [regexp -indices -all -inline {(?:\m|-g)[0-9a-f]{6,40}\M} $text]
6789 set linkid [string range $text $s $e]
6791 $ctext tag delete link$linknum
6792 $ctext tag add link$linknum "$start + $s c" "$start + $e c"
6793 setlink $linkid link$linknum
6798 proc setlink {id lk} {
6799 global curview ctext pendinglinks
6801 if {[string range $id 0 1] eq "-g"} {
6802 set id [string range $id 2 end]
6806 if {[string length $id] < 40} {
6807 set matches [longid $id]
6808 if {[llength $matches] > 0} {
6809 if {[llength $matches] > 1} return
6811 set id [lindex $matches 0]
6814 set known [commitinview $id $curview]
6817 $ctext tag conf $lk -foreground blue -underline 1
6818 $ctext tag bind $lk <1> [list selbyid $id]
6819 $ctext tag bind $lk <Enter> {linkcursor %W 1}
6820 $ctext tag bind $lk <Leave> {linkcursor %W -1}
6822 lappend pendinglinks($id) $lk
6823 interestedin $id {makelink %P}
6827 proc appendshortlink {id {pre {}} {post {}}} {
6828 global ctext linknum
6830 $ctext insert end $pre
6831 $ctext tag delete link$linknum
6832 $ctext insert end [string range $id 0 7] link$linknum
6833 $ctext insert end $post
6834 setlink $id link$linknum
6838 proc makelink {id} {
6841 if {![info exists pendinglinks($id)]} return
6842 foreach lk $pendinglinks($id) {
6845 unset pendinglinks($id)
6848 proc linkcursor {w inc} {
6849 global linkentercount curtextcursor
6851 if {[incr linkentercount $inc] > 0} {
6852 $w configure -cursor hand2
6854 $w configure -cursor $curtextcursor
6855 if {$linkentercount < 0} {
6856 set linkentercount 0
6861 proc viewnextline {dir} {
6865 set ymax [lindex [$canv cget -scrollregion] 3]
6866 set wnow [$canv yview]
6867 set wtop [expr {[lindex $wnow 0] * $ymax}]
6868 set newtop [expr {$wtop + $dir * $linespc}]
6871 } elseif {$newtop > $ymax} {
6874 allcanvs yview moveto [expr {$newtop * 1.0 / $ymax}]
6877 # add a list of tag or branch names at position pos
6878 # returns the number of names inserted
6879 proc appendrefs {pos ids var} {
6880 global ctext linknum curview $var maxrefs
6882 if {[catch {$ctext index $pos}]} {
6885 $ctext conf -state normal
6886 $ctext delete $pos "$pos lineend"
6889 foreach tag [set $var\($id\)] {
6890 lappend tags [list $tag $id]
6893 if {[llength $tags] > $maxrefs} {
6894 $ctext insert $pos "[mc "many"] ([llength $tags])"
6896 set tags [lsort -index 0 -decreasing $tags]
6899 set id [lindex $ti 1]
6902 $ctext tag delete $lk
6903 $ctext insert $pos $sep
6904 $ctext insert $pos [lindex $ti 0] $lk
6909 $ctext conf -state disabled
6910 return [llength $tags]
6913 # called when we have finished computing the nearby tags
6914 proc dispneartags {delay} {
6915 global selectedline currentid showneartags tagphase
6917 if {$selectedline eq {} || !$showneartags} return
6918 after cancel dispnexttag
6920 after 200 dispnexttag
6923 after idle dispnexttag
6928 proc dispnexttag {} {
6929 global selectedline currentid showneartags tagphase ctext
6931 if {$selectedline eq {} || !$showneartags} return
6932 switch -- $tagphase {
6934 set dtags [desctags $currentid]
6936 appendrefs precedes $dtags idtags
6940 set atags [anctags $currentid]
6942 appendrefs follows $atags idtags
6946 set dheads [descheads $currentid]
6947 if {$dheads ne {}} {
6948 if {[appendrefs branch $dheads idheads] > 1
6949 && [$ctext get "branch -3c"] eq "h"} {
6950 # turn "Branch" into "Branches"
6951 $ctext conf -state normal
6952 $ctext insert "branch -2c" "es"
6953 $ctext conf -state disabled
6958 if {[incr tagphase] <= 2} {
6959 after idle dispnexttag
6963 proc make_secsel {id} {
6964 global linehtag linentag linedtag canv canv2 canv3
6966 if {![info exists linehtag($id)]} return
6968 set t [eval $canv create rect [$canv bbox $linehtag($id)] -outline {{}} \
6969 -tags secsel -fill [$canv cget -selectbackground]]
6971 $canv2 delete secsel
6972 set t [eval $canv2 create rect [$canv2 bbox $linentag($id)] -outline {{}} \
6973 -tags secsel -fill [$canv2 cget -selectbackground]]
6975 $canv3 delete secsel
6976 set t [eval $canv3 create rect [$canv3 bbox $linedtag($id)] -outline {{}} \
6977 -tags secsel -fill [$canv3 cget -selectbackground]]
6981 proc make_idmark {id} {
6982 global linehtag canv fgcolor
6984 if {![info exists linehtag($id)]} return
6986 set t [eval $canv create rect [$canv bbox $linehtag($id)] \
6987 -tags markid -outline $fgcolor]
6991 proc selectline {l isnew {desired_loc {}}} {
6992 global canv ctext commitinfo selectedline
6993 global canvy0 linespc parents children curview
6994 global currentid sha1entry
6995 global commentend idtags linknum
6996 global mergemax numcommits pending_select
6997 global cmitmode showneartags allcommits
6998 global targetrow targetid lastscrollrows
6999 global autoselect autosellen jump_to_here
7001 catch {unset pending_select}
7006 if {$l < 0 || $l >= $numcommits} return
7007 set id [commitonrow $l]
7012 if {$lastscrollrows < $numcommits} {
7016 set y [expr {$canvy0 + $l * $linespc}]
7017 set ymax [lindex [$canv cget -scrollregion] 3]
7018 set ytop [expr {$y - $linespc - 1}]
7019 set ybot [expr {$y + $linespc + 1}]
7020 set wnow [$canv yview]
7021 set wtop [expr {[lindex $wnow 0] * $ymax}]
7022 set wbot [expr {[lindex $wnow 1] * $ymax}]
7023 set wh [expr {$wbot - $wtop}]
7025 if {$ytop < $wtop} {
7026 if {$ybot < $wtop} {
7027 set newtop [expr {$y - $wh / 2.0}]
7030 if {$newtop > $wtop - $linespc} {
7031 set newtop [expr {$wtop - $linespc}]
7034 } elseif {$ybot > $wbot} {
7035 if {$ytop > $wbot} {
7036 set newtop [expr {$y - $wh / 2.0}]
7038 set newtop [expr {$ybot - $wh}]
7039 if {$newtop < $wtop + $linespc} {
7040 set newtop [expr {$wtop + $linespc}]
7044 if {$newtop != $wtop} {
7048 allcanvs yview moveto [expr {$newtop * 1.0 / $ymax}]
7055 addtohistory [list selbyid $id 0] savecmitpos
7058 $sha1entry delete 0 end
7059 $sha1entry insert 0 $id
7061 $sha1entry selection range 0 $autosellen
7065 $ctext conf -state normal
7068 if {![info exists commitinfo($id)]} {
7071 set info $commitinfo($id)
7072 set date [formatdate [lindex $info 2]]
7073 $ctext insert end "[mc "Author"]: [lindex $info 1] $date\n"
7074 set date [formatdate [lindex $info 4]]
7075 $ctext insert end "[mc "Committer"]: [lindex $info 3] $date\n"
7076 if {[info exists idtags($id)]} {
7077 $ctext insert end [mc "Tags:"]
7078 foreach tag $idtags($id) {
7079 $ctext insert end " $tag"
7081 $ctext insert end "\n"
7085 set olds $parents($curview,$id)
7086 if {[llength $olds] > 1} {
7089 if {$np >= $mergemax} {
7094 $ctext insert end "[mc "Parent"]: " $tag
7095 appendwithlinks [commit_descriptor $p] {}
7100 append headers "[mc "Parent"]: [commit_descriptor $p]"
7104 foreach c $children($curview,$id) {
7105 append headers "[mc "Child"]: [commit_descriptor $c]"
7108 # make anything that looks like a SHA1 ID be a clickable link
7109 appendwithlinks $headers {}
7110 if {$showneartags} {
7111 if {![info exists allcommits]} {
7114 $ctext insert end "[mc "Branch"]: "
7115 $ctext mark set branch "end -1c"
7116 $ctext mark gravity branch left
7117 $ctext insert end "\n[mc "Follows"]: "
7118 $ctext mark set follows "end -1c"
7119 $ctext mark gravity follows left
7120 $ctext insert end "\n[mc "Precedes"]: "
7121 $ctext mark set precedes "end -1c"
7122 $ctext mark gravity precedes left
7123 $ctext insert end "\n"
7126 $ctext insert end "\n"
7127 set comment [lindex $info 5]
7128 if {[string first "\r" $comment] >= 0} {
7129 set comment [string map {"\r" "\n "} $comment]
7131 appendwithlinks $comment {comment}
7133 $ctext tag remove found 1.0 end
7134 $ctext conf -state disabled
7135 set commentend [$ctext index "end - 1c"]
7137 set jump_to_here $desired_loc
7138 init_flist [mc "Comments"]
7139 if {$cmitmode eq "tree"} {
7141 } elseif {[llength $olds] <= 1} {
7148 proc selfirstline {} {
7153 proc sellastline {} {
7156 set l [expr {$numcommits - 1}]
7160 proc selnextline {dir} {
7163 if {$selectedline eq {}} return
7164 set l [expr {$selectedline + $dir}]
7169 proc selnextpage {dir} {
7170 global canv linespc selectedline numcommits
7172 set lpp [expr {([winfo height $canv] - 2) / $linespc}]
7176 allcanvs yview scroll [expr {$dir * $lpp}] units
7178 if {$selectedline eq {}} return
7179 set l [expr {$selectedline + $dir * $lpp}]
7182 } elseif {$l >= $numcommits} {
7183 set l [expr $numcommits - 1]
7189 proc unselectline {} {
7190 global selectedline currentid
7193 catch {unset currentid}
7194 allcanvs delete secsel
7198 proc reselectline {} {
7201 if {$selectedline ne {}} {
7202 selectline $selectedline 0
7206 proc addtohistory {cmd {saveproc {}}} {
7207 global history historyindex curview
7211 set elt [list $curview $cmd $saveproc {}]
7212 if {$historyindex > 0
7213 && [lindex $history [expr {$historyindex - 1}]] == $elt} {
7217 if {$historyindex < [llength $history]} {
7218 set history [lreplace $history $historyindex end $elt]
7220 lappend history $elt
7223 if {$historyindex > 1} {
7224 .tf.bar.leftbut conf -state normal
7226 .tf.bar.leftbut conf -state disabled
7228 .tf.bar.rightbut conf -state disabled
7231 # save the scrolling position of the diff display pane
7232 proc save_position {} {
7233 global historyindex history
7235 if {$historyindex < 1} return
7236 set hi [expr {$historyindex - 1}]
7237 set fn [lindex $history $hi 2]
7239 lset history $hi 3 [eval $fn]
7243 proc unset_posvars {} {
7246 if {[info exists last_posvars]} {
7247 foreach {var val} $last_posvars {
7256 global curview last_posvars
7258 set view [lindex $elt 0]
7259 set cmd [lindex $elt 1]
7260 set pv [lindex $elt 3]
7261 if {$curview != $view} {
7265 foreach {var val} $pv {
7269 set last_posvars $pv
7274 global history historyindex
7277 if {$historyindex > 1} {
7279 incr historyindex -1
7280 godo [lindex $history [expr {$historyindex - 1}]]
7281 .tf.bar.rightbut conf -state normal
7283 if {$historyindex <= 1} {
7284 .tf.bar.leftbut conf -state disabled
7289 global history historyindex
7292 if {$historyindex < [llength $history]} {
7294 set cmd [lindex $history $historyindex]
7297 .tf.bar.leftbut conf -state normal
7299 if {$historyindex >= [llength $history]} {
7300 .tf.bar.rightbut conf -state disabled
7305 global treefilelist treeidlist diffids diffmergeid treepending
7306 global nullid nullid2
7309 catch {unset diffmergeid}
7310 if {![info exists treefilelist($id)]} {
7311 if {![info exists treepending]} {
7312 if {$id eq $nullid} {
7313 set cmd [list | git ls-files]
7314 } elseif {$id eq $nullid2} {
7315 set cmd [list | git ls-files --stage -t]
7317 set cmd [list | git ls-tree -r $id]
7319 if {[catch {set gtf [open $cmd r]}]} {
7323 set treefilelist($id) {}
7324 set treeidlist($id) {}
7325 fconfigure $gtf -blocking 0 -encoding binary
7326 filerun $gtf [list gettreeline $gtf $id]
7333 proc gettreeline {gtf id} {
7334 global treefilelist treeidlist treepending cmitmode diffids nullid nullid2
7337 while {[incr nl] <= 1000 && [gets $gtf line] >= 0} {
7338 if {$diffids eq $nullid} {
7341 set i [string first "\t" $line]
7342 if {$i < 0} continue
7343 set fname [string range $line [expr {$i+1}] end]
7344 set line [string range $line 0 [expr {$i-1}]]
7345 if {$diffids ne $nullid2 && [lindex $line 1] ne "blob"} continue
7346 set sha1 [lindex $line 2]
7347 lappend treeidlist($id) $sha1
7349 if {[string index $fname 0] eq "\""} {
7350 set fname [lindex $fname 0]
7352 set fname [encoding convertfrom $fname]
7353 lappend treefilelist($id) $fname
7356 return [expr {$nl >= 1000? 2: 1}]
7360 if {$cmitmode ne "tree"} {
7361 if {![info exists diffmergeid]} {
7362 gettreediffs $diffids
7364 } elseif {$id ne $diffids} {
7373 global treefilelist treeidlist diffids nullid nullid2
7374 global ctext_file_names ctext_file_lines
7375 global ctext commentend
7377 set i [lsearch -exact $treefilelist($diffids) $f]
7379 puts "oops, $f not in list for id $diffids"
7382 if {$diffids eq $nullid} {
7383 if {[catch {set bf [open $f r]} err]} {
7384 puts "oops, can't read $f: $err"
7388 set blob [lindex $treeidlist($diffids) $i]
7389 if {[catch {set bf [open [concat | git cat-file blob $blob] r]} err]} {
7390 puts "oops, error reading blob $blob: $err"
7394 fconfigure $bf -blocking 0 -encoding [get_path_encoding $f]
7395 filerun $bf [list getblobline $bf $diffids]
7396 $ctext config -state normal
7397 clear_ctext $commentend
7398 lappend ctext_file_names $f
7399 lappend ctext_file_lines [lindex [split $commentend "."] 0]
7400 $ctext insert end "\n"
7401 $ctext insert end "$f\n" filesep
7402 $ctext config -state disabled
7403 $ctext yview $commentend
7407 proc getblobline {bf id} {
7408 global diffids cmitmode ctext
7410 if {$id ne $diffids || $cmitmode ne "tree"} {
7414 $ctext config -state normal
7416 while {[incr nl] <= 1000 && [gets $bf line] >= 0} {
7417 $ctext insert end "$line\n"
7420 global jump_to_here ctext_file_names commentend
7422 # delete last newline
7423 $ctext delete "end - 2c" "end - 1c"
7425 if {$jump_to_here ne {} &&
7426 [lindex $jump_to_here 0] eq [lindex $ctext_file_names 0]} {
7427 set lnum [expr {[lindex $jump_to_here 1] +
7428 [lindex [split $commentend .] 0]}]
7429 mark_ctext_line $lnum
7431 $ctext config -state disabled
7434 $ctext config -state disabled
7435 return [expr {$nl >= 1000? 2: 1}]
7438 proc mark_ctext_line {lnum} {
7439 global ctext markbgcolor
7441 $ctext tag delete omark
7442 $ctext tag add omark $lnum.0 "$lnum.0 + 1 line"
7443 $ctext tag conf omark -background $markbgcolor
7447 proc mergediff {id} {
7449 global diffids treediffs
7450 global parents curview
7454 set treediffs($id) {}
7455 set np [llength $parents($curview,$id)]
7460 proc startdiff {ids} {
7461 global treediffs diffids treepending diffmergeid nullid nullid2
7465 catch {unset diffmergeid}
7466 if {![info exists treediffs($ids)] ||
7467 [lsearch -exact $ids $nullid] >= 0 ||
7468 [lsearch -exact $ids $nullid2] >= 0} {
7469 if {![info exists treepending]} {
7477 # If the filename (name) is under any of the passed filter paths
7478 # then return true to include the file in the listing.
7479 proc path_filter {filter name} {
7480 set worktree [gitworktree]
7482 set fq_p [file normalize $p]
7483 set fq_n [file normalize [file join $worktree $name]]
7484 if {[string match [file normalize $fq_p]* $fq_n]} {
7491 proc addtocflist {ids} {
7494 add_flist $treediffs($ids)
7498 proc diffcmd {ids flags} {
7499 global log_showroot nullid nullid2
7501 set i [lsearch -exact $ids $nullid]
7502 set j [lsearch -exact $ids $nullid2]
7504 if {[llength $ids] > 1 && $j < 0} {
7505 # comparing working directory with some specific revision
7506 set cmd [concat | git diff-index $flags]
7508 lappend cmd -R [lindex $ids 1]
7510 lappend cmd [lindex $ids 0]
7513 # comparing working directory with index
7514 set cmd [concat | git diff-files $flags]
7519 } elseif {$j >= 0} {
7520 set cmd [concat | git diff-index --cached $flags]
7521 if {[llength $ids] > 1} {
7522 # comparing index with specific revision
7524 lappend cmd -R [lindex $ids 1]
7526 lappend cmd [lindex $ids 0]
7529 # comparing index with HEAD
7533 if {$log_showroot} {
7534 lappend flags --root
7536 set cmd [concat | git diff-tree -r $flags $ids]
7541 proc gettreediffs {ids} {
7542 global treediff treepending
7544 if {[catch {set gdtf [open [diffcmd $ids {--no-commit-id}] r]}]} return
7546 set treepending $ids
7548 fconfigure $gdtf -blocking 0 -encoding binary
7549 filerun $gdtf [list gettreediffline $gdtf $ids]
7552 proc gettreediffline {gdtf ids} {
7553 global treediff treediffs treepending diffids diffmergeid
7554 global cmitmode vfilelimit curview limitdiffs perfile_attrs
7559 if {$perfile_attrs} {
7560 # cache_gitattr is slow, and even slower on win32 where we
7561 # have to invoke it for only about 30 paths at a time
7563 if {[tk windowingsystem] == "win32"} {
7567 while {[incr nr] <= $max && [gets $gdtf line] >= 0} {
7568 set i [string first "\t" $line]
7570 set file [string range $line [expr {$i+1}] end]
7571 if {[string index $file 0] eq "\""} {
7572 set file [lindex $file 0]
7574 set file [encoding convertfrom $file]
7575 if {$file ne [lindex $treediff end]} {
7576 lappend treediff $file
7577 lappend sublist $file
7581 if {$perfile_attrs} {
7582 cache_gitattr encoding $sublist
7585 return [expr {$nr >= $max? 2: 1}]
7588 if {$limitdiffs && $vfilelimit($curview) ne {}} {
7590 foreach f $treediff {
7591 if {[path_filter $vfilelimit($curview) $f]} {
7595 set treediffs($ids) $flist
7597 set treediffs($ids) $treediff
7600 if {$cmitmode eq "tree" && [llength $diffids] == 1} {
7602 } elseif {$ids != $diffids} {
7603 if {![info exists diffmergeid]} {
7604 gettreediffs $diffids
7612 # empty string or positive integer
7613 proc diffcontextvalidate {v} {
7614 return [regexp {^(|[1-9][0-9]*)$} $v]
7617 proc diffcontextchange {n1 n2 op} {
7618 global diffcontextstring diffcontext
7620 if {[string is integer -strict $diffcontextstring]} {
7621 if {$diffcontextstring >= 0} {
7622 set diffcontext $diffcontextstring
7628 proc changeignorespace {} {
7632 proc changeworddiff {name ix op} {
7636 proc getblobdiffs {ids} {
7637 global blobdifffd diffids env
7638 global diffinhdr treediffs
7642 global limitdiffs vfilelimit curview
7643 global diffencoding targetline diffnparents
7644 global git_version currdiffsubmod
7647 if {[package vcompare $git_version "1.6.1"] >= 0} {
7648 set textconv "--textconv"
7651 if {[package vcompare $git_version "1.6.6"] >= 0} {
7652 set submodule "--submodule"
7654 set cmd [diffcmd $ids "-p $textconv $submodule -C --cc --no-commit-id -U$diffcontext"]
7658 if {$worddiff ne [mc "Line diff"]} {
7659 append cmd " --word-diff=porcelain"
7661 if {$limitdiffs && $vfilelimit($curview) ne {}} {
7662 set cmd [concat $cmd -- $vfilelimit($curview)]
7664 if {[catch {set bdf [open $cmd r]} err]} {
7665 error_popup [mc "Error getting diffs: %s" $err]
7671 set diffencoding [get_path_encoding {}]
7672 fconfigure $bdf -blocking 0 -encoding binary -eofchar {}
7673 set blobdifffd($ids) $bdf
7674 set currdiffsubmod ""
7675 filerun $bdf [list getblobdiffline $bdf $diffids]
7678 proc savecmitpos {} {
7679 global ctext cmitmode
7681 if {$cmitmode eq "tree"} {
7684 return [list target_scrollpos [$ctext index @0,0]]
7687 proc savectextpos {} {
7690 return [list target_scrollpos [$ctext index @0,0]]
7693 proc maybe_scroll_ctext {ateof} {
7694 global ctext target_scrollpos
7696 if {![info exists target_scrollpos]} return
7698 set nlines [expr {[winfo height $ctext]
7699 / [font metrics textfont -linespace]}]
7700 if {[$ctext compare "$target_scrollpos + $nlines lines" <= end]} return
7702 $ctext yview $target_scrollpos
7703 unset target_scrollpos
7706 proc setinlist {var i val} {
7709 while {[llength [set $var]] < $i} {
7712 if {[llength [set $var]] == $i} {
7719 proc makediffhdr {fname ids} {
7720 global ctext curdiffstart treediffs diffencoding
7721 global ctext_file_names jump_to_here targetline diffline
7723 set fname [encoding convertfrom $fname]
7724 set diffencoding [get_path_encoding $fname]
7725 set i [lsearch -exact $treediffs($ids) $fname]
7727 setinlist difffilestart $i $curdiffstart
7729 lset ctext_file_names end $fname
7730 set l [expr {(78 - [string length $fname]) / 2}]
7731 set pad [string range "----------------------------------------" 1 $l]
7732 $ctext insert $curdiffstart "$pad $fname $pad" filesep
7734 if {$jump_to_here ne {} && [lindex $jump_to_here 0] eq $fname} {
7735 set targetline [lindex $jump_to_here 1]
7740 proc getblobdiffline {bdf ids} {
7741 global diffids blobdifffd ctext curdiffstart
7742 global diffnexthead diffnextnote difffilestart
7743 global ctext_file_names ctext_file_lines
7744 global diffinhdr treediffs mergemax diffnparents
7745 global diffencoding jump_to_here targetline diffline currdiffsubmod
7749 $ctext conf -state normal
7750 while {[incr nr] <= 1000 && [gets $bdf line] >= 0} {
7751 if {$ids != $diffids || $bdf != $blobdifffd($ids)} {
7755 if {![string compare -length 5 "diff " $line]} {
7756 if {![regexp {^diff (--cc|--git) } $line m type]} {
7757 set line [encoding convertfrom $line]
7758 $ctext insert end "$line\n" hunksep
7761 # start of a new file
7763 $ctext insert end "\n"
7764 set curdiffstart [$ctext index "end - 1c"]
7765 lappend ctext_file_names ""
7766 lappend ctext_file_lines [lindex [split $curdiffstart "."] 0]
7767 $ctext insert end "\n" filesep
7769 if {$type eq "--cc"} {
7770 # start of a new file in a merge diff
7771 set fname [string range $line 10 end]
7772 if {[lsearch -exact $treediffs($ids) $fname] < 0} {
7773 lappend treediffs($ids) $fname
7774 add_flist [list $fname]
7778 set line [string range $line 11 end]
7779 # If the name hasn't changed the length will be odd,
7780 # the middle char will be a space, and the two bits either
7781 # side will be a/name and b/name, or "a/name" and "b/name".
7782 # If the name has changed we'll get "rename from" and
7783 # "rename to" or "copy from" and "copy to" lines following
7784 # this, and we'll use them to get the filenames.
7785 # This complexity is necessary because spaces in the
7786 # filename(s) don't get escaped.
7787 set l [string length $line]
7788 set i [expr {$l / 2}]
7789 if {!(($l & 1) && [string index $line $i] eq " " &&
7790 [string range $line 2 [expr {$i - 1}]] eq \
7791 [string range $line [expr {$i + 3}] end])} {
7794 # unescape if quoted and chop off the a/ from the front
7795 if {[string index $line 0] eq "\""} {
7796 set fname [string range [lindex $line 0] 2 end]
7798 set fname [string range $line 2 [expr {$i - 1}]]
7801 makediffhdr $fname $ids
7803 } elseif {![string compare -length 16 "* Unmerged path " $line]} {
7804 set fname [encoding convertfrom [string range $line 16 end]]
7805 $ctext insert end "\n"
7806 set curdiffstart [$ctext index "end - 1c"]
7807 lappend ctext_file_names $fname
7808 lappend ctext_file_lines [lindex [split $curdiffstart "."] 0]
7809 $ctext insert end "$line\n" filesep
7810 set i [lsearch -exact $treediffs($ids) $fname]
7812 setinlist difffilestart $i $curdiffstart
7815 } elseif {![string compare -length 2 "@@" $line]} {
7816 regexp {^@@+} $line ats
7817 set line [encoding convertfrom $diffencoding $line]
7818 $ctext insert end "$line\n" hunksep
7819 if {[regexp { \+(\d+),\d+ @@} $line m nl]} {
7822 set diffnparents [expr {[string length $ats] - 1}]
7825 } elseif {![string compare -length 10 "Submodule " $line]} {
7826 # start of a new submodule
7827 if {[regexp -indices "\[0-9a-f\]+\\.\\." $line nameend]} {
7828 set fname [string range $line 10 [expr [lindex $nameend 0] - 2]]
7830 set fname [string range $line 10 [expr [string first "contains " $line] - 2]]
7832 if {$currdiffsubmod != $fname} {
7833 $ctext insert end "\n"; # Add newline after commit message
7835 set curdiffstart [$ctext index "end - 1c"]
7836 lappend ctext_file_names ""
7837 if {$currdiffsubmod != $fname} {
7838 lappend ctext_file_lines $fname
7839 makediffhdr $fname $ids
7840 set currdiffsubmod $fname
7841 $ctext insert end "\n$line\n" filesep
7843 $ctext insert end "$line\n" filesep
7845 } elseif {![string compare -length 3 " >" $line]} {
7846 set $currdiffsubmod ""
7847 set line [encoding convertfrom $diffencoding $line]
7848 $ctext insert end "$line\n" dresult
7849 } elseif {![string compare -length 3 " <" $line]} {
7850 set $currdiffsubmod ""
7851 set line [encoding convertfrom $diffencoding $line]
7852 $ctext insert end "$line\n" d0
7853 } elseif {$diffinhdr} {
7854 if {![string compare -length 12 "rename from " $line]} {
7855 set fname [string range $line [expr 6 + [string first " from " $line] ] end]
7856 if {[string index $fname 0] eq "\""} {
7857 set fname [lindex $fname 0]
7859 set fname [encoding convertfrom $fname]
7860 set i [lsearch -exact $treediffs($ids) $fname]
7862 setinlist difffilestart $i $curdiffstart
7864 } elseif {![string compare -length 10 $line "rename to "] ||
7865 ![string compare -length 8 $line "copy to "]} {
7866 set fname [string range $line [expr 4 + [string first " to " $line] ] end]
7867 if {[string index $fname 0] eq "\""} {
7868 set fname [lindex $fname 0]
7870 makediffhdr $fname $ids
7871 } elseif {[string compare -length 3 $line "---"] == 0} {
7874 } elseif {[string compare -length 3 $line "+++"] == 0} {
7878 $ctext insert end "$line\n" filesep
7881 set line [string map {\x1A ^Z} \
7882 [encoding convertfrom $diffencoding $line]]
7883 # parse the prefix - one ' ', '-' or '+' for each parent
7884 set prefix [string range $line 0 [expr {$diffnparents - 1}]]
7885 set tag [expr {$diffnparents > 1? "m": "d"}]
7886 set dowords [expr {$worddiff ne [mc "Line diff"] && $diffnparents == 1}]
7887 set words_pre_markup ""
7888 set words_post_markup ""
7889 if {[string trim $prefix " -+"] eq {}} {
7890 # prefix only has " ", "-" and "+" in it: normal diff line
7891 set num [string first "-" $prefix]
7893 set line [string range $line 1 end]
7896 # removed line, first parent with line is $num
7897 if {$num >= $mergemax} {
7900 if {$dowords && $worddiff eq [mc "Markup words"]} {
7901 $ctext insert end "\[-$line-\]" $tag$num
7903 $ctext insert end "$line" $tag$num
7906 $ctext insert end "\n" $tag$num
7910 if {[string first "+" $prefix] >= 0} {
7912 lappend tags ${tag}result
7913 if {$diffnparents > 1} {
7914 set num [string first " " $prefix]
7916 if {$num >= $mergemax} {
7922 set words_pre_markup "{+"
7923 set words_post_markup "+}"
7925 if {$targetline ne {}} {
7926 if {$diffline == $targetline} {
7927 set seehere [$ctext index "end - 1 chars"]
7933 if {$dowords && $worddiff eq [mc "Markup words"]} {
7934 $ctext insert end "$words_pre_markup$line$words_post_markup" $tags
7936 $ctext insert end "$line" $tags
7939 $ctext insert end "\n" $tags
7942 } elseif {$dowords && $prefix eq "~"} {
7943 $ctext insert end "\n" {}
7945 # "\ No newline at end of file",
7946 # or something else we don't recognize
7947 $ctext insert end "$line\n" hunksep
7951 if {[info exists seehere]} {
7952 mark_ctext_line [lindex [split $seehere .] 0]
7954 maybe_scroll_ctext [eof $bdf]
7955 $ctext conf -state disabled
7960 return [expr {$nr >= 1000? 2: 1}]
7963 proc changediffdisp {} {
7964 global ctext diffelide
7966 $ctext tag conf d0 -elide [lindex $diffelide 0]
7967 $ctext tag conf dresult -elide [lindex $diffelide 1]
7970 proc highlightfile {cline} {
7971 global cflist cflist_top
7973 if {![info exists cflist_top]} return
7975 $cflist tag remove highlight $cflist_top.0 "$cflist_top.0 lineend"
7976 $cflist tag add highlight $cline.0 "$cline.0 lineend"
7977 $cflist see $cline.0
7978 set cflist_top $cline
7981 proc highlightfile_for_scrollpos {topidx} {
7982 global cmitmode difffilestart
7984 if {$cmitmode eq "tree"} return
7985 if {![info exists difffilestart]} return
7987 set top [lindex [split $topidx .] 0]
7988 if {$difffilestart eq {} || $top < [lindex $difffilestart 0]} {
7991 highlightfile [expr {[bsearch $difffilestart $top] + 2}]
7996 global difffilestart ctext cmitmode
7998 if {$cmitmode eq "tree"} return
8000 set here [$ctext index @0,0]
8001 foreach loc $difffilestart {
8002 if {[$ctext compare $loc >= $here]} {
8012 global difffilestart ctext cmitmode
8014 if {$cmitmode eq "tree"} return
8015 set here [$ctext index @0,0]
8016 foreach loc $difffilestart {
8017 if {[$ctext compare $loc > $here]} {
8024 proc clear_ctext {{first 1.0}} {
8025 global ctext smarktop smarkbot
8026 global ctext_file_names ctext_file_lines
8029 set l [lindex [split $first .] 0]
8030 if {![info exists smarktop] || [$ctext compare $first < $smarktop.0]} {
8033 if {![info exists smarkbot] || [$ctext compare $first < $smarkbot.0]} {
8036 $ctext delete $first end
8037 if {$first eq "1.0"} {
8038 catch {unset pendinglinks}
8040 set ctext_file_names {}
8041 set ctext_file_lines {}
8044 proc settabs {{firstab {}}} {
8045 global firsttabstop tabstop ctext have_tk85
8047 if {$firstab ne {} && $have_tk85} {
8048 set firsttabstop $firstab
8050 set w [font measure textfont "0"]
8051 if {$firsttabstop != 0} {
8052 $ctext conf -tabs [list [expr {($firsttabstop + $tabstop) * $w}] \
8053 [expr {($firsttabstop + 2 * $tabstop) * $w}]]
8054 } elseif {$have_tk85 || $tabstop != 8} {
8055 $ctext conf -tabs [expr {$tabstop * $w}]
8057 $ctext conf -tabs {}
8061 proc incrsearch {name ix op} {
8062 global ctext searchstring searchdirn
8064 if {[catch {$ctext index anchor}]} {
8065 # no anchor set, use start of selection, or of visible area
8066 set sel [$ctext tag ranges sel]
8068 $ctext mark set anchor [lindex $sel 0]
8069 } elseif {$searchdirn eq "-forwards"} {
8070 $ctext mark set anchor @0,0
8072 $ctext mark set anchor @0,[winfo height $ctext]
8075 if {$searchstring ne {}} {
8076 set here [$ctext search -count mlen $searchdirn -- $searchstring anchor]
8079 set mend "$here + $mlen c"
8080 $ctext tag remove sel 1.0 end
8081 $ctext tag add sel $here $mend
8082 suppress_highlighting_file_for_current_scrollpos
8083 highlightfile_for_scrollpos $here
8086 rehighlight_search_results
8090 global sstring ctext searchstring searchdirn
8093 $sstring icursor end
8094 set searchdirn -forwards
8095 if {$searchstring ne {}} {
8096 set sel [$ctext tag ranges sel]
8098 set start "[lindex $sel 0] + 1c"
8099 } elseif {[catch {set start [$ctext index anchor]}]} {
8102 set match [$ctext search -count mlen -- $searchstring $start]
8103 $ctext tag remove sel 1.0 end
8109 suppress_highlighting_file_for_current_scrollpos
8110 highlightfile_for_scrollpos $match
8111 set mend "$match + $mlen c"
8112 $ctext tag add sel $match $mend
8113 $ctext mark unset anchor
8114 rehighlight_search_results
8118 proc dosearchback {} {
8119 global sstring ctext searchstring searchdirn
8122 $sstring icursor end
8123 set searchdirn -backwards
8124 if {$searchstring ne {}} {
8125 set sel [$ctext tag ranges sel]
8127 set start [lindex $sel 0]
8128 } elseif {[catch {set start [$ctext index anchor]}]} {
8129 set start @0,[winfo height $ctext]
8131 set match [$ctext search -backwards -count ml -- $searchstring $start]
8132 $ctext tag remove sel 1.0 end
8138 suppress_highlighting_file_for_current_scrollpos
8139 highlightfile_for_scrollpos $match
8140 set mend "$match + $ml c"
8141 $ctext tag add sel $match $mend
8142 $ctext mark unset anchor
8143 rehighlight_search_results
8147 proc rehighlight_search_results {} {
8148 global ctext searchstring
8150 $ctext tag remove found 1.0 end
8151 $ctext tag remove currentsearchhit 1.0 end
8153 if {$searchstring ne {}} {
8158 proc searchmark {first last} {
8159 global ctext searchstring
8161 set sel [$ctext tag ranges sel]
8165 set match [$ctext search -count mlen -- $searchstring $mend $last.end]
8166 if {$match eq {}} break
8167 set mend "$match + $mlen c"
8168 if {$sel ne {} && [$ctext compare $match == [lindex $sel 0]]} {
8169 $ctext tag add currentsearchhit $match $mend
8171 $ctext tag add found $match $mend
8176 proc searchmarkvisible {doall} {
8177 global ctext smarktop smarkbot
8179 set topline [lindex [split [$ctext index @0,0] .] 0]
8180 set botline [lindex [split [$ctext index @0,[winfo height $ctext]] .] 0]
8181 if {$doall || $botline < $smarktop || $topline > $smarkbot} {
8182 # no overlap with previous
8183 searchmark $topline $botline
8184 set smarktop $topline
8185 set smarkbot $botline
8187 if {$topline < $smarktop} {
8188 searchmark $topline [expr {$smarktop-1}]
8189 set smarktop $topline
8191 if {$botline > $smarkbot} {
8192 searchmark [expr {$smarkbot+1}] $botline
8193 set smarkbot $botline
8198 proc suppress_highlighting_file_for_current_scrollpos {} {
8199 global ctext suppress_highlighting_file_for_this_scrollpos
8201 set suppress_highlighting_file_for_this_scrollpos [$ctext index @0,0]
8204 proc scrolltext {f0 f1} {
8205 global searchstring cmitmode ctext
8206 global suppress_highlighting_file_for_this_scrollpos
8208 set topidx [$ctext index @0,0]
8209 if {![info exists suppress_highlighting_file_for_this_scrollpos]
8210 || $topidx ne $suppress_highlighting_file_for_this_scrollpos} {
8211 highlightfile_for_scrollpos $topidx
8214 catch {unset suppress_highlighting_file_for_this_scrollpos}
8216 .bleft.bottom.sb set $f0 $f1
8217 if {$searchstring ne {}} {
8223 global linespc charspc canvx0 canvy0
8224 global xspc1 xspc2 lthickness
8226 set linespc [font metrics mainfont -linespace]
8227 set charspc [font measure mainfont "m"]
8228 set canvy0 [expr {int(3 + 0.5 * $linespc)}]
8229 set canvx0 [expr {int(3 + 0.5 * $linespc)}]
8230 set lthickness [expr {int($linespc / 9) + 1}]
8231 set xspc1(0) $linespc
8239 set ymax [lindex [$canv cget -scrollregion] 3]
8240 if {$ymax eq {} || $ymax == 0} return
8241 set span [$canv yview]
8244 allcanvs yview moveto [lindex $span 0]
8246 if {$selectedline ne {}} {
8247 selectline $selectedline 0
8248 allcanvs yview moveto [lindex $span 0]
8252 proc parsefont {f n} {
8255 set fontattr($f,family) [lindex $n 0]
8257 if {$s eq {} || $s == 0} {
8260 set s [expr {int(-$s / [winfo fpixels . 1p] + 0.5)}]
8262 set fontattr($f,size) $s
8263 set fontattr($f,weight) normal
8264 set fontattr($f,slant) roman
8265 foreach style [lrange $n 2 end] {
8268 "bold" {set fontattr($f,weight) $style}
8270 "italic" {set fontattr($f,slant) $style}
8275 proc fontflags {f {isbold 0}} {
8278 return [list -family $fontattr($f,family) -size $fontattr($f,size) \
8279 -weight [expr {$isbold? "bold": $fontattr($f,weight)}] \
8280 -slant $fontattr($f,slant)]
8286 set n [list $fontattr($f,family) $fontattr($f,size)]
8287 if {$fontattr($f,weight) eq "bold"} {
8290 if {$fontattr($f,slant) eq "italic"} {
8296 proc incrfont {inc} {
8297 global mainfont textfont ctext canv cflist showrefstop
8298 global stopped entries fontattr
8301 set s $fontattr(mainfont,size)
8306 set fontattr(mainfont,size) $s
8307 font config mainfont -size $s
8308 font config mainfontbold -size $s
8309 set mainfont [fontname mainfont]
8310 set s $fontattr(textfont,size)
8315 set fontattr(textfont,size) $s
8316 font config textfont -size $s
8317 font config textfontbold -size $s
8318 set textfont [fontname textfont]
8325 global sha1entry sha1string
8326 if {[string length $sha1string] == 40} {
8327 $sha1entry delete 0 end
8331 proc sha1change {n1 n2 op} {
8332 global sha1string currentid sha1but
8333 if {$sha1string == {}
8334 || ([info exists currentid] && $sha1string == $currentid)} {
8339 if {[$sha1but cget -state] == $state} return
8340 if {$state == "normal"} {
8341 $sha1but conf -state normal -relief raised -text "[mc "Goto:"] "
8343 $sha1but conf -state disabled -relief flat -text "[mc "SHA1 ID:"] "
8347 proc gotocommit {} {
8348 global sha1string tagids headids curview varcid
8350 if {$sha1string == {}
8351 || ([info exists currentid] && $sha1string == $currentid)} return
8352 if {[info exists tagids($sha1string)]} {
8353 set id $tagids($sha1string)
8354 } elseif {[info exists headids($sha1string)]} {
8355 set id $headids($sha1string)
8357 set id [string tolower $sha1string]
8358 if {[regexp {^[0-9a-f]{4,39}$} $id]} {
8359 set matches [longid $id]
8360 if {$matches ne {}} {
8361 if {[llength $matches] > 1} {
8362 error_popup [mc "Short SHA1 id %s is ambiguous" $id]
8365 set id [lindex $matches 0]
8368 if {[catch {set id [exec git rev-parse --verify $sha1string]}]} {
8369 error_popup [mc "Revision %s is not known" $sha1string]
8374 if {[commitinview $id $curview]} {
8375 selectline [rowofcommit $id] 1
8378 if {[regexp {^[0-9a-fA-F]{4,}$} $sha1string]} {
8379 set msg [mc "SHA1 id %s is not known" $sha1string]
8381 set msg [mc "Revision %s is not in the current view" $sha1string]
8386 proc lineenter {x y id} {
8387 global hoverx hovery hoverid hovertimer
8388 global commitinfo canv
8390 if {![info exists commitinfo($id)] && ![getcommit $id]} return
8394 if {[info exists hovertimer]} {
8395 after cancel $hovertimer
8397 set hovertimer [after 500 linehover]
8401 proc linemotion {x y id} {
8402 global hoverx hovery hoverid hovertimer
8404 if {[info exists hoverid] && $id == $hoverid} {
8407 if {[info exists hovertimer]} {
8408 after cancel $hovertimer
8410 set hovertimer [after 500 linehover]
8414 proc lineleave {id} {
8415 global hoverid hovertimer canv
8417 if {[info exists hoverid] && $id == $hoverid} {
8419 if {[info exists hovertimer]} {
8420 after cancel $hovertimer
8428 global hoverx hovery hoverid hovertimer
8429 global canv linespc lthickness
8432 set text [lindex $commitinfo($hoverid) 0]
8433 set ymax [lindex [$canv cget -scrollregion] 3]
8434 if {$ymax == {}} return
8435 set yfrac [lindex [$canv yview] 0]
8436 set x [expr {$hoverx + 2 * $linespc}]
8437 set y [expr {$hovery + $yfrac * $ymax - $linespc / 2}]
8438 set x0 [expr {$x - 2 * $lthickness}]
8439 set y0 [expr {$y - 2 * $lthickness}]
8440 set x1 [expr {$x + [font measure mainfont $text] + 2 * $lthickness}]
8441 set y1 [expr {$y + $linespc + 2 * $lthickness}]
8442 set t [$canv create rectangle $x0 $y0 $x1 $y1 \
8443 -fill \#ffff80 -outline black -width 1 -tags hover]
8445 set t [$canv create text $x $y -anchor nw -text $text -tags hover \
8450 proc clickisonarrow {id y} {
8453 set ranges [rowranges $id]
8454 set thresh [expr {2 * $lthickness + 6}]
8455 set n [expr {[llength $ranges] - 1}]
8456 for {set i 1} {$i < $n} {incr i} {
8457 set row [lindex $ranges $i]
8458 if {abs([yc $row] - $y) < $thresh} {
8465 proc arrowjump {id n y} {
8468 # 1 <-> 2, 3 <-> 4, etc...
8469 set n [expr {(($n - 1) ^ 1) + 1}]
8470 set row [lindex [rowranges $id] $n]
8472 set ymax [lindex [$canv cget -scrollregion] 3]
8473 if {$ymax eq {} || $ymax <= 0} return
8474 set view [$canv yview]
8475 set yspan [expr {[lindex $view 1] - [lindex $view 0]}]
8476 set yfrac [expr {$yt / $ymax - $yspan / 2}]
8480 allcanvs yview moveto $yfrac
8483 proc lineclick {x y id isnew} {
8484 global ctext commitinfo children canv thickerline curview
8486 if {![info exists commitinfo($id)] && ![getcommit $id]} return
8491 # draw this line thicker than normal
8495 set ymax [lindex [$canv cget -scrollregion] 3]
8496 if {$ymax eq {}} return
8497 set yfrac [lindex [$canv yview] 0]
8498 set y [expr {$y + $yfrac * $ymax}]
8500 set dirn [clickisonarrow $id $y]
8502 arrowjump $id $dirn $y
8507 addtohistory [list lineclick $x $y $id 0] savectextpos
8509 # fill the details pane with info about this line
8510 $ctext conf -state normal
8513 $ctext insert end "[mc "Parent"]:\t"
8514 $ctext insert end $id link0
8516 set info $commitinfo($id)
8517 $ctext insert end "\n\t[lindex $info 0]\n"
8518 $ctext insert end "\t[mc "Author"]:\t[lindex $info 1]\n"
8519 set date [formatdate [lindex $info 2]]
8520 $ctext insert end "\t[mc "Date"]:\t$date\n"
8521 set kids $children($curview,$id)
8523 $ctext insert end "\n[mc "Children"]:"
8525 foreach child $kids {
8527 if {![info exists commitinfo($child)] && ![getcommit $child]} continue
8528 set info $commitinfo($child)
8529 $ctext insert end "\n\t"
8530 $ctext insert end $child link$i
8531 setlink $child link$i
8532 $ctext insert end "\n\t[lindex $info 0]"
8533 $ctext insert end "\n\t[mc "Author"]:\t[lindex $info 1]"
8534 set date [formatdate [lindex $info 2]]
8535 $ctext insert end "\n\t[mc "Date"]:\t$date\n"
8538 maybe_scroll_ctext 1
8539 $ctext conf -state disabled
8543 proc normalline {} {
8545 if {[info exists thickerline]} {
8552 proc selbyid {id {isnew 1}} {
8554 if {[commitinview $id $curview]} {
8555 selectline [rowofcommit $id] $isnew
8561 if {![info exists startmstime]} {
8562 set startmstime [clock clicks -milliseconds]
8564 return [format "%.3f" [expr {([clock click -milliseconds] - $startmstime) / 1000.0}]]
8567 proc rowmenu {x y id} {
8568 global rowctxmenu selectedline rowmenuid curview
8569 global nullid nullid2 fakerowmenu mainhead markedid
8573 if {$selectedline eq {} || [rowofcommit $id] eq $selectedline} {
8578 if {[info exists markedid] && $markedid ne $id} {
8583 if {$id ne $nullid && $id ne $nullid2} {
8584 set menu $rowctxmenu
8585 if {$mainhead ne {}} {
8586 $menu entryconfigure 7 -label [mc "Reset %s branch to here" $mainhead] -state normal
8588 $menu entryconfigure 7 -label [mc "Detached head: can't reset" $mainhead] -state disabled
8590 $menu entryconfigure 9 -state $mstate
8591 $menu entryconfigure 10 -state $mstate
8592 $menu entryconfigure 11 -state $mstate
8594 set menu $fakerowmenu
8596 $menu entryconfigure [mca "Diff this -> selected"] -state $state
8597 $menu entryconfigure [mca "Diff selected -> this"] -state $state
8598 $menu entryconfigure [mca "Make patch"] -state $state
8599 $menu entryconfigure [mca "Diff this -> marked commit"] -state $mstate
8600 $menu entryconfigure [mca "Diff marked commit -> this"] -state $mstate
8601 tk_popup $menu $x $y
8605 global rowmenuid markedid canv
8607 set markedid $rowmenuid
8608 make_idmark $markedid
8614 if {[info exists markedid]} {
8619 proc replace_by_kids {l r} {
8620 global curview children
8622 set id [commitonrow $r]
8623 set l [lreplace $l 0 0]
8624 foreach kid $children($curview,$id) {
8625 lappend l [rowofcommit $kid]
8627 return [lsort -integer -decreasing -unique $l]
8630 proc find_common_desc {} {
8631 global markedid rowmenuid curview children
8633 if {![info exists markedid]} return
8634 if {![commitinview $markedid $curview] ||
8635 ![commitinview $rowmenuid $curview]} return
8636 #set t1 [clock clicks -milliseconds]
8637 set l1 [list [rowofcommit $markedid]]
8638 set l2 [list [rowofcommit $rowmenuid]]
8640 set r1 [lindex $l1 0]
8641 set r2 [lindex $l2 0]
8642 if {$r1 eq {} || $r2 eq {}} break
8648 set l1 [replace_by_kids $l1 $r1]
8650 set l2 [replace_by_kids $l2 $r2]
8653 #set t2 [clock clicks -milliseconds]
8654 #puts "took [expr {$t2-$t1}]ms"
8657 proc compare_commits {} {
8658 global markedid rowmenuid curview children
8660 if {![info exists markedid]} return
8661 if {![commitinview $markedid $curview]} return
8662 addtohistory [list do_cmp_commits $markedid $rowmenuid]
8663 do_cmp_commits $markedid $rowmenuid
8666 proc getpatchid {id} {
8669 if {![info exists patchids($id)]} {
8670 set cmd [diffcmd [list $id] {-p --root}]
8671 # trim off the initial "|"
8672 set cmd [lrange $cmd 1 end]
8674 set x [eval exec $cmd | git patch-id]
8675 set patchids($id) [lindex $x 0]
8677 set patchids($id) "error"
8680 return $patchids($id)
8683 proc do_cmp_commits {a b} {
8684 global ctext curview parents children patchids commitinfo
8686 $ctext conf -state normal
8689 for {set i 0} {$i < 100} {incr i} {
8692 if {[llength $parents($curview,$a)] > 1} {
8693 appendshortlink $a [mc "Skipping merge commit "] "\n"
8696 set patcha [getpatchid $a]
8698 if {[llength $parents($curview,$b)] > 1} {
8699 appendshortlink $b [mc "Skipping merge commit "] "\n"
8702 set patchb [getpatchid $b]
8704 if {!$skipa && !$skipb} {
8705 set heada [lindex $commitinfo($a) 0]
8706 set headb [lindex $commitinfo($b) 0]
8707 if {$patcha eq "error"} {
8708 appendshortlink $a [mc "Error getting patch ID for "] \
8709 [mc " - stopping\n"]
8712 if {$patchb eq "error"} {
8713 appendshortlink $b [mc "Error getting patch ID for "] \
8714 [mc " - stopping\n"]
8717 if {$patcha eq $patchb} {
8718 if {$heada eq $headb} {
8719 appendshortlink $a [mc "Commit "]
8720 appendshortlink $b " == " " $heada\n"
8722 appendshortlink $a [mc "Commit "] " $heada\n"
8723 appendshortlink $b [mc " is the same patch as\n "] \
8729 $ctext insert end "\n"
8730 appendshortlink $a [mc "Commit "] " $heada\n"
8731 appendshortlink $b [mc " differs from\n "] \
8733 $ctext insert end [mc "Diff of commits:\n\n"]
8734 $ctext conf -state disabled
8741 set kids [real_children $curview,$a]
8742 if {[llength $kids] != 1} {
8743 $ctext insert end "\n"
8744 appendshortlink $a [mc "Commit "] \
8745 [mc " has %s children - stopping\n" [llength $kids]]
8748 set a [lindex $kids 0]
8751 set kids [real_children $curview,$b]
8752 if {[llength $kids] != 1} {
8753 appendshortlink $b [mc "Commit "] \
8754 [mc " has %s children - stopping\n" [llength $kids]]
8757 set b [lindex $kids 0]
8760 $ctext conf -state disabled
8763 proc diffcommits {a b} {
8764 global diffcontext diffids blobdifffd diffinhdr currdiffsubmod
8766 set tmpdir [gitknewtmpdir]
8767 set fna [file join $tmpdir "commit-[string range $a 0 7]"]
8768 set fnb [file join $tmpdir "commit-[string range $b 0 7]"]
8770 exec git diff-tree -p --pretty $a >$fna
8771 exec git diff-tree -p --pretty $b >$fnb
8773 error_popup [mc "Error writing commit to file: %s" $err]
8777 set fd [open "| diff -U$diffcontext $fna $fnb" r]
8779 error_popup [mc "Error diffing commits: %s" $err]
8782 set diffids [list commits $a $b]
8783 set blobdifffd($diffids) $fd
8785 set currdiffsubmod ""
8786 filerun $fd [list getblobdiffline $fd $diffids]
8789 proc diffvssel {dirn} {
8790 global rowmenuid selectedline
8792 if {$selectedline eq {}} return
8794 set oldid [commitonrow $selectedline]
8795 set newid $rowmenuid
8797 set oldid $rowmenuid
8798 set newid [commitonrow $selectedline]
8800 addtohistory [list doseldiff $oldid $newid] savectextpos
8801 doseldiff $oldid $newid
8804 proc diffvsmark {dirn} {
8805 global rowmenuid markedid
8807 if {![info exists markedid]} return
8810 set newid $rowmenuid
8812 set oldid $rowmenuid
8815 addtohistory [list doseldiff $oldid $newid] savectextpos
8816 doseldiff $oldid $newid
8819 proc doseldiff {oldid newid} {
8823 $ctext conf -state normal
8825 init_flist [mc "Top"]
8826 $ctext insert end "[mc "From"] "
8827 $ctext insert end $oldid link0
8828 setlink $oldid link0
8829 $ctext insert end "\n "
8830 $ctext insert end [lindex $commitinfo($oldid) 0]
8831 $ctext insert end "\n\n[mc "To"] "
8832 $ctext insert end $newid link1
8833 setlink $newid link1
8834 $ctext insert end "\n "
8835 $ctext insert end [lindex $commitinfo($newid) 0]
8836 $ctext insert end "\n"
8837 $ctext conf -state disabled
8838 $ctext tag remove found 1.0 end
8839 startdiff [list $oldid $newid]
8843 global rowmenuid currentid commitinfo patchtop patchnum NS
8845 if {![info exists currentid]} return
8846 set oldid $currentid
8847 set oldhead [lindex $commitinfo($oldid) 0]
8848 set newid $rowmenuid
8849 set newhead [lindex $commitinfo($newid) 0]
8852 catch {destroy $top}
8854 make_transient $top .
8855 ${NS}::label $top.title -text [mc "Generate patch"]
8856 grid $top.title - -pady 10
8857 ${NS}::label $top.from -text [mc "From:"]
8858 ${NS}::entry $top.fromsha1 -width 40
8859 $top.fromsha1 insert 0 $oldid
8860 $top.fromsha1 conf -state readonly
8861 grid $top.from $top.fromsha1 -sticky w
8862 ${NS}::entry $top.fromhead -width 60
8863 $top.fromhead insert 0 $oldhead
8864 $top.fromhead conf -state readonly
8865 grid x $top.fromhead -sticky w
8866 ${NS}::label $top.to -text [mc "To:"]
8867 ${NS}::entry $top.tosha1 -width 40
8868 $top.tosha1 insert 0 $newid
8869 $top.tosha1 conf -state readonly
8870 grid $top.to $top.tosha1 -sticky w
8871 ${NS}::entry $top.tohead -width 60
8872 $top.tohead insert 0 $newhead
8873 $top.tohead conf -state readonly
8874 grid x $top.tohead -sticky w
8875 ${NS}::button $top.rev -text [mc "Reverse"] -command mkpatchrev
8876 grid $top.rev x -pady 10 -padx 5
8877 ${NS}::label $top.flab -text [mc "Output file:"]
8878 ${NS}::entry $top.fname -width 60
8879 $top.fname insert 0 [file normalize "patch$patchnum.patch"]
8881 grid $top.flab $top.fname -sticky w
8882 ${NS}::frame $top.buts
8883 ${NS}::button $top.buts.gen -text [mc "Generate"] -command mkpatchgo
8884 ${NS}::button $top.buts.can -text [mc "Cancel"] -command mkpatchcan
8885 bind $top <Key-Return> mkpatchgo
8886 bind $top <Key-Escape> mkpatchcan
8887 grid $top.buts.gen $top.buts.can
8888 grid columnconfigure $top.buts 0 -weight 1 -uniform a
8889 grid columnconfigure $top.buts 1 -weight 1 -uniform a
8890 grid $top.buts - -pady 10 -sticky ew
8894 proc mkpatchrev {} {
8897 set oldid [$patchtop.fromsha1 get]
8898 set oldhead [$patchtop.fromhead get]
8899 set newid [$patchtop.tosha1 get]
8900 set newhead [$patchtop.tohead get]
8901 foreach e [list fromsha1 fromhead tosha1 tohead] \
8902 v [list $newid $newhead $oldid $oldhead] {
8903 $patchtop.$e conf -state normal
8904 $patchtop.$e delete 0 end
8905 $patchtop.$e insert 0 $v
8906 $patchtop.$e conf -state readonly
8911 global patchtop nullid nullid2
8913 set oldid [$patchtop.fromsha1 get]
8914 set newid [$patchtop.tosha1 get]
8915 set fname [$patchtop.fname get]
8916 set cmd [diffcmd [list $oldid $newid] -p]
8917 # trim off the initial "|"
8918 set cmd [lrange $cmd 1 end]
8919 lappend cmd >$fname &
8920 if {[catch {eval exec $cmd} err]} {
8921 error_popup "[mc "Error creating patch:"] $err" $patchtop
8923 catch {destroy $patchtop}
8927 proc mkpatchcan {} {
8930 catch {destroy $patchtop}
8935 global rowmenuid mktagtop commitinfo NS
8939 catch {destroy $top}
8941 make_transient $top .
8942 ${NS}::label $top.title -text [mc "Create tag"]
8943 grid $top.title - -pady 10
8944 ${NS}::label $top.id -text [mc "ID:"]
8945 ${NS}::entry $top.sha1 -width 40
8946 $top.sha1 insert 0 $rowmenuid
8947 $top.sha1 conf -state readonly
8948 grid $top.id $top.sha1 -sticky w
8949 ${NS}::entry $top.head -width 60
8950 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0]
8951 $top.head conf -state readonly
8952 grid x $top.head -sticky w
8953 ${NS}::label $top.tlab -text [mc "Tag name:"]
8954 ${NS}::entry $top.tag -width 60
8955 grid $top.tlab $top.tag -sticky w
8956 ${NS}::label $top.op -text [mc "Tag message is optional"]
8957 grid $top.op -columnspan 2 -sticky we
8958 ${NS}::label $top.mlab -text [mc "Tag message:"]
8959 ${NS}::entry $top.msg -width 60
8960 grid $top.mlab $top.msg -sticky w
8961 ${NS}::frame $top.buts
8962 ${NS}::button $top.buts.gen -text [mc "Create"] -command mktaggo
8963 ${NS}::button $top.buts.can -text [mc "Cancel"] -command mktagcan
8964 bind $top <Key-Return> mktaggo
8965 bind $top <Key-Escape> mktagcan
8966 grid $top.buts.gen $top.buts.can
8967 grid columnconfigure $top.buts 0 -weight 1 -uniform a
8968 grid columnconfigure $top.buts 1 -weight 1 -uniform a
8969 grid $top.buts - -pady 10 -sticky ew
8974 global mktagtop env tagids idtags
8976 set id [$mktagtop.sha1 get]
8977 set tag [$mktagtop.tag get]
8978 set msg [$mktagtop.msg get]
8980 error_popup [mc "No tag name specified"] $mktagtop
8983 if {[info exists tagids($tag)]} {
8984 error_popup [mc "Tag \"%s\" already exists" $tag] $mktagtop
8989 exec git tag -a -m $msg $tag $id
8991 exec git tag $tag $id
8994 error_popup "[mc "Error creating tag:"] $err" $mktagtop
8998 set tagids($tag) $id
8999 lappend idtags($id) $tag
9007 proc redrawtags {id} {
9008 global canv linehtag idpos currentid curview cmitlisted markedid
9009 global canvxmax iddrawn circleitem mainheadid circlecolors
9011 if {![commitinview $id $curview]} return
9012 if {![info exists iddrawn($id)]} return
9013 set row [rowofcommit $id]
9014 if {$id eq $mainheadid} {
9017 set ofill [lindex $circlecolors $cmitlisted($curview,$id)]
9019 $canv itemconf $circleitem($row) -fill $ofill
9020 $canv delete tag.$id
9021 set xt [eval drawtags $id $idpos($id)]
9022 $canv coords $linehtag($id) $xt [lindex $idpos($id) 2]
9023 set text [$canv itemcget $linehtag($id) -text]
9024 set font [$canv itemcget $linehtag($id) -font]
9025 set xr [expr {$xt + [font measure $font $text]}]
9026 if {$xr > $canvxmax} {
9030 if {[info exists currentid] && $currentid == $id} {
9033 if {[info exists markedid] && $markedid eq $id} {
9041 catch {destroy $mktagtop}
9046 if {![domktag]} return
9050 proc writecommit {} {
9051 global rowmenuid wrcomtop commitinfo wrcomcmd NS
9053 set top .writecommit
9055 catch {destroy $top}
9057 make_transient $top .
9058 ${NS}::label $top.title -text [mc "Write commit to file"]
9059 grid $top.title - -pady 10
9060 ${NS}::label $top.id -text [mc "ID:"]
9061 ${NS}::entry $top.sha1 -width 40
9062 $top.sha1 insert 0 $rowmenuid
9063 $top.sha1 conf -state readonly
9064 grid $top.id $top.sha1 -sticky w
9065 ${NS}::entry $top.head -width 60
9066 $top.head insert 0 [lindex $commitinfo($rowmenuid) 0]
9067 $top.head conf -state readonly
9068 grid x $top.head -sticky w
9069 ${NS}::label $top.clab -text [mc "Command:"]
9070 ${NS}::entry $top.cmd -width 60 -textvariable wrcomcmd
9071 grid $top.clab $top.cmd -sticky w -pady 10
9072 ${NS}::label $top.flab -text [mc "Output file:"]
9073 ${NS}::entry $top.fname -width 60
9074 $top.fname insert 0 [file normalize "commit-[string range $rowmenuid 0 6]"]
9075 grid $top.flab $top.fname -sticky w
9076 ${NS}::frame $top.buts
9077 ${NS}::button $top.buts.gen -text [mc "Write"] -command wrcomgo
9078 ${NS}::button $top.buts.can -text [mc "Cancel"] -command wrcomcan
9079 bind $top <Key-Return> wrcomgo
9080 bind $top <Key-Escape> wrcomcan
9081 grid $top.buts.gen $top.buts.can
9082 grid columnconfigure $top.buts 0 -weight 1 -uniform a
9083 grid columnconfigure $top.buts 1 -weight 1 -uniform a
9084 grid $top.buts - -pady 10 -sticky ew
9091 set id [$wrcomtop.sha1 get]
9092 set cmd "echo $id | [$wrcomtop.cmd get]"
9093 set fname [$wrcomtop.fname get]
9094 if {[catch {exec sh -c $cmd >$fname &} err]} {
9095 error_popup "[mc "Error writing commit:"] $err" $wrcomtop
9097 catch {destroy $wrcomtop}
9104 catch {destroy $wrcomtop}
9109 global rowmenuid mkbrtop NS
9112 catch {destroy $top}
9114 make_transient $top .
9115 ${NS}::label $top.title -text [mc "Create new branch"]
9116 grid $top.title - -pady 10
9117 ${NS}::label $top.id -text [mc "ID:"]
9118 ${NS}::entry $top.sha1 -width 40
9119 $top.sha1 insert 0 $rowmenuid
9120 $top.sha1 conf -state readonly
9121 grid $top.id $top.sha1 -sticky w
9122 ${NS}::label $top.nlab -text [mc "Name:"]
9123 ${NS}::entry $top.name -width 40
9124 grid $top.nlab $top.name -sticky w
9125 ${NS}::frame $top.buts
9126 ${NS}::button $top.buts.go -text [mc "Create"] -command [list mkbrgo $top]
9127 ${NS}::button $top.buts.can -text [mc "Cancel"] -command "catch {destroy $top}"
9128 bind $top <Key-Return> [list mkbrgo $top]
9129 bind $top <Key-Escape> "catch {destroy $top}"
9130 grid $top.buts.go $top.buts.can
9131 grid columnconfigure $top.buts 0 -weight 1 -uniform a
9132 grid columnconfigure $top.buts 1 -weight 1 -uniform a
9133 grid $top.buts - -pady 10 -sticky ew
9138 global headids idheads
9140 set name [$top.name get]
9141 set id [$top.sha1 get]
9145 error_popup [mc "Please specify a name for the new branch"] $top
9148 if {[info exists headids($name)]} {
9149 if {![confirm_popup [mc \
9150 "Branch '%s' already exists. Overwrite?" $name] $top]} {
9153 set old_id $headids($name)
9156 catch {destroy $top}
9157 lappend cmdargs $name $id
9161 eval exec git branch $cmdargs
9167 if {$old_id ne {}} {
9173 set headids($name) $id
9174 lappend idheads($id) $name
9183 proc exec_citool {tool_args {baseid {}}} {
9184 global commitinfo env
9186 set save_env [array get env GIT_AUTHOR_*]
9188 if {$baseid ne {}} {
9189 if {![info exists commitinfo($baseid)]} {
9192 set author [lindex $commitinfo($baseid) 1]
9193 set date [lindex $commitinfo($baseid) 2]
9194 if {[regexp {^\s*(\S.*\S|\S)\s*<(.*)>\s*$} \
9195 $author author name email]
9197 set env(GIT_AUTHOR_NAME) $name
9198 set env(GIT_AUTHOR_EMAIL) $email
9199 set env(GIT_AUTHOR_DATE) $date
9203 eval exec git citool $tool_args &
9205 array unset env GIT_AUTHOR_*
9206 array set env $save_env
9209 proc cherrypick {} {
9210 global rowmenuid curview
9211 global mainhead mainheadid
9214 set oldhead [exec git rev-parse HEAD]
9215 set dheads [descheads $rowmenuid]
9216 if {$dheads ne {} && [lsearch -exact $dheads $oldhead] >= 0} {
9217 set ok [confirm_popup [mc "Commit %s is already\
9218 included in branch %s -- really re-apply it?" \
9219 [string range $rowmenuid 0 7] $mainhead]]
9222 nowbusy cherrypick [mc "Cherry-picking"]
9224 # Unfortunately git-cherry-pick writes stuff to stderr even when
9225 # no error occurs, and exec takes that as an indication of error...
9226 if {[catch {exec sh -c "git cherry-pick -r $rowmenuid 2>&1"} err]} {
9229 {Entry '(.*)' (would be overwritten by merge|not uptodate)} \
9231 error_popup [mc "Cherry-pick failed because of local changes\
9232 to file '%s'.\nPlease commit, reset or stash\
9233 your changes and try again." $fname]
9234 } elseif {[regexp -line \
9235 {^(CONFLICT \(.*\):|Automatic cherry-pick failed|error: could not apply)} \
9237 if {[confirm_popup [mc "Cherry-pick failed because of merge\
9238 conflict.\nDo you wish to run git citool to\
9240 # Force citool to read MERGE_MSG
9241 file delete [file join $gitdir "GITGUI_MSG"]
9242 exec_citool {} $rowmenuid
9250 set newhead [exec git rev-parse HEAD]
9251 if {$newhead eq $oldhead} {
9253 error_popup [mc "No changes committed"]
9256 addnewchild $newhead $oldhead
9257 if {[commitinview $oldhead $curview]} {
9258 # XXX this isn't right if we have a path limit...
9259 insertrow $newhead $oldhead $curview
9260 if {$mainhead ne {}} {
9261 movehead $newhead $mainhead
9262 movedhead $newhead $mainhead
9264 set mainheadid $newhead
9273 global mainhead rowmenuid confirm_ok resettype NS
9276 set w ".confirmreset"
9279 wm title $w [mc "Confirm reset"]
9280 ${NS}::label $w.m -text \
9281 [mc "Reset branch %s to %s?" $mainhead [string range $rowmenuid 0 7]]
9282 pack $w.m -side top -fill x -padx 20 -pady 20
9283 ${NS}::labelframe $w.f -text [mc "Reset type:"]
9285 ${NS}::radiobutton $w.f.soft -value soft -variable resettype \
9286 -text [mc "Soft: Leave working tree and index untouched"]
9287 grid $w.f.soft -sticky w
9288 ${NS}::radiobutton $w.f.mixed -value mixed -variable resettype \
9289 -text [mc "Mixed: Leave working tree untouched, reset index"]
9290 grid $w.f.mixed -sticky w
9291 ${NS}::radiobutton $w.f.hard -value hard -variable resettype \
9292 -text [mc "Hard: Reset working tree and index\n(discard ALL local changes)"]
9293 grid $w.f.hard -sticky w
9294 pack $w.f -side top -fill x -padx 4
9295 ${NS}::button $w.ok -text [mc OK] -command "set confirm_ok 1; destroy $w"
9296 pack $w.ok -side left -fill x -padx 20 -pady 20
9297 ${NS}::button $w.cancel -text [mc Cancel] -command "destroy $w"
9298 bind $w <Key-Escape> [list destroy $w]
9299 pack $w.cancel -side right -fill x -padx 20 -pady 20
9300 bind $w <Visibility> "grab $w; focus $w"
9302 if {!$confirm_ok} return
9303 if {[catch {set fd [open \
9304 [list | git reset --$resettype $rowmenuid 2>@1] r]} err]} {
9308 filerun $fd [list readresetstat $fd]
9309 nowbusy reset [mc "Resetting"]
9314 proc readresetstat {fd} {
9315 global mainhead mainheadid showlocalchanges rprogcoord
9317 if {[gets $fd line] >= 0} {
9318 if {[regexp {([0-9]+)% \(([0-9]+)/([0-9]+)\)} $line match p m n]} {
9319 set rprogcoord [expr {1.0 * $m / $n}]
9327 if {[catch {close $fd} err]} {
9330 set oldhead $mainheadid
9331 set newhead [exec git rev-parse HEAD]
9332 if {$newhead ne $oldhead} {
9333 movehead $newhead $mainhead
9334 movedhead $newhead $mainhead
9335 set mainheadid $newhead
9339 if {$showlocalchanges} {
9345 # context menu for a head
9346 proc headmenu {x y id head} {
9347 global headmenuid headmenuhead headctxmenu mainhead
9351 set headmenuhead $head
9353 if {[string match "remotes/*" $head]} {
9356 if {$head eq $mainhead} {
9359 $headctxmenu entryconfigure 0 -state $state
9360 $headctxmenu entryconfigure 1 -state $state
9361 tk_popup $headctxmenu $x $y
9365 global headmenuid headmenuhead headids
9366 global showlocalchanges
9368 # check the tree is clean first??
9369 nowbusy checkout [mc "Checking out"]
9373 set fd [open [list | git checkout $headmenuhead 2>@1] r]
9377 if {$showlocalchanges} {
9381 filerun $fd [list readcheckoutstat $fd $headmenuhead $headmenuid]
9385 proc readcheckoutstat {fd newhead newheadid} {
9386 global mainhead mainheadid headids showlocalchanges progresscoords
9387 global viewmainheadid curview
9389 if {[gets $fd line] >= 0} {
9390 if {[regexp {([0-9]+)% \(([0-9]+)/([0-9]+)\)} $line match p m n]} {
9391 set progresscoords [list 0 [expr {1.0 * $m / $n}]]
9396 set progresscoords {0 0}
9399 if {[catch {close $fd} err]} {
9402 set oldmainid $mainheadid
9403 set mainhead $newhead
9404 set mainheadid $newheadid
9405 set viewmainheadid($curview) $newheadid
9406 redrawtags $oldmainid
9407 redrawtags $newheadid
9409 if {$showlocalchanges} {
9415 global headmenuid headmenuhead mainhead
9418 set head $headmenuhead
9420 # this check shouldn't be needed any more...
9421 if {$head eq $mainhead} {
9422 error_popup [mc "Cannot delete the currently checked-out branch"]
9425 set dheads [descheads $id]
9426 if {[llength $dheads] == 1 && $idheads($dheads) eq $head} {
9427 # the stuff on this branch isn't on any other branch
9428 if {![confirm_popup [mc "The commits on branch %s aren't on any other\
9429 branch.\nReally delete branch %s?" $head $head]]} return
9433 if {[catch {exec git branch -D $head} err]} {
9438 removehead $id $head
9439 removedhead $id $head
9446 # Display a list of tags and heads
9448 global showrefstop bgcolor fgcolor selectbgcolor NS
9449 global bglist fglist reflistfilter reflist maincursor
9452 set showrefstop $top
9453 if {[winfo exists $top]} {
9459 wm title $top [mc "Tags and heads: %s" [file tail [pwd]]]
9460 make_transient $top .
9461 text $top.list -background $bgcolor -foreground $fgcolor \
9462 -selectbackground $selectbgcolor -font mainfont \
9463 -xscrollcommand "$top.xsb set" -yscrollcommand "$top.ysb set" \
9464 -width 30 -height 20 -cursor $maincursor \
9465 -spacing1 1 -spacing3 1 -state disabled
9466 $top.list tag configure highlight -background $selectbgcolor
9467 lappend bglist $top.list
9468 lappend fglist $top.list
9469 ${NS}::scrollbar $top.ysb -command "$top.list yview" -orient vertical
9470 ${NS}::scrollbar $top.xsb -command "$top.list xview" -orient horizontal
9471 grid $top.list $top.ysb -sticky nsew
9472 grid $top.xsb x -sticky ew
9474 ${NS}::label $top.f.l -text "[mc "Filter"]: "
9475 ${NS}::entry $top.f.e -width 20 -textvariable reflistfilter
9476 set reflistfilter "*"
9477 trace add variable reflistfilter write reflistfilter_change
9478 pack $top.f.e -side right -fill x -expand 1
9479 pack $top.f.l -side left
9480 grid $top.f - -sticky ew -pady 2
9481 ${NS}::button $top.close -command [list destroy $top] -text [mc "Close"]
9482 bind $top <Key-Escape> [list destroy $top]
9484 grid columnconfigure $top 0 -weight 1
9485 grid rowconfigure $top 0 -weight 1
9486 bind $top.list <1> {break}
9487 bind $top.list <B1-Motion> {break}
9488 bind $top.list <ButtonRelease-1> {sel_reflist %W %x %y; break}
9493 proc sel_reflist {w x y} {
9494 global showrefstop reflist headids tagids otherrefids
9496 if {![winfo exists $showrefstop]} return
9497 set l [lindex [split [$w index "@$x,$y"] "."] 0]
9498 set ref [lindex $reflist [expr {$l-1}]]
9499 set n [lindex $ref 0]
9500 switch -- [lindex $ref 1] {
9501 "H" {selbyid $headids($n)}
9502 "T" {selbyid $tagids($n)}
9503 "o" {selbyid $otherrefids($n)}
9505 $showrefstop.list tag add highlight $l.0 "$l.0 lineend"
9508 proc unsel_reflist {} {
9511 if {![info exists showrefstop] || ![winfo exists $showrefstop]} return
9512 $showrefstop.list tag remove highlight 0.0 end
9515 proc reflistfilter_change {n1 n2 op} {
9516 global reflistfilter
9518 after cancel refill_reflist
9519 after 200 refill_reflist
9522 proc refill_reflist {} {
9523 global reflist reflistfilter showrefstop headids tagids otherrefids
9526 if {![info exists showrefstop] || ![winfo exists $showrefstop]} return
9528 foreach n [array names headids] {
9529 if {[string match $reflistfilter $n]} {
9530 if {[commitinview $headids($n) $curview]} {
9531 lappend refs [list $n H]
9533 interestedin $headids($n) {run refill_reflist}
9537 foreach n [array names tagids] {
9538 if {[string match $reflistfilter $n]} {
9539 if {[commitinview $tagids($n) $curview]} {
9540 lappend refs [list $n T]
9542 interestedin $tagids($n) {run refill_reflist}
9546 foreach n [array names otherrefids] {
9547 if {[string match $reflistfilter $n]} {
9548 if {[commitinview $otherrefids($n) $curview]} {
9549 lappend refs [list $n o]
9551 interestedin $otherrefids($n) {run refill_reflist}
9555 set refs [lsort -index 0 $refs]
9556 if {$refs eq $reflist} return
9558 # Update the contents of $showrefstop.list according to the
9559 # differences between $reflist (old) and $refs (new)
9560 $showrefstop.list conf -state normal
9561 $showrefstop.list insert end "\n"
9564 while {$i < [llength $reflist] || $j < [llength $refs]} {
9565 if {$i < [llength $reflist]} {
9566 if {$j < [llength $refs]} {
9567 set cmp [string compare [lindex $reflist $i 0] \
9568 [lindex $refs $j 0]]
9570 set cmp [string compare [lindex $reflist $i 1] \
9571 [lindex $refs $j 1]]
9581 $showrefstop.list delete "[expr {$j+1}].0" "[expr {$j+2}].0"
9589 set l [expr {$j + 1}]
9590 $showrefstop.list image create $l.0 -align baseline \
9591 -image reficon-[lindex $refs $j 1] -padx 2
9592 $showrefstop.list insert $l.1 "[lindex $refs $j 0]\n"
9598 # delete last newline
9599 $showrefstop.list delete end-2c end-1c
9600 $showrefstop.list conf -state disabled
9603 # Stuff for finding nearby tags
9604 proc getallcommits {} {
9605 global allcommits nextarc seeds allccache allcwait cachedarcs allcupdate
9606 global idheads idtags idotherrefs allparents tagobjid
9609 if {![info exists allcommits]} {
9615 set allccache [file join $gitdir "gitk.cache"]
9617 set f [open $allccache r]
9626 set cmd [list | git rev-list --parents]
9627 set allcupdate [expr {$seeds ne {}}]
9631 set refs [concat [array names idheads] [array names idtags] \
9632 [array names idotherrefs]]
9635 foreach name [array names tagobjid] {
9636 lappend tagobjs $tagobjid($name)
9638 foreach id [lsort -unique $refs] {
9639 if {![info exists allparents($id)] &&
9640 [lsearch -exact $tagobjs $id] < 0} {
9651 set fd [open [concat $cmd $ids] r]
9652 fconfigure $fd -blocking 0
9655 filerun $fd [list getallclines $fd]
9661 # Since most commits have 1 parent and 1 child, we group strings of
9662 # such commits into "arcs" joining branch/merge points (BMPs), which
9663 # are commits that either don't have 1 parent or don't have 1 child.
9665 # arcnos(id) - incoming arcs for BMP, arc we're on for other nodes
9666 # arcout(id) - outgoing arcs for BMP
9667 # arcids(a) - list of IDs on arc including end but not start
9668 # arcstart(a) - BMP ID at start of arc
9669 # arcend(a) - BMP ID at end of arc
9670 # growing(a) - arc a is still growing
9671 # arctags(a) - IDs out of arcids (excluding end) that have tags
9672 # archeads(a) - IDs out of arcids (excluding end) that have heads
9673 # The start of an arc is at the descendent end, so "incoming" means
9674 # coming from descendents, and "outgoing" means going towards ancestors.
9676 proc getallclines {fd} {
9677 global allparents allchildren idtags idheads nextarc
9678 global arcnos arcids arctags arcout arcend arcstart archeads growing
9679 global seeds allcommits cachedarcs allcupdate
9682 while {[incr nid] <= 1000 && [gets $fd line] >= 0} {
9683 set id [lindex $line 0]
9684 if {[info exists allparents($id)]} {
9689 set olds [lrange $line 1 end]
9690 set allparents($id) $olds
9691 if {![info exists allchildren($id)]} {
9692 set allchildren($id) {}
9697 if {[llength $olds] == 1 && [llength $a] == 1} {
9698 lappend arcids($a) $id
9699 if {[info exists idtags($id)]} {
9700 lappend arctags($a) $id
9702 if {[info exists idheads($id)]} {
9703 lappend archeads($a) $id
9705 if {[info exists allparents($olds)]} {
9706 # seen parent already
9707 if {![info exists arcout($olds)]} {
9710 lappend arcids($a) $olds
9711 set arcend($a) $olds
9714 lappend allchildren($olds) $id
9715 lappend arcnos($olds) $a
9719 foreach a $arcnos($id) {
9720 lappend arcids($a) $id
9727 lappend allchildren($p) $id
9728 set a [incr nextarc]
9729 set arcstart($a) $id
9736 if {[info exists allparents($p)]} {
9737 # seen it already, may need to make a new branch
9738 if {![info exists arcout($p)]} {
9741 lappend arcids($a) $p
9745 lappend arcnos($p) $a
9750 global cached_dheads cached_dtags cached_atags
9751 catch {unset cached_dheads}
9752 catch {unset cached_dtags}
9753 catch {unset cached_atags}
9756 return [expr {$nid >= 1000? 2: 1}]
9760 fconfigure $fd -blocking 1
9763 # got an error reading the list of commits
9764 # if we were updating, try rereading the whole thing again
9770 error_popup "[mc "Error reading commit topology information;\
9771 branch and preceding/following tag information\
9772 will be incomplete."]\n($err)"
9775 if {[incr allcommits -1] == 0} {
9785 proc recalcarc {a} {
9786 global arctags archeads arcids idtags idheads
9790 foreach id [lrange $arcids($a) 0 end-1] {
9791 if {[info exists idtags($id)]} {
9794 if {[info exists idheads($id)]} {
9799 set archeads($a) $ah
9803 global arcnos arcids nextarc arctags archeads idtags idheads
9804 global arcstart arcend arcout allparents growing
9807 if {[llength $a] != 1} {
9808 puts "oops splitarc called but [llength $a] arcs already"
9812 set i [lsearch -exact $arcids($a) $p]
9814 puts "oops splitarc $p not in arc $a"
9817 set na [incr nextarc]
9818 if {[info exists arcend($a)]} {
9819 set arcend($na) $arcend($a)
9821 set l [lindex $allparents([lindex $arcids($a) end]) 0]
9822 set j [lsearch -exact $arcnos($l) $a]
9823 set arcnos($l) [lreplace $arcnos($l) $j $j $na]
9825 set tail [lrange $arcids($a) [expr {$i+1}] end]
9826 set arcids($a) [lrange $arcids($a) 0 $i]
9828 set arcstart($na) $p
9830 set arcids($na) $tail
9831 if {[info exists growing($a)]} {
9837 if {[llength $arcnos($id)] == 1} {
9840 set j [lsearch -exact $arcnos($id) $a]
9841 set arcnos($id) [lreplace $arcnos($id) $j $j $na]
9845 # reconstruct tags and heads lists
9846 if {$arctags($a) ne {} || $archeads($a) ne {}} {
9851 set archeads($na) {}
9855 # Update things for a new commit added that is a child of one
9856 # existing commit. Used when cherry-picking.
9857 proc addnewchild {id p} {
9858 global allparents allchildren idtags nextarc
9859 global arcnos arcids arctags arcout arcend arcstart archeads growing
9860 global seeds allcommits
9862 if {![info exists allcommits] || ![info exists arcnos($p)]} return
9863 set allparents($id) [list $p]
9864 set allchildren($id) {}
9867 lappend allchildren($p) $id
9868 set a [incr nextarc]
9869 set arcstart($a) $id
9872 set arcids($a) [list $p]
9874 if {![info exists arcout($p)]} {
9877 lappend arcnos($p) $a
9878 set arcout($id) [list $a]
9881 # This implements a cache for the topology information.
9882 # The cache saves, for each arc, the start and end of the arc,
9883 # the ids on the arc, and the outgoing arcs from the end.
9884 proc readcache {f} {
9885 global arcnos arcids arcout arcstart arcend arctags archeads nextarc
9886 global idtags idheads allparents cachedarcs possible_seeds seeds growing
9891 if {$lim - $a > 500} {
9892 set lim [expr {$a + 500}]
9896 # finish reading the cache and setting up arctags, etc.
9898 if {$line ne "1"} {error "bad final version"}
9900 foreach id [array names idtags] {
9901 if {[info exists arcnos($id)] && [llength $arcnos($id)] == 1 &&
9902 [llength $allparents($id)] == 1} {
9903 set a [lindex $arcnos($id) 0]
9904 if {$arctags($a) eq {}} {
9909 foreach id [array names idheads] {
9910 if {[info exists arcnos($id)] && [llength $arcnos($id)] == 1 &&
9911 [llength $allparents($id)] == 1} {
9912 set a [lindex $arcnos($id) 0]
9913 if {$archeads($a) eq {}} {
9918 foreach id [lsort -unique $possible_seeds] {
9919 if {$arcnos($id) eq {}} {
9925 while {[incr a] <= $lim} {
9927 if {[llength $line] != 3} {error "bad line"}
9928 set s [lindex $line 0]
9930 lappend arcout($s) $a
9931 if {![info exists arcnos($s)]} {
9932 lappend possible_seeds $s
9935 set e [lindex $line 1]
9940 if {![info exists arcout($e)]} {
9944 set arcids($a) [lindex $line 2]
9945 foreach id $arcids($a) {
9946 lappend allparents($s) $id
9948 lappend arcnos($id) $a
9950 if {![info exists allparents($s)]} {
9951 set allparents($s) {}
9956 set nextarc [expr {$a - 1}]
9969 global nextarc cachedarcs possible_seeds
9973 if {[llength $line] != 2 || [lindex $line 0] ne "1"} {error "bad version"}
9974 # make sure it's an integer
9975 set cachedarcs [expr {int([lindex $line 1])}]
9976 if {$cachedarcs < 0} {error "bad number of arcs"}
9978 set possible_seeds {}
9986 proc dropcache {err} {
9987 global allcwait nextarc cachedarcs seeds
9989 #puts "dropping cache ($err)"
9990 foreach v {arcnos arcout arcids arcstart arcend growing \
9991 arctags archeads allparents allchildren} {
10002 proc writecache {f} {
10003 global cachearc cachedarcs allccache
10004 global arcstart arcend arcnos arcids arcout
10007 set lim $cachedarcs
10008 if {$lim - $a > 1000} {
10009 set lim [expr {$a + 1000}]
10012 while {[incr a] <= $lim} {
10013 if {[info exists arcend($a)]} {
10014 puts $f [list $arcstart($a) $arcend($a) $arcids($a)]
10016 puts $f [list $arcstart($a) {} $arcids($a)]
10021 catch {file delete $allccache}
10022 #puts "writing cache failed ($err)"
10025 set cachearc [expr {$a - 1}]
10026 if {$a > $cachedarcs} {
10034 proc savecache {} {
10035 global nextarc cachedarcs cachearc allccache
10037 if {$nextarc == $cachedarcs} return
10039 set cachedarcs $nextarc
10041 set f [open $allccache w]
10042 puts $f [list 1 $cachedarcs]
10047 # Returns 1 if a is an ancestor of b, -1 if b is an ancestor of a,
10048 # or 0 if neither is true.
10049 proc anc_or_desc {a b} {
10050 global arcout arcstart arcend arcnos cached_isanc
10052 if {$arcnos($a) eq $arcnos($b)} {
10053 # Both are on the same arc(s); either both are the same BMP,
10054 # or if one is not a BMP, the other is also not a BMP or is
10055 # the BMP at end of the arc (and it only has 1 incoming arc).
10056 # Or both can be BMPs with no incoming arcs.
10057 if {$a eq $b || $arcnos($a) eq {}} {
10060 # assert {[llength $arcnos($a)] == 1}
10061 set arc [lindex $arcnos($a) 0]
10062 set i [lsearch -exact $arcids($arc) $a]
10063 set j [lsearch -exact $arcids($arc) $b]
10064 if {$i < 0 || $i > $j} {
10071 if {![info exists arcout($a)]} {
10072 set arc [lindex $arcnos($a) 0]
10073 if {[info exists arcend($arc)]} {
10074 set aend $arcend($arc)
10078 set a $arcstart($arc)
10082 if {![info exists arcout($b)]} {
10083 set arc [lindex $arcnos($b) 0]
10084 if {[info exists arcend($arc)]} {
10085 set bend $arcend($arc)
10089 set b $arcstart($arc)
10099 if {[info exists cached_isanc($a,$bend)]} {
10100 if {$cached_isanc($a,$bend)} {
10104 if {[info exists cached_isanc($b,$aend)]} {
10105 if {$cached_isanc($b,$aend)} {
10108 if {[info exists cached_isanc($a,$bend)]} {
10113 set todo [list $a $b]
10116 for {set i 0} {$i < [llength $todo]} {incr i} {
10117 set x [lindex $todo $i]
10118 if {$anc($x) eq {}} {
10121 foreach arc $arcnos($x) {
10122 set xd $arcstart($arc)
10123 if {$xd eq $bend} {
10124 set cached_isanc($a,$bend) 1
10125 set cached_isanc($b,$aend) 0
10127 } elseif {$xd eq $aend} {
10128 set cached_isanc($b,$aend) 1
10129 set cached_isanc($a,$bend) 0
10132 if {![info exists anc($xd)]} {
10133 set anc($xd) $anc($x)
10135 } elseif {$anc($xd) ne $anc($x)} {
10140 set cached_isanc($a,$bend) 0
10141 set cached_isanc($b,$aend) 0
10145 # This identifies whether $desc has an ancestor that is
10146 # a growing tip of the graph and which is not an ancestor of $anc
10147 # and returns 0 if so and 1 if not.
10148 # If we subsequently discover a tag on such a growing tip, and that
10149 # turns out to be a descendent of $anc (which it could, since we
10150 # don't necessarily see children before parents), then $desc
10151 # isn't a good choice to display as a descendent tag of
10152 # $anc (since it is the descendent of another tag which is
10153 # a descendent of $anc). Similarly, $anc isn't a good choice to
10154 # display as a ancestor tag of $desc.
10156 proc is_certain {desc anc} {
10157 global arcnos arcout arcstart arcend growing problems
10160 if {[llength $arcnos($anc)] == 1} {
10161 # tags on the same arc are certain
10162 if {$arcnos($desc) eq $arcnos($anc)} {
10165 if {![info exists arcout($anc)]} {
10166 # if $anc is partway along an arc, use the start of the arc instead
10167 set a [lindex $arcnos($anc) 0]
10168 set anc $arcstart($a)
10171 if {[llength $arcnos($desc)] > 1 || [info exists arcout($desc)]} {
10174 set a [lindex $arcnos($desc) 0]
10180 set anclist [list $x]
10184 for {set i 0} {$i < [llength $anclist] && ($nnh > 0 || $ngrowanc > 0)} {incr i} {
10185 set x [lindex $anclist $i]
10190 foreach a $arcout($x) {
10191 if {[info exists growing($a)]} {
10192 if {![info exists growanc($x)] && $dl($x)} {
10198 if {[info exists dl($y)]} {
10202 if {![info exists done($y)]} {
10205 if {[info exists growanc($x)]} {
10209 for {set k 0} {$k < [llength $xl]} {incr k} {
10210 set z [lindex $xl $k]
10211 foreach c $arcout($z) {
10212 if {[info exists arcend($c)]} {
10214 if {[info exists dl($v)] && $dl($v)} {
10216 if {![info exists done($v)]} {
10219 if {[info exists growanc($v)]} {
10229 } elseif {$y eq $anc || !$dl($x)} {
10240 foreach x [array names growanc] {
10249 proc validate_arctags {a} {
10250 global arctags idtags
10253 set na $arctags($a)
10254 foreach id $arctags($a) {
10256 if {![info exists idtags($id)]} {
10257 set na [lreplace $na $i $i]
10261 set arctags($a) $na
10264 proc validate_archeads {a} {
10265 global archeads idheads
10268 set na $archeads($a)
10269 foreach id $archeads($a) {
10271 if {![info exists idheads($id)]} {
10272 set na [lreplace $na $i $i]
10276 set archeads($a) $na
10279 # Return the list of IDs that have tags that are descendents of id,
10280 # ignoring IDs that are descendents of IDs already reported.
10281 proc desctags {id} {
10282 global arcnos arcstart arcids arctags idtags allparents
10283 global growing cached_dtags
10285 if {![info exists allparents($id)]} {
10288 set t1 [clock clicks -milliseconds]
10290 if {[llength $arcnos($id)] == 1 && [llength $allparents($id)] == 1} {
10291 # part-way along an arc; check that arc first
10292 set a [lindex $arcnos($id) 0]
10293 if {$arctags($a) ne {}} {
10294 validate_arctags $a
10295 set i [lsearch -exact $arcids($a) $id]
10297 foreach t $arctags($a) {
10298 set j [lsearch -exact $arcids($a) $t]
10299 if {$j >= $i} break
10306 set id $arcstart($a)
10307 if {[info exists idtags($id)]} {
10311 if {[info exists cached_dtags($id)]} {
10312 return $cached_dtags($id)
10316 set todo [list $id]
10319 for {set i 0} {$i < [llength $todo] && $nc > 0} {incr i} {
10320 set id [lindex $todo $i]
10322 set ta [info exists hastaggedancestor($id)]
10326 # ignore tags on starting node
10327 if {!$ta && $i > 0} {
10328 if {[info exists idtags($id)]} {
10329 set tagloc($id) $id
10331 } elseif {[info exists cached_dtags($id)]} {
10332 set tagloc($id) $cached_dtags($id)
10336 foreach a $arcnos($id) {
10337 set d $arcstart($a)
10338 if {!$ta && $arctags($a) ne {}} {
10339 validate_arctags $a
10340 if {$arctags($a) ne {}} {
10341 lappend tagloc($id) [lindex $arctags($a) end]
10344 if {$ta || $arctags($a) ne {}} {
10345 set tomark [list $d]
10346 for {set j 0} {$j < [llength $tomark]} {incr j} {
10347 set dd [lindex $tomark $j]
10348 if {![info exists hastaggedancestor($dd)]} {
10349 if {[info exists done($dd)]} {
10350 foreach b $arcnos($dd) {
10351 lappend tomark $arcstart($b)
10353 if {[info exists tagloc($dd)]} {
10356 } elseif {[info exists queued($dd)]} {
10359 set hastaggedancestor($dd) 1
10363 if {![info exists queued($d)]} {
10366 if {![info exists hastaggedancestor($d)]} {
10373 foreach id [array names tagloc] {
10374 if {![info exists hastaggedancestor($id)]} {
10375 foreach t $tagloc($id) {
10376 if {[lsearch -exact $tags $t] < 0} {
10382 set t2 [clock clicks -milliseconds]
10385 # remove tags that are descendents of other tags
10386 for {set i 0} {$i < [llength $tags]} {incr i} {
10387 set a [lindex $tags $i]
10388 for {set j 0} {$j < $i} {incr j} {
10389 set b [lindex $tags $j]
10390 set r [anc_or_desc $a $b]
10392 set tags [lreplace $tags $j $j]
10395 } elseif {$r == -1} {
10396 set tags [lreplace $tags $i $i]
10403 if {[array names growing] ne {}} {
10404 # graph isn't finished, need to check if any tag could get
10405 # eclipsed by another tag coming later. Simply ignore any
10406 # tags that could later get eclipsed.
10409 if {[is_certain $t $origid]} {
10413 if {$tags eq $ctags} {
10414 set cached_dtags($origid) $tags
10419 set cached_dtags($origid) $tags
10421 set t3 [clock clicks -milliseconds]
10422 if {0 && $t3 - $t1 >= 100} {
10423 puts "iterating descendents ($loopix/[llength $todo] nodes) took\
10424 [expr {$t2-$t1}]+[expr {$t3-$t2}]ms, $nc candidates left"
10429 proc anctags {id} {
10430 global arcnos arcids arcout arcend arctags idtags allparents
10431 global growing cached_atags
10433 if {![info exists allparents($id)]} {
10436 set t1 [clock clicks -milliseconds]
10438 if {[llength $arcnos($id)] == 1 && [llength $allparents($id)] == 1} {
10439 # part-way along an arc; check that arc first
10440 set a [lindex $arcnos($id) 0]
10441 if {$arctags($a) ne {}} {
10442 validate_arctags $a
10443 set i [lsearch -exact $arcids($a) $id]
10444 foreach t $arctags($a) {
10445 set j [lsearch -exact $arcids($a) $t]
10451 if {![info exists arcend($a)]} {
10455 if {[info exists idtags($id)]} {
10459 if {[info exists cached_atags($id)]} {
10460 return $cached_atags($id)
10464 set todo [list $id]
10468 for {set i 0} {$i < [llength $todo] && $nc > 0} {incr i} {
10469 set id [lindex $todo $i]
10471 set td [info exists hastaggeddescendent($id)]
10475 # ignore tags on starting node
10476 if {!$td && $i > 0} {
10477 if {[info exists idtags($id)]} {
10478 set tagloc($id) $id
10480 } elseif {[info exists cached_atags($id)]} {
10481 set tagloc($id) $cached_atags($id)
10485 foreach a $arcout($id) {
10486 if {!$td && $arctags($a) ne {}} {
10487 validate_arctags $a
10488 if {$arctags($a) ne {}} {
10489 lappend tagloc($id) [lindex $arctags($a) 0]
10492 if {![info exists arcend($a)]} continue
10494 if {$td || $arctags($a) ne {}} {
10495 set tomark [list $d]
10496 for {set j 0} {$j < [llength $tomark]} {incr j} {
10497 set dd [lindex $tomark $j]
10498 if {![info exists hastaggeddescendent($dd)]} {
10499 if {[info exists done($dd)]} {
10500 foreach b $arcout($dd) {
10501 if {[info exists arcend($b)]} {
10502 lappend tomark $arcend($b)
10505 if {[info exists tagloc($dd)]} {
10508 } elseif {[info exists queued($dd)]} {
10511 set hastaggeddescendent($dd) 1
10515 if {![info exists queued($d)]} {
10518 if {![info exists hastaggeddescendent($d)]} {
10524 set t2 [clock clicks -milliseconds]
10527 foreach id [array names tagloc] {
10528 if {![info exists hastaggeddescendent($id)]} {
10529 foreach t $tagloc($id) {
10530 if {[lsearch -exact $tags $t] < 0} {
10537 # remove tags that are ancestors of other tags
10538 for {set i 0} {$i < [llength $tags]} {incr i} {
10539 set a [lindex $tags $i]
10540 for {set j 0} {$j < $i} {incr j} {
10541 set b [lindex $tags $j]
10542 set r [anc_or_desc $a $b]
10544 set tags [lreplace $tags $j $j]
10547 } elseif {$r == 1} {
10548 set tags [lreplace $tags $i $i]
10555 if {[array names growing] ne {}} {
10556 # graph isn't finished, need to check if any tag could get
10557 # eclipsed by another tag coming later. Simply ignore any
10558 # tags that could later get eclipsed.
10561 if {[is_certain $origid $t]} {
10565 if {$tags eq $ctags} {
10566 set cached_atags($origid) $tags
10571 set cached_atags($origid) $tags
10573 set t3 [clock clicks -milliseconds]
10574 if {0 && $t3 - $t1 >= 100} {
10575 puts "iterating ancestors ($loopix/[llength $todo] nodes) took\
10576 [expr {$t2-$t1}]+[expr {$t3-$t2}]ms, $nc candidates left"
10581 # Return the list of IDs that have heads that are descendents of id,
10582 # including id itself if it has a head.
10583 proc descheads {id} {
10584 global arcnos arcstart arcids archeads idheads cached_dheads
10587 if {![info exists allparents($id)]} {
10591 if {[llength $arcnos($id)] == 1 && [llength $allparents($id)] == 1} {
10592 # part-way along an arc; check it first
10593 set a [lindex $arcnos($id) 0]
10594 if {$archeads($a) ne {}} {
10595 validate_archeads $a
10596 set i [lsearch -exact $arcids($a) $id]
10597 foreach t $archeads($a) {
10598 set j [lsearch -exact $arcids($a) $t]
10603 set id $arcstart($a)
10606 set todo [list $id]
10609 for {set i 0} {$i < [llength $todo]} {incr i} {
10610 set id [lindex $todo $i]
10611 if {[info exists cached_dheads($id)]} {
10612 set ret [concat $ret $cached_dheads($id)]
10614 if {[info exists idheads($id)]} {
10617 foreach a $arcnos($id) {
10618 if {$archeads($a) ne {}} {
10619 validate_archeads $a
10620 if {$archeads($a) ne {}} {
10621 set ret [concat $ret $archeads($a)]
10624 set d $arcstart($a)
10625 if {![info exists seen($d)]} {
10632 set ret [lsort -unique $ret]
10633 set cached_dheads($origid) $ret
10634 return [concat $ret $aret]
10637 proc addedtag {id} {
10638 global arcnos arcout cached_dtags cached_atags
10640 if {![info exists arcnos($id)]} return
10641 if {![info exists arcout($id)]} {
10642 recalcarc [lindex $arcnos($id) 0]
10644 catch {unset cached_dtags}
10645 catch {unset cached_atags}
10648 proc addedhead {hid head} {
10649 global arcnos arcout cached_dheads
10651 if {![info exists arcnos($hid)]} return
10652 if {![info exists arcout($hid)]} {
10653 recalcarc [lindex $arcnos($hid) 0]
10655 catch {unset cached_dheads}
10658 proc removedhead {hid head} {
10659 global cached_dheads
10661 catch {unset cached_dheads}
10664 proc movedhead {hid head} {
10665 global arcnos arcout cached_dheads
10667 if {![info exists arcnos($hid)]} return
10668 if {![info exists arcout($hid)]} {
10669 recalcarc [lindex $arcnos($hid) 0]
10671 catch {unset cached_dheads}
10674 proc changedrefs {} {
10675 global cached_dheads cached_dtags cached_atags cached_tagcontent
10676 global arctags archeads arcnos arcout idheads idtags
10678 foreach id [concat [array names idheads] [array names idtags]] {
10679 if {[info exists arcnos($id)] && ![info exists arcout($id)]} {
10680 set a [lindex $arcnos($id) 0]
10681 if {![info exists donearc($a)]} {
10687 catch {unset cached_tagcontent}
10688 catch {unset cached_dtags}
10689 catch {unset cached_atags}
10690 catch {unset cached_dheads}
10693 proc rereadrefs {} {
10694 global idtags idheads idotherrefs mainheadid
10696 set refids [concat [array names idtags] \
10697 [array names idheads] [array names idotherrefs]]
10698 foreach id $refids {
10699 if {![info exists ref($id)]} {
10700 set ref($id) [listrefs $id]
10703 set oldmainhead $mainheadid
10706 set refids [lsort -unique [concat $refids [array names idtags] \
10707 [array names idheads] [array names idotherrefs]]]
10708 foreach id $refids {
10709 set v [listrefs $id]
10710 if {![info exists ref($id)] || $ref($id) != $v} {
10714 if {$oldmainhead ne $mainheadid} {
10715 redrawtags $oldmainhead
10716 redrawtags $mainheadid
10721 proc listrefs {id} {
10722 global idtags idheads idotherrefs
10725 if {[info exists idtags($id)]} {
10729 if {[info exists idheads($id)]} {
10730 set y $idheads($id)
10733 if {[info exists idotherrefs($id)]} {
10734 set z $idotherrefs($id)
10736 return [list $x $y $z]
10739 proc showtag {tag isnew} {
10740 global ctext cached_tagcontent tagids linknum tagobjid
10743 addtohistory [list showtag $tag 0] savectextpos
10745 $ctext conf -state normal
10749 if {![info exists cached_tagcontent($tag)]} {
10751 set cached_tagcontent($tag) [exec git cat-file tag $tag]
10754 if {[info exists cached_tagcontent($tag)]} {
10755 set text $cached_tagcontent($tag)
10757 set text "[mc "Tag"]: $tag\n[mc "Id"]: $tagids($tag)"
10759 appendwithlinks $text {}
10760 maybe_scroll_ctext 1
10761 $ctext conf -state disabled
10773 if {[info exists gitktmpdir]} {
10774 catch {file delete -force $gitktmpdir}
10778 proc mkfontdisp {font top which} {
10779 global fontattr fontpref $font NS use_ttk
10781 set fontpref($font) [set $font]
10782 ${NS}::button $top.${font}but -text $which \
10783 -command [list choosefont $font $which]
10784 ${NS}::label $top.$font -relief flat -font $font \
10785 -text $fontattr($font,family) -justify left
10786 grid x $top.${font}but $top.$font -sticky w
10789 proc choosefont {font which} {
10790 global fontparam fontlist fonttop fontattr
10793 set fontparam(which) $which
10794 set fontparam(font) $font
10795 set fontparam(family) [font actual $font -family]
10796 set fontparam(size) $fontattr($font,size)
10797 set fontparam(weight) $fontattr($font,weight)
10798 set fontparam(slant) $fontattr($font,slant)
10801 if {![winfo exists $top]} {
10803 eval font config sample [font actual $font]
10805 make_transient $top $prefstop
10806 wm title $top [mc "Gitk font chooser"]
10807 ${NS}::label $top.l -textvariable fontparam(which)
10808 pack $top.l -side top
10809 set fontlist [lsort [font families]]
10810 ${NS}::frame $top.f
10811 listbox $top.f.fam -listvariable fontlist \
10812 -yscrollcommand [list $top.f.sb set]
10813 bind $top.f.fam <<ListboxSelect>> selfontfam
10814 ${NS}::scrollbar $top.f.sb -command [list $top.f.fam yview]
10815 pack $top.f.sb -side right -fill y
10816 pack $top.f.fam -side left -fill both -expand 1
10817 pack $top.f -side top -fill both -expand 1
10818 ${NS}::frame $top.g
10819 spinbox $top.g.size -from 4 -to 40 -width 4 \
10820 -textvariable fontparam(size) \
10821 -validatecommand {string is integer -strict %s}
10822 checkbutton $top.g.bold -padx 5 \
10823 -font {{Times New Roman} 12 bold} -text [mc "B"] -indicatoron 0 \
10824 -variable fontparam(weight) -onvalue bold -offvalue normal
10825 checkbutton $top.g.ital -padx 5 \
10826 -font {{Times New Roman} 12 italic} -text [mc "I"] -indicatoron 0 \
10827 -variable fontparam(slant) -onvalue italic -offvalue roman
10828 pack $top.g.size $top.g.bold $top.g.ital -side left
10829 pack $top.g -side top
10830 canvas $top.c -width 150 -height 50 -border 2 -relief sunk \
10832 $top.c create text 100 25 -anchor center -text $which -font sample \
10833 -fill black -tags text
10834 bind $top.c <Configure> [list centertext $top.c]
10835 pack $top.c -side top -fill x
10836 ${NS}::frame $top.buts
10837 ${NS}::button $top.buts.ok -text [mc "OK"] -command fontok -default active
10838 ${NS}::button $top.buts.can -text [mc "Cancel"] -command fontcan -default normal
10839 bind $top <Key-Return> fontok
10840 bind $top <Key-Escape> fontcan
10841 grid $top.buts.ok $top.buts.can
10842 grid columnconfigure $top.buts 0 -weight 1 -uniform a
10843 grid columnconfigure $top.buts 1 -weight 1 -uniform a
10844 pack $top.buts -side bottom -fill x
10845 trace add variable fontparam write chg_fontparam
10848 $top.c itemconf text -text $which
10850 set i [lsearch -exact $fontlist $fontparam(family)]
10852 $top.f.fam selection set $i
10857 proc centertext {w} {
10858 $w coords text [expr {[winfo width $w] / 2}] [expr {[winfo height $w] / 2}]
10862 global fontparam fontpref prefstop
10864 set f $fontparam(font)
10865 set fontpref($f) [list $fontparam(family) $fontparam(size)]
10866 if {$fontparam(weight) eq "bold"} {
10867 lappend fontpref($f) "bold"
10869 if {$fontparam(slant) eq "italic"} {
10870 lappend fontpref($f) "italic"
10872 set w $prefstop.notebook.fonts.$f
10873 $w conf -text $fontparam(family) -font $fontpref($f)
10879 global fonttop fontparam
10881 if {[info exists fonttop]} {
10882 catch {destroy $fonttop}
10883 catch {font delete sample}
10889 if {[package vsatisfies [package provide Tk] 8.6]} {
10890 # In Tk 8.6 we have a native font chooser dialog. Overwrite the above
10891 # function to make use of it.
10892 proc choosefont {font which} {
10893 tk fontchooser configure -title $which -font $font \
10894 -command [list on_choosefont $font $which]
10895 tk fontchooser show
10897 proc on_choosefont {font which newfont} {
10899 puts stderr "$font $newfont"
10900 array set f [font actual $newfont]
10901 set fontparam(which) $which
10902 set fontparam(font) $font
10903 set fontparam(family) $f(-family)
10904 set fontparam(size) $f(-size)
10905 set fontparam(weight) $f(-weight)
10906 set fontparam(slant) $f(-slant)
10911 proc selfontfam {} {
10912 global fonttop fontparam
10914 set i [$fonttop.f.fam curselection]
10916 set fontparam(family) [$fonttop.f.fam get $i]
10920 proc chg_fontparam {v sub op} {
10923 font config sample -$sub $fontparam($sub)
10926 # Create a property sheet tab page
10927 proc create_prefs_page {w} {
10929 set parent [join [lrange [split $w .] 0 end-1] .]
10930 if {[winfo class $parent] eq "TNotebook"} {
10933 ${NS}::labelframe $w
10937 proc prefspage_general {notebook} {
10938 global NS maxwidth maxgraphpct showneartags showlocalchanges
10939 global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
10940 global hideremotes want_ttk have_ttk
10942 set page [create_prefs_page $notebook.general]
10944 ${NS}::label $page.ldisp -text [mc "Commit list display options"]
10945 grid $page.ldisp - -sticky w -pady 10
10946 ${NS}::label $page.spacer -text " "
10947 ${NS}::label $page.maxwidthl -text [mc "Maximum graph width (lines)"]
10948 spinbox $page.maxwidth -from 0 -to 100 -width 4 -textvariable maxwidth
10949 grid $page.spacer $page.maxwidthl $page.maxwidth -sticky w
10950 ${NS}::label $page.maxpctl -text [mc "Maximum graph width (% of pane)"]
10951 spinbox $page.maxpct -from 1 -to 100 -width 4 -textvariable maxgraphpct
10952 grid x $page.maxpctl $page.maxpct -sticky w
10953 ${NS}::checkbutton $page.showlocal -text [mc "Show local changes"] \
10954 -variable showlocalchanges
10955 grid x $page.showlocal -sticky w
10956 ${NS}::checkbutton $page.autoselect -text [mc "Auto-select SHA1 (length)"] \
10957 -variable autoselect
10958 spinbox $page.autosellen -from 1 -to 40 -width 4 -textvariable autosellen
10959 grid x $page.autoselect $page.autosellen -sticky w
10960 ${NS}::checkbutton $page.hideremotes -text [mc "Hide remote refs"] \
10961 -variable hideremotes
10962 grid x $page.hideremotes -sticky w
10964 ${NS}::label $page.ddisp -text [mc "Diff display options"]
10965 grid $page.ddisp - -sticky w -pady 10
10966 ${NS}::label $page.tabstopl -text [mc "Tab spacing"]
10967 spinbox $page.tabstop -from 1 -to 20 -width 4 -textvariable tabstop
10968 grid x $page.tabstopl $page.tabstop -sticky w
10969 ${NS}::checkbutton $page.ntag -text [mc "Display nearby tags"] \
10970 -variable showneartags
10971 grid x $page.ntag -sticky w
10972 ${NS}::checkbutton $page.ldiff -text [mc "Limit diffs to listed paths"] \
10973 -variable limitdiffs
10974 grid x $page.ldiff -sticky w
10975 ${NS}::checkbutton $page.lattr -text [mc "Support per-file encodings"] \
10976 -variable perfile_attrs
10977 grid x $page.lattr -sticky w
10979 ${NS}::entry $page.extdifft -textvariable extdifftool
10980 ${NS}::frame $page.extdifff
10981 ${NS}::label $page.extdifff.l -text [mc "External diff tool" ]
10982 ${NS}::button $page.extdifff.b -text [mc "Choose..."] -command choose_extdiff
10983 pack $page.extdifff.l $page.extdifff.b -side left
10984 pack configure $page.extdifff.l -padx 10
10985 grid x $page.extdifff $page.extdifft -sticky ew
10987 ${NS}::label $page.lgen -text [mc "General options"]
10988 grid $page.lgen - -sticky w -pady 10
10989 ${NS}::checkbutton $page.want_ttk -variable want_ttk \
10990 -text [mc "Use themed widgets"]
10992 ${NS}::label $page.ttk_note -text [mc "(change requires restart)"]
10994 ${NS}::label $page.ttk_note -text [mc "(currently unavailable)"]
10996 grid x $page.want_ttk $page.ttk_note -sticky w
11000 proc prefspage_colors {notebook} {
11001 global NS uicolor bgcolor fgcolor ctext diffcolors selectbgcolor markbgcolor
11003 set page [create_prefs_page $notebook.colors]
11005 ${NS}::label $page.cdisp -text [mc "Colors: press to choose"]
11006 grid $page.cdisp - -sticky w -pady 10
11007 label $page.ui -padx 40 -relief sunk -background $uicolor
11008 ${NS}::button $page.uibut -text [mc "Interface"] \
11009 -command [list choosecolor uicolor {} $page.ui [mc "interface"] setui]
11010 grid x $page.uibut $page.ui -sticky w
11011 label $page.bg -padx 40 -relief sunk -background $bgcolor
11012 ${NS}::button $page.bgbut -text [mc "Background"] \
11013 -command [list choosecolor bgcolor {} $page.bg [mc "background"] setbg]
11014 grid x $page.bgbut $page.bg -sticky w
11015 label $page.fg -padx 40 -relief sunk -background $fgcolor
11016 ${NS}::button $page.fgbut -text [mc "Foreground"] \
11017 -command [list choosecolor fgcolor {} $page.fg [mc "foreground"] setfg]
11018 grid x $page.fgbut $page.fg -sticky w
11019 label $page.diffold -padx 40 -relief sunk -background [lindex $diffcolors 0]
11020 ${NS}::button $page.diffoldbut -text [mc "Diff: old lines"] \
11021 -command [list choosecolor diffcolors 0 $page.diffold [mc "diff old lines"] \
11022 [list $ctext tag conf d0 -foreground]]
11023 grid x $page.diffoldbut $page.diffold -sticky w
11024 label $page.diffnew -padx 40 -relief sunk -background [lindex $diffcolors 1]
11025 ${NS}::button $page.diffnewbut -text [mc "Diff: new lines"] \
11026 -command [list choosecolor diffcolors 1 $page.diffnew [mc "diff new lines"] \
11027 [list $ctext tag conf dresult -foreground]]
11028 grid x $page.diffnewbut $page.diffnew -sticky w
11029 label $page.hunksep -padx 40 -relief sunk -background [lindex $diffcolors 2]
11030 ${NS}::button $page.hunksepbut -text [mc "Diff: hunk header"] \
11031 -command [list choosecolor diffcolors 2 $page.hunksep \
11032 [mc "diff hunk header"] \
11033 [list $ctext tag conf hunksep -foreground]]
11034 grid x $page.hunksepbut $page.hunksep -sticky w
11035 label $page.markbgsep -padx 40 -relief sunk -background $markbgcolor
11036 ${NS}::button $page.markbgbut -text [mc "Marked line bg"] \
11037 -command [list choosecolor markbgcolor {} $page.markbgsep \
11038 [mc "marked line background"] \
11039 [list $ctext tag conf omark -background]]
11040 grid x $page.markbgbut $page.markbgsep -sticky w
11041 label $page.selbgsep -padx 40 -relief sunk -background $selectbgcolor
11042 ${NS}::button $page.selbgbut -text [mc "Select bg"] \
11043 -command [list choosecolor selectbgcolor {} $page.selbgsep [mc "background"] setselbg]
11044 grid x $page.selbgbut $page.selbgsep -sticky w
11048 proc prefspage_fonts {notebook} {
11050 set page [create_prefs_page $notebook.fonts]
11051 ${NS}::label $page.cfont -text [mc "Fonts: press to choose"]
11052 grid $page.cfont - -sticky w -pady 10
11053 mkfontdisp mainfont $page [mc "Main font"]
11054 mkfontdisp textfont $page [mc "Diff display font"]
11055 mkfontdisp uifont $page [mc "User interface font"]
11060 global maxwidth maxgraphpct use_ttk NS
11061 global oldprefs prefstop showneartags showlocalchanges
11062 global uicolor bgcolor fgcolor ctext diffcolors selectbgcolor markbgcolor
11063 global tabstop limitdiffs autoselect autosellen extdifftool perfile_attrs
11064 global hideremotes want_ttk have_ttk
11068 if {[winfo exists $top]} {
11072 foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
11073 limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
11074 set oldprefs($v) [set $v]
11077 wm title $top [mc "Gitk preferences"]
11078 make_transient $top .
11080 if {[set use_notebook [expr {$use_ttk && [info command ::ttk::notebook] ne ""}]]} {
11081 set notebook [ttk::notebook $top.notebook]
11083 set notebook [${NS}::frame $top.notebook -borderwidth 0 -relief flat]
11086 lappend pages [prefspage_general $notebook] [mc "General"]
11087 lappend pages [prefspage_colors $notebook] [mc "Colors"]
11088 lappend pages [prefspage_fonts $notebook] [mc "Fonts"]
11090 foreach {page title} $pages {
11091 if {$use_notebook} {
11092 $notebook add $page -text $title
11094 set btn [${NS}::button $notebook.b_[string map {. X} $page] \
11095 -text $title -command [list raise $page]]
11096 $page configure -text $title
11097 grid $btn -row 0 -column [incr col] -sticky w
11098 grid $page -row 1 -column 0 -sticky news -columnspan 100
11102 if {!$use_notebook} {
11103 grid columnconfigure $notebook 0 -weight 1
11104 grid rowconfigure $notebook 1 -weight 1
11105 raise [lindex $pages 0]
11108 grid $notebook -sticky news -padx 2 -pady 2
11109 grid rowconfigure $top 0 -weight 1
11110 grid columnconfigure $top 0 -weight 1
11112 ${NS}::frame $top.buts
11113 ${NS}::button $top.buts.ok -text [mc "OK"] -command prefsok -default active
11114 ${NS}::button $top.buts.can -text [mc "Cancel"] -command prefscan -default normal
11115 bind $top <Key-Return> prefsok
11116 bind $top <Key-Escape> prefscan
11117 grid $top.buts.ok $top.buts.can
11118 grid columnconfigure $top.buts 0 -weight 1 -uniform a
11119 grid columnconfigure $top.buts 1 -weight 1 -uniform a
11120 grid $top.buts - - -pady 10 -sticky ew
11121 grid columnconfigure $top 2 -weight 1
11122 bind $top <Visibility> [list focus $top.buts.ok]
11125 proc choose_extdiff {} {
11128 set prog [tk_getOpenFile -title [mc "External diff tool"] -multiple false]
11130 set extdifftool $prog
11134 proc choosecolor {v vi w x cmd} {
11137 set c [tk_chooseColor -initialcolor [lindex [set $v] $vi] \
11138 -title [mc "Gitk: choose color for %s" $x]]
11139 if {$c eq {}} return
11140 $w conf -background $c
11145 proc setselbg {c} {
11146 global bglist cflist
11147 foreach w $bglist {
11148 $w configure -selectbackground $c
11150 $cflist tag configure highlight \
11151 -background [$cflist cget -selectbackground]
11152 allcanvs itemconf secsel -fill $c
11155 # This sets the background color and the color scheme for the whole UI.
11156 # For some reason, tk_setPalette chooses a nasty dark red for selectColor
11157 # if we don't specify one ourselves, which makes the checkbuttons and
11158 # radiobuttons look bad. This chooses white for selectColor if the
11159 # background color is light, or black if it is dark.
11161 if {[tk windowingsystem] eq "win32"} { return }
11162 set bg [winfo rgb . $c]
11164 if {[lindex $bg 0] + 1.5 * [lindex $bg 1] + 0.5 * [lindex $bg 2] > 100000} {
11167 tk_setPalette background $c selectColor $selc
11173 foreach w $bglist {
11174 $w conf -background $c
11181 foreach w $fglist {
11182 $w conf -foreground $c
11184 allcanvs itemconf text -fill $c
11185 $canv itemconf circle -outline $c
11186 $canv itemconf markid -outline $c
11190 global oldprefs prefstop
11192 foreach v {maxwidth maxgraphpct showneartags showlocalchanges \
11193 limitdiffs tabstop perfile_attrs hideremotes want_ttk} {
11195 set $v $oldprefs($v)
11197 catch {destroy $prefstop}
11203 global maxwidth maxgraphpct
11204 global oldprefs prefstop showneartags showlocalchanges
11205 global fontpref mainfont textfont uifont
11206 global limitdiffs treediffs perfile_attrs
11209 catch {destroy $prefstop}
11213 if {$mainfont ne $fontpref(mainfont)} {
11214 set mainfont $fontpref(mainfont)
11215 parsefont mainfont $mainfont
11216 eval font configure mainfont [fontflags mainfont]
11217 eval font configure mainfontbold [fontflags mainfont 1]
11221 if {$textfont ne $fontpref(textfont)} {
11222 set textfont $fontpref(textfont)
11223 parsefont textfont $textfont
11224 eval font configure textfont [fontflags textfont]
11225 eval font configure textfontbold [fontflags textfont 1]
11227 if {$uifont ne $fontpref(uifont)} {
11228 set uifont $fontpref(uifont)
11229 parsefont uifont $uifont
11230 eval font configure uifont [fontflags uifont]
11233 if {$showlocalchanges != $oldprefs(showlocalchanges)} {
11234 if {$showlocalchanges} {
11240 if {$limitdiffs != $oldprefs(limitdiffs) ||
11241 ($perfile_attrs && !$oldprefs(perfile_attrs))} {
11242 # treediffs elements are limited by path;
11243 # won't have encodings cached if perfile_attrs was just turned on
11244 catch {unset treediffs}
11246 if {$fontchanged || $maxwidth != $oldprefs(maxwidth)
11247 || $maxgraphpct != $oldprefs(maxgraphpct)} {
11249 } elseif {$showneartags != $oldprefs(showneartags) ||
11250 $limitdiffs != $oldprefs(limitdiffs)} {
11253 if {$hideremotes != $oldprefs(hideremotes)} {
11258 proc formatdate {d} {
11259 global datetimeformat
11261 set d [clock format [lindex $d 0] -format $datetimeformat]
11266 # This list of encoding names and aliases is distilled from
11267 # http://www.iana.org/assignments/character-sets.
11268 # Not all of them are supported by Tcl.
11269 set encoding_aliases {
11270 { ANSI_X3.4-1968 iso-ir-6 ANSI_X3.4-1986 ISO_646.irv:1991 ASCII
11271 ISO646-US US-ASCII us IBM367 cp367 csASCII }
11272 { ISO-10646-UTF-1 csISO10646UTF1 }
11273 { ISO_646.basic:1983 ref csISO646basic1983 }
11274 { INVARIANT csINVARIANT }
11275 { ISO_646.irv:1983 iso-ir-2 irv csISO2IntlRefVersion }
11276 { BS_4730 iso-ir-4 ISO646-GB gb uk csISO4UnitedKingdom }
11277 { NATS-SEFI iso-ir-8-1 csNATSSEFI }
11278 { NATS-SEFI-ADD iso-ir-8-2 csNATSSEFIADD }
11279 { NATS-DANO iso-ir-9-1 csNATSDANO }
11280 { NATS-DANO-ADD iso-ir-9-2 csNATSDANOADD }
11281 { SEN_850200_B iso-ir-10 FI ISO646-FI ISO646-SE se csISO10Swedish }
11282 { SEN_850200_C iso-ir-11 ISO646-SE2 se2 csISO11SwedishForNames }
11283 { KS_C_5601-1987 iso-ir-149 KS_C_5601-1989 KSC_5601 korean csKSC56011987 }
11284 { ISO-2022-KR csISO2022KR }
11286 { ISO-2022-JP csISO2022JP }
11287 { ISO-2022-JP-2 csISO2022JP2 }
11288 { JIS_C6220-1969-jp JIS_C6220-1969 iso-ir-13 katakana x0201-7
11289 csISO13JISC6220jp }
11290 { JIS_C6220-1969-ro iso-ir-14 jp ISO646-JP csISO14JISC6220ro }
11291 { IT iso-ir-15 ISO646-IT csISO15Italian }
11292 { PT iso-ir-16 ISO646-PT csISO16Portuguese }
11293 { ES iso-ir-17 ISO646-ES csISO17Spanish }
11294 { greek7-old iso-ir-18 csISO18Greek7Old }
11295 { latin-greek iso-ir-19 csISO19LatinGreek }
11296 { DIN_66003 iso-ir-21 de ISO646-DE csISO21German }
11297 { NF_Z_62-010_(1973) iso-ir-25 ISO646-FR1 csISO25French }
11298 { Latin-greek-1 iso-ir-27 csISO27LatinGreek1 }
11299 { ISO_5427 iso-ir-37 csISO5427Cyrillic }
11300 { JIS_C6226-1978 iso-ir-42 csISO42JISC62261978 }
11301 { BS_viewdata iso-ir-47 csISO47BSViewdata }
11302 { INIS iso-ir-49 csISO49INIS }
11303 { INIS-8 iso-ir-50 csISO50INIS8 }
11304 { INIS-cyrillic iso-ir-51 csISO51INISCyrillic }
11305 { ISO_5427:1981 iso-ir-54 ISO5427Cyrillic1981 }
11306 { ISO_5428:1980 iso-ir-55 csISO5428Greek }
11307 { GB_1988-80 iso-ir-57 cn ISO646-CN csISO57GB1988 }
11308 { GB_2312-80 iso-ir-58 chinese csISO58GB231280 }
11309 { NS_4551-1 iso-ir-60 ISO646-NO no csISO60DanishNorwegian
11310 csISO60Norwegian1 }
11311 { NS_4551-2 ISO646-NO2 iso-ir-61 no2 csISO61Norwegian2 }
11312 { NF_Z_62-010 iso-ir-69 ISO646-FR fr csISO69French }
11313 { videotex-suppl iso-ir-70 csISO70VideotexSupp1 }
11314 { PT2 iso-ir-84 ISO646-PT2 csISO84Portuguese2 }
11315 { ES2 iso-ir-85 ISO646-ES2 csISO85Spanish2 }
11316 { MSZ_7795.3 iso-ir-86 ISO646-HU hu csISO86Hungarian }
11317 { JIS_C6226-1983 iso-ir-87 x0208 JIS_X0208-1983 csISO87JISX0208 }
11318 { greek7 iso-ir-88 csISO88Greek7 }
11319 { ASMO_449 ISO_9036 arabic7 iso-ir-89 csISO89ASMO449 }
11320 { iso-ir-90 csISO90 }
11321 { JIS_C6229-1984-a iso-ir-91 jp-ocr-a csISO91JISC62291984a }
11322 { JIS_C6229-1984-b iso-ir-92 ISO646-JP-OCR-B jp-ocr-b
11323 csISO92JISC62991984b }
11324 { JIS_C6229-1984-b-add iso-ir-93 jp-ocr-b-add csISO93JIS62291984badd }
11325 { JIS_C6229-1984-hand iso-ir-94 jp-ocr-hand csISO94JIS62291984hand }
11326 { JIS_C6229-1984-hand-add iso-ir-95 jp-ocr-hand-add
11327 csISO95JIS62291984handadd }
11328 { JIS_C6229-1984-kana iso-ir-96 csISO96JISC62291984kana }
11329 { ISO_2033-1983 iso-ir-98 e13b csISO2033 }
11330 { ANSI_X3.110-1983 iso-ir-99 CSA_T500-1983 NAPLPS csISO99NAPLPS }
11331 { ISO_8859-1:1987 iso-ir-100 ISO_8859-1 ISO-8859-1 latin1 l1 IBM819
11332 CP819 csISOLatin1 }
11333 { ISO_8859-2:1987 iso-ir-101 ISO_8859-2 ISO-8859-2 latin2 l2 csISOLatin2 }
11334 { T.61-7bit iso-ir-102 csISO102T617bit }
11335 { T.61-8bit T.61 iso-ir-103 csISO103T618bit }
11336 { ISO_8859-3:1988 iso-ir-109 ISO_8859-3 ISO-8859-3 latin3 l3 csISOLatin3 }
11337 { ISO_8859-4:1988 iso-ir-110 ISO_8859-4 ISO-8859-4 latin4 l4 csISOLatin4 }
11338 { ECMA-cyrillic iso-ir-111 KOI8-E csISO111ECMACyrillic }
11339 { CSA_Z243.4-1985-1 iso-ir-121 ISO646-CA csa7-1 ca csISO121Canadian1 }
11340 { CSA_Z243.4-1985-2 iso-ir-122 ISO646-CA2 csa7-2 csISO122Canadian2 }
11341 { CSA_Z243.4-1985-gr iso-ir-123 csISO123CSAZ24341985gr }
11342 { ISO_8859-6:1987 iso-ir-127 ISO_8859-6 ISO-8859-6 ECMA-114 ASMO-708
11343 arabic csISOLatinArabic }
11344 { ISO_8859-6-E csISO88596E ISO-8859-6-E }
11345 { ISO_8859-6-I csISO88596I ISO-8859-6-I }
11346 { ISO_8859-7:1987 iso-ir-126 ISO_8859-7 ISO-8859-7 ELOT_928 ECMA-118
11347 greek greek8 csISOLatinGreek }
11348 { T.101-G2 iso-ir-128 csISO128T101G2 }
11349 { ISO_8859-8:1988 iso-ir-138 ISO_8859-8 ISO-8859-8 hebrew
11351 { ISO_8859-8-E csISO88598E ISO-8859-8-E }
11352 { ISO_8859-8-I csISO88598I ISO-8859-8-I }
11353 { CSN_369103 iso-ir-139 csISO139CSN369103 }
11354 { JUS_I.B1.002 iso-ir-141 ISO646-YU js yu csISO141JUSIB1002 }
11355 { ISO_6937-2-add iso-ir-142 csISOTextComm }
11356 { IEC_P27-1 iso-ir-143 csISO143IECP271 }
11357 { ISO_8859-5:1988 iso-ir-144 ISO_8859-5 ISO-8859-5 cyrillic
11358 csISOLatinCyrillic }
11359 { JUS_I.B1.003-serb iso-ir-146 serbian csISO146Serbian }
11360 { JUS_I.B1.003-mac macedonian iso-ir-147 csISO147Macedonian }
11361 { ISO_8859-9:1989 iso-ir-148 ISO_8859-9 ISO-8859-9 latin5 l5 csISOLatin5 }
11362 { greek-ccitt iso-ir-150 csISO150 csISO150GreekCCITT }
11363 { NC_NC00-10:81 cuba iso-ir-151 ISO646-CU csISO151Cuba }
11364 { ISO_6937-2-25 iso-ir-152 csISO6937Add }
11365 { GOST_19768-74 ST_SEV_358-88 iso-ir-153 csISO153GOST1976874 }
11366 { ISO_8859-supp iso-ir-154 latin1-2-5 csISO8859Supp }
11367 { ISO_10367-box iso-ir-155 csISO10367Box }
11368 { ISO-8859-10 iso-ir-157 l6 ISO_8859-10:1992 csISOLatin6 latin6 }
11369 { latin-lap lap iso-ir-158 csISO158Lap }
11370 { JIS_X0212-1990 x0212 iso-ir-159 csISO159JISX02121990 }
11371 { DS_2089 DS2089 ISO646-DK dk csISO646Danish }
11374 { JIS_X0201 X0201 csHalfWidthKatakana }
11375 { KSC5636 ISO646-KR csKSC5636 }
11376 { ISO-10646-UCS-2 csUnicode }
11377 { ISO-10646-UCS-4 csUCS4 }
11378 { DEC-MCS dec csDECMCS }
11379 { hp-roman8 roman8 r8 csHPRoman8 }
11380 { macintosh mac csMacintosh }
11381 { IBM037 cp037 ebcdic-cp-us ebcdic-cp-ca ebcdic-cp-wt ebcdic-cp-nl
11383 { IBM038 EBCDIC-INT cp038 csIBM038 }
11384 { IBM273 CP273 csIBM273 }
11385 { IBM274 EBCDIC-BE CP274 csIBM274 }
11386 { IBM275 EBCDIC-BR cp275 csIBM275 }
11387 { IBM277 EBCDIC-CP-DK EBCDIC-CP-NO csIBM277 }
11388 { IBM278 CP278 ebcdic-cp-fi ebcdic-cp-se csIBM278 }
11389 { IBM280 CP280 ebcdic-cp-it csIBM280 }
11390 { IBM281 EBCDIC-JP-E cp281 csIBM281 }
11391 { IBM284 CP284 ebcdic-cp-es csIBM284 }
11392 { IBM285 CP285 ebcdic-cp-gb csIBM285 }
11393 { IBM290 cp290 EBCDIC-JP-kana csIBM290 }
11394 { IBM297 cp297 ebcdic-cp-fr csIBM297 }
11395 { IBM420 cp420 ebcdic-cp-ar1 csIBM420 }
11396 { IBM423 cp423 ebcdic-cp-gr csIBM423 }
11397 { IBM424 cp424 ebcdic-cp-he csIBM424 }
11398 { IBM437 cp437 437 csPC8CodePage437 }
11399 { IBM500 CP500 ebcdic-cp-be ebcdic-cp-ch csIBM500 }
11400 { IBM775 cp775 csPC775Baltic }
11401 { IBM850 cp850 850 csPC850Multilingual }
11402 { IBM851 cp851 851 csIBM851 }
11403 { IBM852 cp852 852 csPCp852 }
11404 { IBM855 cp855 855 csIBM855 }
11405 { IBM857 cp857 857 csIBM857 }
11406 { IBM860 cp860 860 csIBM860 }
11407 { IBM861 cp861 861 cp-is csIBM861 }
11408 { IBM862 cp862 862 csPC862LatinHebrew }
11409 { IBM863 cp863 863 csIBM863 }
11410 { IBM864 cp864 csIBM864 }
11411 { IBM865 cp865 865 csIBM865 }
11412 { IBM866 cp866 866 csIBM866 }
11413 { IBM868 CP868 cp-ar csIBM868 }
11414 { IBM869 cp869 869 cp-gr csIBM869 }
11415 { IBM870 CP870 ebcdic-cp-roece ebcdic-cp-yu csIBM870 }
11416 { IBM871 CP871 ebcdic-cp-is csIBM871 }
11417 { IBM880 cp880 EBCDIC-Cyrillic csIBM880 }
11418 { IBM891 cp891 csIBM891 }
11419 { IBM903 cp903 csIBM903 }
11420 { IBM904 cp904 904 csIBBM904 }
11421 { IBM905 CP905 ebcdic-cp-tr csIBM905 }
11422 { IBM918 CP918 ebcdic-cp-ar2 csIBM918 }
11423 { IBM1026 CP1026 csIBM1026 }
11424 { EBCDIC-AT-DE csIBMEBCDICATDE }
11425 { EBCDIC-AT-DE-A csEBCDICATDEA }
11426 { EBCDIC-CA-FR csEBCDICCAFR }
11427 { EBCDIC-DK-NO csEBCDICDKNO }
11428 { EBCDIC-DK-NO-A csEBCDICDKNOA }
11429 { EBCDIC-FI-SE csEBCDICFISE }
11430 { EBCDIC-FI-SE-A csEBCDICFISEA }
11431 { EBCDIC-FR csEBCDICFR }
11432 { EBCDIC-IT csEBCDICIT }
11433 { EBCDIC-PT csEBCDICPT }
11434 { EBCDIC-ES csEBCDICES }
11435 { EBCDIC-ES-A csEBCDICESA }
11436 { EBCDIC-ES-S csEBCDICESS }
11437 { EBCDIC-UK csEBCDICUK }
11438 { EBCDIC-US csEBCDICUS }
11439 { UNKNOWN-8BIT csUnknown8BiT }
11440 { MNEMONIC csMnemonic }
11442 { VISCII csVISCII }
11445 { IBM00858 CCSID00858 CP00858 PC-Multilingual-850+euro }
11446 { IBM00924 CCSID00924 CP00924 ebcdic-Latin9--euro }
11447 { IBM01140 CCSID01140 CP01140 ebcdic-us-37+euro }
11448 { IBM01141 CCSID01141 CP01141 ebcdic-de-273+euro }
11449 { IBM01142 CCSID01142 CP01142 ebcdic-dk-277+euro ebcdic-no-277+euro }
11450 { IBM01143 CCSID01143 CP01143 ebcdic-fi-278+euro ebcdic-se-278+euro }
11451 { IBM01144 CCSID01144 CP01144 ebcdic-it-280+euro }
11452 { IBM01145 CCSID01145 CP01145 ebcdic-es-284+euro }
11453 { IBM01146 CCSID01146 CP01146 ebcdic-gb-285+euro }
11454 { IBM01147 CCSID01147 CP01147 ebcdic-fr-297+euro }
11455 { IBM01148 CCSID01148 CP01148 ebcdic-international-500+euro }
11456 { IBM01149 CCSID01149 CP01149 ebcdic-is-871+euro }
11457 { IBM1047 IBM-1047 }
11458 { PTCP154 csPTCP154 PT154 CP154 Cyrillic-Asian }
11459 { Amiga-1251 Ami1251 Amiga1251 Ami-1251 }
11460 { UNICODE-1-1 csUnicode11 }
11461 { CESU-8 csCESU-8 }
11462 { BOCU-1 csBOCU-1 }
11463 { UNICODE-1-1-UTF-7 csUnicode11UTF7 }
11464 { ISO-8859-14 iso-ir-199 ISO_8859-14:1998 ISO_8859-14 latin8 iso-celtic
11466 { ISO-8859-15 ISO_8859-15 Latin-9 }
11467 { ISO-8859-16 iso-ir-226 ISO_8859-16:2001 ISO_8859-16 latin10 l10 }
11468 { GBK CP936 MS936 windows-936 }
11469 { JIS_Encoding csJISEncoding }
11470 { Shift_JIS MS_Kanji csShiftJIS ShiftJIS Shift-JIS }
11471 { Extended_UNIX_Code_Packed_Format_for_Japanese csEUCPkdFmtJapanese
11473 { Extended_UNIX_Code_Fixed_Width_for_Japanese csEUCFixWidJapanese }
11474 { ISO-10646-UCS-Basic csUnicodeASCII }
11475 { ISO-10646-Unicode-Latin1 csUnicodeLatin1 ISO-10646 }
11476 { ISO-Unicode-IBM-1261 csUnicodeIBM1261 }
11477 { ISO-Unicode-IBM-1268 csUnicodeIBM1268 }
11478 { ISO-Unicode-IBM-1276 csUnicodeIBM1276 }
11479 { ISO-Unicode-IBM-1264 csUnicodeIBM1264 }
11480 { ISO-Unicode-IBM-1265 csUnicodeIBM1265 }
11481 { ISO-8859-1-Windows-3.0-Latin-1 csWindows30Latin1 }
11482 { ISO-8859-1-Windows-3.1-Latin-1 csWindows31Latin1 }
11483 { ISO-8859-2-Windows-Latin-2 csWindows31Latin2 }
11484 { ISO-8859-9-Windows-Latin-5 csWindows31Latin5 }
11485 { Adobe-Standard-Encoding csAdobeStandardEncoding }
11486 { Ventura-US csVenturaUS }
11487 { Ventura-International csVenturaInternational }
11488 { PC8-Danish-Norwegian csPC8DanishNorwegian }
11489 { PC8-Turkish csPC8Turkish }
11490 { IBM-Symbols csIBMSymbols }
11491 { IBM-Thai csIBMThai }
11492 { HP-Legal csHPLegal }
11493 { HP-Pi-font csHPPiFont }
11494 { HP-Math8 csHPMath8 }
11495 { Adobe-Symbol-Encoding csHPPSMath }
11496 { HP-DeskTop csHPDesktop }
11497 { Ventura-Math csVenturaMath }
11498 { Microsoft-Publishing csMicrosoftPublishing }
11499 { Windows-31J csWindows31J }
11500 { GB2312 csGB2312 }
11504 proc tcl_encoding {enc} {
11505 global encoding_aliases tcl_encoding_cache
11506 if {[info exists tcl_encoding_cache($enc)]} {
11507 return $tcl_encoding_cache($enc)
11509 set names [encoding names]
11510 set lcnames [string tolower $names]
11511 set enc [string tolower $enc]
11512 set i [lsearch -exact $lcnames $enc]
11514 # look for "isonnn" instead of "iso-nnn" or "iso_nnn"
11515 if {[regsub {^(iso|cp|ibm|jis)[-_]} $enc {\1} encx]} {
11516 set i [lsearch -exact $lcnames $encx]
11520 foreach l $encoding_aliases {
11521 set ll [string tolower $l]
11522 if {[lsearch -exact $ll $enc] < 0} continue
11523 # look through the aliases for one that tcl knows about
11525 set i [lsearch -exact $lcnames $e]
11527 if {[regsub {^(iso|cp|ibm|jis)[-_]} $e {\1} ex]} {
11528 set i [lsearch -exact $lcnames $ex]
11538 set tclenc [lindex $names $i]
11540 set tcl_encoding_cache($enc) $tclenc
11544 proc gitattr {path attr default} {
11545 global path_attr_cache
11546 if {[info exists path_attr_cache($attr,$path)]} {
11547 set r $path_attr_cache($attr,$path)
11549 set r "unspecified"
11550 if {![catch {set line [exec git check-attr $attr -- $path]}]} {
11551 regexp "(.*): $attr: (.*)" $line m f r
11553 set path_attr_cache($attr,$path) $r
11555 if {$r eq "unspecified"} {
11561 proc cache_gitattr {attr pathlist} {
11562 global path_attr_cache
11564 foreach path $pathlist {
11565 if {![info exists path_attr_cache($attr,$path)]} {
11566 lappend newlist $path
11570 if {[tk windowingsystem] == "win32"} {
11571 # windows has a 32k limit on the arguments to a command...
11574 while {$newlist ne {}} {
11575 set head [lrange $newlist 0 [expr {$lim - 1}]]
11576 set newlist [lrange $newlist $lim end]
11577 if {![catch {set rlist [eval exec git check-attr $attr -- $head]}]} {
11578 foreach row [split $rlist "\n"] {
11579 if {[regexp "(.*): $attr: (.*)" $row m path value]} {
11580 if {[string index $path 0] eq "\""} {
11581 set path [encoding convertfrom [lindex $path 0]]
11583 set path_attr_cache($attr,$path) $value
11590 proc get_path_encoding {path} {
11591 global gui_encoding perfile_attrs
11592 set tcl_enc $gui_encoding
11593 if {$path ne {} && $perfile_attrs} {
11594 set enc2 [tcl_encoding [gitattr $path encoding $tcl_enc]]
11602 # First check that Tcl/Tk is recent enough
11603 if {[catch {package require Tk 8.4} err]} {
11604 show_error {} . "Sorry, gitk cannot run with this version of Tcl/Tk.\n\
11605 Gitk requires at least Tcl/Tk 8.4." list
11609 # Unset GIT_TRACE var if set
11610 if { [info exists ::env(GIT_TRACE)] } {
11611 unset ::env(GIT_TRACE)
11615 set wrcomcmd "git diff-tree --stdin -p --pretty"
11619 set gitencoding [exec git config --get i18n.commitencoding]
11622 set gitencoding [exec git config --get i18n.logoutputencoding]
11624 if {$gitencoding == ""} {
11625 set gitencoding "utf-8"
11627 set tclencoding [tcl_encoding $gitencoding]
11628 if {$tclencoding == {}} {
11629 puts stderr "Warning: encoding $gitencoding is not supported by Tcl/Tk"
11632 set gui_encoding [encoding system]
11634 set enc [exec git config --get gui.encoding]
11636 set tclenc [tcl_encoding $enc]
11637 if {$tclenc ne {}} {
11638 set gui_encoding $tclenc
11640 puts stderr "Warning: encoding $enc is not supported by Tcl/Tk"
11645 set log_showroot true
11647 set log_showroot [exec git config --bool --get log.showroot]
11650 if {[tk windowingsystem] eq "aqua"} {
11651 set mainfont {{Lucida Grande} 9}
11652 set textfont {Monaco 9}
11653 set uifont {{Lucida Grande} 9 bold}
11654 } elseif {![catch {::tk::pkgconfig get fontsystem} xft] && $xft eq "xft"} {
11656 set mainfont {sans 9}
11657 set textfont {monospace 9}
11658 set uifont {sans 9 bold}
11660 set mainfont {Helvetica 9}
11661 set textfont {Courier 9}
11662 set uifont {Helvetica 9 bold}
11665 set findmergefiles 0
11673 set cmitmode "patch"
11674 set wrapcomment "none"
11679 set showlocalchanges 1
11681 set datetimeformat "%Y-%m-%d %H:%M:%S"
11684 set perfile_attrs 0
11687 if {[tk windowingsystem] eq "aqua"} {
11688 set extdifftool "opendiff"
11690 set extdifftool "meld"
11693 set colors {green red blue magenta darkgrey brown orange}
11694 if {[tk windowingsystem] eq "win32"} {
11695 set uicolor SystemButtonFace
11696 set bgcolor SystemWindow
11697 set fgcolor SystemButtonText
11698 set selectbgcolor SystemHighlight
11703 set selectbgcolor gray85
11705 set diffcolors {red "#00a000" blue}
11709 set markbgcolor "#e0e0ff"
11711 set circlecolors {white blue gray blue blue}
11713 # button for popping up context menus
11714 if {[tk windowingsystem] eq "aqua"} {
11715 set ctxbut <Button-2>
11717 set ctxbut <Button-3>
11720 ## For msgcat loading, first locate the installation location.
11721 if { [info exists ::env(GITK_MSGSDIR)] } {
11722 ## Msgsdir was manually set in the environment.
11723 set gitk_msgsdir $::env(GITK_MSGSDIR)
11725 ## Let's guess the prefix from argv0.
11726 set gitk_prefix [file dirname [file dirname [file normalize $argv0]]]
11727 set gitk_libdir [file join $gitk_prefix share gitk lib]
11728 set gitk_msgsdir [file join $gitk_libdir msgs]
11732 ## Internationalization (i18n) through msgcat and gettext. See
11733 ## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html
11734 package require msgcat
11735 namespace import ::msgcat::mc
11736 ## And eventually load the actual message catalog
11737 ::msgcat::mcload $gitk_msgsdir
11739 catch {source ~/.gitk}
11741 parsefont mainfont $mainfont
11742 eval font create mainfont [fontflags mainfont]
11743 eval font create mainfontbold [fontflags mainfont 1]
11745 parsefont textfont $textfont
11746 eval font create textfont [fontflags textfont]
11747 eval font create textfontbold [fontflags textfont 1]
11749 parsefont uifont $uifont
11750 eval font create uifont [fontflags uifont]
11756 # check that we can find a .git directory somewhere...
11757 if {[catch {set gitdir [exec git rev-parse --git-dir]}]} {
11758 show_error {} . [mc "Cannot find a git repository here."]
11763 set selectheadid {}
11766 set cmdline_files {}
11768 set revtreeargscmd {}
11769 foreach arg $argv {
11770 switch -glob -- $arg {
11773 set cmdline_files [lrange $argv [expr {$i + 1}] end]
11776 "--select-commit=*" {
11777 set selecthead [string range $arg 16 end]
11780 set revtreeargscmd [string range $arg 10 end]
11783 lappend revtreeargs $arg
11789 if {$selecthead eq "HEAD"} {
11793 if {$i >= [llength $argv] && $revtreeargs ne {}} {
11794 # no -- on command line, but some arguments (other than --argscmd)
11796 set f [eval exec git rev-parse --no-revs --no-flags $revtreeargs]
11797 set cmdline_files [split $f "\n"]
11798 set n [llength $cmdline_files]
11799 set revtreeargs [lrange $revtreeargs 0 end-$n]
11800 # Unfortunately git rev-parse doesn't produce an error when
11801 # something is both a revision and a filename. To be consistent
11802 # with git log and git rev-list, check revtreeargs for filenames.
11803 foreach arg $revtreeargs {
11804 if {[file exists $arg]} {
11805 show_error {} . [mc "Ambiguous argument '%s': both revision\
11806 and filename" $arg]
11811 # unfortunately we get both stdout and stderr in $err,
11812 # so look for "fatal:".
11813 set i [string first "fatal:" $err]
11815 set err [string range $err [expr {$i + 6}] end]
11817 show_error {} . "[mc "Bad arguments to gitk:"]\n$err"
11822 set nullid "0000000000000000000000000000000000000000"
11823 set nullid2 "0000000000000000000000000000000000000001"
11824 set nullfile "/dev/null"
11826 set have_tk85 [expr {[package vcompare $tk_version "8.5"] >= 0}]
11827 if {![info exists have_ttk]} {
11828 set have_ttk [llength [info commands ::ttk::style]]
11830 set use_ttk [expr {$have_ttk && $want_ttk}]
11831 set NS [expr {$use_ttk ? "ttk" : ""}]
11833 regexp {^git version ([\d.]*\d)} [exec git version] _ git_version
11836 if {[package vcompare $git_version "1.6.6.2"] >= 0} {
11837 set show_notes "--show-notes"
11847 set highlight_paths {}
11849 set searchdirn -forwards
11852 set diffelide {0 0}
11853 set markingmatches 0
11854 set linkentercount 0
11855 set need_redisplay 0
11862 set selectedhlview [mc "None"]
11863 set highlight_related [mc "None"]
11864 set highlight_files {}
11865 set viewfiles(0) {}
11868 set viewargscmd(0) {}
11870 set selectedline {}
11878 set hasworktree [hasworktree]
11880 if {[expr {[exec git rev-parse --is-inside-work-tree] == "true"}]} {
11881 set cdup [exec git rev-parse --show-cdup]
11883 set worktree [exec git rev-parse --show-toplevel]
11887 image create photo gitlogo -width 16 -height 16
11889 image create photo gitlogominus -width 4 -height 2
11890 gitlogominus put #C00000 -to 0 0 4 2
11891 gitlogo copy gitlogominus -to 1 5
11892 gitlogo copy gitlogominus -to 6 5
11893 gitlogo copy gitlogominus -to 11 5
11894 image delete gitlogominus
11896 image create photo gitlogoplus -width 4 -height 4
11897 gitlogoplus put #008000 -to 1 0 3 4
11898 gitlogoplus put #008000 -to 0 1 4 3
11899 gitlogo copy gitlogoplus -to 1 9
11900 gitlogo copy gitlogoplus -to 6 9
11901 gitlogo copy gitlogoplus -to 11 9
11902 image delete gitlogoplus
11904 image create photo gitlogo32 -width 32 -height 32
11905 gitlogo32 copy gitlogo -zoom 2 2
11907 wm iconphoto . -default gitlogo gitlogo32
11909 # wait for the window to become visible
11910 tkwait visibility .
11911 wm title . "$appname: [reponame]"
11915 if {$cmdline_files ne {} || $revtreeargs ne {} || $revtreeargscmd ne {}} {
11916 # create a view for the files/dirs specified on the command line
11920 set viewname(1) [mc "Command line"]
11921 set viewfiles(1) $cmdline_files
11922 set viewargs(1) $revtreeargs
11923 set viewargscmd(1) $revtreeargscmd
11927 .bar.view entryconf [mca "Edit view..."] -state normal
11928 .bar.view entryconf [mca "Delete view"] -state normal
11931 if {[info exists permviews]} {
11932 foreach v $permviews {
11935 set viewname($n) [lindex $v 0]
11936 set viewfiles($n) [lindex $v 1]
11937 set viewargs($n) [lindex $v 2]
11938 set viewargscmd($n) [lindex $v 3]
11944 if {[tk windowingsystem] eq "win32"} {
11952 # indent-tabs-mode: t