]> git.ipfire.org Git - thirdparty/git.git/blame - git-gui/git-gui.sh
Merge branch 'rs/parse-options-with-keep-unknown-abbrev-fix'
[thirdparty/git.git] / git-gui / git-gui.sh
CommitLineData
bd11b82d 1#!/bin/sh
cb07fc2a 2# Tcl ignores the next line -*- tcl -*- \
4e817d1a
SP
3 if test "z$*" = zversion \
4 || test "z$*" = z--version; \
5 then \
6 echo 'git-gui version @@GITGUI_VERSION@@'; \
7 exit; \
8 fi; \
2f7c9a7f
SP
9 argv0=$0; \
10 exec wish "$argv0" -- "$@"
cb07fc2a 11
7e81d4ee 12set appvers {@@GITGUI_VERSION@@}
2473543c
PT
13set copyright [string map [list (c) \u00a9] {
14Copyright (c) 2006-2010 Shawn Pearce, et. al.
bdc9ea20 15
0499b24a
SP
16This program is free software; you can redistribute it and/or modify
17it under the terms of the GNU General Public License as published by
18the Free Software Foundation; either version 2 of the License, or
19(at your option) any later version.
20
21This program is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24GNU General Public License for more details.
25
26You should have received a copy of the GNU General Public License
d05b08cd 27along with this program; if not, see <https://www.gnu.org/licenses/>.}]
cb07fc2a 28
f522c9b5 29######################################################################
cfb07cca
SP
30##
31## Tcl/Tk sanity check
32
8a8efbe4
PY
33if {[catch {package require Tcl 8.5} err]
34 || [catch {package require Tk 8.5} err]
cfb07cca
SP
35} {
36 catch {wm withdraw .}
37 tk_messageBox \
38 -icon error \
39 -type ok \
9cb268c4 40 -title "git-gui: fatal error" \
cfb07cca
SP
41 -message $err
42 exit 1
43}
44
63c4024f 45catch {rename send {}} ; # What an evil concept...
cff93397 46
e0539b4b
JS
47######################################################################
48##
49## Enabling platform-specific code paths
50
51proc is_MacOSX {} {
52 if {[tk windowingsystem] eq {aqua}} {
53 return 1
54 }
55 return 0
56}
57
58proc is_Windows {} {
59 if {$::tcl_platform(platform) eq {windows}} {
60 return 1
61 }
62 return 0
63}
64
65set _iscygwin {}
66proc is_Cygwin {} {
67 global _iscygwin
68 if {$_iscygwin eq {}} {
69 if {[string match "CYGWIN_*" $::tcl_platform(os)]} {
70 set _iscygwin 1
71 } else {
72 set _iscygwin 0
73 }
74 }
75 return $_iscygwin
76}
77
fd477a1d
JS
78######################################################################
79##
80## PATH lookup
81
82set _search_path {}
83proc _which {what args} {
84 global env _search_exe _search_path
85
86 if {$_search_path eq {}} {
7145c654 87 if {[is_Windows]} {
fd477a1d
JS
88 set gitguidir [file dirname [info script]]
89 regsub -all ";" $gitguidir "\\;" gitguidir
90 set env(PATH) "$gitguidir;$env(PATH)"
91 set _search_path [split $env(PATH) {;}]
92 # Skip empty `PATH` elements
93 set _search_path [lsearch -all -inline -not -exact \
94 $_search_path ""]
95 set _search_exe .exe
96 } else {
97 set _search_path [split $env(PATH) :]
98 set _search_exe {}
99 }
100 }
101
102 if {[is_Windows] && [lsearch -exact $args -script] >= 0} {
103 set suffix {}
104 } else {
105 set suffix $_search_exe
106 }
107
108 foreach p $_search_path {
109 set p [file join $p $what$suffix]
110 if {[file exists $p]} {
111 return [file normalize $p]
112 }
113 }
114 return {}
115}
116
aae9560a
JS
117proc sanitize_command_line {command_line from_index} {
118 set i $from_index
119 while {$i < [llength $command_line]} {
120 set cmd [lindex $command_line $i]
3f71c97e 121 if {[llength [file split $cmd]] < 2} {
aae9560a
JS
122 set fullpath [_which $cmd]
123 if {$fullpath eq ""} {
124 throw {NOT-FOUND} "$cmd not found in PATH"
125 }
126 lset command_line $i $fullpath
127 }
128
129 # handle piped commands, e.g. `exec A | B`
130 for {incr i} {$i < [llength $command_line]} {incr i} {
131 if {[lindex $command_line $i] eq "|"} {
132 incr i
133 break
134 }
135 }
136 }
137 return $command_line
138}
139
140# Override `exec` to avoid unsafe PATH lookup
141
142rename exec real_exec
143
144proc exec {args} {
145 # skip options
146 for {set i 0} {$i < [llength $args]} {incr i} {
147 set arg [lindex $args $i]
148 if {$arg eq "--"} {
149 incr i
150 break
151 }
152 if {[string range $arg 0 0] ne "-"} {
153 break
154 }
155 }
156 set args [sanitize_command_line $args $i]
157 uplevel 1 real_exec $args
158}
159
160# Override `open` to avoid unsafe PATH lookup
161
162rename open real_open
163
164proc open {args} {
165 set arg0 [lindex $args 0]
166 if {[string range $arg0 0 0] eq "|"} {
167 set command_line [string trim [string range $arg0 1 end]]
168 lset args 0 "| [sanitize_command_line $command_line 0]"
169 }
170 uplevel 1 real_open $args
171}
172
fc703c20
SP
173######################################################################
174##
175## locate our library
176
a3b3ae35
DT
177if { [info exists ::env(GIT_GUI_LIB_DIR) ] } {
178 set oguilib $::env(GIT_GUI_LIB_DIR)
179} else {
180 set oguilib {@@GITGUI_LIBDIR@@}
181}
fc703c20
SP
182set oguirel {@@GITGUI_RELATIVE@@}
183if {$oguirel eq {1}} {
9534c9fb
JS
184 set oguilib [file dirname [file normalize $argv0]]
185 if {[file tail $oguilib] eq {git-core}} {
186 set oguilib [file dirname $oguilib]
187 }
188 set oguilib [file dirname $oguilib]
fc703c20 189 set oguilib [file join $oguilib share git-gui lib]
d4b0ccd9 190 set oguimsg [file join $oguilib msgs]
fc703c20
SP
191} elseif {[string match @@* $oguirel]} {
192 set oguilib [file join [file dirname [file normalize $argv0]] lib]
d4b0ccd9
SP
193 set oguimsg [file join [file dirname [file normalize $argv0]] po]
194} else {
195 set oguimsg [file join $oguilib msgs]
fc703c20
SP
196}
197unset oguirel
198
cd12901b
SP
199######################################################################
200##
201## enable verbose loading?
202
203if {![catch {set _verbose $env(GITGUI_VERBOSE)}]} {
204 unset _verbose
205 rename auto_load real__auto_load
206 proc auto_load {name args} {
207 puts stderr "auto_load $name"
208 return [uplevel 1 real__auto_load $name $args]
209 }
210 rename source real__source
cdc6aba8
PT
211 proc source {args} {
212 puts stderr "source $args"
213 uplevel 1 [linsert $args 0 real__source]
cd12901b 214 }
c0d2c38d 215 if {[tk windowingsystem] eq "win32"} { console show }
cd12901b
SP
216}
217
c950c66e 218######################################################################
d4b0ccd9
SP
219##
220## Internationalization (i18n) through msgcat and gettext. See
221## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html
222
223package require msgcat
146d73a3 224
35b6f72f
PT
225# Check for Windows 7 MUI language pack (missed by msgcat < 1.4.4)
226if {[tk windowingsystem] eq "win32"
227 && [package vcompare [package provide msgcat] 1.4.4] < 0
228} then {
229 proc _mc_update_locale {} {
230 set key {HKEY_CURRENT_USER\Control Panel\Desktop}
231 if {![catch {
232 package require registry
233 set uilocale [registry get $key "PreferredUILanguages"]
234 msgcat::ConvertLocale [string map {- _} [lindex $uilocale 0]]
235 } uilocale]} {
236 if {[string length $uilocale] > 0} {
237 msgcat::mclocale $uilocale
238 }
239 }
240 }
241 _mc_update_locale
242}
243
ab0d33c4 244proc _mc_trim {fmt} {
146d73a3
SP
245 set cmk [string first @@ $fmt]
246 if {$cmk > 0} {
ab0d33c4 247 return [string range $fmt 0 [expr {$cmk - 1}]]
146d73a3 248 }
ab0d33c4
SP
249 return $fmt
250}
251
252proc mc {en_fmt args} {
253 set fmt [_mc_trim [::msgcat::mc $en_fmt]]
254 if {[catch {set msg [eval [list format $fmt] $args]} err]} {
255 set msg [eval [list format [_mc_trim $en_fmt]] $args]
256 }
257 return $msg
146d73a3
SP
258}
259
31bb1d1b
SP
260proc strcat {args} {
261 return [join $args {}]
262}
263
d4b0ccd9
SP
264::msgcat::mcload $oguimsg
265unset oguimsg
266
7d2017e7
SH
267######################################################################
268##
269## On Mac, bring the current Wish process window to front
270
271if {[tk windowingsystem] eq "aqua"} {
272 catch {
273 exec osascript -e [format {
274 tell application "System Events"
275 set frontmost of processes whose unix id is %d to true
276 end tell
277 } [pid]]
278 }
279}
280
d4b0ccd9 281######################################################################
c950c66e
SP
282##
283## read only globals
284
0b2bc460 285set _appname {Git Gui}
c950c66e 286set _gitdir {}
21985a11 287set _gitworktree {}
29e5573d 288set _isbare {}
20ddfcaa 289set _gitexec {}
3eb5682b 290set _githtmldir {}
c950c66e 291set _reponame {}
62f9a632 292set _shellpath {@@SHELL_PATH@@}
c950c66e 293
16dd62ac
SP
294set _trace [lsearch -exact $argv --trace]
295if {$_trace >= 0} {
296 set argv [lreplace $argv $_trace $_trace]
297 set _trace 1
c42939d2 298 if {[tk windowingsystem] eq "win32"} { console show }
16dd62ac
SP
299} else {
300 set _trace 0
301}
302
9d04278a
HV
303# variable for the last merged branch (useful for a default when deleting
304# branches).
305set _last_merged_branch {}
306
62f9a632 307proc shellpath {} {
d5257fb3
PT
308 global _shellpath env
309 if {[string match @@* $_shellpath]} {
310 if {[info exists env(SHELL)]} {
311 return $env(SHELL)
312 } else {
313 return /bin/sh
314 }
315 }
62f9a632
MM
316 return $_shellpath
317}
318
c950c66e
SP
319proc appname {} {
320 global _appname
321 return $_appname
322}
323
c2758a17 324proc gitdir {args} {
c950c66e 325 global _gitdir
c2758a17
SP
326 if {$args eq {}} {
327 return $_gitdir
328 }
0b812616 329 return [eval [list file join $_gitdir] $args]
c950c66e
SP
330}
331
20ddfcaa
SP
332proc gitexec {args} {
333 global _gitexec
334 if {$_gitexec eq {}} {
81347223 335 if {[catch {set _gitexec [git --exec-path]} err]} {
20ddfcaa
SP
336 error "Git not installed?\n\n$err"
337 }
7145c654 338 set _gitexec [file normalize $_gitexec]
20ddfcaa
SP
339 }
340 if {$args eq {}} {
341 return $_gitexec
342 }
0b812616 343 return [eval [list file join $_gitexec] $args]
20ddfcaa
SP
344}
345
3eb5682b
MH
346proc githtmldir {args} {
347 global _githtmldir
348 if {$_githtmldir eq {}} {
349 if {[catch {set _githtmldir [git --html-path]}]} {
350 # Git not installed or option not yet supported
351 return {}
352 }
7145c654 353 set _githtmldir [file normalize $_githtmldir]
3eb5682b
MH
354 }
355 if {$args eq {}} {
356 return $_githtmldir
357 }
358 return [eval [list file join $_githtmldir] $args]
359}
360
c950c66e 361proc reponame {} {
d36cd968 362 return $::_reponame
c950c66e 363}
da5239dc 364
cf25ddc8
SP
365proc is_enabled {option} {
366 global enabled_options
367 if {[catch {set on $enabled_options($option)}]} {return 0}
368 return $on
369}
370
371proc enable_option {option} {
372 global enabled_options
373 set enabled_options($option) 1
374}
375
376proc disable_option {option} {
377 global enabled_options
378 set enabled_options($option) 0
379}
380
2d19516d
SP
381######################################################################
382##
383## config
384
51f4d16b
SP
385proc is_many_config {name} {
386 switch -glob -- $name {
24f7c64b 387 gui.recentrepo -
51f4d16b
SP
388 remote.*.fetch -
389 remote.*.push
390 {return 1}
391 *
392 {return 0}
393 }
394}
2d19516d 395
c539449b
SP
396proc is_config_true {name} {
397 global repo_config
398 if {[catch {set v $repo_config($name)}]} {
399 return 0
12b219f7
BW
400 }
401 set v [string tolower $v]
402 if {$v eq {} || $v eq {true} || $v eq {1} || $v eq {yes} || $v eq {on}} {
c539449b
SP
403 return 1
404 } else {
405 return 0
406 }
407}
408
1fbaccad
CP
409proc is_config_false {name} {
410 global repo_config
411 if {[catch {set v $repo_config($name)}]} {
412 return 0
12b219f7
BW
413 }
414 set v [string tolower $v]
415 if {$v eq {false} || $v eq {0} || $v eq {no} || $v eq {off}} {
1fbaccad
CP
416 return 1
417 } else {
418 return 0
419 }
420}
421
61f82ce7
SP
422proc get_config {name} {
423 global repo_config
424 if {[catch {set v $repo_config($name)}]} {
425 return {}
426 } else {
427 return $v
428 }
429}
430
29e5573d
GB
431proc is_bare {} {
432 global _isbare
433 global _gitdir
434 global _gitworktree
435
436 if {$_isbare eq {}} {
437 if {[catch {
438 set _bare [git rev-parse --is-bare-repository]
439 switch -- $_bare {
440 true { set _isbare 1 }
441 false { set _isbare 0}
442 default { throw }
443 }
444 }]} {
445 if {[is_config_true core.bare]
446 || ($_gitworktree eq {}
447 && [lindex [file split $_gitdir] end] ne {.git})} {
448 set _isbare 1
449 } else {
450 set _isbare 0
451 }
452 }
453 }
454 return $_isbare
455}
456
81347223
SP
457######################################################################
458##
459## handy utils
460
16dd62ac
SP
461proc _trace_exec {cmd} {
462 if {!$::_trace} return
463 set d {}
464 foreach v $cmd {
465 if {$d ne {}} {
466 append d { }
467 }
468 if {[regexp {[ \t\r\n'"$?*]} $v]} {
469 set v [sq $v]
470 }
471 append d $v
472 }
473 puts stderr $d
474}
475
2810a58d
PT
476#'" fix poor old emacs font-lock mode
477
0b812616
SP
478proc _git_cmd {name} {
479 global _git_cmd_path
480
481 if {[catch {set v $_git_cmd_path($name)}]} {
482 switch -- $name {
70a7595c 483 version -
0b812616
SP
484 --version -
485 --exec-path { return [list $::_git $name] }
486 }
487
488 set p [gitexec git-$name$::_search_exe]
489 if {[file exists $p]} {
490 set v [list $p]
c136f2b8
SP
491 } elseif {[is_Windows] && [file exists [gitexec git-$name]]} {
492 # Try to determine what sort of magic will make
493 # git-$name go and do its thing, because native
494 # Tcl on Windows doesn't know it.
0b812616 495 #
c136f2b8
SP
496 set p [gitexec git-$name]
497 set f [open $p r]
498 set s [gets $f]
499 close $f
500
6e4ba05c 501 switch -glob -- [lindex $s 0] {
c136f2b8
SP
502 #!*sh { set i sh }
503 #!*perl { set i perl }
504 #!*python { set i python }
505 default { error "git-$name is not supported: $s" }
506 }
507
508 upvar #0 _$i interp
509 if {![info exists interp]} {
510 set interp [_which $i]
511 }
512 if {$interp eq {}} {
513 error "git-$name requires $i (not in PATH)"
514 }
6e4ba05c 515 set v [concat [list $interp] [lrange $s 1 end] [list $p]]
0b812616 516 } else {
c6729890
SP
517 # Assume it is builtin to git somehow and we
518 # aren't actually able to see a file for it.
519 #
520 set v [list $::_git $name]
0b812616
SP
521 }
522 set _git_cmd_path($name) $v
523 }
524 return $v
525}
526
7d076d56
PT
527# Test a file for a hashbang to identify executable scripts on Windows.
528proc is_shellscript {filename} {
529 if {![file exists $filename]} {return 0}
530 set f [open $filename r]
531 fconfigure $f -encoding binary
532 set magic [read $f 2]
533 close $f
534 return [expr {$magic eq "#!"}]
535}
536
537# Run a command connected via pipes on stdout.
538# This is for use with textconv filters and uses sh -c "..." to allow it to
539# contain a command with arguments. On windows we must check for shell
540# scripts specifically otherwise just call the filter command.
541proc open_cmd_pipe {cmd path} {
542 global env
543 if {![file executable [shellpath]]} {
544 set exe [auto_execok [lindex $cmd 0]]
545 if {[is_shellscript [lindex $exe 0]]} {
546 set run [linsert [auto_execok sh] end -c "$cmd \"\$0\"" $path]
547 } else {
548 set run [concat $exe [lrange $cmd 1 end] $path]
549 }
550 } else {
551 set run [list [shellpath] -c "$cmd \"\$0\"" $path]
552 }
553 return [open |$run r]
554}
555
6f62b4f7
SP
556proc _lappend_nice {cmd_var} {
557 global _nice
558 upvar $cmd_var cmd
559
560 if {![info exists _nice]} {
561 set _nice [_which nice]
9c898a18
HV
562 if {[catch {exec $_nice git version}]} {
563 set _nice {}
ff9db6c7
SS
564 } elseif {[is_Windows] && [file dirname $_nice] ne [file dirname $::_git]} {
565 set _nice {}
9c898a18 566 }
6f62b4f7
SP
567 }
568 if {$_nice ne {}} {
569 lappend cmd $_nice
570 }
571}
572
81347223 573proc git {args} {
ae75e1e4
KB
574 set fd [eval [list git_read] $args]
575 fconfigure $fd -translation binary -encoding utf-8
576 set result [string trimright [read $fd] "\n"]
577 close $fd
16dd62ac
SP
578 if {$::_trace} {
579 puts stderr "< $result"
580 }
581 return $result
0b812616
SP
582}
583
74c4763c 584proc _open_stdout_stderr {cmd} {
16dd62ac 585 _trace_exec $cmd
74c4763c 586 if {[catch {
16dd62ac 587 set fd [open [concat [list | ] $cmd] r]
74c4763c
SP
588 } err]} {
589 if { [lindex $cmd end] eq {2>@1}
590 && $err eq {can not find channel named "1"}
591 } {
592 # Older versions of Tcl 8.4 don't have this 2>@1 IO
593 # redirect operator. Fallback to |& cat for those.
594 # The command was not actually started, so its safe
595 # to try to start it a second time.
596 #
597 set fd [open [concat \
16dd62ac 598 [list | ] \
74c4763c
SP
599 [lrange $cmd 0 end-1] \
600 [list |& cat] \
601 ] r]
602 } else {
603 error $err
604 }
605 }
6eb420ef 606 fconfigure $fd -eofchar {}
74c4763c
SP
607 return $fd
608}
609
0b812616 610proc git_read {args} {
16dd62ac 611 set opt [list]
0b812616
SP
612
613 while {1} {
614 switch -- [lindex $args 0] {
615 --nice {
6f62b4f7 616 _lappend_nice opt
0b812616
SP
617 }
618
619 --stderr {
620 lappend args 2>@1
621 }
622
623 default {
624 break
625 }
626
627 }
628
629 set args [lrange $args 1 end]
630 }
631
632 set cmdp [_git_cmd [lindex $args 0]]
633 set args [lrange $args 1 end]
634
74c4763c 635 return [_open_stdout_stderr [concat $opt $cmdp $args]]
0b812616
SP
636}
637
638proc git_write {args} {
16dd62ac 639 set opt [list]
0b812616
SP
640
641 while {1} {
642 switch -- [lindex $args 0] {
643 --nice {
6f62b4f7 644 _lappend_nice opt
0b812616
SP
645 }
646
647 default {
648 break
649 }
650
651 }
652
653 set args [lrange $args 1 end]
654 }
655
656 set cmdp [_git_cmd [lindex $args 0]]
657 set args [lrange $args 1 end]
658
16dd62ac
SP
659 _trace_exec [concat $opt $cmdp $args]
660 return [open [concat [list | ] $opt $cmdp $args] w]
81347223
SP
661}
662
ed76cb70 663proc githook_read {hook_name args} {
0730a5a3
ML
664 set cmd [concat git hook run --ignore-missing $hook_name -- $args 2>@1]
665 return [_open_stdout_stderr $cmd]
ed76cb70
SP
666}
667
e6131d30
AG
668proc kill_file_process {fd} {
669 set process [pid $fd]
670
671 catch {
672 if {[is_Windows]} {
3b422bc8 673 exec taskkill /pid $process
e6131d30
AG
674 } else {
675 exec kill $process
676 }
677 }
678}
679
1ffca60f
SP
680proc gitattr {path attr default} {
681 if {[catch {set r [git check-attr $attr -- $path]}]} {
682 set r unspecified
683 } else {
684 set r [join [lrange [split $r :] 2 end] :]
685 regsub {^ } $r {} r
686 }
687 if {$r eq {unspecified}} {
688 return $default
689 }
690 return $r
691}
692
7eafa2f1
SP
693proc sq {value} {
694 regsub -all ' $value "'\\''" value
695 return "'$value'"
696}
697
d41b43eb
SP
698proc load_current_branch {} {
699 global current_branch is_detached
700
fc4e8da7 701 set fd [open [gitdir HEAD] r]
39acfa3d 702 fconfigure $fd -translation binary -encoding utf-8
311e02a4 703 if {[gets $fd ref] < 1} {
fc4e8da7
SP
704 set ref {}
705 }
706 close $fd
311e02a4
SP
707
708 set pfx {ref: refs/heads/}
709 set len [string length $pfx]
710 if {[string equal -length $len $pfx $ref]} {
711 # We're on a branch. It might not exist. But
712 # HEAD looks good enough to be a branch.
713 #
d41b43eb
SP
714 set current_branch [string range $ref $len end]
715 set is_detached 0
311e02a4
SP
716 } else {
717 # Assume this is a detached head.
718 #
d41b43eb
SP
719 set current_branch HEAD
720 set is_detached 1
311e02a4 721 }
fc4e8da7
SP
722}
723
2739291b
SP
724auto_load tk_optionMenu
725rename tk_optionMenu real__tkOptionMenu
726proc tk_optionMenu {w varName args} {
727 set m [eval real__tkOptionMenu $w $varName $args]
728 $m configure -font font_ui
729 $w configure -font font_ui
730 return $m
731}
732
3849bfba
SP
733proc rmsel_tag {text} {
734 $text tag conf sel \
735 -background [$text cget -background] \
736 -foreground [$text cget -foreground] \
737 -borderwidth 0
3849bfba
SP
738 bind $text <Motion> break
739 return $text
740}
741
2810a58d 742wm withdraw .
a4bee597
SP
743set root_exists 0
744bind . <Visibility> {
745 bind . <Visibility> {}
746 set root_exists 1
747}
748
1bdd8a15
SP
749if {[is_Windows]} {
750 wm iconbitmap . -default $oguilib/git-gui.ico
f10d5b06 751 set ::tk::AlwaysShowSelection 1
c0d2c38d 752 bind . <Control-F2> {console show}
8c762125
AG
753
754 # Spoof an X11 display for SSH
755 if {![info exists env(DISPLAY)]} {
756 set env(DISPLAY) :9999
757 }
d1f2b362
GB
758} else {
759 catch {
760 image create photo gitlogo -width 16 -height 16
761
762 gitlogo put #33CC33 -to 7 0 9 2
763 gitlogo put #33CC33 -to 4 2 12 4
764 gitlogo put #33CC33 -to 7 4 9 6
765 gitlogo put #CC3333 -to 4 6 12 8
766 gitlogo put gray26 -to 4 9 6 10
767 gitlogo put gray26 -to 3 10 6 12
768 gitlogo put gray26 -to 8 9 13 11
769 gitlogo put gray26 -to 8 11 10 12
770 gitlogo put gray26 -to 11 11 13 14
771 gitlogo put gray26 -to 3 12 5 14
772 gitlogo put gray26 -to 5 13
773 gitlogo put gray26 -to 10 13
774 gitlogo put gray26 -to 4 14 12 15
775 gitlogo put gray26 -to 5 15 11 16
776 gitlogo redither
777
215d4fdb
SB
778 image create photo gitlogo32 -width 32 -height 32
779 gitlogo32 copy gitlogo -zoom 2 2
780
781 wm iconphoto . -default gitlogo gitlogo32
d1f2b362 782 }
1bdd8a15
SP
783}
784
a4bee597
SP
785######################################################################
786##
787## config defaults
788
789set cursor_ptr arrow
a4bee597 790font create font_ui
c80d7be5
PT
791if {[lsearch -exact [font names] TkDefaultFont] != -1} {
792 eval [linsert [font actual TkDefaultFont] 0 font configure font_ui]
793 eval [linsert [font actual TkFixedFont] 0 font create font_diff]
794} else {
795 font create font_diff -family Courier -size 10
796 catch {
797 label .dummy
798 eval font configure font_ui [font actual [.dummy cget -font]]
799 destroy .dummy
800 }
a4bee597
SP
801}
802
803font create font_uiitalic
804font create font_uibold
805font create font_diffbold
806font create font_diffitalic
807
808foreach class {Button Checkbutton Entry Label
a91be3fc 809 Labelframe Listbox Message
a4bee597
SP
810 Radiobutton Spinbox Text} {
811 option add *$class.font font_ui
812}
a91be3fc
DS
813if {![is_MacOSX]} {
814 option add *Menu.font font_ui
c80d7be5
PT
815 option add *Entry.borderWidth 1 startupFile
816 option add *Entry.relief sunken startupFile
817 option add *RadioButton.anchor w startupFile
a91be3fc 818}
a4bee597
SP
819unset class
820
821if {[is_Windows] || [is_MacOSX]} {
822 option add *Menu.tearOff 0
823}
824
825if {[is_MacOSX]} {
826 set M1B M1
827 set M1T Cmd
828} else {
829 set M1B Control
830 set M1T Ctrl
831}
832
833proc bind_button3 {w cmd} {
834 bind $w <Any-Button-3> $cmd
835 if {[is_MacOSX]} {
836 # Mac OS X sends Button-2 on right click through three-button mouse,
837 # or through trackpad right-clicking (two-finger touch + click).
838 bind $w <Any-Button-2> $cmd
839 bind $w <Control-Button-1> $cmd
840 }
841}
842
843proc apply_config {} {
844 global repo_config font_descs
845
846 foreach option $font_descs {
847 set name [lindex $option 0]
848 set font [lindex $option 1]
849 if {[catch {
48b8d2b3 850 set need_weight 1
a4bee597 851 foreach {cn cv} $repo_config(gui.$name) {
48b8d2b3
SP
852 if {$cn eq {-weight}} {
853 set need_weight 0
854 }
855 font configure $font $cn $cv
856 }
857 if {$need_weight} {
858 font configure $font -weight normal
a4bee597
SP
859 }
860 } err]} {
861 error_popup [strcat [mc "Invalid font specified in %s:" "gui.$name"] "\n\n$err"]
862 }
863 foreach {cn cv} [font configure $font] {
864 font configure ${font}bold $cn $cv
865 font configure ${font}italic $cn $cv
866 }
867 font configure ${font}bold -weight bold
868 font configure ${font}italic -slant italic
869 }
c80d7be5
PT
870
871 global use_ttk NS
872 set use_ttk 0
873 set NS {}
874 if {$repo_config(gui.usettk)} {
875 set use_ttk [package vsatisfies [package provide Tk] 8.5]
876 if {$use_ttk} {
877 set NS ttk
878 bind [winfo class .] <<ThemeChanged>> [list InitTheme]
879 pave_toplevel .
c02efc13 880 color::sync_with_theme
c80d7be5
PT
881 }
882 }
a4bee597
SP
883}
884
fe70225d 885set default_config(branch.autosetupmerge) true
7e30682c 886set default_config(merge.tool) {}
fb25092a 887set default_config(mergetool.keepbackup) true
a4bee597
SP
888set default_config(merge.diffstat) true
889set default_config(merge.summary) false
890set default_config(merge.verbosity) 2
891set default_config(user.name) {}
892set default_config(user.email) {}
893
72e6b002 894set default_config(gui.encoding) [encoding system]
a4bee597 895set default_config(gui.matchtrackingbranch) false
1fbaccad 896set default_config(gui.textconv) true
a4bee597
SP
897set default_config(gui.pruneduringfetch) false
898set default_config(gui.trustmtime) false
57cae87b 899set default_config(gui.fastcopyblame) false
d478056c 900set default_config(gui.maxrecentrepo) 10
57cae87b 901set default_config(gui.copyblamethreshold) 40
a9c80b83 902set default_config(gui.blamehistoryctx) 7
a4bee597 903set default_config(gui.diffcontext) 5
54531e7c 904set default_config(gui.diffopts) {}
11027d54 905set default_config(gui.commitmsgwidth) 75
a4bee597 906set default_config(gui.newbranchtemplate) {}
95b002ee 907set default_config(gui.spellingdictionary) {}
a4bee597
SP
908set default_config(gui.fontui) [font configure font_ui]
909set default_config(gui.fontdiff) [font configure font_diff]
dd6451f9
DZ
910# TODO: this option should be added to the git-config documentation
911set default_config(gui.maxfilesdisplayed) 5000
c80d7be5 912set default_config(gui.usettk) 1
e34789cc 913set default_config(gui.warndetachedcommit) 1
a43c5f51 914set default_config(gui.tabsize) 8
a4bee597
SP
915set font_descs {
916 {fontui font_ui {mc "Main Font"}}
917 {fontdiff font_diff {mc "Diff/Console Font"}}
918}
bb196e26 919set default_config(gui.stageuntracked) ask
e632b3c0 920set default_config(gui.displayuntracked) true
a4bee597 921
0b812616
SP
922######################################################################
923##
924## find git
925
926set _git [_which git]
927if {$_git eq {}} {
928 catch {wm withdraw .}
183a1d14
SP
929 tk_messageBox \
930 -icon error \
931 -type ok \
932 -title [mc "git-gui: fatal error"] \
933 -message [mc "Cannot find git in PATH."]
0b812616
SP
934 exit 1
935}
0b812616 936
54acdd95
SP
937######################################################################
938##
939## version check
940
d6967022 941if {[catch {set _git_version [git --version]} err]} {
54acdd95 942 catch {wm withdraw .}
875b7c93
SP
943 tk_messageBox \
944 -icon error \
945 -type ok \
c8c4854b 946 -title [mc "git-gui: fatal error"] \
875b7c93 947 -message "Cannot determine Git version:
54acdd95
SP
948
949$err
950
d6967022
SP
951[appname] requires Git 1.5.0 or later."
952 exit 1
953}
954if {![regsub {^git version } $_git_version {} _git_version]} {
955 catch {wm withdraw .}
875b7c93
SP
956 tk_messageBox \
957 -icon error \
958 -type ok \
c8c4854b 959 -title [mc "git-gui: fatal error"] \
31bb1d1b 960 -message [strcat [mc "Cannot parse Git version string:"] "\n\n$_git_version"]
54acdd95
SP
961 exit 1
962}
301dfaa9 963
67112c48 964proc get_trimmed_version {s} {
5c1b3913
ST
965 set r {}
966 foreach x [split $s -._] {
967 if {[string is integer -strict $x]} {
968 lappend r $x
969 } else {
970 break
971 }
972 }
973 return [join $r .]
67112c48 974}
301dfaa9 975set _real_git_version $_git_version
67112c48 976set _git_version [get_trimmed_version $_git_version]
d6967022 977
301dfaa9
SP
978if {![regexp {^[1-9]+(\.[0-9]+)+$} $_git_version]} {
979 catch {wm withdraw .}
980 if {[tk_messageBox \
981 -icon warning \
982 -type yesno \
983 -default no \
984 -title "[appname]: warning" \
5c1b3913 985 -message [mc "Git version cannot be determined.
301dfaa9 986
1ac17950 987%s claims it is version '%s'.
301dfaa9 988
1ac17950 989%s requires at least Git 1.5.0 or later.
301dfaa9 990
1ac17950
CS
991Assume '%s' is version 1.5.0?
992" $_git $_real_git_version [appname] $_real_git_version]] eq {yes}} {
301dfaa9
SP
993 set _git_version 1.5.0
994 } else {
995 exit 1
996 }
997}
998unset _real_git_version
999
d6967022
SP
1000proc git-version {args} {
1001 global _git_version
1002
1003 switch [llength $args] {
1004 0 {
1005 return $_git_version
54acdd95 1006 }
d6967022
SP
1007
1008 2 {
1009 set op [lindex $args 0]
1010 set vr [lindex $args 1]
1011 set cm [package vcompare $_git_version $vr]
1012 return [expr $cm $op 0]
1013 }
1014
1015 4 {
1016 set type [lindex $args 0]
1017 set name [lindex $args 1]
1018 set parm [lindex $args 2]
1019 set body [lindex $args 3]
1020
1021 if {($type ne {proc} && $type ne {method})} {
1022 error "Invalid arguments to git-version"
1023 }
1024 if {[llength $body] < 2 || [lindex $body end-1] ne {default}} {
1025 error "Last arm of $type $name must be default"
1026 }
1027
1028 foreach {op vr cb} [lrange $body 0 end-2] {
1029 if {[git-version $op $vr]} {
1030 return [uplevel [list $type $name $parm $cb]]
1031 }
1032 }
1033
1034 return [uplevel [list $type $name $parm [lindex $body end]]]
1035 }
1036
1037 default {
1038 error "git-version >= x"
1039 }
1040
1041 }
1042}
1043
1044if {[git-version < 1.5]} {
54acdd95 1045 catch {wm withdraw .}
875b7c93
SP
1046 tk_messageBox \
1047 -icon error \
1048 -type ok \
c8c4854b 1049 -title [mc "git-gui: fatal error"] \
875b7c93 1050 -message "[appname] requires Git 1.5.0 or later.
d6967022
SP
1051
1052You are using [git-version]:
1053
1054[git --version]"
54acdd95
SP
1055 exit 1
1056}
54acdd95 1057
875b7c93
SP
1058######################################################################
1059##
1060## configure our library
1061
875b7c93
SP
1062set idx [file join $oguilib tclIndex]
1063if {[catch {set fd [open $idx r]} err]} {
1064 catch {wm withdraw .}
1065 tk_messageBox \
1066 -icon error \
1067 -type ok \
c8c4854b 1068 -title [mc "git-gui: fatal error"] \
875b7c93
SP
1069 -message $err
1070 exit 1
1071}
1072if {[gets $fd] eq {# Autogenerated by git-gui Makefile}} {
1073 set idx [list]
1074 while {[gets $fd n] >= 0} {
1075 if {$n ne {} && ![string match #* $n]} {
1076 lappend idx $n
1077 }
1078 }
1079} else {
1080 set idx {}
1081}
1082close $fd
1083
1084if {$idx ne {}} {
1085 set loaded [list]
1086 foreach p $idx {
1087 if {[lsearch -exact $loaded $p] >= 0} continue
1088 source [file join $oguilib $p]
1089 lappend loaded $p
1090 }
1091 unset loaded p
1092} else {
1093 set auto_path [concat [list $oguilib] $auto_path]
1094}
fc703c20 1095unset -nocomplain idx fd
875b7c93 1096
ba7cc660 1097######################################################################
69f85ffa
SP
1098##
1099## config file parsing
1100
f00d504a 1101git-version proc _parse_config {arr_name args} {
85f7a94b
SP
1102 >= 1.5.3 {
1103 upvar $arr_name arr
1104 array unset arr
1105 set buf {}
1106 catch {
a5bb31fb
SP
1107 set fd_rc [eval \
1108 [list git_read config] \
1109 $args \
1110 [list --null --list]]
e2039e94 1111 fconfigure $fd_rc -translation binary -encoding utf-8
85f7a94b
SP
1112 set buf [read $fd_rc]
1113 close $fd_rc
1114 }
1115 foreach line [split $buf "\0"] {
1116 if {[regexp {^([^\n]+)\n(.*)$} $line line name value]} {
1117 if {[is_many_config $name]} {
1118 lappend arr($name) $value
1119 } else {
1120 set arr($name) $value
1121 }
12b219f7
BW
1122 } elseif {[regexp {^([^\n]+)$} $line line name]} {
1123 # no value given, but interpreting them as
1124 # boolean will be handled as true
1125 set arr($name) {}
85f7a94b
SP
1126 }
1127 }
1128 }
f00d504a
SP
1129 default {
1130 upvar $arr_name arr
1131 array unset arr
69f85ffa 1132 catch {
f00d504a 1133 set fd_rc [eval [list git_read config --list] $args]
69f85ffa
SP
1134 while {[gets $fd_rc line] >= 0} {
1135 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
1136 if {[is_many_config $name]} {
f00d504a 1137 lappend arr($name) $value
69f85ffa 1138 } else {
f00d504a 1139 set arr($name) $value
69f85ffa 1140 }
12b219f7
BW
1141 } elseif {[regexp {^([^=]+)$} $line line name]} {
1142 # no value given, but interpreting them as
1143 # boolean will be handled as true
1144 set arr($name) {}
69f85ffa
SP
1145 }
1146 }
1147 close $fd_rc
1148 }
1149 }
f00d504a 1150}
69f85ffa 1151
f00d504a 1152proc load_config {include_global} {
153ad78b 1153 global repo_config global_config system_config default_config
f00d504a
SP
1154
1155 if {$include_global} {
153ad78b 1156 _parse_config system_config --system
f00d504a 1157 _parse_config global_config --global
69f85ffa 1158 }
f00d504a 1159 _parse_config repo_config
69f85ffa
SP
1160
1161 foreach name [array names default_config] {
153ad78b
AG
1162 if {[catch {set v $system_config($name)}]} {
1163 set system_config($name) $default_config($name)
1164 }
1165 }
1166 foreach name [array names system_config] {
69f85ffa 1167 if {[catch {set v $global_config($name)}]} {
153ad78b 1168 set global_config($name) $system_config($name)
69f85ffa
SP
1169 }
1170 if {[catch {set v $repo_config($name)}]} {
153ad78b 1171 set repo_config($name) $system_config($name)
69f85ffa
SP
1172 }
1173 }
1174}
1175
1176######################################################################
ba7cc660
SP
1177##
1178## feature option selection
1179
0b2bc460 1180if {[regexp {^git-(.+)$} [file tail $argv0] _junk subcommand]} {
ba7cc660
SP
1181 unset _junk
1182} else {
1183 set subcommand gui
1184}
1185if {$subcommand eq {gui.sh}} {
1186 set subcommand gui
1187}
1188if {$subcommand eq {gui} && [llength $argv] > 0} {
1189 set subcommand [lindex $argv 0]
1190 set argv [lrange $argv 1 end]
1191}
1192
1193enable_option multicommit
1194enable_option branch
1195enable_option transport
c52c9452 1196disable_option bare
ba7cc660
SP
1197
1198switch -- $subcommand {
1199browser -
1200blame {
c52c9452
SP
1201 enable_option bare
1202
ba7cc660
SP
1203 disable_option multicommit
1204 disable_option branch
1205 disable_option transport
1206}
1207citool {
1208 enable_option singlecommit
1e65c622 1209 enable_option retcode
ba7cc660
SP
1210
1211 disable_option multicommit
1212 disable_option branch
1213 disable_option transport
1e65c622
AG
1214
1215 while {[llength $argv] > 0} {
1216 set a [lindex $argv 0]
1217 switch -- $a {
1218 --amend {
1219 enable_option initialamend
1220 }
1221 --nocommit {
1222 enable_option nocommit
1223 enable_option nocommitmsg
1224 }
1225 --commitmsg {
1226 disable_option nocommitmsg
1227 }
1228 default {
1229 break
1230 }
1231 }
1232
1233 set argv [lrange $argv 1 end]
1234 }
ba7cc660
SP
1235}
1236}
1237
e29c0d10
AG
1238######################################################################
1239##
1240## execution environment
1241
1242set have_tk85 [expr {[package vcompare $tk_version "8.5"] >= 0}]
1243
1244# Suggest our implementation of askpass, if none is set
1245if {![info exists env(SSH_ASKPASS)]} {
1246 set env(SSH_ASKPASS) [gitexec git-gui--askpass]
1247}
1248
2d19516d
SP
1249######################################################################
1250##
1251## repository setup
1252
bb4812bc 1253set picked 0
c6127856
SP
1254if {[catch {
1255 set _gitdir $env(GIT_DIR)
1256 set _prefix {}
1257 }]
1258 && [catch {
87cd09f4
GB
1259 # beware that from the .git dir this sets _gitdir to .
1260 # and _prefix to the empty string
c6127856
SP
1261 set _gitdir [git rev-parse --git-dir]
1262 set _prefix [git rev-parse --show-prefix]
1263 } err]} {
ab08b363
SP
1264 load_config 1
1265 apply_config
1266 choose_repository::pick
bb4812bc 1267 set picked 1
2d19516d 1268}
87cd09f4
GB
1269
1270# we expand the _gitdir when it's just a single dot (i.e. when we're being
1271# run from the .git dir itself) lest the routines to find the worktree
1272# get confused
1273if {$_gitdir eq "."} {
1274 set _gitdir [pwd]
1275}
1276
c950c66e 1277if {![file isdirectory $_gitdir]} {
dbccbbda 1278 catch {wm withdraw .}
31bb1d1b 1279 error_popup [strcat [mc "Git directory not found:"] "\n\n$_gitdir"]
dbccbbda
SP
1280 exit 1
1281}
21985a11
GB
1282# _gitdir exists, so try loading the config
1283load_config 0
1284apply_config
38ec8d3e
PT
1285
1286# v1.7.0 introduced --show-toplevel to return the canonical work-tree
ce3e848b 1287if {[package vcompare $_git_version 1.7.0] >= 0} {
7145c654 1288 set _gitworktree [git rev-parse --show-toplevel]
38ec8d3e
PT
1289} else {
1290 # try to set work tree from environment, core.worktree or use
1291 # cdup to obtain a relative path to the top of the worktree. If
1292 # run from the top, the ./ prefix ensures normalize expands pwd.
1293 if {[catch { set _gitworktree $env(GIT_WORK_TREE) }]} {
1294 set _gitworktree [get_config core.worktree]
1295 if {$_gitworktree eq ""} {
1296 set _gitworktree [file normalize ./[git rev-parse --show-cdup]]
1297 }
13a3d637 1298 }
21985a11 1299}
38ec8d3e 1300
c80d25db 1301if {$_prefix ne {}} {
21985a11
GB
1302 if {$_gitworktree eq {}} {
1303 regsub -all {[^/]+/} $_prefix ../ cdup
1304 } else {
1305 set cdup $_gitworktree
1306 }
c80d25db
SP
1307 if {[catch {cd $cdup} err]} {
1308 catch {wm withdraw .}
31bb1d1b 1309 error_popup [strcat [mc "Cannot move to top of working directory:"] "\n\n$err"]
c80d25db
SP
1310 exit 1
1311 }
21985a11 1312 set _gitworktree [pwd]
c80d25db
SP
1313 unset cdup
1314} elseif {![is_enabled bare]} {
29e5573d 1315 if {[is_bare]} {
c52c9452 1316 catch {wm withdraw .}
29e5573d 1317 error_popup [strcat [mc "Cannot use bare repository:"] "\n\n$_gitdir"]
c52c9452
SP
1318 exit 1
1319 }
21985a11
GB
1320 if {$_gitworktree eq {}} {
1321 set _gitworktree [file dirname $_gitdir]
1322 }
1323 if {[catch {cd $_gitworktree} err]} {
c52c9452 1324 catch {wm withdraw .}
21985a11 1325 error_popup [strcat [mc "No working directory"] " $_gitworktree:\n\n$err"]
c52c9452
SP
1326 exit 1
1327 }
21985a11 1328 set _gitworktree [pwd]
dbccbbda 1329}
c52c9452
SP
1330set _reponame [file split [file normalize $_gitdir]]
1331if {[lindex $_reponame end] eq {.git}} {
1332 set _reponame [lindex $_reponame end-1]
1333} else {
1334 set _reponame [lindex $_reponame end]
2d19516d 1335}
2d19516d 1336
a9fa11fe
GB
1337set env(GIT_DIR) $_gitdir
1338set env(GIT_WORK_TREE) $_gitworktree
1339
372ef954
SP
1340######################################################################
1341##
1342## global init
1343
1344set current_diff_path {}
1345set current_diff_side {}
1346set diff_actions [list]
372ef954
SP
1347
1348set HEAD {}
1349set PARENT {}
1350set MERGE_HEAD [list]
1351set commit_type {}
ba41b5b3 1352set commit_type_is_amend 0
372ef954
SP
1353set empty_tree {}
1354set current_branch {}
d41b43eb 1355set is_detached 0
372ef954 1356set current_diff_path {}
9c9f5fa9 1357set is_3way_diff 0
cd846aa1 1358set is_submodule_diff 0
3e34838c 1359set is_conflict_diff 0
8052e788 1360set diff_empty_count 0
a4fa2f0a
PY
1361set last_revert {}
1362set last_revert_enc {}
372ef954 1363
a9786bb4
AG
1364set nullid "0000000000000000000000000000000000000000"
1365set nullid2 "0000000000000000000000000000000000000001"
1366
cb07fc2a
SP
1367######################################################################
1368##
e210e674 1369## task management
cb07fc2a 1370
8f52548a 1371set rescan_active 0
131f503b 1372set diff_active 0
24263b77 1373set last_clicked {}
131f503b 1374
e210e674
SP
1375set disable_on_lock [list]
1376set index_lock_type none
1377
1378proc lock_index {type} {
1379 global index_lock_type disable_on_lock
131f503b 1380
043f7011 1381 if {$index_lock_type eq {none}} {
e210e674
SP
1382 set index_lock_type $type
1383 foreach w $disable_on_lock {
1384 uplevel #0 $w disabled
1385 }
1386 return 1
53716a7b 1387 } elseif {$index_lock_type eq "begin-$type"} {
e210e674 1388 set index_lock_type $type
131f503b
SP
1389 return 1
1390 }
1391 return 0
1392}
cb07fc2a 1393
e210e674
SP
1394proc unlock_index {} {
1395 global index_lock_type disable_on_lock
1396
1397 set index_lock_type none
1398 foreach w $disable_on_lock {
1399 uplevel #0 $w normal
1400 }
1401}
1402
1403######################################################################
1404##
1405## status
1406
f18e40a1 1407proc repository_state {ctvar hdvar mhvar} {
c950c66e 1408 global current_branch
f18e40a1
SP
1409 upvar $ctvar ct $hdvar hd $mhvar mh
1410
1411 set mh [list]
ec6b424a 1412
d41b43eb 1413 load_current_branch
81347223 1414 if {[catch {set hd [git rev-parse --verify HEAD]}]} {
4539eacd 1415 set hd {}
ec6b424a 1416 set ct initial
f18e40a1
SP
1417 return
1418 }
1419
c2758a17 1420 set merge_head [gitdir MERGE_HEAD]
f18e40a1 1421 if {[file exists $merge_head]} {
ec6b424a 1422 set ct merge
f18e40a1
SP
1423 set fd_mh [open $merge_head r]
1424 while {[gets $fd_mh line] >= 0} {
1425 lappend mh $line
1426 }
1427 close $fd_mh
1428 return
ec6b424a 1429 }
f18e40a1
SP
1430
1431 set ct normal
ec6b424a
SP
1432}
1433
4539eacd
SP
1434proc PARENT {} {
1435 global PARENT empty_tree
1436
f18e40a1
SP
1437 set p [lindex $PARENT 0]
1438 if {$p ne {}} {
1439 return $p
4539eacd
SP
1440 }
1441 if {$empty_tree eq {}} {
81347223 1442 set empty_tree [git mktree << {}]
4539eacd
SP
1443 }
1444 return $empty_tree
1445}
1446
1e65c622 1447proc force_amend {} {
ba41b5b3 1448 global commit_type_is_amend
1e65c622
AG
1449 global HEAD PARENT MERGE_HEAD commit_type
1450
1451 repository_state newType newHEAD newMERGE_HEAD
1452 set HEAD $newHEAD
1453 set PARENT $newHEAD
1454 set MERGE_HEAD $newMERGE_HEAD
1455 set commit_type $newType
1456
ba41b5b3 1457 set commit_type_is_amend 1
1e65c622
AG
1458 do_select_commit_type
1459}
1460
46aaf90b 1461proc rescan {after {honor_trustmtime 1}} {
f18e40a1 1462 global HEAD PARENT MERGE_HEAD commit_type
699d5601 1463 global ui_index ui_workdir ui_comm
8f52548a 1464 global rescan_active file_states
cf25ddc8 1465 global repo_config
cb07fc2a 1466
8f52548a 1467 if {$rescan_active > 0 || ![lock_index read]} return
cb07fc2a 1468
f18e40a1 1469 repository_state newType newHEAD newMERGE_HEAD
4539eacd 1470 if {[string match amend* $commit_type]
f18e40a1
SP
1471 && $newType eq {normal}
1472 && $newHEAD eq $HEAD} {
e57ca85e 1473 } else {
f18e40a1
SP
1474 set HEAD $newHEAD
1475 set PARENT $newHEAD
1476 set MERGE_HEAD $newMERGE_HEAD
1477 set commit_type $newType
e57ca85e
SP
1478 }
1479
cb07fc2a 1480 array unset file_states
cb07fc2a 1481
1e0a92fd
SP
1482 if {!$::GITGUI_BCK_exists &&
1483 (![$ui_comm edit modified]
1484 || [string trim [$ui_comm get 0.0 end]] eq {})} {
b2f3bb1b 1485 if {[string match amend* $commit_type]} {
fda1ba02 1486 } elseif {[load_message GITGUI_MSG utf-8]} {
2cd1fd1f 1487 } elseif {[run_prepare_commit_msg_hook]} {
131f503b
SP
1488 } elseif {[load_message MERGE_MSG]} {
1489 } elseif {[load_message SQUASH_MSG]} {
627c87f8 1490 } elseif {[load_message [get_config commit.template]]} {
131f503b 1491 }
b2c6fcf1 1492 $ui_comm edit reset
21d7744f 1493 $ui_comm edit modified false
131f503b
SP
1494 }
1495
46aaf90b 1496 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
8f52548a 1497 rescan_stage2 {} $after
e534f3a8 1498 } else {
8f52548a 1499 set rescan_active 1
1ac17950 1500 ui_status [mc "Refreshing file status..."]
0b812616
SP
1501 set fd_rf [git_read update-index \
1502 -q \
1503 --unmerged \
1504 --ignore-missing \
1505 --refresh \
1506 ]
e534f3a8 1507 fconfigure $fd_rf -blocking 0 -translation binary
390adaea 1508 fileevent $fd_rf readable \
8f52548a 1509 [list rescan_stage2 $fd_rf $after]
e534f3a8 1510 }
131f503b
SP
1511}
1512
7145c654
ML
1513proc have_info_exclude {} {
1514 return [file readable [gitdir info exclude]]
2fe167b6
SP
1515}
1516
8f52548a 1517proc rescan_stage2 {fd after} {
4539eacd 1518 global rescan_active buf_rdi buf_rdf buf_rlo
131f503b 1519
043f7011 1520 if {$fd ne {}} {
e534f3a8
SP
1521 read $fd
1522 if {![eof $fd]} return
1523 close $fd
1524 }
131f503b 1525
ce3e848b 1526 if {[package vcompare $::_git_version 1.6.3] >= 0} {
673eb4a0
SN
1527 set ls_others [list --exclude-standard]
1528 } else {
1529 set ls_others [list --exclude-per-directory=.gitignore]
1530 if {[have_info_exclude]} {
1531 lappend ls_others "--exclude-from=[gitdir info exclude]"
1532 }
1533 set user_exclude [get_config core.excludesfile]
1534 if {$user_exclude ne {} && [file readable $user_exclude]} {
1535 lappend ls_others "--exclude-from=[file normalize $user_exclude]"
1536 }
94a4dd9b 1537 }
cb07fc2a 1538
868c8752
SP
1539 set buf_rdi {}
1540 set buf_rdf {}
1541 set buf_rlo {}
1542
e632b3c0 1543 set rescan_active 2
1ac17950 1544 ui_status [mc "Scanning for modified files ..."]
e0db1dd7
JL
1545 if {[git-version >= "1.7.2"]} {
1546 set fd_di [git_read diff-index --cached --ignore-submodules=dirty -z [PARENT]]
1547 } else {
1548 set fd_di [git_read diff-index --cached -z [PARENT]]
1549 }
0b812616 1550 set fd_df [git_read diff-files -z]
cb07fc2a 1551
51a989ba
SP
1552 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
1553 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
e632b3c0 1554
8f52548a
SP
1555 fileevent $fd_di readable [list read_diff_index $fd_di $after]
1556 fileevent $fd_df readable [list read_diff_files $fd_df $after]
e632b3c0
MK
1557
1558 if {[is_config_true gui.displayuntracked]} {
1559 set fd_lo [eval git_read ls-files --others -z $ls_others]
1560 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
1561 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
1562 incr rescan_active
1563 }
cb07fc2a
SP
1564}
1565
fda1ba02 1566proc load_message {file {encoding {}}} {
c950c66e 1567 global ui_comm
131f503b 1568
c2758a17 1569 set f [gitdir $file]
e57ca85e 1570 if {[file isfile $f]} {
131f503b
SP
1571 if {[catch {set fd [open $f r]}]} {
1572 return 0
1573 }
6eb420ef 1574 fconfigure $fd -eofchar {}
fda1ba02
PT
1575 if {$encoding ne {}} {
1576 fconfigure $fd -encoding $encoding
1577 }
e57ca85e 1578 set content [string trim [read $fd]]
131f503b 1579 close $fd
4e55d19a 1580 regsub -all -line {[ \r\t]+$} $content {} content
131f503b
SP
1581 $ui_comm delete 0.0 end
1582 $ui_comm insert end $content
1583 return 1
1584 }
1585 return 0
1586}
1587
2cd1fd1f
JW
1588proc run_prepare_commit_msg_hook {} {
1589 global pch_error
1590
1591 # prepare-commit-msg requires PREPARE_COMMIT_MSG exist. From git-gui
1592 # it will be .git/MERGE_MSG (merge), .git/SQUASH_MSG (squash), or an
c5c45e1a 1593 # empty file but existent file.
2cd1fd1f
JW
1594
1595 set fd_pcm [open [gitdir PREPARE_COMMIT_MSG] a]
1596
1597 if {[file isfile [gitdir MERGE_MSG]]} {
1598 set pcm_source "merge"
1599 set fd_mm [open [gitdir MERGE_MSG] r]
af465c0c 1600 fconfigure $fd_mm -encoding utf-8
2cd1fd1f
JW
1601 puts -nonewline $fd_pcm [read $fd_mm]
1602 close $fd_mm
1603 } elseif {[file isfile [gitdir SQUASH_MSG]]} {
1604 set pcm_source "squash"
1605 set fd_sm [open [gitdir SQUASH_MSG] r]
af465c0c 1606 fconfigure $fd_sm -encoding utf-8
2cd1fd1f
JW
1607 puts -nonewline $fd_pcm [read $fd_sm]
1608 close $fd_sm
627c87f8
MS
1609 } elseif {[file isfile [get_config commit.template]]} {
1610 set pcm_source "template"
1611 set fd_sm [open [get_config commit.template] r]
1612 fconfigure $fd_sm -encoding utf-8
1613 puts -nonewline $fd_pcm [read $fd_sm]
1614 close $fd_sm
2cd1fd1f
JW
1615 } else {
1616 set pcm_source ""
1617 }
1618
1619 close $fd_pcm
1620
1621 set fd_ph [githook_read prepare-commit-msg \
1622 [gitdir PREPARE_COMMIT_MSG] $pcm_source]
1623 if {$fd_ph eq {}} {
1624 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1625 return 0;
1626 }
1627
1628 ui_status [mc "Calling prepare-commit-msg hook..."]
1629 set pch_error {}
1630
1631 fconfigure $fd_ph -blocking 0 -translation binary -eofchar {}
1632 fileevent $fd_ph readable \
1633 [list prepare_commit_msg_hook_wait $fd_ph]
1634
1635 return 1;
1636}
1637
1638proc prepare_commit_msg_hook_wait {fd_ph} {
1639 global pch_error
1640
1641 append pch_error [read $fd_ph]
1642 fconfigure $fd_ph -blocking 1
1643 if {[eof $fd_ph]} {
1644 if {[catch {close $fd_ph}]} {
1645 ui_status [mc "Commit declined by prepare-commit-msg hook."]
1646 hook_failed_popup prepare-commit-msg $pch_error
1647 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1648 exit 1
1649 } else {
1650 load_message PREPARE_COMMIT_MSG
1651 }
1652 set pch_error {}
1653 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1654 return
5c1b3913 1655 }
2cd1fd1f
JW
1656 fconfigure $fd_ph -blocking 0
1657 catch {file delete [gitdir PREPARE_COMMIT_MSG]}
1658}
1659
8f52548a 1660proc read_diff_index {fd after} {
cb07fc2a
SP
1661 global buf_rdi
1662
1663 append buf_rdi [read $fd]
868c8752
SP
1664 set c 0
1665 set n [string length $buf_rdi]
1666 while {$c < $n} {
1667 set z1 [string first "\0" $buf_rdi $c]
1668 if {$z1 == -1} break
1669 incr z1
1670 set z2 [string first "\0" $buf_rdi $z1]
1671 if {$z2 == -1} break
1672
868c8752 1673 incr c
86291555 1674 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
51a989ba 1675 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
1461c5f3 1676 merge_state \
e2039e94 1677 [encoding convertfrom utf-8 $p] \
86291555
SP
1678 [lindex $i 4]? \
1679 [list [lindex $i 0] [lindex $i 2]] \
1461c5f3
SP
1680 [list]
1681 set c $z2
86291555 1682 incr c
cb07fc2a 1683 }
868c8752
SP
1684 if {$c < $n} {
1685 set buf_rdi [string range $buf_rdi $c end]
1686 } else {
1687 set buf_rdi {}
1688 }
1689
8f52548a 1690 rescan_done $fd buf_rdi $after
cb07fc2a
SP
1691}
1692
8f52548a 1693proc read_diff_files {fd after} {
cb07fc2a
SP
1694 global buf_rdf
1695
1696 append buf_rdf [read $fd]
868c8752
SP
1697 set c 0
1698 set n [string length $buf_rdf]
1699 while {$c < $n} {
1700 set z1 [string first "\0" $buf_rdf $c]
1701 if {$z1 == -1} break
1702 incr z1
1703 set z2 [string first "\0" $buf_rdf $z1]
1704 if {$z2 == -1} break
1705
868c8752 1706 incr c
86291555 1707 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
51a989ba 1708 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
1461c5f3 1709 merge_state \
e2039e94 1710 [encoding convertfrom utf-8 $p] \
86291555 1711 ?[lindex $i 4] \
1461c5f3 1712 [list] \
86291555 1713 [list [lindex $i 0] [lindex $i 2]]
1461c5f3 1714 set c $z2
86291555 1715 incr c
868c8752
SP
1716 }
1717 if {$c < $n} {
1718 set buf_rdf [string range $buf_rdf $c end]
1719 } else {
1720 set buf_rdf {}
cb07fc2a 1721 }
868c8752 1722
8f52548a 1723 rescan_done $fd buf_rdf $after
cb07fc2a
SP
1724}
1725
8f52548a 1726proc read_ls_others {fd after} {
cb07fc2a
SP
1727 global buf_rlo
1728
1729 append buf_rlo [read $fd]
1730 set pck [split $buf_rlo "\0"]
1731 set buf_rlo [lindex $pck end]
1732 foreach p [lrange $pck 0 end-1] {
e2039e94 1733 set p [encoding convertfrom utf-8 $p]
89384101
SP
1734 if {[string index $p end] eq {/}} {
1735 set p [string range $p 0 end-1]
1736 }
1737 merge_state $p ?O
cb07fc2a 1738 }
8f52548a 1739 rescan_done $fd buf_rlo $after
cb07fc2a
SP
1740}
1741
8f52548a 1742proc rescan_done {fd buf after} {
f522c9b5 1743 global rescan_active current_diff_path
f7f8d322 1744 global file_states repo_config
7f1df79b 1745 upvar $buf to_clear
cb07fc2a 1746
f7f8d322
SP
1747 if {![eof $fd]} return
1748 set to_clear {}
1749 close $fd
8f52548a 1750 if {[incr rescan_active -1] > 0} return
93f654df 1751
24263b77 1752 prune_selection
f7f8d322
SP
1753 unlock_index
1754 display_all_files
7cf4566f
AG
1755 if {$current_diff_path ne {}} { reshow_diff $after }
1756 if {$current_diff_path eq {}} { select_first_diff $after }
cb07fc2a
SP
1757}
1758
24263b77
SP
1759proc prune_selection {} {
1760 global file_states selected_paths
1761
1762 foreach path [array names selected_paths] {
1763 if {[catch {set still_here $file_states($path)}]} {
1764 unset selected_paths($path)
1765 }
1766 }
1767}
1768
cb07fc2a
SP
1769######################################################################
1770##
f522c9b5 1771## ui helpers
cb07fc2a 1772
f522c9b5
SP
1773proc mapicon {w state path} {
1774 global all_icons
1775
1776 if {[catch {set r $all_icons($state$w)}]} {
1777 puts "error: no icon for $w state={$state} $path"
1778 return file_plain
1779 }
1780 return $r
1781}
cb07fc2a 1782
f522c9b5
SP
1783proc mapdesc {state path} {
1784 global all_descs
03e4ec53 1785
f522c9b5
SP
1786 if {[catch {set r $all_descs($state)}]} {
1787 puts "error: no desc for state={$state} $path"
1788 return $state
1789 }
1790 return $r
1791}
03e4ec53 1792
699d5601 1793proc ui_status {msg} {
906ab7f6
SP
1794 global main_status
1795 if {[info exists main_status]} {
1796 $main_status show $msg
1797 }
699d5601
SP
1798}
1799
d9c6469f 1800proc ui_ready {} {
906ab7f6
SP
1801 global main_status
1802 if {[info exists main_status]} {
d9c6469f 1803 $main_status show [mc "Ready."]
906ab7f6 1804 }
699d5601
SP
1805}
1806
f522c9b5
SP
1807proc escape_path {path} {
1808 regsub -all {\\} $path "\\\\" path
1809 regsub -all "\n" $path "\\n" path
1810 return $path
cb07fc2a
SP
1811}
1812
f522c9b5
SP
1813proc short_path {path} {
1814 return [escape_path [lindex [file split $path] end]]
7f1df79b
SP
1815}
1816
f522c9b5
SP
1817set next_icon_id 0
1818set null_sha1 [string repeat 0 40]
16403d0b 1819
f522c9b5
SP
1820proc merge_state {path new_state {head_info {}} {index_info {}}} {
1821 global file_states next_icon_id null_sha1
16403d0b 1822
f522c9b5
SP
1823 set s0 [string index $new_state 0]
1824 set s1 [string index $new_state 1]
16403d0b 1825
f522c9b5
SP
1826 if {[catch {set info $file_states($path)}]} {
1827 set state __
1828 set icon n[incr next_icon_id]
1829 } else {
1830 set state [lindex $info 0]
1831 set icon [lindex $info 1]
1832 if {$head_info eq {}} {set head_info [lindex $info 2]}
1833 if {$index_info eq {}} {set index_info [lindex $info 3]}
1834 }
16403d0b 1835
f522c9b5
SP
1836 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1837 elseif {$s0 eq {_}} {set s0 _}
124355d3 1838
f522c9b5
SP
1839 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1840 elseif {$s1 eq {_}} {set s1 _}
16403d0b 1841
f522c9b5
SP
1842 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1843 set head_info [list 0 $null_sha1]
1844 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1845 && $head_info eq {}} {
1846 set head_info $index_info
7ec2b69f
JL
1847 } elseif {$s0 eq {_} && [string index $state 0] ne {_}} {
1848 set index_info $head_info
1849 set head_info {}
f522c9b5 1850 }
16403d0b 1851
f522c9b5
SP
1852 set file_states($path) [list $s0$s1 $icon \
1853 $head_info $index_info \
1854 ]
1855 return $state
1856}
cb07fc2a 1857
f522c9b5
SP
1858proc display_file_helper {w path icon_name old_m new_m} {
1859 global file_lists
cb07fc2a 1860
f522c9b5 1861 if {$new_m eq {_}} {
156b2921 1862 set lno [lsearch -sorted -exact $file_lists($w) $path]
5f8b70b1 1863 if {$lno >= 0} {
f522c9b5 1864 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
5f8b70b1 1865 incr lno
f522c9b5
SP
1866 $w conf -state normal
1867 $w delete $lno.0 [expr {$lno + 1}].0
1868 $w conf -state disabled
03e4ec53 1869 }
f522c9b5
SP
1870 } elseif {$old_m eq {_} && $new_m ne {_}} {
1871 lappend file_lists($w) $path
1872 set file_lists($w) [lsort -unique $file_lists($w)]
1873 set lno [lsearch -sorted -exact $file_lists($w) $path]
1874 incr lno
1875 $w conf -state normal
1876 $w image create $lno.0 \
1877 -align center -padx 5 -pady 1 \
1878 -name $icon_name \
1879 -image [mapicon $w $new_m $path]
1880 $w insert $lno.1 "[escape_path $path]\n"
1881 $w conf -state disabled
1882 } elseif {$old_m ne $new_m} {
1883 $w conf -state normal
1884 $w image conf $icon_name -image [mapicon $w $new_m $path]
1885 $w conf -state disabled
03e4ec53 1886 }
f522c9b5
SP
1887}
1888
1889proc display_file {path state} {
1890 global file_states selected_paths
1891 global ui_index ui_workdir
03e4ec53 1892
f522c9b5 1893 set old_m [merge_state $path $state]
cb07fc2a 1894 set s $file_states($path)
f522c9b5
SP
1895 set new_m [lindex $s 0]
1896 set icon_name [lindex $s 1]
82cb8706 1897
f522c9b5
SP
1898 set o [string index $old_m 0]
1899 set n [string index $new_m 0]
1900 if {$o eq {U}} {
1901 set o _
1902 }
1903 if {$n eq {U}} {
1904 set n _
cb07fc2a 1905 }
f522c9b5 1906 display_file_helper $ui_index $path $icon_name $o $n
cb07fc2a 1907
f522c9b5
SP
1908 if {[string index $old_m 0] eq {U}} {
1909 set o U
1910 } else {
1911 set o [string index $old_m 1]
82cb8706 1912 }
f522c9b5
SP
1913 if {[string index $new_m 0] eq {U}} {
1914 set n U
1915 } else {
1916 set n [string index $new_m 1]
82cb8706 1917 }
f522c9b5
SP
1918 display_file_helper $ui_workdir $path $icon_name $o $n
1919
1920 if {$new_m eq {__}} {
1921 unset file_states($path)
1922 catch {unset selected_paths($path)}
cb07fc2a 1923 }
f522c9b5 1924}
cb07fc2a 1925
f522c9b5
SP
1926proc display_all_files_helper {w path icon_name m} {
1927 global file_lists
1928
1929 lappend file_lists($w) $path
1930 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1931 $w image create end \
1932 -align center -padx 5 -pady 1 \
1933 -name $icon_name \
1934 -image [mapicon $w $m $path]
1935 $w insert end "[escape_path $path]\n"
cb07fc2a
SP
1936}
1937
dd6451f9 1938set files_warning 0
f522c9b5
SP
1939proc display_all_files {} {
1940 global ui_index ui_workdir
1941 global file_states file_lists
1942 global last_clicked
dd6451f9 1943 global files_warning
cb07fc2a 1944
f522c9b5
SP
1945 $ui_index conf -state normal
1946 $ui_workdir conf -state normal
cb07fc2a 1947
f522c9b5
SP
1948 $ui_index delete 0.0 end
1949 $ui_workdir delete 0.0 end
1950 set last_clicked {}
cb07fc2a 1951
f522c9b5
SP
1952 set file_lists($ui_index) [list]
1953 set file_lists($ui_workdir) [list]
16403d0b 1954
dd6451f9
DZ
1955 set to_display [lsort [array names file_states]]
1956 set display_limit [get_config gui.maxfilesdisplayed]
a117fa21 1957 set displayed 0
dd6451f9 1958 foreach path $to_display {
f522c9b5
SP
1959 set s $file_states($path)
1960 set m [lindex $s 0]
1961 set icon_name [lindex $s 1]
1962
a117fa21
CK
1963 if {$displayed > $display_limit && [string index $m 1] eq {O} } {
1964 if {!$files_warning} {
1965 # do not repeatedly warn:
1966 set files_warning 1
1967 info_popup [mc "Display limit (gui.maxfilesdisplayed = %s) reached, not showing all %s files." \
1968 $display_limit [llength $to_display]]
1969 }
1970 continue
1971 }
1972
f522c9b5
SP
1973 set s [string index $m 0]
1974 if {$s ne {U} && $s ne {_}} {
1975 display_all_files_helper $ui_index $path \
1976 $icon_name $s
16403d0b 1977 }
cb07fc2a 1978
f522c9b5
SP
1979 if {[string index $m 0] eq {U}} {
1980 set s U
1981 } else {
1982 set s [string index $m 1]
a25c5189 1983 }
f522c9b5
SP
1984 if {$s ne {_}} {
1985 display_all_files_helper $ui_workdir $path \
1986 $icon_name $s
a117fa21 1987 incr displayed
a25c5189
SP
1988 }
1989 }
1990
f522c9b5
SP
1991 $ui_index conf -state disabled
1992 $ui_workdir conf -state disabled
a25c5189
SP
1993}
1994
ec6b424a
SP
1995######################################################################
1996##
f522c9b5 1997## icons
ec6b424a 1998
f522c9b5
SP
1999set filemask {
2000#define mask_width 14
2001#define mask_height 15
2002static unsigned char mask_bits[] = {
5c1b3913
ST
2003 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2004 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
2005 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
f522c9b5 2006}
cb07fc2a
SP
2007
2008image create bitmap file_plain -background white -foreground black -data {
2009#define plain_width 14
2010#define plain_height 15
2011static unsigned char plain_bits[] = {
5c1b3913
ST
2012 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2013 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
2014 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2015} -maskdata $filemask
2016
2017image create bitmap file_mod -background white -foreground blue -data {
2018#define mod_width 14
2019#define mod_height 15
2020static unsigned char mod_bits[] = {
5c1b3913
ST
2021 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
2022 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2023 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2024} -maskdata $filemask
2025
131f503b
SP
2026image create bitmap file_fulltick -background white -foreground "#007000" -data {
2027#define file_fulltick_width 14
2028#define file_fulltick_height 15
2029static unsigned char file_fulltick_bits[] = {
5c1b3913
ST
2030 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
2031 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
2032 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2033} -maskdata $filemask
2034
cb07fc2a
SP
2035image create bitmap file_question -background white -foreground black -data {
2036#define file_question_width 14
2037#define file_question_height 15
2038static unsigned char file_question_bits[] = {
5c1b3913
ST
2039 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
2040 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
2041 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2042} -maskdata $filemask
2043
2044image create bitmap file_removed -background white -foreground red -data {
2045#define file_removed_width 14
2046#define file_removed_height 15
2047static unsigned char file_removed_bits[] = {
5c1b3913
ST
2048 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
2049 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
2050 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2051} -maskdata $filemask
2052
2053image create bitmap file_merge -background white -foreground blue -data {
2054#define file_merge_width 14
2055#define file_merge_height 15
2056static unsigned char file_merge_bits[] = {
5c1b3913
ST
2057 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
2058 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
2059 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
cb07fc2a
SP
2060} -maskdata $filemask
2061
e681cb7d 2062image create bitmap file_statechange -background white -foreground green -data {
bf5fe3f3
BW
2063#define file_statechange_width 14
2064#define file_statechange_height 15
e681cb7d 2065static unsigned char file_statechange_bits[] = {
5c1b3913
ST
2066 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x62, 0x10,
2067 0x62, 0x10, 0xba, 0x11, 0xba, 0x11, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10,
2068 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
e681cb7d
GH
2069} -maskdata $filemask
2070
6b292675 2071set ui_index .vpane.files.index.list
0812665e 2072set ui_workdir .vpane.files.workdir.list
21e409ad
SP
2073
2074set all_icons(_$ui_index) file_plain
0602de48 2075set all_icons(A$ui_index) file_plain
21e409ad
SP
2076set all_icons(M$ui_index) file_fulltick
2077set all_icons(D$ui_index) file_removed
2078set all_icons(U$ui_index) file_merge
e681cb7d 2079set all_icons(T$ui_index) file_statechange
21e409ad
SP
2080
2081set all_icons(_$ui_workdir) file_plain
2082set all_icons(M$ui_workdir) file_mod
2083set all_icons(D$ui_workdir) file_question
3b4db3c1 2084set all_icons(U$ui_workdir) file_merge
21e409ad 2085set all_icons(O$ui_workdir) file_plain
e681cb7d 2086set all_icons(T$ui_workdir) file_statechange
21e409ad 2087
131f503b 2088set max_status_desc 0
cb07fc2a 2089foreach i {
1ac17950
CS
2090 {__ {mc "Unmodified"}}
2091
2092 {_M {mc "Modified, not staged"}}
2093 {M_ {mc "Staged for commit"}}
2094 {MM {mc "Portions staged for commit"}}
2095 {MD {mc "Staged for commit, missing"}}
2096
e681cb7d 2097 {_T {mc "File type changed, not staged"}}
7587f4d3
BW
2098 {MT {mc "File type changed, old type staged for commit"}}
2099 {AT {mc "File type changed, old type staged for commit"}}
e681cb7d 2100 {T_ {mc "File type changed, staged"}}
7587f4d3
BW
2101 {TM {mc "File type change staged, modification not staged"}}
2102 {TD {mc "File type change staged, file missing"}}
e681cb7d 2103
1ac17950
CS
2104 {_O {mc "Untracked, not staged"}}
2105 {A_ {mc "Staged for commit"}}
2106 {AM {mc "Portions staged for commit"}}
2107 {AD {mc "Staged for commit, missing"}}
2108
2109 {_D {mc "Missing"}}
2110 {D_ {mc "Staged for removal"}}
2111 {DO {mc "Staged for removal, still present"}}
2112
ff515d81 2113 {_U {mc "Requires merge resolution"}}
1ac17950
CS
2114 {U_ {mc "Requires merge resolution"}}
2115 {UU {mc "Requires merge resolution"}}
2116 {UM {mc "Requires merge resolution"}}
2117 {UD {mc "Requires merge resolution"}}
ff515d81 2118 {UT {mc "Requires merge resolution"}}
cb07fc2a 2119 } {
1ac17950
CS
2120 set text [eval [lindex $i 1]]
2121 if {$max_status_desc < [string length $text]} {
2122 set max_status_desc [string length $text]
131f503b 2123 }
1ac17950 2124 set all_descs([lindex $i 0]) $text
cb07fc2a 2125}
21e409ad 2126unset i
cb07fc2a
SP
2127
2128######################################################################
2129##
2130## util
2131
35874c16
SP
2132proc scrollbar2many {list mode args} {
2133 foreach w $list {eval $w $mode $args}
2134}
2135
2136proc many2scrollbar {list mode sb top bottom} {
2137 $sb set $top $bottom
2138 foreach w $list {$w $mode moveto $top}
2139}
2140
b4946930
SP
2141proc incr_font_size {font {amt 1}} {
2142 set sz [font configure $font -size]
2143 incr sz $amt
2144 font configure $font -size $sz
2145 font configure ${font}bold -size $sz
debcd0fd 2146 font configure ${font}italic -size $sz
b4946930
SP
2147}
2148
cb07fc2a
SP
2149######################################################################
2150##
2151## ui commands
2152
25476c63
JL
2153proc do_gitk {revs {is_submodule false}} {
2154 global current_diff_path file_states current_diff_side ui_index
a9fa11fe 2155 global _gitdir _gitworktree
25476c63 2156
20ddfcaa
SP
2157 # -- Always start gitk through whatever we were loaded with. This
2158 # lets us bypass using shell process on Windows systems.
2159 #
79317e5d 2160 set exe [_which gitk -script]
02efd48f 2161 set cmd [list [info nameofexecutable] $exe]
15430be5
AMS
2162 if {$exe eq {}} {
2163 error_popup [mc "Couldn't find gitk in PATH"]
cb07fc2a 2164 } else {
501e4c6f
SP
2165 global env
2166
501e4c6f 2167 set pwd [pwd]
501e4c6f 2168
25476c63 2169 if {!$is_submodule} {
29e5573d 2170 if {![is_bare]} {
21985a11
GB
2171 cd $_gitworktree
2172 }
25476c63
JL
2173 } else {
2174 cd $current_diff_path
2175 if {$revs eq {--}} {
2176 set s $file_states($current_diff_path)
2177 set old_sha1 {}
2178 set new_sha1 {}
2179 switch -glob -- [lindex $s 0] {
2180 M_ { set old_sha1 [lindex [lindex $s 2] 1] }
2181 _M { set old_sha1 [lindex [lindex $s 3] 1] }
2182 MM {
2183 if {$current_diff_side eq $ui_index} {
2184 set old_sha1 [lindex [lindex $s 2] 1]
2185 set new_sha1 [lindex [lindex $s 3] 1]
2186 } else {
2187 set old_sha1 [lindex [lindex $s 3] 1]
2188 }
2189 }
2190 }
2191 set revs $old_sha1...$new_sha1
2192 }
a9fa11fe
GB
2193 # GIT_DIR and GIT_WORK_TREE for the submodule are not the ones
2194 # we've been using for the main repository, so unset them.
2195 # TODO we could make life easier (start up faster?) for gitk
2196 # by setting these to the appropriate values to allow gitk
2197 # to skip the heuristics to find their proper value
2198 unset env(GIT_DIR)
2199 unset env(GIT_WORK_TREE)
25476c63 2200 }
e27d106e 2201 eval exec $cmd $revs "--" "--" &
501e4c6f 2202
a9fa11fe
GB
2203 set env(GIT_DIR) $_gitdir
2204 set env(GIT_WORK_TREE) $_gitworktree
25476c63
JL
2205 cd $pwd
2206
5eb9397e
PY
2207 if {[info exists main_status]} {
2208 set status_operation [$::main_status \
2209 start \
2210 [mc "Starting %s... please wait..." "gitk"]]
d9c6469f 2211
5eb9397e
PY
2212 after 3500 [list $status_operation stop]
2213 }
25476c63
JL
2214 }
2215}
2216
2217proc do_git_gui {} {
2218 global current_diff_path
2219
2220 # -- Always start git gui through whatever we were loaded with. This
2221 # lets us bypass using shell process on Windows systems.
2222 #
831cc7eb 2223 set exe [list [_which git]]
25476c63
JL
2224 if {$exe eq {}} {
2225 error_popup [mc "Couldn't find git gui in PATH"]
2226 } else {
2227 global env
a9fa11fe 2228 global _gitdir _gitworktree
25476c63 2229
a9fa11fe
GB
2230 # see note in do_gitk about unsetting these vars when
2231 # running tools in a submodule
2232 unset env(GIT_DIR)
2233 unset env(GIT_WORK_TREE)
25476c63
JL
2234
2235 set pwd [pwd]
2236 cd $current_diff_path
2237
2238 eval exec $exe gui &
2239
a9fa11fe
GB
2240 set env(GIT_DIR) $_gitdir
2241 set env(GIT_WORK_TREE) $_gitworktree
501e4c6f
SP
2242 cd $pwd
2243
d9c6469f
JG
2244 set status_operation [$::main_status \
2245 start \
2246 [mc "Starting %s... please wait..." "git-gui"]]
2247
2248 after 3500 [list $status_operation stop]
cb07fc2a
SP
2249 }
2250}
2251
786f4d24
ZS
2252# Get the system-specific explorer app/command.
2253proc get_explorer {} {
4ed23c3c
ML
2254 if {[is_Cygwin]} {
2255 set explorer "/bin/cygstart.exe --explore"
2256 } elseif {[is_Windows]} {
afd54240
PB
2257 set explorer "explorer.exe"
2258 } elseif {[is_MacOSX]} {
2259 set explorer "open"
2260 } else {
2261 # freedesktop.org-conforming system is our best shot
2262 set explorer "xdg-open"
2263 }
786f4d24
ZS
2264 return $explorer
2265}
2266
2267proc do_explore {} {
2268 global _gitworktree
2269 set explorer [get_explorer]
2e0cda65 2270 eval exec $explorer [list [file nativename $_gitworktree]] &
afd54240
PB
2271}
2272
786f4d24
ZS
2273# Open file relative to the working tree by the default associated app.
2274proc do_file_open {file} {
2275 global _gitworktree
2276 set explorer [get_explorer]
2277 set full_file_path [file join $_gitworktree $file]
2278 exec $explorer [file nativename $full_file_path] &
2279}
2280
b5834d70 2281set is_quitting 0
1e65c622 2282set ret_code 1
c4fe7728 2283
1e65c622
AG
2284proc terminate_me {win} {
2285 global ret_code
2286 if {$win ne {.}} return
2287 exit $ret_code
2288}
2289
2290proc do_quit {{rc {1}}} {
c950c66e 2291 global ui_comm is_quitting repo_config commit_type
4578c5cb 2292 global GITGUI_BCK_exists GITGUI_BCK_i
95b002ee 2293 global ui_comm_spell
c80d7be5 2294 global ret_code use_ttk
c4fe7728 2295
b5834d70
SP
2296 if {$is_quitting} return
2297 set is_quitting 1
131f503b 2298
db7f34d4
SP
2299 if {[winfo exists $ui_comm]} {
2300 # -- Stash our current commit buffer.
2301 #
2302 set save [gitdir GITGUI_MSG]
4578c5cb
SP
2303 if {$GITGUI_BCK_exists && ![$ui_comm edit modified]} {
2304 file rename -force [gitdir GITGUI_BCK] $save
2305 set GITGUI_BCK_exists 0
ce83ab2b 2306 } elseif {[$ui_comm edit modified]} {
4578c5cb
SP
2307 set msg [string trim [$ui_comm get 0.0 end]]
2308 regsub -all -line {[ \r\t]+$} $msg {} msg
ce83ab2b 2309 if {![string match amend* $commit_type]
4578c5cb
SP
2310 && $msg ne {}} {
2311 catch {
2312 set fd [open $save w]
fda1ba02 2313 fconfigure $fd -encoding utf-8
4578c5cb
SP
2314 puts -nonewline $fd $msg
2315 close $fd
2316 }
2317 } else {
2318 catch {file delete $save}
2319 }
2320 }
2321
95b002ee
SP
2322 # -- Cancel our spellchecker if its running.
2323 #
2324 if {[info exists ui_comm_spell]} {
2325 $ui_comm_spell stop
2326 }
2327
4578c5cb
SP
2328 # -- Remove our editor backup, its not needed.
2329 #
2330 after cancel $GITGUI_BCK_i
2331 if {$GITGUI_BCK_exists} {
2332 catch {file delete [gitdir GITGUI_BCK]}
131f503b 2333 }
131f503b 2334
db7f34d4
SP
2335 # -- Stash our current window geometry into this repository.
2336 #
ed7b6033
AB
2337 set cfg_wmstate [wm state .]
2338 if {[catch {set rc_wmstate $repo_config(gui.wmstate)}]} {
2339 set rc_wmstate {}
2340 }
2341 if {$cfg_wmstate ne $rc_wmstate} {
2342 catch {git config gui.wmstate $cfg_wmstate}
2343 }
2344 if {$cfg_wmstate eq {zoomed}} {
2345 # on Windows wm geometry will lie about window
2346 # position (but not size) when window is zoomed
2347 # restore the window before querying wm geometry
2348 wm state . normal
2349 }
db7f34d4
SP
2350 set cfg_geometry [list]
2351 lappend cfg_geometry [wm geometry .]
c80d7be5
PT
2352 if {$use_ttk} {
2353 lappend cfg_geometry [.vpane sashpos 0]
2354 lappend cfg_geometry [.vpane.files sashpos 0]
2355 } else {
2356 lappend cfg_geometry [lindex [.vpane sash coord 0] 0]
2357 lappend cfg_geometry [lindex [.vpane.files sash coord 0] 1]
2358 }
db7f34d4
SP
2359 if {[catch {set rc_geometry $repo_config(gui.geometry)}]} {
2360 set rc_geometry {}
2361 }
2362 if {$cfg_geometry ne $rc_geometry} {
81347223 2363 catch {git config gui.geometry $cfg_geometry}
db7f34d4 2364 }
51f4d16b
SP
2365 }
2366
1e65c622 2367 set ret_code $rc
60204ddb
JM
2368
2369 # Briefly enable send again, working around Tk bug
65175d9e 2370 # https://sourceforge.net/p/tktoolkit/bugs/2343/
60204ddb
JM
2371 tk appname [appname]
2372
cb07fc2a
SP
2373 destroy .
2374}
2375
2376proc do_rescan {} {
699d5601 2377 rescan ui_ready
cb07fc2a
SP
2378}
2379
8056cc4f 2380proc ui_do_rescan {} {
7cf4566f 2381 rescan {force_first_diff ui_ready}
8056cc4f
AG
2382}
2383
6e27d826 2384proc do_commit {} {
ec6b424a 2385 commit_tree
6e27d826
SP
2386}
2387
7cf4566f 2388proc next_diff {{after {}}} {
8a965b8e 2389 global next_diff_p next_diff_w next_diff_i
7cf4566f 2390 show_diff $next_diff_p $next_diff_w {} {} $after
29853b90
AG
2391}
2392
2393proc find_anchor_pos {lst name} {
2394 set lid [lsearch -sorted -exact $lst $name]
2395
2396 if {$lid == -1} {
2397 set lid 0
2398 foreach lname $lst {
2399 if {$lname >= $name} break
2400 incr lid
2401 }
2402 }
2403
2404 return $lid
2405}
2406
2407proc find_file_from {flist idx delta path mmask} {
2408 global file_states
2409
2410 set len [llength $flist]
2411 while {$idx >= 0 && $idx < $len} {
2412 set name [lindex $flist $idx]
2413
2414 if {$name ne $path && [info exists file_states($name)]} {
2415 set state [lindex $file_states($name) 0]
2416
2417 if {$mmask eq {} || [regexp $mmask $state]} {
2418 return $idx
2419 }
2420 }
2421
2422 incr idx $delta
2423 }
2424
2425 return {}
2426}
2427
2428proc find_next_diff {w path {lno {}} {mmask {}}} {
2429 global next_diff_p next_diff_w next_diff_i
2430 global file_lists ui_index ui_workdir
2431
2432 set flist $file_lists($w)
2433 if {$lno eq {}} {
2434 set lno [find_anchor_pos $flist $path]
2435 } else {
2436 incr lno -1
2437 }
2438
2439 if {$mmask ne {} && ![regexp {(^\^)|(\$$)} $mmask]} {
2440 if {$w eq $ui_index} {
2441 set mmask "^$mmask"
2442 } else {
2443 set mmask "$mmask\$"
2444 }
2445 }
2446
2447 set idx [find_file_from $flist $lno 1 $path $mmask]
2448 if {$idx eq {}} {
2449 incr lno -1
2450 set idx [find_file_from $flist $lno -1 $path $mmask]
2451 }
2452
2453 if {$idx ne {}} {
2454 set next_diff_w $w
2455 set next_diff_p [lindex $flist $idx]
2456 set next_diff_i [expr {$idx+1}]
2457 return 1
2458 } else {
2459 return 0
2460 }
2461}
2462
2463proc next_diff_after_action {w path {lno {}} {mmask {}}} {
2464 global current_diff_path
2465
2466 if {$path ne $current_diff_path} {
2467 return {}
2468 } elseif {[find_next_diff $w $path $lno $mmask]} {
2469 return {next_diff;}
2470 } else {
2471 return {reshow_diff;}
2472 }
2473}
2474
7cf4566f 2475proc select_first_diff {after} {
29853b90
AG
2476 global ui_workdir
2477
2478 if {[find_next_diff $ui_workdir {} 1 {^_?U}] ||
2479 [find_next_diff $ui_workdir {} 1 {[^O]$}]} {
7cf4566f
AG
2480 next_diff $after
2481 } else {
2482 uplevel #0 $after
29853b90 2483 }
8a965b8e
AMS
2484}
2485
7cf4566f
AG
2486proc force_first_diff {after} {
2487 global ui_workdir current_diff_path file_states
8056cc4f
AG
2488
2489 if {[info exists file_states($current_diff_path)]} {
2490 set state [lindex $file_states($current_diff_path) 0]
7cf4566f
AG
2491 } else {
2492 set state {OO}
2493 }
8056cc4f 2494
7cf4566f
AG
2495 set reselect 0
2496 if {[string first {U} $state] >= 0} {
2497 # Already a conflict, do nothing
2498 } elseif {[find_next_diff $ui_workdir $current_diff_path {} {^_?U}]} {
2499 set reselect 1
2500 } elseif {[string index $state 1] ne {O}} {
2501 # Already a diff & no conflicts, do nothing
2502 } elseif {[find_next_diff $ui_workdir $current_diff_path {} {[^O]$}]} {
2503 set reselect 1
8056cc4f
AG
2504 }
2505
7cf4566f
AG
2506 if {$reselect} {
2507 next_diff $after
2508 } else {
2509 uplevel #0 $after
2510 }
8056cc4f
AG
2511}
2512
088ad75d 2513proc toggle_or_diff {mode w args} {
20a53c02 2514 global file_states file_lists current_diff_path ui_index ui_workdir
e07446ed 2515 global last_clicked selected_paths file_lists_last_clicked
131f503b 2516
088ad75d
PT
2517 if {$mode eq "click"} {
2518 foreach {x y} $args break
2519 set pos [split [$w index @$x,$y] .]
2520 foreach {lno col} $pos break
2521 } else {
76756d67
JS
2522 if {$mode eq "toggle"} {
2523 if {$w eq $ui_workdir} {
2524 do_add_selection
2525 set last_clicked {}
2526 return
2527 }
2528 if {$w eq $ui_index} {
2529 do_unstage_selection
2530 set last_clicked {}
2531 return
2532 }
2533 }
2534
088ad75d
PT
2535 if {$last_clicked ne {}} {
2536 set lno [lindex $last_clicked 1]
2537 } else {
2cd9179c
JS
2538 if {![info exists file_lists]
2539 || ![info exists file_lists($w)]
2540 || [llength $file_lists($w)] == 0} {
2365e5b1
JS
2541 set last_clicked {}
2542 return
2543 }
088ad75d
PT
2544 set lno [expr {int([lindex [$w tag ranges in_diff] 0])}]
2545 }
2546 if {$mode eq "toggle"} {
2547 set col 0; set y 2
2548 } else {
2549 incr lno [expr {$mode eq "up" ? -1 : 1}]
2550 set col 1
2551 }
2552 }
2553
2cd9179c
JS
2554 if {![info exists file_lists]
2555 || ![info exists file_lists($w)]
2556 || [llength $file_lists($w)] < $lno - 1} {
2557 set path {}
2558 } else {
2559 set path [lindex $file_lists($w) [expr {$lno - 1}]]
2560 }
24263b77
SP
2561 if {$path eq {}} {
2562 set last_clicked {}
2563 return
2564 }
2565
2566 set last_clicked [list $w $lno]
088ad75d 2567 focus $w
24263b77
SP
2568 array unset selected_paths
2569 $ui_index tag remove in_sel 0.0 end
0812665e 2570 $ui_workdir tag remove in_sel 0.0 end
cb07fc2a 2571
e07446ed
BSP
2572 set file_lists_last_clicked($w) $path
2573
3e34838c 2574 # Determine the state of the file
617ceee6
AG
2575 if {[info exists file_states($path)]} {
2576 set state [lindex $file_states($path) 0]
8056cc4f
AG
2577 } else {
2578 set state {__}
2579 }
2580
8056cc4f 2581 # Restage the file, or simply show the diff
cead78ed 2582 if {$col == 0 && $y > 1} {
3e34838c
AG
2583 # Conflicts need special handling
2584 if {[string first {U} $state] >= 0} {
0aea2842
AG
2585 # $w must always be $ui_workdir, but...
2586 if {$w ne $ui_workdir} { set lno {} }
2587 merge_stage_workdir $path $lno
3e34838c
AG
2588 return
2589 }
2590
8056cc4f
AG
2591 if {[string index $state 1] eq {O}} {
2592 set mmask {}
2593 } else {
2594 set mmask {[^O]}
2595 }
2596
2597 set after [next_diff_after_action $w $path $lno $mmask]
8a965b8e 2598
de5f6d5d 2599 if {$w eq $ui_index} {
74d18d2e 2600 update_indexinfo \
93e912c5 2601 "Unstaging [short_path $path] from commit" \
74d18d2e 2602 [list $path] \
19195fbd 2603 [concat $after {ui_ready;}]
de5f6d5d 2604 } elseif {$w eq $ui_workdir} {
74d18d2e 2605 update_index \
4d583c86 2606 "Adding [short_path $path]" \
74d18d2e 2607 [list $path] \
19195fbd 2608 [concat $after {ui_ready;}]
74d18d2e 2609 }
24263b77 2610 } else {
a8ca7869 2611 set selected_paths($path) 1
03e4ec53 2612 show_diff $path $w $lno
cb07fc2a
SP
2613 }
2614}
2615
24263b77 2616proc add_one_to_selection {w x y} {
833eda73 2617 global file_lists last_clicked selected_paths
7f1df79b 2618
833eda73 2619 set lno [lindex [split [$w index @$x,$y] .] 0]
24263b77
SP
2620 set path [lindex $file_lists($w) [expr {$lno - 1}]]
2621 if {$path eq {}} {
2622 set last_clicked {}
2623 return
2624 }
cb07fc2a 2625
833eda73
SP
2626 if {$last_clicked ne {}
2627 && [lindex $last_clicked 0] ne $w} {
2628 array unset selected_paths
2629 [lindex $last_clicked 0] tag remove in_sel 0.0 end
2630 }
2631
24263b77
SP
2632 set last_clicked [list $w $lno]
2633 if {[catch {set in_sel $selected_paths($path)}]} {
2634 set in_sel 0
2635 }
2636 if {$in_sel} {
2637 unset selected_paths($path)
2638 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
2639 } else {
2640 set selected_paths($path) 1
2641 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
2642 }
2643}
2644
2645proc add_range_to_selection {w x y} {
833eda73 2646 global file_lists last_clicked selected_paths
24263b77
SP
2647
2648 if {[lindex $last_clicked 0] ne $w} {
088ad75d 2649 toggle_or_diff click $w $x $y
24263b77 2650 return
cb07fc2a 2651 }
24263b77 2652
833eda73 2653 set lno [lindex [split [$w index @$x,$y] .] 0]
24263b77
SP
2654 set lc [lindex $last_clicked 1]
2655 if {$lc < $lno} {
2656 set begin $lc
2657 set end $lno
2658 } else {
2659 set begin $lno
2660 set end $lc
2661 }
2662
2663 foreach path [lrange $file_lists($w) \
2664 [expr {$begin - 1}] \
2665 [expr {$end - 1}]] {
2666 set selected_paths($path) 1
2667 }
2668 $w tag add in_sel $begin.0 [expr {$end + 1}].0
cb07fc2a
SP
2669}
2670
c91ee2bd
JS
2671proc show_more_context {} {
2672 global repo_config
2673 if {$repo_config(gui.diffcontext) < 99} {
2674 incr repo_config(gui.diffcontext)
2675 reshow_diff
2676 }
2677}
2678
2679proc show_less_context {} {
2680 global repo_config
55ba8a34 2681 if {$repo_config(gui.diffcontext) > 1} {
c91ee2bd
JS
2682 incr repo_config(gui.diffcontext) -1
2683 reshow_diff
2684 }
2685}
2686
e07446ed
BSP
2687proc focus_widget {widget} {
2688 global file_lists last_clicked selected_paths
2689 global file_lists_last_clicked
2690
2691 if {[llength $file_lists($widget)] > 0} {
2692 set path $file_lists_last_clicked($widget)
2693 set index [lsearch -sorted -exact $file_lists($widget) $path]
2694 if {$index < 0} {
2695 set index 0
2696 set path [lindex $file_lists($widget) $index]
2697 }
2698
2699 focus $widget
2700 set last_clicked [list $widget [expr $index + 1]]
2701 array unset selected_paths
2702 set selected_paths($path) 1
2703 show_diff $path $widget
2704 }
2705}
2706
ec7424e1
BSP
2707proc toggle_commit_type {} {
2708 global commit_type_is_amend
2709 set commit_type_is_amend [expr !$commit_type_is_amend]
2710 do_select_commit_type
2711}
2712
cb07fc2a
SP
2713######################################################################
2714##
a4bee597 2715## ui construction
db453781 2716
2ebba528
SP
2717set ui_comm {}
2718
cb07fc2a 2719# -- Menu Bar
a49c67d1 2720#
b4946930 2721menu .mbar -tearoff 0
a91be3fc
DS
2722if {[is_MacOSX]} {
2723 # -- Apple Menu (Mac OS X only)
2724 #
2725 .mbar add cascade -label Apple -menu .mbar.apple
2726 menu .mbar.apple
2727}
1ac17950
CS
2728.mbar add cascade -label [mc Repository] -menu .mbar.repository
2729.mbar add cascade -label [mc Edit] -menu .mbar.edit
64a906f8 2730if {[is_enabled branch]} {
1ac17950 2731 .mbar add cascade -label [mc Branch] -menu .mbar.branch
700a65ce 2732}
2ebba528 2733if {[is_enabled multicommit] || [is_enabled singlecommit]} {
a9813cb5 2734 .mbar add cascade -label [mc Commit@@noun] -menu .mbar.commit
2ebba528 2735}
64a906f8 2736if {[is_enabled transport]} {
1ac17950 2737 .mbar add cascade -label [mc Merge] -menu .mbar.merge
6bdf5e5f 2738 .mbar add cascade -label [mc Remote] -menu .mbar.remote
4ccdab02 2739}
0ce76ded
AG
2740if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2741 .mbar add cascade -label [mc Tools] -menu .mbar.tools
2742}
cb07fc2a 2743
a4abfa62 2744# -- Repository Menu
a49c67d1 2745#
a4abfa62 2746menu .mbar.repository
35874c16 2747
29e5573d
GB
2748if {![is_bare]} {
2749 .mbar.repository add command \
2750 -label [mc "Explore Working Copy"] \
2751 -command {do_explore}
224cce8f
PT
2752}
2753
2754if {[is_Windows]} {
6a72d44f
TK
2755 # Use /git-bash.exe if available
2756 set normalized [file normalize $::argv0]
2757 regsub "/mingw../libexec/git-core/git-gui$" \
2758 $normalized "/git-bash.exe" cmdLine
2759 if {$cmdLine != $normalized && [file exists $cmdLine]} {
2760 set cmdLine [list "Git Bash" $cmdLine &]
2761 } else {
2762 set cmdLine [list "Git Bash" bash --login -l &]
2763 }
224cce8f
PT
2764 .mbar.repository add command \
2765 -label [mc "Git Bash"] \
6a72d44f 2766 -command {eval exec [auto_execok start] $cmdLine}
224cce8f
PT
2767}
2768
2769if {[is_Windows] || ![is_bare]} {
29e5573d
GB
2770 .mbar.repository add separator
2771}
afd54240 2772
35874c16 2773.mbar.repository add command \
1ac17950 2774 -label [mc "Browse Current Branch's Files"] \
c74b6c66 2775 -command {browser::new $current_branch}
a8139888 2776set ui_browse_current [.mbar.repository index last]
8e891fac 2777.mbar.repository add command \
1ac17950 2778 -label [mc "Browse Branch Files..."] \
8e891fac 2779 -command browser_open::dialog
35874c16
SP
2780.mbar.repository add separator
2781
d0752429 2782.mbar.repository add command \
1ac17950 2783 -label [mc "Visualize Current Branch's History"] \
7416bbc6 2784 -command {do_gitk $current_branch}
a8139888 2785set ui_visualize_current [.mbar.repository index last]
5753ef1a 2786.mbar.repository add command \
1ac17950 2787 -label [mc "Visualize All Branch History"] \
7416bbc6 2788 -command {do_gitk --all}
d0752429 2789.mbar.repository add separator
75e355d6 2790
a8139888
SP
2791proc current_branch_write {args} {
2792 global current_branch
2793 .mbar.repository entryconf $::ui_browse_current \
1ac17950 2794 -label [mc "Browse %s's Files" $current_branch]
a8139888 2795 .mbar.repository entryconf $::ui_visualize_current \
1ac17950 2796 -label [mc "Visualize %s's History" $current_branch]
a8139888
SP
2797}
2798trace add variable current_branch write current_branch_write
2799
cf25ddc8 2800if {[is_enabled multicommit]} {
1ac17950 2801 .mbar.repository add command -label [mc "Database Statistics"] \
7416bbc6 2802 -command do_stats
0fd49d0a 2803
1ac17950 2804 .mbar.repository add command -label [mc "Compress Database"] \
7416bbc6 2805 -command do_gc
4aca740b 2806
1ac17950 2807 .mbar.repository add command -label [mc "Verify Database"] \
7416bbc6 2808 -command do_fsck_objects
444f92d0 2809
a4abfa62 2810 .mbar.repository add separator
75e355d6 2811
20ddfcaa
SP
2812 if {[is_Cygwin]} {
2813 .mbar.repository add command \
1ac17950 2814 -label [mc "Create Desktop Icon"] \
7416bbc6 2815 -command do_cygwin_shortcut
20ddfcaa 2816 } elseif {[is_Windows]} {
a4abfa62 2817 .mbar.repository add command \
1ac17950 2818 -label [mc "Create Desktop Icon"] \
7416bbc6 2819 -command do_windows_shortcut
06c31115 2820 } elseif {[is_MacOSX]} {
a4abfa62 2821 .mbar.repository add command \
1ac17950 2822 -label [mc "Create Desktop Icon"] \
7416bbc6 2823 -command do_macosx_app
4aca740b 2824 }
4ccdab02 2825}
85ab313e 2826
af894943
SF
2827if {[is_MacOSX]} {
2828 proc ::tk::mac::Quit {args} { do_quit }
2829} else {
2830 .mbar.repository add command -label [mc Quit] \
2831 -command do_quit \
2832 -accelerator $M1T-Q
2833}
cb07fc2a 2834
9861671d
SP
2835# -- Edit Menu
2836#
2837menu .mbar.edit
1ac17950 2838.mbar.edit add command -label [mc Undo] \
9861671d 2839 -command {catch {[focus] edit undo}} \
7416bbc6 2840 -accelerator $M1T-Z
1ac17950 2841.mbar.edit add command -label [mc Redo] \
9861671d 2842 -command {catch {[focus] edit redo}} \
7416bbc6 2843 -accelerator $M1T-Y
9861671d 2844.mbar.edit add separator
1ac17950 2845.mbar.edit add command -label [mc Cut] \
9861671d 2846 -command {catch {tk_textCut [focus]}} \
7416bbc6 2847 -accelerator $M1T-X
1ac17950 2848.mbar.edit add command -label [mc Copy] \
9861671d 2849 -command {catch {tk_textCopy [focus]}} \
7416bbc6 2850 -accelerator $M1T-C
1ac17950 2851.mbar.edit add command -label [mc Paste] \
9861671d 2852 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
7416bbc6 2853 -accelerator $M1T-V
1ac17950 2854.mbar.edit add command -label [mc Delete] \
9861671d 2855 -command {catch {[focus] delete sel.first sel.last}} \
7416bbc6 2856 -accelerator Del
9861671d 2857.mbar.edit add separator
1ac17950 2858.mbar.edit add command -label [mc "Select All"] \
9861671d 2859 -command {catch {[focus] tag add sel 0.0 end}} \
7416bbc6 2860 -accelerator $M1T-A
9861671d 2861
85ab313e
SP
2862# -- Branch Menu
2863#
64a906f8 2864if {[is_enabled branch]} {
700a65ce
SP
2865 menu .mbar.branch
2866
1ac17950 2867 .mbar.branch add command -label [mc "Create..."] \
b1fa2bff 2868 -command branch_create::dialog \
7416bbc6 2869 -accelerator $M1T-N
700a65ce
SP
2870 lappend disable_on_lock [list .mbar.branch entryconf \
2871 [.mbar.branch index last] -state]
2872
1ac17950 2873 .mbar.branch add command -label [mc "Checkout..."] \
d41b43eb
SP
2874 -command branch_checkout::dialog \
2875 -accelerator $M1T-O
2876 lappend disable_on_lock [list .mbar.branch entryconf \
2877 [.mbar.branch index last] -state]
2878
1ac17950 2879 .mbar.branch add command -label [mc "Rename..."] \
61f82ce7
SP
2880 -command branch_rename::dialog
2881 lappend disable_on_lock [list .mbar.branch entryconf \
2882 [.mbar.branch index last] -state]
2883
1ac17950 2884 .mbar.branch add command -label [mc "Delete..."] \
3206c63d 2885 -command branch_delete::dialog
700a65ce
SP
2886 lappend disable_on_lock [list .mbar.branch entryconf \
2887 [.mbar.branch index last] -state]
fd234dfd 2888
1ac17950 2889 .mbar.branch add command -label [mc "Reset..."] \
a6c9b081 2890 -command merge::reset_hard
fd234dfd
SP
2891 lappend disable_on_lock [list .mbar.branch entryconf \
2892 [.mbar.branch index last] -state]
700a65ce
SP
2893}
2894
cb07fc2a 2895# -- Commit Menu
a49c67d1 2896#
1e65c622
AG
2897proc commit_btn_caption {} {
2898 if {[is_enabled nocommit]} {
2899 return [mc "Done"]
2900 } else {
2901 return [mc Commit@@verb]
2902 }
2903}
2904
2ebba528
SP
2905if {[is_enabled multicommit] || [is_enabled singlecommit]} {
2906 menu .mbar.commit
2907
1e02b32e 2908 if {![is_enabled nocommit]} {
ba41b5b3 2909 .mbar.commit add checkbutton \
1e02b32e 2910 -label [mc "Amend Last Commit"] \
ec7424e1 2911 -accelerator $M1T-E \
ba41b5b3
BW
2912 -variable commit_type_is_amend \
2913 -command do_select_commit_type
1e02b32e
SP
2914 lappend disable_on_lock \
2915 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2916
2917 .mbar.commit add separator
2918 }
24ac9b75 2919
1ac17950 2920 .mbar.commit add command -label [mc Rescan] \
8056cc4f 2921 -command ui_do_rescan \
7416bbc6 2922 -accelerator F5
2ebba528
SP
2923 lappend disable_on_lock \
2924 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 2925
1ac17950 2926 .mbar.commit add command -label [mc "Stage To Commit"] \
cd16a6c9
SP
2927 -command do_add_selection \
2928 -accelerator $M1T-T
2ebba528
SP
2929 lappend disable_on_lock \
2930 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 2931
1ac17950 2932 .mbar.commit add command -label [mc "Stage Changed Files To Commit"] \
2ebba528 2933 -command do_add_all \
7416bbc6 2934 -accelerator $M1T-I
2ebba528
SP
2935 lappend disable_on_lock \
2936 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 2937
1ac17950 2938 .mbar.commit add command -label [mc "Unstage From Commit"] \
b677c66e
VS
2939 -command do_unstage_selection \
2940 -accelerator $M1T-U
2ebba528
SP
2941 lappend disable_on_lock \
2942 [list .mbar.commit entryconf [.mbar.commit index last] -state]
e734817d 2943
1ac17950 2944 .mbar.commit add command -label [mc "Revert Changes"] \
b677c66e
VS
2945 -command do_revert_selection \
2946 -accelerator $M1T-J
2ebba528
SP
2947 lappend disable_on_lock \
2948 [list .mbar.commit entryconf [.mbar.commit index last] -state]
e734817d 2949
2ebba528 2950 .mbar.commit add separator
1461c5f3 2951
c91ee2bd
JS
2952 .mbar.commit add command -label [mc "Show Less Context"] \
2953 -command show_less_context \
729ffa50 2954 -accelerator $M1T-\-
c91ee2bd
JS
2955
2956 .mbar.commit add command -label [mc "Show More Context"] \
2957 -command show_more_context \
729ffa50 2958 -accelerator $M1T-=
c91ee2bd
JS
2959
2960 .mbar.commit add separator
2961
ed70e4d7 2962 if {![is_enabled nocommitmsg]} {
1e02b32e
SP
2963 .mbar.commit add command -label [mc "Sign Off"] \
2964 -command do_signoff \
2965 -accelerator $M1T-S
2966 }
24ac9b75 2967
1e65c622 2968 .mbar.commit add command -label [commit_btn_caption] \
2ebba528 2969 -command do_commit \
7416bbc6 2970 -accelerator $M1T-Return
2ebba528
SP
2971 lappend disable_on_lock \
2972 [list .mbar.commit entryconf [.mbar.commit index last] -state]
2973}
cb07fc2a 2974
9b28a8b9
SP
2975# -- Merge Menu
2976#
2977if {[is_enabled branch]} {
2978 menu .mbar.merge
1ac17950 2979 .mbar.merge add command -label [mc "Local Merge..."] \
a870ddc0
SP
2980 -command merge::dialog \
2981 -accelerator $M1T-M
9b28a8b9
SP
2982 lappend disable_on_lock \
2983 [list .mbar.merge entryconf [.mbar.merge index last] -state]
1ac17950 2984 .mbar.merge add command -label [mc "Abort Merge..."] \
a6c9b081 2985 -command merge::reset_hard
9b28a8b9
SP
2986 lappend disable_on_lock \
2987 [list .mbar.merge entryconf [.mbar.merge index last] -state]
9b28a8b9
SP
2988}
2989
2990# -- Transport Menu
2991#
2992if {[is_enabled transport]} {
6bdf5e5f 2993 menu .mbar.remote
9b28a8b9 2994
ba6485e0
PB
2995 .mbar.remote add command \
2996 -label [mc "Add..."] \
2997 -command remote_add::dialog \
2998 -accelerator $M1T-A
6bdf5e5f
SP
2999 .mbar.remote add command \
3000 -label [mc "Push..."] \
840bcfa7
SP
3001 -command do_push_anywhere \
3002 -accelerator $M1T-P
6bdf5e5f 3003 .mbar.remote add command \
3c1c2a00 3004 -label [mc "Delete Branch..."] \
aa252f19 3005 -command remote_branch_delete::dialog
9b28a8b9
SP
3006}
3007
0c8d7839 3008if {[is_MacOSX]} {
a91be3fc 3009 proc ::tk::mac::ShowPreferences {} {do_options}
0c8d7839
SP
3010} else {
3011 # -- Edit Menu
3012 #
3013 .mbar.edit add separator
1ac17950 3014 .mbar.edit add command -label [mc "Options..."] \
7416bbc6 3015 -command do_options
273984fc 3016}
557afe82 3017
0ce76ded
AG
3018# -- Tools Menu
3019#
3020if {[is_enabled multicommit] || [is_enabled singlecommit]} {
3021 set tools_menubar .mbar.tools
3022 menu $tools_menubar
3023 $tools_menubar add separator
3024 $tools_menubar add command -label [mc "Add..."] -command tools_add::dialog
3025 $tools_menubar add command -label [mc "Remove..."] -command tools_remove::dialog
3026 set tools_tailcnt 3
3027 if {[array names repo_config guitool.*.cmd] ne {}} {
3028 tools_populate_all
3029 }
3030}
3031
273984fc
SP
3032# -- Help Menu
3033#
1ac17950 3034.mbar add cascade -label [mc Help] -menu .mbar.help
273984fc 3035menu .mbar.help
0c8d7839 3036
a91be3fc
DS
3037if {[is_MacOSX]} {
3038 .mbar.apple add command -label [mc "About %s" [appname]] \
3039 -command do_about
3040 .mbar.apple add separator
3041} else {
1ac17950 3042 .mbar.help add command -label [mc "About %s" [appname]] \
7416bbc6 3043 -command do_about
0c8d7839 3044}
a91be3fc 3045. configure -menu .mbar
2db21e70 3046
3eb5682b
MH
3047set doc_path [githtmldir]
3048if {$doc_path ne {}} {
3049 set doc_path [file join $doc_path index.html]
273984fc
SP
3050}
3051
273984fc
SP
3052if {[file isfile $doc_path]} {
3053 set doc_url "file:$doc_path"
3054} else {
d05b08cd 3055 set doc_url {https://www.kernel.org/pub/software/scm/git/docs/}
273984fc
SP
3056}
3057
2db21e70
PB
3058proc start_browser {url} {
3059 git "web--browse" $url
273984fc 3060}
2db21e70
PB
3061
3062.mbar.help add command -label [mc "Online Documentation"] \
3063 -command [list start_browser $doc_url]
98a6846b
AG
3064
3065.mbar.help add command -label [mc "Show SSH Key"] \
3066 -command do_ssh_key
3067
2db21e70 3068unset doc_path doc_url
82aa2354 3069
2ebba528
SP
3070# -- Standard bindings
3071#
39fa2a98 3072wm protocol . WM_DELETE_WINDOW do_quit
2ebba528
SP
3073bind all <$M1B-Key-q> do_quit
3074bind all <$M1B-Key-Q> do_quit
5440eb0e
PY
3075
3076set m1b_w_script {
3077 set toplvl_win [winfo toplevel %W]
3078
3079 # If we are destroying the main window, we should call do_quit to take
3080 # care of cleanup before exiting the program.
3081 if {$toplvl_win eq "."} {
3082 do_quit
3083 } else {
3084 destroy $toplvl_win
3085 }
3086}
3087
3088bind all <$M1B-Key-w> $m1b_w_script
3089bind all <$M1B-Key-W> $m1b_w_script
3090
3091unset m1b_w_script
2ebba528 3092
3e45ee1e
SP
3093set subcommand_args {}
3094proc usage {} {
43c65a85 3095 set s "[mc usage:] $::argv0 $::subcommand $::subcommand_args"
ea47503d
PT
3096 if {[tk windowingsystem] eq "win32"} {
3097 wm withdraw .
7ae1e727
PT
3098 tk_messageBox -icon info -message $s \
3099 -title [mc "Usage"]
ea47503d
PT
3100 } else {
3101 puts stderr $s
3102 }
3e45ee1e
SP
3103 exit 1
3104}
3105
95e706b5
AG
3106proc normalize_relpath {path} {
3107 set elements {}
3108 foreach item [file split $path] {
3109 if {$item eq {.}} continue
3110 if {$item eq {..} && [llength $elements] > 0
3111 && [lindex $elements end] ne {..}} {
3112 set elements [lrange $elements 0 end-1]
3113 continue
3114 }
3115 lappend elements $item
3116 }
3117 return [eval file join $elements]
3118}
3119
2ebba528
SP
3120# -- Not a normal commit type invocation? Do that instead!
3121#
258871d3 3122switch -- $subcommand {
85d2d597 3123browser -
2ebba528 3124blame {
f7078b40
AG
3125 if {$subcommand eq "blame"} {
3126 set subcommand_args {[--line=<num>] rev? path}
3127 } else {
3128 set subcommand_args {rev? path}
3129 }
c52c9452 3130 if {$argv eq {}} usage
a0db0d61 3131 set head {}
3e45ee1e 3132 set path {}
f7078b40 3133 set jump_spec {}
3e45ee1e
SP
3134 set is_path 0
3135 foreach a $argv {
2f38dd03 3136 set p [file join $_prefix $a]
e3d06ca9 3137
2f38dd03 3138 if {$is_path || [file exists $p]} {
e3d06ca9 3139 if {$path ne {}} usage
2f38dd03 3140 set path [normalize_relpath $p]
e3d06ca9 3141 break
3e45ee1e
SP
3142 } elseif {$a eq {--}} {
3143 if {$path ne {}} {
a0db0d61
SP
3144 if {$head ne {}} usage
3145 set head $path
3e45ee1e
SP
3146 set path {}
3147 }
3148 set is_path 1
f7078b40
AG
3149 } elseif {[regexp {^--line=(\d+)$} $a a lnum]} {
3150 if {$jump_spec ne {} || $head ne {}} usage
3151 set jump_spec [list $lnum]
a0db0d61
SP
3152 } elseif {$head eq {}} {
3153 if {$head ne {}} usage
3154 set head $a
c52c9452 3155 set is_path 1
3e45ee1e
SP
3156 } else {
3157 usage
3158 }
3159 }
3160 unset is_path
3161
c52c9452 3162 if {$head ne {} && $path eq {}} {
df46eda3
AW
3163 if {[string index $head 0] eq {/}} {
3164 set path [normalize_relpath $head]
3165 set head {}
3166 } else {
3167 set path [normalize_relpath $_prefix$head]
3168 set head {}
3169 }
c52c9452
SP
3170 }
3171
a0db0d61 3172 if {$head eq {}} {
d41b43eb 3173 load_current_branch
a0db0d61 3174 } else {
02087abc
SP
3175 if {[regexp {^[0-9a-f]{1,39}$} $head]} {
3176 if {[catch {
3177 set head [git rev-parse --verify $head]
3178 } err]} {
7ae1e727
PT
3179 if {[tk windowingsystem] eq "win32"} {
3180 tk_messageBox -icon error -title [mc Error] -message $err
3181 } else {
3182 puts stderr $err
3183 }
02087abc
SP
3184 exit 1
3185 }
3186 }
a0db0d61 3187 set current_branch $head
2ebba528 3188 }
a0db0d61 3189
2810a58d 3190 wm deiconify .
85d2d597
SP
3191 switch -- $subcommand {
3192 browser {
f7078b40 3193 if {$jump_spec ne {}} usage
85d2d597
SP
3194 if {$head eq {}} {
3195 if {$path ne {} && [file isdirectory $path]} {
3196 set head $current_branch
3197 } else {
3198 set head $path
3199 set path {}
3200 }
3201 }
3202 browser::new $head $path
3203 }
3204 blame {
3205 if {$head eq {} && ![file exists $path]} {
78077772
PT
3206 catch {wm withdraw .}
3207 tk_messageBox \
3208 -icon error \
3209 -type ok \
3210 -title [mc "git-gui: fatal error"] \
3211 -message [mc "fatal: cannot stat path %s: No such file or directory" $path]
85d2d597
SP
3212 exit 1
3213 }
f7078b40 3214 blame::new $head $path $jump_spec
85d2d597 3215 }
c52c9452 3216 }
258871d3
SP
3217 return
3218}
3219citool -
3220gui {
3221 if {[llength $argv] != 0} {
7ae1e727 3222 usage
258871d3
SP
3223 }
3224 # fall through to setup UI for commits
2ebba528 3225}
2ebba528 3226default {
43c65a85 3227 set err "[mc usage:] $argv0 \[{blame|browser|citool}\]"
7ae1e727
PT
3228 if {[tk windowingsystem] eq "win32"} {
3229 wm withdraw .
3230 tk_messageBox -icon error -message $err \
3231 -title [mc "Usage"]
3232 } else {
3233 puts stderr $err
3234 }
2ebba528
SP
3235 exit 1
3236}
3237}
3238
8553b772
SP
3239# -- Branch Control
3240#
c80d7be5
PT
3241${NS}::frame .branch
3242if {!$use_ttk} {.branch configure -borderwidth 1 -relief sunken}
3243${NS}::label .branch.l1 \
1ac17950 3244 -text [mc "Current Branch:"] \
8553b772 3245 -anchor w \
7416bbc6 3246 -justify left
c80d7be5 3247${NS}::label .branch.cb \
8553b772
SP
3248 -textvariable current_branch \
3249 -anchor w \
7416bbc6 3250 -justify left
8553b772
SP
3251pack .branch.l1 -side left
3252pack .branch.cb -side left -fill x
3253pack .branch -side top -fill x
3254
cb07fc2a 3255# -- Main Window Layout
a49c67d1 3256#
c80d7be5
PT
3257${NS}::panedwindow .vpane -orient horizontal
3258${NS}::panedwindow .vpane.files -orient vertical
3259if {$use_ttk} {
3260 .vpane add .vpane.files
3261} else {
3262 .vpane add .vpane.files -sticky nsew -height 100 -width 200
3263}
cb07fc2a
SP
3264pack .vpane -anchor n -side top -fill both -expand 1
3265
30508bc4
PT
3266# -- Working Directory File List
3267
3268textframe .vpane.files.workdir -height 100 -width 200
3269tlabel .vpane.files.workdir.title -text [mc "Unstaged Changes"] \
3270 -background lightsalmon -foreground black
c02efc13 3271ttext $ui_workdir \
30508bc4
PT
3272 -borderwidth 0 \
3273 -width 20 -height 10 \
3274 -wrap none \
3275 -takefocus 1 -highlightthickness 1\
3276 -cursor $cursor_ptr \
3277 -xscrollcommand {.vpane.files.workdir.sx set} \
3278 -yscrollcommand {.vpane.files.workdir.sy set} \
3279 -state disabled
3280${NS}::scrollbar .vpane.files.workdir.sx -orient h -command [list $ui_workdir xview]
3281${NS}::scrollbar .vpane.files.workdir.sy -orient v -command [list $ui_workdir yview]
3282pack .vpane.files.workdir.title -side top -fill x
3283pack .vpane.files.workdir.sx -side bottom -fill x
3284pack .vpane.files.workdir.sy -side right -fill y
3285pack $ui_workdir -side left -fill both -expand 1
3286
cb07fc2a 3287# -- Index File List
a49c67d1 3288#
30508bc4 3289textframe .vpane.files.index -height 100 -width 200
c80d7be5
PT
3290tlabel .vpane.files.index.title \
3291 -text [mc "Staged Changes (Will Commit)"] \
c382fdd7 3292 -background lightgreen -foreground black
c02efc13 3293ttext $ui_index \
c382fdd7 3294 -borderwidth 0 \
c5a1eb88 3295 -width 20 -height 10 \
3c236977 3296 -wrap none \
088ad75d 3297 -takefocus 1 -highlightthickness 1\
6c6dd01a 3298 -cursor $cursor_ptr \
3c236977
SP
3299 -xscrollcommand {.vpane.files.index.sx set} \
3300 -yscrollcommand {.vpane.files.index.sy set} \
cb07fc2a 3301 -state disabled
c80d7be5
PT
3302${NS}::scrollbar .vpane.files.index.sx -orient h -command [list $ui_index xview]
3303${NS}::scrollbar .vpane.files.index.sy -orient v -command [list $ui_index yview]
cb07fc2a 3304pack .vpane.files.index.title -side top -fill x
3c236977
SP
3305pack .vpane.files.index.sx -side bottom -fill x
3306pack .vpane.files.index.sy -side right -fill y
cb07fc2a 3307pack $ui_index -side left -fill both -expand 1
cb07fc2a 3308
30508bc4 3309# -- Insert the workdir and index into the panes
a49c67d1 3310#
c80d7be5
PT
3311.vpane.files add .vpane.files.workdir
3312.vpane.files add .vpane.files.index
3313if {!$use_ttk} {
3314 .vpane.files paneconfigure .vpane.files.workdir -sticky news
3315 .vpane.files paneconfigure .vpane.files.index -sticky news
3316}
cb07fc2a 3317
da4d86da
SH
3318proc set_selection_colors {w has_focus} {
3319 foreach tag [list in_diff in_sel] {
3320 $w tag conf $tag \
3321 -background [expr {$has_focus ? $color::select_bg : $color::inactive_select_bg}] \
3322 -foreground [expr {$has_focus ? $color::select_fg : $color::inactive_select_fg}]
3323 }
3324}
3325
0812665e 3326foreach i [list $ui_index $ui_workdir] {
3849bfba 3327 rmsel_tag $i
da4d86da
SH
3328
3329 set_selection_colors $i 0
3330 bind $i <FocusIn> { set_selection_colors %W 1 }
3331 bind $i <FocusOut> { set_selection_colors %W 0 }
24263b77
SP
3332}
3333unset i
131f503b 3334
0fb8f9ce 3335# -- Diff and Commit Area
a49c67d1 3336#
02f6cfbd
MK
3337if {$have_tk85} {
3338 ${NS}::panedwindow .vpane.lower -orient vertical
3339 ${NS}::frame .vpane.lower.commarea
3340 ${NS}::frame .vpane.lower.diff -relief sunken -borderwidth 1 -height 500
3341 .vpane.lower add .vpane.lower.diff
3342 .vpane.lower add .vpane.lower.commarea
3343 .vpane add .vpane.lower
3344 if {$use_ttk} {
3345 .vpane.lower pane .vpane.lower.diff -weight 1
3346 .vpane.lower pane .vpane.lower.commarea -weight 0
3347 } else {
3348 .vpane.lower paneconfigure .vpane.lower.diff -stretch always
3349 .vpane.lower paneconfigure .vpane.lower.commarea -stretch never
3350 }
918dbf58 3351} else {
02f6cfbd
MK
3352 frame .vpane.lower -height 300 -width 400
3353 frame .vpane.lower.commarea
3354 frame .vpane.lower.diff -relief sunken -borderwidth 1
3355 pack .vpane.lower.diff -fill both -expand 1
3356 pack .vpane.lower.commarea -side bottom -fill x
3357 .vpane add .vpane.lower
3358 .vpane paneconfigure .vpane.lower -sticky nsew
918dbf58 3359}
cb07fc2a
SP
3360
3361# -- Commit Area Buttons
a49c67d1 3362#
c80d7be5
PT
3363${NS}::frame .vpane.lower.commarea.buttons
3364${NS}::label .vpane.lower.commarea.buttons.l -text {} \
cb07fc2a 3365 -anchor w \
7416bbc6 3366 -justify left
0fb8f9ce
SP
3367pack .vpane.lower.commarea.buttons.l -side top -fill x
3368pack .vpane.lower.commarea.buttons -side left -fill y
131f503b 3369
c80d7be5 3370${NS}::button .vpane.lower.commarea.buttons.rescan -text [mc Rescan] \
8056cc4f 3371 -command ui_do_rescan
0fb8f9ce 3372pack .vpane.lower.commarea.buttons.rescan -side top -fill x
390adaea
SP
3373lappend disable_on_lock \
3374 {.vpane.lower.commarea.buttons.rescan conf -state}
131f503b 3375
c80d7be5 3376${NS}::button .vpane.lower.commarea.buttons.incall -text [mc "Stage Changed"] \
7416bbc6 3377 -command do_add_all
7fe7e733 3378pack .vpane.lower.commarea.buttons.incall -side top -fill x
390adaea
SP
3379lappend disable_on_lock \
3380 {.vpane.lower.commarea.buttons.incall conf -state}
131f503b 3381
ed70e4d7 3382if {![is_enabled nocommitmsg]} {
c80d7be5 3383 ${NS}::button .vpane.lower.commarea.buttons.signoff -text [mc "Sign Off"] \
1e02b32e
SP
3384 -command do_signoff
3385 pack .vpane.lower.commarea.buttons.signoff -side top -fill x
3386}
131f503b 3387
c80d7be5 3388${NS}::button .vpane.lower.commarea.buttons.commit -text [commit_btn_caption] \
7416bbc6 3389 -command do_commit
0fb8f9ce 3390pack .vpane.lower.commarea.buttons.commit -side top -fill x
390adaea
SP
3391lappend disable_on_lock \
3392 {.vpane.lower.commarea.buttons.commit conf -state}
cb07fc2a 3393
1e02b32e 3394if {![is_enabled nocommit]} {
c80d7be5 3395 ${NS}::button .vpane.lower.commarea.buttons.push -text [mc Push] \
1e02b32e
SP
3396 -command do_push_anywhere
3397 pack .vpane.lower.commarea.buttons.push -side top -fill x
1e65c622
AG
3398}
3399
cb07fc2a 3400# -- Commit Message Buffer
a49c67d1 3401#
c80d7be5
PT
3402${NS}::frame .vpane.lower.commarea.buffer
3403${NS}::frame .vpane.lower.commarea.buffer.header
30508bc4 3404set ui_comm .vpane.lower.commarea.buffer.frame.t
24ac9b75 3405set ui_coml .vpane.lower.commarea.buffer.header.l
1e02b32e
SP
3406
3407if {![is_enabled nocommit]} {
ba41b5b3 3408 ${NS}::checkbutton .vpane.lower.commarea.buffer.header.amend \
1e02b32e 3409 -text [mc "Amend Last Commit"] \
ba41b5b3
BW
3410 -variable commit_type_is_amend \
3411 -command do_select_commit_type
1e02b32e
SP
3412 lappend disable_on_lock \
3413 [list .vpane.lower.commarea.buffer.header.amend conf -state]
3414}
3415
c80d7be5 3416${NS}::label $ui_coml \
cb07fc2a 3417 -anchor w \
7416bbc6 3418 -justify left
4539eacd
SP
3419proc trace_commit_type {varname args} {
3420 global ui_coml commit_type
3421 switch -glob -- $commit_type {
1ac17950
CS
3422 initial {set txt [mc "Initial Commit Message:"]}
3423 amend {set txt [mc "Amended Commit Message:"]}
3424 amend-initial {set txt [mc "Amended Initial Commit Message:"]}
3425 amend-merge {set txt [mc "Amended Merge Commit Message:"]}
3426 merge {set txt [mc "Merge Commit Message:"]}
3427 * {set txt [mc "Commit Message:"]}
4539eacd
SP
3428 }
3429 $ui_coml conf -text $txt
3430}
3431trace add variable commit_type write trace_commit_type
24ac9b75 3432pack $ui_coml -side left -fill x
1e02b32e
SP
3433
3434if {![is_enabled nocommit]} {
3435 pack .vpane.lower.commarea.buffer.header.amend -side right
1e02b32e 3436}
24ac9b75 3437
30508bc4 3438textframe .vpane.lower.commarea.buffer.frame
c02efc13 3439ttext $ui_comm \
c382fdd7 3440 -borderwidth 1 \
9861671d 3441 -undo true \
b2c6fcf1 3442 -maxundo 20 \
9861671d 3443 -autoseparators true \
30508bc4
PT
3444 -takefocus 1 \
3445 -highlightthickness 1 \
cb07fc2a 3446 -relief sunken \
11027d54 3447 -width $repo_config(gui.commitmsgwidth) -height 9 -wrap none \
b4946930 3448 -font font_diff \
da08d559 3449 -xscrollcommand {.vpane.lower.commarea.buffer.frame.sbx set} \
30508bc4 3450 -yscrollcommand {.vpane.lower.commarea.buffer.frame.sby set}
da08d559
BW
3451${NS}::scrollbar .vpane.lower.commarea.buffer.frame.sbx \
3452 -orient horizontal \
3453 -command [list $ui_comm xview]
30508bc4 3454${NS}::scrollbar .vpane.lower.commarea.buffer.frame.sby \
da08d559 3455 -orient vertical \
390adaea 3456 -command [list $ui_comm yview]
30508bc4 3457
da08d559 3458pack .vpane.lower.commarea.buffer.frame.sbx -side bottom -fill x
30508bc4 3459pack .vpane.lower.commarea.buffer.frame.sby -side right -fill y
cb07fc2a 3460pack $ui_comm -side left -fill y
30508bc4
PT
3461pack .vpane.lower.commarea.buffer.header -side top -fill x
3462pack .vpane.lower.commarea.buffer.frame -side left -fill y
0fb8f9ce
SP
3463pack .vpane.lower.commarea.buffer -side left -fill y
3464
0e794311
SP
3465# -- Commit Message Buffer Context Menu
3466#
e8ab6446
SP
3467set ctxm .vpane.lower.commarea.buffer.ctxm
3468menu $ctxm -tearoff 0
3469$ctxm add command \
1ac17950 3470 -label [mc Cut] \
e8ab6446
SP
3471 -command {tk_textCut $ui_comm}
3472$ctxm add command \
1ac17950 3473 -label [mc Copy] \
e8ab6446
SP
3474 -command {tk_textCopy $ui_comm}
3475$ctxm add command \
1ac17950 3476 -label [mc Paste] \
e8ab6446
SP
3477 -command {tk_textPaste $ui_comm}
3478$ctxm add command \
1ac17950 3479 -label [mc Delete] \
bf516eca 3480 -command {catch {$ui_comm delete sel.first sel.last}}
e8ab6446
SP
3481$ctxm add separator
3482$ctxm add command \
1ac17950 3483 -label [mc "Select All"] \
75e78c8a 3484 -command {focus $ui_comm;$ui_comm tag add sel 0.0 end}
e8ab6446 3485$ctxm add command \
1ac17950 3486 -label [mc "Copy All"] \
e8ab6446 3487 -command {
0e794311
SP
3488 $ui_comm tag add sel 0.0 end
3489 tk_textCopy $ui_comm
3490 $ui_comm tag remove sel 0.0 end
e8ab6446
SP
3491 }
3492$ctxm add separator
3493$ctxm add command \
1ac17950 3494 -label [mc "Sign Off"] \
0e794311 3495 -command do_signoff
95b002ee 3496set ui_comm_ctxm $ctxm
0e794311 3497
0fb8f9ce 3498# -- Diff Header
a49c67d1 3499#
20a53c02
SP
3500proc trace_current_diff_path {varname args} {
3501 global current_diff_path diff_actions file_states
3502 if {$current_diff_path eq {}} {
e8ab6446
SP
3503 set s {}
3504 set f {}
3505 set p {}
3506 set o disabled
3507 } else {
20a53c02 3508 set p $current_diff_path
e8ab6446 3509 set s [mapdesc [lindex $file_states($p) 0] $p]
1ac17950 3510 set f [mc "File:"]
e8ab6446
SP
3511 set p [escape_path $p]
3512 set o normal
3513 }
3514
3515 .vpane.lower.diff.header.status configure -text $s
3516 .vpane.lower.diff.header.file configure -text $f
3517 .vpane.lower.diff.header.path configure -text $p
3518 foreach w $diff_actions {
3519 uplevel #0 $w $o
3520 }
3521}
20a53c02 3522trace add variable current_diff_path write trace_current_diff_path
e8ab6446 3523
c80d7be5
PT
3524gold_frame .vpane.lower.diff.header
3525tlabel .vpane.lower.diff.header.status \
9adccb05 3526 -background gold \
c382fdd7 3527 -foreground black \
3e7b0e1d
SP
3528 -width $max_status_desc \
3529 -anchor w \
7416bbc6 3530 -justify left
c80d7be5 3531tlabel .vpane.lower.diff.header.file \
9adccb05 3532 -background gold \
c382fdd7 3533 -foreground black \
e8ab6446 3534 -anchor w \
7416bbc6 3535 -justify left
c80d7be5 3536tlabel .vpane.lower.diff.header.path \
9adccb05 3537 -background gold \
786f4d24 3538 -foreground blue \
fce89e46 3539 -anchor w \
786f4d24
ZS
3540 -justify left \
3541 -font [eval font create [font configure font_ui] -underline 1] \
3542 -cursor hand2
e8ab6446
SP
3543pack .vpane.lower.diff.header.status -side left
3544pack .vpane.lower.diff.header.file -side left
3545pack .vpane.lower.diff.header.path -fill x
3546set ctxm .vpane.lower.diff.header.ctxm
3547menu $ctxm -tearoff 0
3548$ctxm add command \
1ac17950 3549 -label [mc Copy] \
fce89e46
SP
3550 -command {
3551 clipboard clear
3552 clipboard append \
3553 -format STRING \
3554 -type STRING \
20a53c02 3555 -- $current_diff_path
fce89e46 3556 }
786f4d24
ZS
3557$ctxm add command \
3558 -label [mc Open] \
3559 -command {do_file_open $current_diff_path}
e8ab6446
SP
3560lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3561bind_button3 .vpane.lower.diff.header.path "tk_popup $ctxm %X %Y"
786f4d24 3562bind .vpane.lower.diff.header.path <Button-1> {do_file_open $current_diff_path}
0fb8f9ce
SP
3563
3564# -- Diff Body
a49c67d1 3565#
30508bc4 3566textframe .vpane.lower.diff.body
0fb8f9ce 3567set ui_diff .vpane.lower.diff.body.t
c02efc13 3568ttext $ui_diff \
c382fdd7 3569 -borderwidth 0 \
acb9108c 3570 -width 80 -height 5 -wrap none \
b4946930 3571 -font font_diff \
30508bc4 3572 -takefocus 1 -highlightthickness 1 \
0fb8f9ce
SP
3573 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
3574 -yscrollcommand {.vpane.lower.diff.body.sby set} \
0fb8f9ce 3575 -state disabled
c7440869 3576catch {$ui_diff configure -tabstyle wordprocessor}
c80d7be5 3577${NS}::scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
0fb8f9ce 3578 -command [list $ui_diff xview]
c80d7be5 3579${NS}::scrollbar .vpane.lower.diff.body.sby -orient vertical \
0fb8f9ce
SP
3580 -command [list $ui_diff yview]
3581pack .vpane.lower.diff.body.sbx -side bottom -fill x
3582pack .vpane.lower.diff.body.sby -side right -fill y
3583pack $ui_diff -side left -fill both -expand 1
3584pack .vpane.lower.diff.header -side top -fill x
3585pack .vpane.lower.diff.body -side bottom -fill both -expand 1
3586
8f85599a
PT
3587foreach {n c} {0 black 1 red4 2 green4 3 yellow4 4 blue4 5 magenta4 6 cyan4 7 grey60} {
3588 $ui_diff tag configure clr4$n -background $c
3589 $ui_diff tag configure clri4$n -foreground $c
3590 $ui_diff tag configure clr3$n -foreground $c
3591 $ui_diff tag configure clri3$n -background $c
3592}
3593$ui_diff tag configure clr1 -font font_diffbold
9af6413b 3594$ui_diff tag configure clr4 -underline 1
8f85599a 3595
88b21c2a
BW
3596$ui_diff tag conf d_info -foreground blue -font font_diffbold
3597
30b14ed3 3598$ui_diff tag conf d_cr -elide true
8f85599a 3599$ui_diff tag conf d_@ -font font_diffbold
ca521566 3600$ui_diff tag conf d_+ -foreground {#00a000}
fec4a785
SP
3601$ui_diff tag conf d_- -foreground red
3602
ca521566 3603$ui_diff tag conf d_++ -foreground {#00a000}
fec4a785
SP
3604$ui_diff tag conf d_-- -foreground red
3605$ui_diff tag conf d_+s \
ca521566
SP
3606 -foreground {#00a000} \
3607 -background {#e2effa}
fec4a785
SP
3608$ui_diff tag conf d_-s \
3609 -foreground red \
ca521566 3610 -background {#e2effa}
fec4a785 3611$ui_diff tag conf d_s+ \
ca521566
SP
3612 -foreground {#00a000} \
3613 -background ivory1
fec4a785
SP
3614$ui_diff tag conf d_s- \
3615 -foreground red \
ca521566 3616 -background ivory1
fec4a785 3617
4590307a 3618$ui_diff tag conf d< \
fec4a785
SP
3619 -foreground orange \
3620 -font font_diffbold
b436825b
BW
3621$ui_diff tag conf d| \
3622 -foreground orange \
3623 -font font_diffbold
4590307a 3624$ui_diff tag conf d= \
fec4a785
SP
3625 -foreground orange \
3626 -font font_diffbold
4590307a 3627$ui_diff tag conf d> \
fec4a785
SP
3628 -foreground orange \
3629 -font font_diffbold
cb07fc2a 3630
ca521566
SP
3631$ui_diff tag raise sel
3632
0e794311
SP
3633# -- Diff Body Context Menu
3634#
042c2325
AG
3635
3636proc create_common_diff_popup {ctxm} {
042c2325
AG
3637 $ctxm add command \
3638 -label [mc Refresh] \
3639 -command reshow_diff
3640 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3641 $ctxm add command \
3642 -label [mc Copy] \
3643 -command {tk_textCopy $ui_diff}
3644 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3645 $ctxm add command \
3646 -label [mc "Select All"] \
3647 -command {focus $ui_diff;$ui_diff tag add sel 0.0 end}
3648 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3649 $ctxm add command \
3650 -label [mc "Copy All"] \
3651 -command {
3652 $ui_diff tag add sel 0.0 end
3653 tk_textCopy $ui_diff
3654 $ui_diff tag remove sel 0.0 end
3655 }
3656 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3657 $ctxm add separator
3658 $ctxm add command \
3659 -label [mc "Decrease Font Size"] \
3660 -command {incr_font_size font_diff -1}
3661 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3662 $ctxm add command \
3663 -label [mc "Increase Font Size"] \
3664 -command {incr_font_size font_diff 1}
3665 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3666 $ctxm add separator
3fe01623
AG
3667 set emenu $ctxm.enc
3668 menu $emenu
3669 build_encoding_menu $emenu [list force_diff_encoding]
3670 $ctxm add cascade \
3671 -label [mc "Encoding"] \
3672 -menu $emenu
3673 lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3674 $ctxm add separator
042c2325
AG
3675 $ctxm add command -label [mc "Options..."] \
3676 -command do_options
3677}
3678
e8ab6446
SP
3679set ctxm .vpane.lower.diff.body.ctxm
3680menu $ctxm -tearoff 0
fba6072e
JS
3681$ctxm add command \
3682 -label [mc "Apply/Reverse Hunk"] \
62bd9993 3683 -command {apply_or_revert_hunk $cursorX $cursorY 0}
fba6072e
JS
3684set ui_diff_applyhunk [$ctxm index last]
3685lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
5821988f
JS
3686$ctxm add command \
3687 -label [mc "Apply/Reverse Line"] \
5f0a516d 3688 -command {apply_or_revert_range_or_line $cursorX $cursorY 0; do_rescan}
5821988f
JS
3689set ui_diff_applyline [$ctxm index last]
3690lappend diff_actions [list $ctxm entryconf $ui_diff_applyline -state]
fba6072e 3691$ctxm add separator
62bd9993
PY
3692$ctxm add command \
3693 -label [mc "Revert Hunk"] \
3694 -command {apply_or_revert_hunk $cursorX $cursorY 1}
3695set ui_diff_reverthunk [$ctxm index last]
3696lappend diff_actions [list $ctxm entryconf $ui_diff_reverthunk -state]
5f0a516d
PY
3697$ctxm add command \
3698 -label [mc "Revert Line"] \
3699 -command {apply_or_revert_range_or_line $cursorX $cursorY 1; do_rescan}
3700set ui_diff_revertline [$ctxm index last]
3701lappend diff_actions [list $ctxm entryconf $ui_diff_revertline -state]
a4fa2f0a
PY
3702$ctxm add command \
3703 -label [mc "Undo Last Revert"] \
3704 -command {undo_last_revert; do_rescan}
3705set ui_diff_undorevert [$ctxm index last]
3706lappend diff_actions [list $ctxm entryconf $ui_diff_undorevert -state]
5f0a516d 3707$ctxm add separator
25476c63
JL
3708$ctxm add command \
3709 -label [mc "Show Less Context"] \
3710 -command show_less_context
3711lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3712$ctxm add command \
3713 -label [mc "Show More Context"] \
3714 -command show_more_context
3715lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
3716$ctxm add separator
042c2325
AG
3717create_common_diff_popup $ctxm
3718
3719set ctxmmg .vpane.lower.diff.body.ctxmmg
3720menu $ctxmmg -tearoff 0
7e30682c
AG
3721$ctxmmg add command \
3722 -label [mc "Run Merge Tool"] \
3723 -command {merge_resolve_tool}
3724lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3725$ctxmmg add separator
042c2325
AG
3726$ctxmmg add command \
3727 -label [mc "Use Remote Version"] \
3728 -command {merge_resolve_one 3}
3729lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3730$ctxmmg add command \
3731 -label [mc "Use Local Version"] \
3732 -command {merge_resolve_one 2}
3733lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3734$ctxmmg add command \
3735 -label [mc "Revert To Base"] \
3736 -command {merge_resolve_one 1}
3737lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3738$ctxmmg add separator
25476c63
JL
3739$ctxmmg add command \
3740 -label [mc "Show Less Context"] \
3741 -command show_less_context
3742lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3743$ctxmmg add command \
3744 -label [mc "Show More Context"] \
3745 -command show_more_context
3746lappend diff_actions [list $ctxmmg entryconf [$ctxmmg index last] -state]
3747$ctxmmg add separator
042c2325
AG
3748create_common_diff_popup $ctxmmg
3749
25476c63
JL
3750set ctxmsm .vpane.lower.diff.body.ctxmsm
3751menu $ctxmsm -tearoff 0
3752$ctxmsm add command \
3753 -label [mc "Visualize These Changes In The Submodule"] \
3754 -command {do_gitk -- true}
3755lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3756$ctxmsm add command \
3757 -label [mc "Visualize Current Branch History In The Submodule"] \
3758 -command {do_gitk {} true}
3759lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3760$ctxmsm add command \
3761 -label [mc "Visualize All Branch History In The Submodule"] \
3762 -command {do_gitk --all true}
3763lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3764$ctxmsm add separator
3765$ctxmsm add command \
3766 -label [mc "Start git gui In The Submodule"] \
3767 -command {do_git_gui}
3768lappend diff_actions [list $ctxmsm entryconf [$ctxmsm index last] -state]
3769$ctxmsm add separator
3770create_common_diff_popup $ctxmsm
3771
1fbaccad
CP
3772proc has_textconv {path} {
3773 if {[is_config_false gui.textconv]} {
3774 return 0
3775 }
3776 set filter [gitattr $path diff set]
3777 set textconv [get_config [join [list diff $filter textconv] .]]
3778 if {$filter ne {set} && $textconv ne {}} {
3779 return 1
3780 } else {
3781 return 0
3782 }
3783}
3784
25476c63 3785proc popup_diff_menu {ctxm ctxmmg ctxmsm x y X Y} {
a4fa2f0a 3786 global current_diff_path file_states last_revert
83751fc1
SP
3787 set ::cursorX $x
3788 set ::cursorY $y
042c2325
AG
3789 if {[info exists file_states($current_diff_path)]} {
3790 set state [lindex $file_states($current_diff_path) 0]
a25c5189 3791 } else {
042c2325
AG
3792 set state {__}
3793 }
ff515d81 3794 if {[string first {U} $state] >= 0} {
042c2325 3795 tk_popup $ctxmmg $X $Y
25476c63
JL
3796 } elseif {$::is_submodule_diff} {
3797 tk_popup $ctxmsm $X $Y
047d94d5 3798 } else {
ff07c3b6 3799 set has_range [expr {[$::ui_diff tag nextrange sel 0.0] != {}}]
a4fa2f0a 3800 set u [mc "Undo Last Revert"]
042c2325
AG
3801 if {$::ui_index eq $::current_diff_side} {
3802 set l [mc "Unstage Hunk From Commit"]
62bd9993
PY
3803 set h [mc "Revert Hunk"]
3804
ff07c3b6
JE
3805 if {$has_range} {
3806 set t [mc "Unstage Lines From Commit"]
5f0a516d 3807 set r [mc "Revert Lines"]
ff07c3b6
JE
3808 } else {
3809 set t [mc "Unstage Line From Commit"]
5f0a516d 3810 set r [mc "Revert Line"]
ff07c3b6 3811 }
042c2325
AG
3812 } else {
3813 set l [mc "Stage Hunk For Commit"]
62bd9993
PY
3814 set h [mc "Revert Hunk"]
3815
ff07c3b6
JE
3816 if {$has_range} {
3817 set t [mc "Stage Lines For Commit"]
5f0a516d 3818 set r [mc "Revert Lines"]
ff07c3b6
JE
3819 } else {
3820 set t [mc "Stage Line For Commit"]
5f0a516d 3821 set r [mc "Revert Line"]
ff07c3b6 3822 }
042c2325 3823 }
25476c63 3824 if {$::is_3way_diff
042c2325
AG
3825 || $current_diff_path eq {}
3826 || {__} eq $state
3827 || {_O} eq $state
7587f4d3
BW
3828 || [string match {?T} $state]
3829 || [string match {T?} $state]
1fbaccad 3830 || [has_textconv $current_diff_path]} {
042c2325 3831 set s disabled
5f0a516d 3832 set revert_state disabled
042c2325
AG
3833 } else {
3834 set s normal
5f0a516d
PY
3835
3836 # Only allow reverting changes in the working tree. If
3837 # the user wants to revert changes in the index, they
3838 # need to unstage those first.
3839 if {$::ui_workdir eq $::current_diff_side} {
3840 set revert_state normal
3841 } else {
3842 set revert_state disabled
3843 }
042c2325 3844 }
5f0a516d 3845
a4fa2f0a
PY
3846 if {$last_revert eq {}} {
3847 set undo_state disabled
3848 } else {
3849 set undo_state normal
3850 }
3851
042c2325
AG
3852 $ctxm entryconf $::ui_diff_applyhunk -state $s -label $l
3853 $ctxm entryconf $::ui_diff_applyline -state $s -label $t
5f0a516d
PY
3854 $ctxm entryconf $::ui_diff_revertline -state $revert_state \
3855 -label $r
62bd9993
PY
3856 $ctxm entryconf $::ui_diff_reverthunk -state $revert_state \
3857 -label $h
a4fa2f0a
PY
3858 $ctxm entryconf $::ui_diff_undorevert -state $undo_state \
3859 -label $u
62bd9993 3860
042c2325 3861 tk_popup $ctxm $X $Y
9c9f5fa9 3862 }
83751fc1 3863}
25476c63 3864bind_button3 $ui_diff [list popup_diff_menu $ctxm $ctxmmg $ctxmsm %x %y %X %Y]
0e794311 3865
cb07fc2a 3866# -- Status Bar
e8ab6446 3867#
51530d17 3868set main_status [::status_bar::new .status]
cb07fc2a 3869pack .status -anchor w -side bottom -fill x
1ac17950 3870$main_status show [mc "Initializing..."]
cb07fc2a 3871
2d19516d 3872# -- Load geometry
e8ab6446 3873#
2810a58d
PT
3874proc on_ttk_pane_mapped {w pane pos} {
3875 bind $w <Map> {}
3876 after 0 [list after idle [list $w sashpos $pane $pos]]
3877}
3878proc on_tk_pane_mapped {w pane x y} {
3879 bind $w <Map> {}
3880 after 0 [list after idle [list $w sash place $pane $x $y]]
3881}
3882proc on_application_mapped {} {
3883 global repo_config use_ttk
3884 bind . <Map> {}
3885 set gm $repo_config(gui.geometry)
3886 if {$use_ttk} {
3887 bind .vpane <Map> \
5c1b3913 3888 [list on_ttk_pane_mapped %W 0 [lindex $gm 1]]
2810a58d 3889 bind .vpane.files <Map> \
5c1b3913 3890 [list on_ttk_pane_mapped %W 0 [lindex $gm 2]]
2810a58d
PT
3891 } else {
3892 bind .vpane <Map> \
5c1b3913
ST
3893 [list on_tk_pane_mapped %W 0 \
3894 [lindex $gm 1] \
3895 [lindex [.vpane sash coord 0] 1]]
2810a58d 3896 bind .vpane.files <Map> \
5c1b3913
ST
3897 [list on_tk_pane_mapped %W 0 \
3898 [lindex [.vpane.files sash coord 0] 0] \
3899 [lindex $gm 2]]
2810a58d
PT
3900 }
3901 wm geometry . [lindex $gm 0]
c80d7be5 3902}
2810a58d
PT
3903if {[info exists repo_config(gui.geometry)]} {
3904 bind . <Map> [list on_application_mapped]
3905 wm geometry . [lindex $repo_config(gui.geometry) 0]
390adaea 3906}
2d19516d 3907
ed7b6033
AB
3908# -- Load window state
3909#
2810a58d
PT
3910if {[info exists repo_config(gui.wmstate)]} {
3911 catch {wm state . $repo_config(gui.wmstate)}
ed7b6033
AB
3912}
3913
cb07fc2a 3914# -- Key Bindings
e8ab6446 3915#
ec6b424a 3916bind $ui_comm <$M1B-Key-Return> {do_commit;break}
cd16a6c9
SP
3917bind $ui_comm <$M1B-Key-t> {do_add_selection;break}
3918bind $ui_comm <$M1B-Key-T> {do_add_selection;break}
b677c66e
VS
3919bind $ui_comm <$M1B-Key-u> {do_unstage_selection;break}
3920bind $ui_comm <$M1B-Key-U> {do_unstage_selection;break}
3921bind $ui_comm <$M1B-Key-j> {do_revert_selection;break}
3922bind $ui_comm <$M1B-Key-J> {do_revert_selection;break}
93e912c5
SP
3923bind $ui_comm <$M1B-Key-i> {do_add_all;break}
3924bind $ui_comm <$M1B-Key-I> {do_add_all;break}
9861671d
SP
3925bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
3926bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
3927bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
3928bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
3929bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
3930bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
3931bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
3932bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
729ffa50
MB
3933bind $ui_comm <$M1B-Key-minus> {show_less_context;break}
3934bind $ui_comm <$M1B-Key-KP_Subtract> {show_less_context;break}
3935bind $ui_comm <$M1B-Key-equal> {show_more_context;break}
3936bind $ui_comm <$M1B-Key-plus> {show_more_context;break}
3937bind $ui_comm <$M1B-Key-KP_Add> {show_more_context;break}
e5894146
IL
3938bind $ui_comm <$M1B-Key-BackSpace> {event generate %W <Meta-Delete>;break}
3939bind $ui_comm <$M1B-Key-Delete> {event generate %W <Meta-d>;break}
9861671d
SP
3940
3941bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
3942bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
3943bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
3944bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
3945bind $ui_diff <$M1B-Key-v> {break}
3946bind $ui_diff <$M1B-Key-V> {break}
3947bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
3948bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
44e88ce0
VS
3949bind $ui_diff <$M1B-Key-j> {do_revert_selection;break}
3950bind $ui_diff <$M1B-Key-J> {do_revert_selection;break}
b2c6fcf1
SP
3951bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
3952bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
3953bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
3954bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
60aa065f
SP
3955bind $ui_diff <Key-k> {catch {%W yview scroll -1 units};break}
3956bind $ui_diff <Key-j> {catch {%W yview scroll 1 units};break}
3957bind $ui_diff <Key-h> {catch {%W xview scroll -1 units};break}
3958bind $ui_diff <Key-l> {catch {%W xview scroll 1 units};break}
3959bind $ui_diff <Control-Key-b> {catch {%W yview scroll -1 pages};break}
3960bind $ui_diff <Control-Key-f> {catch {%W yview scroll 1 pages};break}
23effa79 3961bind $ui_diff <Button-1> {focus %W}
49b86f01 3962
64a906f8 3963if {[is_enabled branch]} {
b1fa2bff
SP
3964 bind . <$M1B-Key-n> branch_create::dialog
3965 bind . <$M1B-Key-N> branch_create::dialog
d41b43eb
SP
3966 bind . <$M1B-Key-o> branch_checkout::dialog
3967 bind . <$M1B-Key-O> branch_checkout::dialog
a870ddc0
SP
3968 bind . <$M1B-Key-m> merge::dialog
3969 bind . <$M1B-Key-M> merge::dialog
bd29ebc3 3970}
840bcfa7
SP
3971if {[is_enabled transport]} {
3972 bind . <$M1B-Key-p> do_push_anywhere
3973 bind . <$M1B-Key-P> do_push_anywhere
3974}
bd29ebc3 3975
8056cc4f
AG
3976bind . <Key-F5> ui_do_rescan
3977bind . <$M1B-Key-r> ui_do_rescan
3978bind . <$M1B-Key-R> ui_do_rescan
07123f40
SP
3979bind . <$M1B-Key-s> do_signoff
3980bind . <$M1B-Key-S> do_signoff
088ad75d
PT
3981bind . <$M1B-Key-t> { toggle_or_diff toggle %W }
3982bind . <$M1B-Key-T> { toggle_or_diff toggle %W }
3983bind . <$M1B-Key-u> { toggle_or_diff toggle %W }
3984bind . <$M1B-Key-U> { toggle_or_diff toggle %W }
d6db1bbe
HV
3985bind . <$M1B-Key-j> do_revert_selection
3986bind . <$M1B-Key-J> do_revert_selection
93e912c5
SP
3987bind . <$M1B-Key-i> do_add_all
3988bind . <$M1B-Key-I> do_add_all
ec7424e1
BSP
3989bind . <$M1B-Key-e> toggle_commit_type
3990bind . <$M1B-Key-E> toggle_commit_type
729ffa50
MB
3991bind . <$M1B-Key-minus> {show_less_context;break}
3992bind . <$M1B-Key-KP_Subtract> {show_less_context;break}
3993bind . <$M1B-Key-equal> {show_more_context;break}
3994bind . <$M1B-Key-plus> {show_more_context;break}
3995bind . <$M1B-Key-KP_Add> {show_more_context;break}
07123f40 3996bind . <$M1B-Key-Return> do_commit
146a6f10 3997bind . <$M1B-Key-KP_Enter> do_commit
0812665e 3998foreach i [list $ui_index $ui_workdir] {
088ad75d
PT
3999 bind $i <Button-1> { toggle_or_diff click %W %x %y; break }
4000 bind $i <$M1B-Button-1> { add_one_to_selection %W %x %y; break }
4001 bind $i <Shift-Button-1> { add_range_to_selection %W %x %y; break }
4002 bind $i <Key-Up> { toggle_or_diff up %W; break }
4003 bind $i <Key-Down> { toggle_or_diff down %W; break }
cb07fc2a 4004}
62aac80b
SP
4005unset i
4006
e07446ed
BSP
4007bind . <Alt-Key-1> {focus_widget $::ui_workdir}
4008bind . <Alt-Key-2> {focus_widget $::ui_index}
4009bind . <Alt-Key-3> {focus $::ui_diff}
4010bind . <Alt-Key-4> {focus $::ui_comm}
4011
4012set file_lists_last_clicked($ui_index) {}
4013set file_lists_last_clicked($ui_workdir) {}
4014
62aac80b 4015set file_lists($ui_index) [list]
0812665e 4016set file_lists($ui_workdir) [list]
a49c67d1 4017
21985a11 4018wm title . "[appname] ([reponame]) [file normalize $_gitworktree]"
cb07fc2a 4019focus -force $ui_comm
1d8b3cbf 4020
85ab313e
SP
4021# -- Only initialize complex UI if we are going to stay running.
4022#
64a906f8 4023if {[is_enabled transport]} {
4ccdab02 4024 load_all_remotes
85ab313e 4025
6bdf5e5f 4026 set n [.mbar.remote index end]
8329bd07 4027 populate_remotes_menu
6bdf5e5f
SP
4028 set n [expr {[.mbar.remote index end] - $n}]
4029 if {$n > 0} {
7e09b153 4030 if {[.mbar.remote type 0] eq "tearoff"} { incr n }
6bdf5e5f
SP
4031 .mbar.remote insert $n separator
4032 }
4033 unset n
4ccdab02 4034}
85ab313e 4035
4578c5cb 4036if {[winfo exists $ui_comm]} {
fda1ba02 4037 set GITGUI_BCK_exists [load_message GITGUI_BCK utf-8]
4578c5cb
SP
4038
4039 # -- If both our backup and message files exist use the
4040 # newer of the two files to initialize the buffer.
4041 #
4042 if {$GITGUI_BCK_exists} {
4043 set m [gitdir GITGUI_MSG]
4044 if {[file isfile $m]} {
4045 if {[file mtime [gitdir GITGUI_BCK]] > [file mtime $m]} {
4046 catch {file delete [gitdir GITGUI_MSG]}
4047 } else {
4048 $ui_comm delete 0.0 end
4049 $ui_comm edit reset
4050 $ui_comm edit modified false
4051 catch {file delete [gitdir GITGUI_BCK]}
4052 set GITGUI_BCK_exists 0
4053 }
4054 }
4055 unset m
4056 }
4057
4058 proc backup_commit_buffer {} {
4059 global ui_comm GITGUI_BCK_exists
4060
4061 set m [$ui_comm edit modified]
4062 if {$m || $GITGUI_BCK_exists} {
4063 set msg [string trim [$ui_comm get 0.0 end]]
4064 regsub -all -line {[ \r\t]+$} $msg {} msg
4065
4066 if {$msg eq {}} {
4067 if {$GITGUI_BCK_exists} {
4068 catch {file delete [gitdir GITGUI_BCK]}
4069 set GITGUI_BCK_exists 0
4070 }
4071 } elseif {$m} {
4072 catch {
4073 set fd [open [gitdir GITGUI_BCK] w]
fda1ba02 4074 fconfigure $fd -encoding utf-8
4578c5cb
SP
4075 puts -nonewline $fd $msg
4076 close $fd
4077 set GITGUI_BCK_exists 1
4078 }
4079 }
4080
4081 $ui_comm edit modified false
4082 }
4083
4084 set ::GITGUI_BCK_i [after 2000 backup_commit_buffer]
4085 }
4086
4087 backup_commit_buffer
95b002ee
SP
4088
4089 # -- If the user has aspell available we can drive it
4090 # in pipe mode to spellcheck the commit message.
4091 #
4092 set spell_cmd [list |]
4093 set spell_dict [get_config gui.spellingdictionary]
4094 lappend spell_cmd aspell
4095 if {$spell_dict ne {}} {
4096 lappend spell_cmd --master=$spell_dict
4097 }
4098 lappend spell_cmd --mode=none
4099 lappend spell_cmd --encoding=utf-8
4100 lappend spell_cmd pipe
4101 if {$spell_dict eq {none}
4102 || [catch {set spell_fd [open $spell_cmd r+]} spell_err]} {
4103 bind_button3 $ui_comm [list tk_popup $ui_comm_ctxm %X %Y]
4104 } else {
4105 set ui_comm_spell [spellcheck::init \
4106 $spell_fd \
4107 $ui_comm \
4108 $ui_comm_ctxm \
4109 ]
4110 }
4111 unset -nocomplain spell_cmd spell_fd spell_err spell_dict
4578c5cb
SP
4112}
4113
53716a7b 4114lock_index begin-read
301dfaa9
SP
4115if {![winfo ismapped .]} {
4116 wm deiconify .
4117}
1e65c622
AG
4118after 1 {
4119 if {[is_enabled initialamend]} {
4120 force_amend
4121 } else {
4122 do_rescan
4123 }
4124
4125 if {[is_enabled nocommitmsg]} {
4126 $ui_comm configure -state disabled -background gray
4127 }
4128}
af867683 4129if {[is_enabled multicommit] && ![is_config_false gui.gcwarning]} {
3972b987
SP
4130 after 1000 hint_gc
4131}
1e65c622
AG
4132if {[is_enabled retcode]} {
4133 bind . <Destroy> {+terminate_me %W}
4134}
bb4812bc
PB
4135if {$picked && [is_config_true gui.autoexplore]} {
4136 do_explore
4137}
c80d7be5 4138
d9c6469f
JG
4139# Clear "Initializing..." status
4140after 500 {$main_status show ""}
4141
c80d7be5
PT
4142# Local variables:
4143# mode: tcl
4144# indent-tabs-mode: t
4145# tab-width: 4
4146# End: