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