]> git.ipfire.org Git - thirdparty/git.git/blame - git-gui.sh
git-gui: Fix missing i18n markup in push/fetch windows
[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; \
9 exec wish "$0" -- "$@"
cb07fc2a 10
7e81d4ee 11set appvers {@@GITGUI_VERSION@@}
bdc9ea20 12set copyright {
a9813cb5 13Copyright © 2006, 2007 Shawn Pearce, et. al.
bdc9ea20 14
0499b24a
SP
15This program is free software; you can redistribute it and/or modify
16it under the terms of the GNU General Public License as published by
17the Free Software Foundation; either version 2 of the License, or
18(at your option) any later version.
19
20This program is distributed in the hope that it will be useful,
21but WITHOUT ANY WARRANTY; without even the implied warranty of
22MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23GNU General Public License for more details.
24
25You should have received a copy of the GNU General Public License
26along with this program; if not, write to the Free Software
27Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA}
cb07fc2a 28
f522c9b5 29######################################################################
cfb07cca
SP
30##
31## Tcl/Tk sanity check
32
33if {[catch {package require Tcl 8.4} err]
34 || [catch {package require Tk 8.4} err]
35} {
36 catch {wm withdraw .}
37 tk_messageBox \
38 -icon error \
39 -type ok \
c8c4854b 40 -title [mc "git-gui: fatal error"] \
cfb07cca
SP
41 -message $err
42 exit 1
43}
44
63c4024f 45catch {rename send {}} ; # What an evil concept...
cff93397 46
fc703c20
SP
47######################################################################
48##
49## locate our library
50
51set oguilib {@@GITGUI_LIBDIR@@}
52set oguirel {@@GITGUI_RELATIVE@@}
53if {$oguirel eq {1}} {
54 set oguilib [file dirname [file dirname [file normalize $argv0]]]
55 set oguilib [file join $oguilib share git-gui lib]
d4b0ccd9 56 set oguimsg [file join $oguilib msgs]
fc703c20
SP
57} elseif {[string match @@* $oguirel]} {
58 set oguilib [file join [file dirname [file normalize $argv0]] lib]
d4b0ccd9
SP
59 set oguimsg [file join [file dirname [file normalize $argv0]] po]
60} else {
61 set oguimsg [file join $oguilib msgs]
fc703c20
SP
62}
63unset oguirel
64
cd12901b
SP
65######################################################################
66##
67## enable verbose loading?
68
69if {![catch {set _verbose $env(GITGUI_VERBOSE)}]} {
70 unset _verbose
71 rename auto_load real__auto_load
72 proc auto_load {name args} {
73 puts stderr "auto_load $name"
74 return [uplevel 1 real__auto_load $name $args]
75 }
76 rename source real__source
77 proc source {name} {
78 puts stderr "source $name"
79 uplevel 1 real__source $name
80 }
81}
82
c950c66e 83######################################################################
d4b0ccd9
SP
84##
85## Internationalization (i18n) through msgcat and gettext. See
86## http://www.gnu.org/software/gettext/manual/html_node/Tcl.html
87
88package require msgcat
146d73a3
SP
89
90proc mc {fmt args} {
91 set fmt [::msgcat::mc $fmt]
92 set cmk [string first @@ $fmt]
93 if {$cmk > 0} {
94 set fmt [string range $fmt 0 [expr {$cmk - 1}]]
95 }
96 return [eval [list format $fmt] $args]
97}
98
31bb1d1b
SP
99proc strcat {args} {
100 return [join $args {}]
101}
102
d4b0ccd9
SP
103::msgcat::mcload $oguimsg
104unset oguimsg
105
106######################################################################
c950c66e
SP
107##
108## read only globals
109
110set _appname [lindex [file split $argv0] end]
111set _gitdir {}
20ddfcaa 112set _gitexec {}
c950c66e 113set _reponame {}
20ddfcaa 114set _iscygwin {}
0b812616 115set _search_path {}
c950c66e
SP
116
117proc appname {} {
118 global _appname
119 return $_appname
120}
121
c2758a17 122proc gitdir {args} {
c950c66e 123 global _gitdir
c2758a17
SP
124 if {$args eq {}} {
125 return $_gitdir
126 }
0b812616 127 return [eval [list file join $_gitdir] $args]
c950c66e
SP
128}
129
20ddfcaa
SP
130proc gitexec {args} {
131 global _gitexec
132 if {$_gitexec eq {}} {
81347223 133 if {[catch {set _gitexec [git --exec-path]} err]} {
20ddfcaa
SP
134 error "Git not installed?\n\n$err"
135 }
0b812616
SP
136 if {[is_Cygwin]} {
137 set _gitexec [exec cygpath \
138 --windows \
139 --absolute \
140 $_gitexec]
141 } else {
142 set _gitexec [file normalize $_gitexec]
143 }
20ddfcaa
SP
144 }
145 if {$args eq {}} {
146 return $_gitexec
147 }
0b812616 148 return [eval [list file join $_gitexec] $args]
20ddfcaa
SP
149}
150
c950c66e 151proc reponame {} {
d36cd968 152 return $::_reponame
c950c66e 153}
da5239dc 154
20ddfcaa 155proc is_MacOSX {} {
20ddfcaa
SP
156 if {[tk windowingsystem] eq {aqua}} {
157 return 1
158 }
159 return 0
160}
161
162proc is_Windows {} {
d36cd968 163 if {$::tcl_platform(platform) eq {windows}} {
20ddfcaa
SP
164 return 1
165 }
166 return 0
167}
168
169proc is_Cygwin {} {
d36cd968 170 global _iscygwin
20ddfcaa 171 if {$_iscygwin eq {}} {
d36cd968 172 if {$::tcl_platform(platform) eq {windows}} {
20ddfcaa
SP
173 if {[catch {set p [exec cygpath --windir]} err]} {
174 set _iscygwin 0
175 } else {
176 set _iscygwin 1
177 }
178 } else {
179 set _iscygwin 0
180 }
181 }
182 return $_iscygwin
183}
184
cf25ddc8
SP
185proc is_enabled {option} {
186 global enabled_options
187 if {[catch {set on $enabled_options($option)}]} {return 0}
188 return $on
189}
190
191proc enable_option {option} {
192 global enabled_options
193 set enabled_options($option) 1
194}
195
196proc disable_option {option} {
197 global enabled_options
198 set enabled_options($option) 0
199}
200
2d19516d
SP
201######################################################################
202##
203## config
204
51f4d16b
SP
205proc is_many_config {name} {
206 switch -glob -- $name {
207 remote.*.fetch -
208 remote.*.push
209 {return 1}
210 *
211 {return 0}
212 }
213}
2d19516d 214
c539449b
SP
215proc is_config_true {name} {
216 global repo_config
217 if {[catch {set v $repo_config($name)}]} {
218 return 0
219 } elseif {$v eq {true} || $v eq {1} || $v eq {yes}} {
220 return 1
221 } else {
222 return 0
223 }
224}
225
61f82ce7
SP
226proc get_config {name} {
227 global repo_config
228 if {[catch {set v $repo_config($name)}]} {
229 return {}
230 } else {
231 return $v
232 }
233}
234
6bbd1cb9 235proc load_config {include_global} {
51f4d16b
SP
236 global repo_config global_config default_config
237
238 array unset global_config
6bbd1cb9
SP
239 if {$include_global} {
240 catch {
0b812616 241 set fd_rc [git_read config --global --list]
6bbd1cb9
SP
242 while {[gets $fd_rc line] >= 0} {
243 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
244 if {[is_many_config $name]} {
245 lappend global_config($name) $value
246 } else {
247 set global_config($name) $value
248 }
51f4d16b
SP
249 }
250 }
6bbd1cb9 251 close $fd_rc
51f4d16b 252 }
51f4d16b 253 }
6bbd1cb9
SP
254
255 array unset repo_config
2d19516d 256 catch {
0b812616 257 set fd_rc [git_read config --list]
2d19516d
SP
258 while {[gets $fd_rc line] >= 0} {
259 if {[regexp {^([^=]+)=(.*)$} $line line name value]} {
51f4d16b
SP
260 if {[is_many_config $name]} {
261 lappend repo_config($name) $value
262 } else {
263 set repo_config($name) $value
264 }
2d19516d
SP
265 }
266 }
267 close $fd_rc
268 }
269
51f4d16b
SP
270 foreach name [array names default_config] {
271 if {[catch {set v $global_config($name)}]} {
272 set global_config($name) $default_config($name)
273 }
274 if {[catch {set v $repo_config($name)}]} {
275 set repo_config($name) $default_config($name)
276 }
2d19516d
SP
277 }
278}
279
81347223
SP
280######################################################################
281##
282## handy utils
283
0b812616
SP
284proc _git_cmd {name} {
285 global _git_cmd_path
286
287 if {[catch {set v $_git_cmd_path($name)}]} {
288 switch -- $name {
70a7595c 289 version -
0b812616
SP
290 --version -
291 --exec-path { return [list $::_git $name] }
292 }
293
294 set p [gitexec git-$name$::_search_exe]
295 if {[file exists $p]} {
296 set v [list $p]
c136f2b8
SP
297 } elseif {[is_Windows] && [file exists [gitexec git-$name]]} {
298 # Try to determine what sort of magic will make
299 # git-$name go and do its thing, because native
300 # Tcl on Windows doesn't know it.
0b812616 301 #
c136f2b8
SP
302 set p [gitexec git-$name]
303 set f [open $p r]
304 set s [gets $f]
305 close $f
306
6e4ba05c 307 switch -glob -- [lindex $s 0] {
c136f2b8
SP
308 #!*sh { set i sh }
309 #!*perl { set i perl }
310 #!*python { set i python }
311 default { error "git-$name is not supported: $s" }
312 }
313
314 upvar #0 _$i interp
315 if {![info exists interp]} {
316 set interp [_which $i]
317 }
318 if {$interp eq {}} {
319 error "git-$name requires $i (not in PATH)"
320 }
6e4ba05c 321 set v [concat [list $interp] [lrange $s 1 end] [list $p]]
0b812616 322 } else {
c6729890
SP
323 # Assume it is builtin to git somehow and we
324 # aren't actually able to see a file for it.
325 #
326 set v [list $::_git $name]
0b812616
SP
327 }
328 set _git_cmd_path($name) $v
329 }
330 return $v
331}
332
333proc _which {what} {
334 global env _search_exe _search_path
335
336 if {$_search_path eq {}} {
337 if {[is_Cygwin]} {
338 set _search_path [split [exec cygpath \
339 --windows \
340 --path \
341 --absolute \
342 $env(PATH)] {;}]
343 set _search_exe .exe
344 } elseif {[is_Windows]} {
345 set _search_path [split $env(PATH) {;}]
346 set _search_exe .exe
347 } else {
348 set _search_path [split $env(PATH) :]
349 set _search_exe {}
350 }
351 }
352
353 foreach p $_search_path {
354 set p [file join $p $what$_search_exe]
355 if {[file exists $p]} {
356 return [file normalize $p]
357 }
358 }
359 return {}
360}
361
6f62b4f7
SP
362proc _lappend_nice {cmd_var} {
363 global _nice
364 upvar $cmd_var cmd
365
366 if {![info exists _nice]} {
367 set _nice [_which nice]
368 }
369 if {$_nice ne {}} {
370 lappend cmd $_nice
371 }
372}
373
81347223 374proc git {args} {
0b812616
SP
375 set opt [list exec]
376
377 while {1} {
378 switch -- [lindex $args 0] {
379 --nice {
6f62b4f7 380 _lappend_nice opt
0b812616
SP
381 }
382
383 default {
384 break
385 }
386
387 }
388
389 set args [lrange $args 1 end]
390 }
391
392 set cmdp [_git_cmd [lindex $args 0]]
393 set args [lrange $args 1 end]
394
395 return [eval $opt $cmdp $args]
396}
397
74c4763c
SP
398proc _open_stdout_stderr {cmd} {
399 if {[catch {
400 set fd [open $cmd r]
401 } err]} {
402 if { [lindex $cmd end] eq {2>@1}
403 && $err eq {can not find channel named "1"}
404 } {
405 # Older versions of Tcl 8.4 don't have this 2>@1 IO
406 # redirect operator. Fallback to |& cat for those.
407 # The command was not actually started, so its safe
408 # to try to start it a second time.
409 #
410 set fd [open [concat \
411 [lrange $cmd 0 end-1] \
412 [list |& cat] \
413 ] r]
414 } else {
415 error $err
416 }
417 }
6eb420ef 418 fconfigure $fd -eofchar {}
74c4763c
SP
419 return $fd
420}
421
0b812616
SP
422proc git_read {args} {
423 set opt [list |]
424
425 while {1} {
426 switch -- [lindex $args 0] {
427 --nice {
6f62b4f7 428 _lappend_nice opt
0b812616
SP
429 }
430
431 --stderr {
432 lappend args 2>@1
433 }
434
435 default {
436 break
437 }
438
439 }
440
441 set args [lrange $args 1 end]
442 }
443
444 set cmdp [_git_cmd [lindex $args 0]]
445 set args [lrange $args 1 end]
446
74c4763c 447 return [_open_stdout_stderr [concat $opt $cmdp $args]]
0b812616
SP
448}
449
450proc git_write {args} {
451 set opt [list |]
452
453 while {1} {
454 switch -- [lindex $args 0] {
455 --nice {
6f62b4f7 456 _lappend_nice opt
0b812616
SP
457 }
458
459 default {
460 break
461 }
462
463 }
464
465 set args [lrange $args 1 end]
466 }
467
468 set cmdp [_git_cmd [lindex $args 0]]
469 set args [lrange $args 1 end]
470
471 return [open [concat $opt $cmdp $args] w]
81347223
SP
472}
473
7eafa2f1
SP
474proc sq {value} {
475 regsub -all ' $value "'\\''" value
476 return "'$value'"
477}
478
d41b43eb
SP
479proc load_current_branch {} {
480 global current_branch is_detached
481
fc4e8da7 482 set fd [open [gitdir HEAD] r]
311e02a4 483 if {[gets $fd ref] < 1} {
fc4e8da7
SP
484 set ref {}
485 }
486 close $fd
311e02a4
SP
487
488 set pfx {ref: refs/heads/}
489 set len [string length $pfx]
490 if {[string equal -length $len $pfx $ref]} {
491 # We're on a branch. It might not exist. But
492 # HEAD looks good enough to be a branch.
493 #
d41b43eb
SP
494 set current_branch [string range $ref $len end]
495 set is_detached 0
311e02a4
SP
496 } else {
497 # Assume this is a detached head.
498 #
d41b43eb
SP
499 set current_branch HEAD
500 set is_detached 1
311e02a4 501 }
fc4e8da7
SP
502}
503
2739291b
SP
504auto_load tk_optionMenu
505rename tk_optionMenu real__tkOptionMenu
506proc tk_optionMenu {w varName args} {
507 set m [eval real__tkOptionMenu $w $varName $args]
508 $m configure -font font_ui
509 $w configure -font font_ui
510 return $m
511}
512
3849bfba
SP
513proc rmsel_tag {text} {
514 $text tag conf sel \
515 -background [$text cget -background] \
516 -foreground [$text cget -foreground] \
517 -borderwidth 0
518 $text tag conf in_sel -background lightgray
519 bind $text <Motion> break
520 return $text
521}
522
0b812616
SP
523######################################################################
524##
525## find git
526
527set _git [_which git]
528if {$_git eq {}} {
529 catch {wm withdraw .}
1ac17950 530 error_popup [mc "Cannot find git in PATH."]
0b812616
SP
531 exit 1
532}
0b812616 533
54acdd95
SP
534######################################################################
535##
536## version check
537
d6967022 538if {[catch {set _git_version [git --version]} err]} {
54acdd95 539 catch {wm withdraw .}
875b7c93
SP
540 tk_messageBox \
541 -icon error \
542 -type ok \
c8c4854b 543 -title [mc "git-gui: fatal error"] \
875b7c93 544 -message "Cannot determine Git version:
54acdd95
SP
545
546$err
547
d6967022
SP
548[appname] requires Git 1.5.0 or later."
549 exit 1
550}
551if {![regsub {^git version } $_git_version {} _git_version]} {
552 catch {wm withdraw .}
875b7c93
SP
553 tk_messageBox \
554 -icon error \
555 -type ok \
c8c4854b 556 -title [mc "git-gui: fatal error"] \
31bb1d1b 557 -message [strcat [mc "Cannot parse Git version string:"] "\n\n$_git_version"]
54acdd95
SP
558 exit 1
559}
301dfaa9
SP
560
561set _real_git_version $_git_version
ec4fceec 562regsub -- {-dirty$} $_git_version {} _git_version
d6967022
SP
563regsub {\.[0-9]+\.g[0-9a-f]+$} $_git_version {} _git_version
564regsub {\.rc[0-9]+$} $_git_version {} _git_version
91464dfb 565regsub {\.GIT$} $_git_version {} _git_version
d6967022 566
301dfaa9
SP
567if {![regexp {^[1-9]+(\.[0-9]+)+$} $_git_version]} {
568 catch {wm withdraw .}
569 if {[tk_messageBox \
570 -icon warning \
571 -type yesno \
572 -default no \
573 -title "[appname]: warning" \
1ac17950 574 -message [mc "Git version cannot be determined.
301dfaa9 575
1ac17950 576%s claims it is version '%s'.
301dfaa9 577
1ac17950 578%s requires at least Git 1.5.0 or later.
301dfaa9 579
1ac17950
CS
580Assume '%s' is version 1.5.0?
581" $_git $_real_git_version [appname] $_real_git_version]] eq {yes}} {
301dfaa9
SP
582 set _git_version 1.5.0
583 } else {
584 exit 1
585 }
586}
587unset _real_git_version
588
d6967022
SP
589proc git-version {args} {
590 global _git_version
591
592 switch [llength $args] {
593 0 {
594 return $_git_version
54acdd95 595 }
d6967022
SP
596
597 2 {
598 set op [lindex $args 0]
599 set vr [lindex $args 1]
600 set cm [package vcompare $_git_version $vr]
601 return [expr $cm $op 0]
602 }
603
604 4 {
605 set type [lindex $args 0]
606 set name [lindex $args 1]
607 set parm [lindex $args 2]
608 set body [lindex $args 3]
609
610 if {($type ne {proc} && $type ne {method})} {
611 error "Invalid arguments to git-version"
612 }
613 if {[llength $body] < 2 || [lindex $body end-1] ne {default}} {
614 error "Last arm of $type $name must be default"
615 }
616
617 foreach {op vr cb} [lrange $body 0 end-2] {
618 if {[git-version $op $vr]} {
619 return [uplevel [list $type $name $parm $cb]]
620 }
621 }
622
623 return [uplevel [list $type $name $parm [lindex $body end]]]
624 }
625
626 default {
627 error "git-version >= x"
628 }
629
630 }
631}
632
633if {[git-version < 1.5]} {
54acdd95 634 catch {wm withdraw .}
875b7c93
SP
635 tk_messageBox \
636 -icon error \
637 -type ok \
c8c4854b 638 -title [mc "git-gui: fatal error"] \
875b7c93 639 -message "[appname] requires Git 1.5.0 or later.
d6967022
SP
640
641You are using [git-version]:
642
643[git --version]"
54acdd95
SP
644 exit 1
645}
54acdd95 646
875b7c93
SP
647######################################################################
648##
649## configure our library
650
875b7c93
SP
651set idx [file join $oguilib tclIndex]
652if {[catch {set fd [open $idx r]} err]} {
653 catch {wm withdraw .}
654 tk_messageBox \
655 -icon error \
656 -type ok \
c8c4854b 657 -title [mc "git-gui: fatal error"] \
875b7c93
SP
658 -message $err
659 exit 1
660}
661if {[gets $fd] eq {# Autogenerated by git-gui Makefile}} {
662 set idx [list]
663 while {[gets $fd n] >= 0} {
664 if {$n ne {} && ![string match #* $n]} {
665 lappend idx $n
666 }
667 }
668} else {
669 set idx {}
670}
671close $fd
672
673if {$idx ne {}} {
674 set loaded [list]
675 foreach p $idx {
676 if {[lsearch -exact $loaded $p] >= 0} continue
677 source [file join $oguilib $p]
678 lappend loaded $p
679 }
680 unset loaded p
681} else {
682 set auto_path [concat [list $oguilib] $auto_path]
683}
fc703c20 684unset -nocomplain idx fd
875b7c93 685
ba7cc660
SP
686######################################################################
687##
688## feature option selection
689
690if {[regexp {^git-(.+)$} [appname] _junk subcommand]} {
691 unset _junk
692} else {
693 set subcommand gui
694}
695if {$subcommand eq {gui.sh}} {
696 set subcommand gui
697}
698if {$subcommand eq {gui} && [llength $argv] > 0} {
699 set subcommand [lindex $argv 0]
700 set argv [lrange $argv 1 end]
701}
702
703enable_option multicommit
704enable_option branch
705enable_option transport
c52c9452 706disable_option bare
ba7cc660
SP
707
708switch -- $subcommand {
709browser -
710blame {
c52c9452
SP
711 enable_option bare
712
ba7cc660
SP
713 disable_option multicommit
714 disable_option branch
715 disable_option transport
716}
717citool {
718 enable_option singlecommit
719
720 disable_option multicommit
721 disable_option branch
722 disable_option transport
723}
724}
725
2d19516d
SP
726######################################################################
727##
728## repository setup
729
c6127856
SP
730if {[catch {
731 set _gitdir $env(GIT_DIR)
732 set _prefix {}
733 }]
734 && [catch {
735 set _gitdir [git rev-parse --git-dir]
736 set _prefix [git rev-parse --show-prefix]
737 } err]} {
44be340e 738 catch {wm withdraw .}
31bb1d1b 739 error_popup [strcat [mc "Cannot find the git directory:"] "\n\n$err"]
2d19516d
SP
740 exit 1
741}
20ddfcaa
SP
742if {![file isdirectory $_gitdir] && [is_Cygwin]} {
743 catch {set _gitdir [exec cygpath --unix $_gitdir]}
744}
c950c66e 745if {![file isdirectory $_gitdir]} {
dbccbbda 746 catch {wm withdraw .}
31bb1d1b 747 error_popup [strcat [mc "Git directory not found:"] "\n\n$_gitdir"]
dbccbbda
SP
748 exit 1
749}
c80d25db
SP
750if {$_prefix ne {}} {
751 regsub -all {[^/]+/} $_prefix ../ cdup
752 if {[catch {cd $cdup} err]} {
753 catch {wm withdraw .}
31bb1d1b 754 error_popup [strcat [mc "Cannot move to top of working directory:"] "\n\n$err"]
c80d25db
SP
755 exit 1
756 }
757 unset cdup
758} elseif {![is_enabled bare]} {
c52c9452
SP
759 if {[lindex [file split $_gitdir] end] ne {.git}} {
760 catch {wm withdraw .}
31bb1d1b 761 error_popup [strcat [mc "Cannot use funny .git directory:"] "\n\n$_gitdir"]
c52c9452
SP
762 exit 1
763 }
764 if {[catch {cd [file dirname $_gitdir]} err]} {
765 catch {wm withdraw .}
31bb1d1b 766 error_popup [strcat [mc "No working directory"] " [file dirname $_gitdir]:\n\n$err"]
c52c9452
SP
767 exit 1
768 }
dbccbbda 769}
c52c9452
SP
770set _reponame [file split [file normalize $_gitdir]]
771if {[lindex $_reponame end] eq {.git}} {
772 set _reponame [lindex $_reponame end-1]
773} else {
774 set _reponame [lindex $_reponame end]
2d19516d 775}
2d19516d 776
372ef954
SP
777######################################################################
778##
779## global init
780
781set current_diff_path {}
782set current_diff_side {}
783set diff_actions [list]
372ef954
SP
784
785set HEAD {}
786set PARENT {}
787set MERGE_HEAD [list]
788set commit_type {}
789set empty_tree {}
790set current_branch {}
d41b43eb 791set is_detached 0
372ef954 792set current_diff_path {}
9c9f5fa9 793set is_3way_diff 0
372ef954
SP
794set selected_commit_type new
795
cb07fc2a
SP
796######################################################################
797##
e210e674 798## task management
cb07fc2a 799
8f52548a 800set rescan_active 0
131f503b 801set diff_active 0
24263b77 802set last_clicked {}
131f503b 803
e210e674
SP
804set disable_on_lock [list]
805set index_lock_type none
806
807proc lock_index {type} {
808 global index_lock_type disable_on_lock
131f503b 809
043f7011 810 if {$index_lock_type eq {none}} {
e210e674
SP
811 set index_lock_type $type
812 foreach w $disable_on_lock {
813 uplevel #0 $w disabled
814 }
815 return 1
53716a7b 816 } elseif {$index_lock_type eq "begin-$type"} {
e210e674 817 set index_lock_type $type
131f503b
SP
818 return 1
819 }
820 return 0
821}
cb07fc2a 822
e210e674
SP
823proc unlock_index {} {
824 global index_lock_type disable_on_lock
825
826 set index_lock_type none
827 foreach w $disable_on_lock {
828 uplevel #0 $w normal
829 }
830}
831
832######################################################################
833##
834## status
835
f18e40a1 836proc repository_state {ctvar hdvar mhvar} {
c950c66e 837 global current_branch
f18e40a1
SP
838 upvar $ctvar ct $hdvar hd $mhvar mh
839
840 set mh [list]
ec6b424a 841
d41b43eb 842 load_current_branch
81347223 843 if {[catch {set hd [git rev-parse --verify HEAD]}]} {
4539eacd 844 set hd {}
ec6b424a 845 set ct initial
f18e40a1
SP
846 return
847 }
848
c2758a17 849 set merge_head [gitdir MERGE_HEAD]
f18e40a1 850 if {[file exists $merge_head]} {
ec6b424a 851 set ct merge
f18e40a1
SP
852 set fd_mh [open $merge_head r]
853 while {[gets $fd_mh line] >= 0} {
854 lappend mh $line
855 }
856 close $fd_mh
857 return
ec6b424a 858 }
f18e40a1
SP
859
860 set ct normal
ec6b424a
SP
861}
862
4539eacd
SP
863proc PARENT {} {
864 global PARENT empty_tree
865
f18e40a1
SP
866 set p [lindex $PARENT 0]
867 if {$p ne {}} {
868 return $p
4539eacd
SP
869 }
870 if {$empty_tree eq {}} {
81347223 871 set empty_tree [git mktree << {}]
4539eacd
SP
872 }
873 return $empty_tree
874}
875
46aaf90b 876proc rescan {after {honor_trustmtime 1}} {
f18e40a1 877 global HEAD PARENT MERGE_HEAD commit_type
699d5601 878 global ui_index ui_workdir ui_comm
8f52548a 879 global rescan_active file_states
cf25ddc8 880 global repo_config
cb07fc2a 881
8f52548a 882 if {$rescan_active > 0 || ![lock_index read]} return
cb07fc2a 883
f18e40a1 884 repository_state newType newHEAD newMERGE_HEAD
4539eacd 885 if {[string match amend* $commit_type]
f18e40a1
SP
886 && $newType eq {normal}
887 && $newHEAD eq $HEAD} {
e57ca85e 888 } else {
f18e40a1
SP
889 set HEAD $newHEAD
890 set PARENT $newHEAD
891 set MERGE_HEAD $newMERGE_HEAD
892 set commit_type $newType
e57ca85e
SP
893 }
894
cb07fc2a 895 array unset file_states
cb07fc2a 896
1e0a92fd
SP
897 if {!$::GITGUI_BCK_exists &&
898 (![$ui_comm edit modified]
899 || [string trim [$ui_comm get 0.0 end]] eq {})} {
b2f3bb1b
SP
900 if {[string match amend* $commit_type]} {
901 } elseif {[load_message GITGUI_MSG]} {
131f503b
SP
902 } elseif {[load_message MERGE_MSG]} {
903 } elseif {[load_message SQUASH_MSG]} {
904 }
b2c6fcf1 905 $ui_comm edit reset
21d7744f 906 $ui_comm edit modified false
131f503b
SP
907 }
908
46aaf90b 909 if {$honor_trustmtime && $repo_config(gui.trustmtime) eq {true}} {
8f52548a 910 rescan_stage2 {} $after
e534f3a8 911 } else {
8f52548a 912 set rescan_active 1
1ac17950 913 ui_status [mc "Refreshing file status..."]
0b812616
SP
914 set fd_rf [git_read update-index \
915 -q \
916 --unmerged \
917 --ignore-missing \
918 --refresh \
919 ]
e534f3a8 920 fconfigure $fd_rf -blocking 0 -translation binary
390adaea 921 fileevent $fd_rf readable \
8f52548a 922 [list rescan_stage2 $fd_rf $after]
e534f3a8 923 }
131f503b
SP
924}
925
8f52548a 926proc rescan_stage2 {fd after} {
4539eacd 927 global rescan_active buf_rdi buf_rdf buf_rlo
131f503b 928
043f7011 929 if {$fd ne {}} {
e534f3a8
SP
930 read $fd
931 if {![eof $fd]} return
932 close $fd
933 }
131f503b 934
0b812616 935 set ls_others [list --exclude-per-directory=.gitignore]
c2758a17 936 set info_exclude [gitdir info exclude]
cb07fc2a
SP
937 if {[file readable $info_exclude]} {
938 lappend ls_others "--exclude-from=$info_exclude"
939 }
94a4dd9b
SP
940 set user_exclude [get_config core.excludesfile]
941 if {$user_exclude ne {} && [file readable $user_exclude]} {
942 lappend ls_others "--exclude-from=$user_exclude"
943 }
cb07fc2a 944
868c8752
SP
945 set buf_rdi {}
946 set buf_rdf {}
947 set buf_rlo {}
948
8f52548a 949 set rescan_active 3
1ac17950 950 ui_status [mc "Scanning for modified files ..."]
0b812616
SP
951 set fd_di [git_read diff-index --cached -z [PARENT]]
952 set fd_df [git_read diff-files -z]
953 set fd_lo [eval git_read ls-files --others -z $ls_others]
cb07fc2a 954
51a989ba
SP
955 fconfigure $fd_di -blocking 0 -translation binary -encoding binary
956 fconfigure $fd_df -blocking 0 -translation binary -encoding binary
957 fconfigure $fd_lo -blocking 0 -translation binary -encoding binary
8f52548a
SP
958 fileevent $fd_di readable [list read_diff_index $fd_di $after]
959 fileevent $fd_df readable [list read_diff_files $fd_df $after]
960 fileevent $fd_lo readable [list read_ls_others $fd_lo $after]
cb07fc2a
SP
961}
962
131f503b 963proc load_message {file} {
c950c66e 964 global ui_comm
131f503b 965
c2758a17 966 set f [gitdir $file]
e57ca85e 967 if {[file isfile $f]} {
131f503b
SP
968 if {[catch {set fd [open $f r]}]} {
969 return 0
970 }
6eb420ef 971 fconfigure $fd -eofchar {}
e57ca85e 972 set content [string trim [read $fd]]
131f503b 973 close $fd
4e55d19a 974 regsub -all -line {[ \r\t]+$} $content {} content
131f503b
SP
975 $ui_comm delete 0.0 end
976 $ui_comm insert end $content
977 return 1
978 }
979 return 0
980}
981
8f52548a 982proc read_diff_index {fd after} {
cb07fc2a
SP
983 global buf_rdi
984
985 append buf_rdi [read $fd]
868c8752
SP
986 set c 0
987 set n [string length $buf_rdi]
988 while {$c < $n} {
989 set z1 [string first "\0" $buf_rdi $c]
990 if {$z1 == -1} break
991 incr z1
992 set z2 [string first "\0" $buf_rdi $z1]
993 if {$z2 == -1} break
994
868c8752 995 incr c
86291555 996 set i [split [string range $buf_rdi $c [expr {$z1 - 2}]] { }]
51a989ba 997 set p [string range $buf_rdi $z1 [expr {$z2 - 1}]]
1461c5f3 998 merge_state \
51a989ba 999 [encoding convertfrom $p] \
86291555
SP
1000 [lindex $i 4]? \
1001 [list [lindex $i 0] [lindex $i 2]] \
1461c5f3
SP
1002 [list]
1003 set c $z2
86291555 1004 incr c
cb07fc2a 1005 }
868c8752
SP
1006 if {$c < $n} {
1007 set buf_rdi [string range $buf_rdi $c end]
1008 } else {
1009 set buf_rdi {}
1010 }
1011
8f52548a 1012 rescan_done $fd buf_rdi $after
cb07fc2a
SP
1013}
1014
8f52548a 1015proc read_diff_files {fd after} {
cb07fc2a
SP
1016 global buf_rdf
1017
1018 append buf_rdf [read $fd]
868c8752
SP
1019 set c 0
1020 set n [string length $buf_rdf]
1021 while {$c < $n} {
1022 set z1 [string first "\0" $buf_rdf $c]
1023 if {$z1 == -1} break
1024 incr z1
1025 set z2 [string first "\0" $buf_rdf $z1]
1026 if {$z2 == -1} break
1027
868c8752 1028 incr c
86291555 1029 set i [split [string range $buf_rdf $c [expr {$z1 - 2}]] { }]
51a989ba 1030 set p [string range $buf_rdf $z1 [expr {$z2 - 1}]]
1461c5f3 1031 merge_state \
51a989ba 1032 [encoding convertfrom $p] \
86291555 1033 ?[lindex $i 4] \
1461c5f3 1034 [list] \
86291555 1035 [list [lindex $i 0] [lindex $i 2]]
1461c5f3 1036 set c $z2
86291555 1037 incr c
868c8752
SP
1038 }
1039 if {$c < $n} {
1040 set buf_rdf [string range $buf_rdf $c end]
1041 } else {
1042 set buf_rdf {}
cb07fc2a 1043 }
868c8752 1044
8f52548a 1045 rescan_done $fd buf_rdf $after
cb07fc2a
SP
1046}
1047
8f52548a 1048proc read_ls_others {fd after} {
cb07fc2a
SP
1049 global buf_rlo
1050
1051 append buf_rlo [read $fd]
1052 set pck [split $buf_rlo "\0"]
1053 set buf_rlo [lindex $pck end]
1054 foreach p [lrange $pck 0 end-1] {
89384101
SP
1055 set p [encoding convertfrom $p]
1056 if {[string index $p end] eq {/}} {
1057 set p [string range $p 0 end-1]
1058 }
1059 merge_state $p ?O
cb07fc2a 1060 }
8f52548a 1061 rescan_done $fd buf_rlo $after
cb07fc2a
SP
1062}
1063
8f52548a 1064proc rescan_done {fd buf after} {
f522c9b5 1065 global rescan_active current_diff_path
f7f8d322 1066 global file_states repo_config
7f1df79b 1067 upvar $buf to_clear
cb07fc2a 1068
f7f8d322
SP
1069 if {![eof $fd]} return
1070 set to_clear {}
1071 close $fd
8f52548a 1072 if {[incr rescan_active -1] > 0} return
93f654df 1073
24263b77 1074 prune_selection
f7f8d322
SP
1075 unlock_index
1076 display_all_files
f522c9b5 1077 if {$current_diff_path ne {}} reshow_diff
8f52548a 1078 uplevel #0 $after
cb07fc2a
SP
1079}
1080
24263b77
SP
1081proc prune_selection {} {
1082 global file_states selected_paths
1083
1084 foreach path [array names selected_paths] {
1085 if {[catch {set still_here $file_states($path)}]} {
1086 unset selected_paths($path)
1087 }
1088 }
1089}
1090
cb07fc2a
SP
1091######################################################################
1092##
f522c9b5 1093## ui helpers
cb07fc2a 1094
f522c9b5
SP
1095proc mapicon {w state path} {
1096 global all_icons
1097
1098 if {[catch {set r $all_icons($state$w)}]} {
1099 puts "error: no icon for $w state={$state} $path"
1100 return file_plain
1101 }
1102 return $r
1103}
cb07fc2a 1104
f522c9b5
SP
1105proc mapdesc {state path} {
1106 global all_descs
03e4ec53 1107
f522c9b5
SP
1108 if {[catch {set r $all_descs($state)}]} {
1109 puts "error: no desc for state={$state} $path"
1110 return $state
1111 }
1112 return $r
1113}
03e4ec53 1114
699d5601 1115proc ui_status {msg} {
51530d17 1116 $::main_status show $msg
699d5601
SP
1117}
1118
1119proc ui_ready {{test {}}} {
1ac17950 1120 $::main_status show [mc "Ready."] $test
699d5601
SP
1121}
1122
f522c9b5
SP
1123proc escape_path {path} {
1124 regsub -all {\\} $path "\\\\" path
1125 regsub -all "\n" $path "\\n" path
1126 return $path
cb07fc2a
SP
1127}
1128
f522c9b5
SP
1129proc short_path {path} {
1130 return [escape_path [lindex [file split $path] end]]
7f1df79b
SP
1131}
1132
f522c9b5
SP
1133set next_icon_id 0
1134set null_sha1 [string repeat 0 40]
16403d0b 1135
f522c9b5
SP
1136proc merge_state {path new_state {head_info {}} {index_info {}}} {
1137 global file_states next_icon_id null_sha1
16403d0b 1138
f522c9b5
SP
1139 set s0 [string index $new_state 0]
1140 set s1 [string index $new_state 1]
16403d0b 1141
f522c9b5
SP
1142 if {[catch {set info $file_states($path)}]} {
1143 set state __
1144 set icon n[incr next_icon_id]
1145 } else {
1146 set state [lindex $info 0]
1147 set icon [lindex $info 1]
1148 if {$head_info eq {}} {set head_info [lindex $info 2]}
1149 if {$index_info eq {}} {set index_info [lindex $info 3]}
1150 }
16403d0b 1151
f522c9b5
SP
1152 if {$s0 eq {?}} {set s0 [string index $state 0]} \
1153 elseif {$s0 eq {_}} {set s0 _}
124355d3 1154
f522c9b5
SP
1155 if {$s1 eq {?}} {set s1 [string index $state 1]} \
1156 elseif {$s1 eq {_}} {set s1 _}
16403d0b 1157
f522c9b5
SP
1158 if {$s0 eq {A} && $s1 eq {_} && $head_info eq {}} {
1159 set head_info [list 0 $null_sha1]
1160 } elseif {$s0 ne {_} && [string index $state 0] eq {_}
1161 && $head_info eq {}} {
1162 set head_info $index_info
1163 }
16403d0b 1164
f522c9b5
SP
1165 set file_states($path) [list $s0$s1 $icon \
1166 $head_info $index_info \
1167 ]
1168 return $state
1169}
cb07fc2a 1170
f522c9b5
SP
1171proc display_file_helper {w path icon_name old_m new_m} {
1172 global file_lists
cb07fc2a 1173
f522c9b5 1174 if {$new_m eq {_}} {
156b2921 1175 set lno [lsearch -sorted -exact $file_lists($w) $path]
5f8b70b1 1176 if {$lno >= 0} {
f522c9b5 1177 set file_lists($w) [lreplace $file_lists($w) $lno $lno]
5f8b70b1 1178 incr lno
f522c9b5
SP
1179 $w conf -state normal
1180 $w delete $lno.0 [expr {$lno + 1}].0
1181 $w conf -state disabled
03e4ec53 1182 }
f522c9b5
SP
1183 } elseif {$old_m eq {_} && $new_m ne {_}} {
1184 lappend file_lists($w) $path
1185 set file_lists($w) [lsort -unique $file_lists($w)]
1186 set lno [lsearch -sorted -exact $file_lists($w) $path]
1187 incr lno
1188 $w conf -state normal
1189 $w image create $lno.0 \
1190 -align center -padx 5 -pady 1 \
1191 -name $icon_name \
1192 -image [mapicon $w $new_m $path]
1193 $w insert $lno.1 "[escape_path $path]\n"
1194 $w conf -state disabled
1195 } elseif {$old_m ne $new_m} {
1196 $w conf -state normal
1197 $w image conf $icon_name -image [mapicon $w $new_m $path]
1198 $w conf -state disabled
03e4ec53 1199 }
f522c9b5
SP
1200}
1201
1202proc display_file {path state} {
1203 global file_states selected_paths
1204 global ui_index ui_workdir
03e4ec53 1205
f522c9b5 1206 set old_m [merge_state $path $state]
cb07fc2a 1207 set s $file_states($path)
f522c9b5
SP
1208 set new_m [lindex $s 0]
1209 set icon_name [lindex $s 1]
82cb8706 1210
f522c9b5
SP
1211 set o [string index $old_m 0]
1212 set n [string index $new_m 0]
1213 if {$o eq {U}} {
1214 set o _
1215 }
1216 if {$n eq {U}} {
1217 set n _
cb07fc2a 1218 }
f522c9b5 1219 display_file_helper $ui_index $path $icon_name $o $n
cb07fc2a 1220
f522c9b5
SP
1221 if {[string index $old_m 0] eq {U}} {
1222 set o U
1223 } else {
1224 set o [string index $old_m 1]
82cb8706 1225 }
f522c9b5
SP
1226 if {[string index $new_m 0] eq {U}} {
1227 set n U
1228 } else {
1229 set n [string index $new_m 1]
82cb8706 1230 }
f522c9b5
SP
1231 display_file_helper $ui_workdir $path $icon_name $o $n
1232
1233 if {$new_m eq {__}} {
1234 unset file_states($path)
1235 catch {unset selected_paths($path)}
cb07fc2a 1236 }
f522c9b5 1237}
cb07fc2a 1238
f522c9b5
SP
1239proc display_all_files_helper {w path icon_name m} {
1240 global file_lists
1241
1242 lappend file_lists($w) $path
1243 set lno [expr {[lindex [split [$w index end] .] 0] - 1}]
1244 $w image create end \
1245 -align center -padx 5 -pady 1 \
1246 -name $icon_name \
1247 -image [mapicon $w $m $path]
1248 $w insert end "[escape_path $path]\n"
cb07fc2a
SP
1249}
1250
f522c9b5
SP
1251proc display_all_files {} {
1252 global ui_index ui_workdir
1253 global file_states file_lists
1254 global last_clicked
cb07fc2a 1255
f522c9b5
SP
1256 $ui_index conf -state normal
1257 $ui_workdir conf -state normal
cb07fc2a 1258
f522c9b5
SP
1259 $ui_index delete 0.0 end
1260 $ui_workdir delete 0.0 end
1261 set last_clicked {}
cb07fc2a 1262
f522c9b5
SP
1263 set file_lists($ui_index) [list]
1264 set file_lists($ui_workdir) [list]
16403d0b 1265
f522c9b5
SP
1266 foreach path [lsort [array names file_states]] {
1267 set s $file_states($path)
1268 set m [lindex $s 0]
1269 set icon_name [lindex $s 1]
1270
1271 set s [string index $m 0]
1272 if {$s ne {U} && $s ne {_}} {
1273 display_all_files_helper $ui_index $path \
1274 $icon_name $s
16403d0b 1275 }
cb07fc2a 1276
f522c9b5
SP
1277 if {[string index $m 0] eq {U}} {
1278 set s U
1279 } else {
1280 set s [string index $m 1]
a25c5189 1281 }
f522c9b5
SP
1282 if {$s ne {_}} {
1283 display_all_files_helper $ui_workdir $path \
1284 $icon_name $s
a25c5189
SP
1285 }
1286 }
1287
f522c9b5
SP
1288 $ui_index conf -state disabled
1289 $ui_workdir conf -state disabled
a25c5189
SP
1290}
1291
ec6b424a
SP
1292######################################################################
1293##
f522c9b5 1294## icons
ec6b424a 1295
f522c9b5
SP
1296set filemask {
1297#define mask_width 14
1298#define mask_height 15
1299static unsigned char mask_bits[] = {
1300 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1301 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f,
1302 0xfe, 0x1f, 0xfe, 0x1f, 0xfe, 0x1f};
1303}
cb07fc2a
SP
1304
1305image create bitmap file_plain -background white -foreground black -data {
1306#define plain_width 14
1307#define plain_height 15
1308static unsigned char plain_bits[] = {
1309 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1310 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10, 0x02, 0x10,
1311 0x02, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1312} -maskdata $filemask
1313
1314image create bitmap file_mod -background white -foreground blue -data {
1315#define mod_width 14
1316#define mod_height 15
1317static unsigned char mod_bits[] = {
1318 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1319 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1320 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1321} -maskdata $filemask
1322
131f503b
SP
1323image create bitmap file_fulltick -background white -foreground "#007000" -data {
1324#define file_fulltick_width 14
1325#define file_fulltick_height 15
1326static unsigned char file_fulltick_bits[] = {
cb07fc2a
SP
1327 0xfe, 0x01, 0x02, 0x1a, 0x02, 0x0c, 0x02, 0x0c, 0x02, 0x16, 0x02, 0x16,
1328 0x02, 0x13, 0x00, 0x13, 0x86, 0x11, 0x8c, 0x11, 0xd8, 0x10, 0xf2, 0x10,
1329 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1330} -maskdata $filemask
1331
1332image create bitmap file_parttick -background white -foreground "#005050" -data {
1333#define parttick_width 14
1334#define parttick_height 15
1335static unsigned char parttick_bits[] = {
1336 0xfe, 0x01, 0x02, 0x03, 0x7a, 0x05, 0x02, 0x09, 0x7a, 0x1f, 0x02, 0x10,
1337 0x7a, 0x14, 0x02, 0x16, 0x02, 0x13, 0x8a, 0x11, 0xda, 0x10, 0x72, 0x10,
1338 0x22, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1339} -maskdata $filemask
1340
1341image create bitmap file_question -background white -foreground black -data {
1342#define file_question_width 14
1343#define file_question_height 15
1344static unsigned char file_question_bits[] = {
1345 0xfe, 0x01, 0x02, 0x02, 0xe2, 0x04, 0xf2, 0x09, 0x1a, 0x1b, 0x0a, 0x13,
1346 0x82, 0x11, 0xc2, 0x10, 0x62, 0x10, 0x62, 0x10, 0x02, 0x10, 0x62, 0x10,
1347 0x62, 0x10, 0x02, 0x10, 0xfe, 0x1f};
1348} -maskdata $filemask
1349
1350image create bitmap file_removed -background white -foreground red -data {
1351#define file_removed_width 14
1352#define file_removed_height 15
1353static unsigned char file_removed_bits[] = {
1354 0xfe, 0x01, 0x02, 0x03, 0x02, 0x05, 0x02, 0x09, 0x02, 0x1f, 0x02, 0x10,
1355 0x1a, 0x16, 0x32, 0x13, 0xe2, 0x11, 0xc2, 0x10, 0xe2, 0x11, 0x32, 0x13,
1356 0x1a, 0x16, 0x02, 0x10, 0xfe, 0x1f};
1357} -maskdata $filemask
1358
1359image create bitmap file_merge -background white -foreground blue -data {
1360#define file_merge_width 14
1361#define file_merge_height 15
1362static unsigned char file_merge_bits[] = {
1363 0xfe, 0x01, 0x02, 0x03, 0x62, 0x05, 0x62, 0x09, 0x62, 0x1f, 0x62, 0x10,
1364 0xfa, 0x11, 0xf2, 0x10, 0x62, 0x10, 0x02, 0x10, 0xfa, 0x17, 0x02, 0x10,
1365 0xfa, 0x17, 0x02, 0x10, 0xfe, 0x1f};
1366} -maskdata $filemask
1367
6b292675 1368set ui_index .vpane.files.index.list
0812665e 1369set ui_workdir .vpane.files.workdir.list
21e409ad
SP
1370
1371set all_icons(_$ui_index) file_plain
1372set all_icons(A$ui_index) file_fulltick
1373set all_icons(M$ui_index) file_fulltick
1374set all_icons(D$ui_index) file_removed
1375set all_icons(U$ui_index) file_merge
1376
1377set all_icons(_$ui_workdir) file_plain
1378set all_icons(M$ui_workdir) file_mod
1379set all_icons(D$ui_workdir) file_question
3b4db3c1 1380set all_icons(U$ui_workdir) file_merge
21e409ad
SP
1381set all_icons(O$ui_workdir) file_plain
1382
131f503b 1383set max_status_desc 0
cb07fc2a 1384foreach i {
1ac17950
CS
1385 {__ {mc "Unmodified"}}
1386
1387 {_M {mc "Modified, not staged"}}
1388 {M_ {mc "Staged for commit"}}
1389 {MM {mc "Portions staged for commit"}}
1390 {MD {mc "Staged for commit, missing"}}
1391
1392 {_O {mc "Untracked, not staged"}}
1393 {A_ {mc "Staged for commit"}}
1394 {AM {mc "Portions staged for commit"}}
1395 {AD {mc "Staged for commit, missing"}}
1396
1397 {_D {mc "Missing"}}
1398 {D_ {mc "Staged for removal"}}
1399 {DO {mc "Staged for removal, still present"}}
1400
1401 {U_ {mc "Requires merge resolution"}}
1402 {UU {mc "Requires merge resolution"}}
1403 {UM {mc "Requires merge resolution"}}
1404 {UD {mc "Requires merge resolution"}}
cb07fc2a 1405 } {
1ac17950
CS
1406 set text [eval [lindex $i 1]]
1407 if {$max_status_desc < [string length $text]} {
1408 set max_status_desc [string length $text]
131f503b 1409 }
1ac17950 1410 set all_descs([lindex $i 0]) $text
cb07fc2a 1411}
21e409ad 1412unset i
cb07fc2a
SP
1413
1414######################################################################
1415##
1416## util
1417
16fccd7a
SP
1418proc bind_button3 {w cmd} {
1419 bind $w <Any-Button-3> $cmd
1420 if {[is_MacOSX]} {
51b8c502
VJ
1421 # Mac OS X sends Button-2 on right click through three-button mouse,
1422 # or through trackpad right-clicking (two-finger touch + click).
1423 bind $w <Any-Button-2> $cmd
16fccd7a
SP
1424 bind $w <Control-Button-1> $cmd
1425 }
1426}
1427
35874c16
SP
1428proc scrollbar2many {list mode args} {
1429 foreach w $list {eval $w $mode $args}
1430}
1431
1432proc many2scrollbar {list mode sb top bottom} {
1433 $sb set $top $bottom
1434 foreach w $list {$w $mode moveto $top}
1435}
1436
b4946930
SP
1437proc incr_font_size {font {amt 1}} {
1438 set sz [font configure $font -size]
1439 incr sz $amt
1440 font configure $font -size $sz
1441 font configure ${font}bold -size $sz
debcd0fd 1442 font configure ${font}italic -size $sz
b4946930
SP
1443}
1444
cb07fc2a
SP
1445######################################################################
1446##
1447## ui commands
1448
1ac17950 1449set starting_gitk_msg [mc "Starting gitk... please wait..."]
cc4b1c02 1450
d0752429 1451proc do_gitk {revs} {
20ddfcaa
SP
1452 # -- Always start gitk through whatever we were loaded with. This
1453 # lets us bypass using shell process on Windows systems.
1454 #
02efd48f
SP
1455 set exe [file join [file dirname $::_git] gitk]
1456 set cmd [list [info nameofexecutable] $exe]
7aecb128 1457 if {! [file exists $exe]} {
1ac17950 1458 error_popup [mc "Unable to start gitk:\n\n%s does not exist" $exe]
cb07fc2a 1459 } else {
02efd48f
SP
1460 eval exec $cmd $revs &
1461 ui_status $::starting_gitk_msg
d0752429 1462 after 10000 {
699d5601 1463 ui_ready $starting_gitk_msg
d0752429 1464 }
cb07fc2a
SP
1465 }
1466}
1467
b5834d70 1468set is_quitting 0
c4fe7728 1469
cb07fc2a 1470proc do_quit {} {
c950c66e 1471 global ui_comm is_quitting repo_config commit_type
4578c5cb 1472 global GITGUI_BCK_exists GITGUI_BCK_i
c4fe7728 1473
b5834d70
SP
1474 if {$is_quitting} return
1475 set is_quitting 1
131f503b 1476
db7f34d4
SP
1477 if {[winfo exists $ui_comm]} {
1478 # -- Stash our current commit buffer.
1479 #
1480 set save [gitdir GITGUI_MSG]
4578c5cb
SP
1481 if {$GITGUI_BCK_exists && ![$ui_comm edit modified]} {
1482 file rename -force [gitdir GITGUI_BCK] $save
1483 set GITGUI_BCK_exists 0
db7f34d4 1484 } else {
4578c5cb
SP
1485 set msg [string trim [$ui_comm get 0.0 end]]
1486 regsub -all -line {[ \r\t]+$} $msg {} msg
1487 if {(![string match amend* $commit_type]
1488 || [$ui_comm edit modified])
1489 && $msg ne {}} {
1490 catch {
1491 set fd [open $save w]
1492 puts -nonewline $fd $msg
1493 close $fd
1494 }
1495 } else {
1496 catch {file delete $save}
1497 }
1498 }
1499
1500 # -- Remove our editor backup, its not needed.
1501 #
1502 after cancel $GITGUI_BCK_i
1503 if {$GITGUI_BCK_exists} {
1504 catch {file delete [gitdir GITGUI_BCK]}
131f503b 1505 }
131f503b 1506
db7f34d4
SP
1507 # -- Stash our current window geometry into this repository.
1508 #
1509 set cfg_geometry [list]
1510 lappend cfg_geometry [wm geometry .]
1511 lappend cfg_geometry [lindex [.vpane sash coord 0] 1]
1512 lappend cfg_geometry [lindex [.vpane.files sash coord 0] 0]
1513 if {[catch {set rc_geometry $repo_config(gui.geometry)}]} {
1514 set rc_geometry {}
1515 }
1516 if {$cfg_geometry ne $rc_geometry} {
81347223 1517 catch {git config gui.geometry $cfg_geometry}
db7f34d4 1518 }
51f4d16b
SP
1519 }
1520
cb07fc2a
SP
1521 destroy .
1522}
1523
1524proc do_rescan {} {
699d5601 1525 rescan ui_ready
cb07fc2a
SP
1526}
1527
6e27d826 1528proc do_commit {} {
ec6b424a 1529 commit_tree
6e27d826
SP
1530}
1531
24263b77 1532proc toggle_or_diff {w x y} {
20a53c02 1533 global file_states file_lists current_diff_path ui_index ui_workdir
24263b77 1534 global last_clicked selected_paths
131f503b 1535
cb07fc2a
SP
1536 set pos [split [$w index @$x,$y] .]
1537 set lno [lindex $pos 0]
1538 set col [lindex $pos 1]
24263b77
SP
1539 set path [lindex $file_lists($w) [expr {$lno - 1}]]
1540 if {$path eq {}} {
1541 set last_clicked {}
1542 return
1543 }
1544
1545 set last_clicked [list $w $lno]
1546 array unset selected_paths
1547 $ui_index tag remove in_sel 0.0 end
0812665e 1548 $ui_workdir tag remove in_sel 0.0 end
cb07fc2a 1549
24263b77 1550 if {$col == 0} {
20a53c02 1551 if {$current_diff_path eq $path} {
32e0bcab
SP
1552 set after {reshow_diff;}
1553 } else {
1554 set after {}
1555 }
de5f6d5d 1556 if {$w eq $ui_index} {
74d18d2e 1557 update_indexinfo \
93e912c5 1558 "Unstaging [short_path $path] from commit" \
74d18d2e 1559 [list $path] \
699d5601 1560 [concat $after [list ui_ready]]
de5f6d5d 1561 } elseif {$w eq $ui_workdir} {
74d18d2e 1562 update_index \
4d583c86 1563 "Adding [short_path $path]" \
74d18d2e 1564 [list $path] \
699d5601 1565 [concat $after [list ui_ready]]
74d18d2e 1566 }
24263b77 1567 } else {
03e4ec53 1568 show_diff $path $w $lno
cb07fc2a
SP
1569 }
1570}
1571
24263b77 1572proc add_one_to_selection {w x y} {
833eda73 1573 global file_lists last_clicked selected_paths
7f1df79b 1574
833eda73 1575 set lno [lindex [split [$w index @$x,$y] .] 0]
24263b77
SP
1576 set path [lindex $file_lists($w) [expr {$lno - 1}]]
1577 if {$path eq {}} {
1578 set last_clicked {}
1579 return
1580 }
cb07fc2a 1581
833eda73
SP
1582 if {$last_clicked ne {}
1583 && [lindex $last_clicked 0] ne $w} {
1584 array unset selected_paths
1585 [lindex $last_clicked 0] tag remove in_sel 0.0 end
1586 }
1587
24263b77
SP
1588 set last_clicked [list $w $lno]
1589 if {[catch {set in_sel $selected_paths($path)}]} {
1590 set in_sel 0
1591 }
1592 if {$in_sel} {
1593 unset selected_paths($path)
1594 $w tag remove in_sel $lno.0 [expr {$lno + 1}].0
1595 } else {
1596 set selected_paths($path) 1
1597 $w tag add in_sel $lno.0 [expr {$lno + 1}].0
1598 }
1599}
1600
1601proc add_range_to_selection {w x y} {
833eda73 1602 global file_lists last_clicked selected_paths
24263b77
SP
1603
1604 if {[lindex $last_clicked 0] ne $w} {
1605 toggle_or_diff $w $x $y
1606 return
cb07fc2a 1607 }
24263b77 1608
833eda73 1609 set lno [lindex [split [$w index @$x,$y] .] 0]
24263b77
SP
1610 set lc [lindex $last_clicked 1]
1611 if {$lc < $lno} {
1612 set begin $lc
1613 set end $lno
1614 } else {
1615 set begin $lno
1616 set end $lc
1617 }
1618
1619 foreach path [lrange $file_lists($w) \
1620 [expr {$begin - 1}] \
1621 [expr {$end - 1}]] {
1622 set selected_paths($path) 1
1623 }
1624 $w tag add in_sel $begin.0 [expr {$end + 1}].0
cb07fc2a
SP
1625}
1626
1627######################################################################
1628##
92148d80 1629## config defaults
cb07fc2a 1630
00f949fb 1631set cursor_ptr arrow
b4946930
SP
1632font create font_diff -family Courier -size 10
1633font create font_ui
1634catch {
1635 label .dummy
1636 eval font configure font_ui [font actual [.dummy cget -font]]
1637 destroy .dummy
1638}
1639
debcd0fd 1640font create font_uiitalic
92148d80
SP
1641font create font_uibold
1642font create font_diffbold
debcd0fd 1643font create font_diffitalic
cb07fc2a 1644
7416bbc6
SP
1645foreach class {Button Checkbutton Entry Label
1646 Labelframe Listbox Menu Message
6309172e 1647 Radiobutton Spinbox Text} {
7416bbc6
SP
1648 option add *$class.font font_ui
1649}
1650unset class
1651
f60fdd0e
SP
1652if {[is_Windows] || [is_MacOSX]} {
1653 option add *Menu.tearOff 0
1654}
1655
3d5793bf 1656if {[is_MacOSX]} {
16fccd7a
SP
1657 set M1B M1
1658 set M1T Cmd
b673bbc5 1659} else {
3d5793bf
SP
1660 set M1B Control
1661 set M1T Ctrl
e210e674
SP
1662}
1663
92148d80
SP
1664proc apply_config {} {
1665 global repo_config font_descs
1666
1667 foreach option $font_descs {
1668 set name [lindex $option 0]
1669 set font [lindex $option 1]
1670 if {[catch {
1671 foreach {cn cv} $repo_config(gui.$name) {
ae0754ac 1672 font configure $font $cn $cv -weight normal
92148d80
SP
1673 }
1674 } err]} {
31bb1d1b 1675 error_popup [strcat [mc "Invalid font specified in %s:" "gui.$name"] "\n\n$err"]
92148d80
SP
1676 }
1677 foreach {cn cv} [font configure $font] {
1678 font configure ${font}bold $cn $cv
debcd0fd 1679 font configure ${font}italic $cn $cv
92148d80
SP
1680 }
1681 font configure ${font}bold -weight bold
debcd0fd 1682 font configure ${font}italic -slant italic
92148d80
SP
1683 }
1684}
1685
fc8ce406 1686set default_config(merge.diffstat) true
6b90d391 1687set default_config(merge.summary) false
c539449b 1688set default_config(merge.verbosity) 2
db453781
SP
1689set default_config(user.name) {}
1690set default_config(user.email) {}
1691
7cf04426 1692set default_config(gui.matchtrackingbranch) false
5b6ffff6 1693set default_config(gui.pruneduringfetch) false
92148d80 1694set default_config(gui.trustmtime) false
358d8de8 1695set default_config(gui.diffcontext) 5
c845692d 1696set default_config(gui.newbranchtemplate) {}
92148d80
SP
1697set default_config(gui.fontui) [font configure font_ui]
1698set default_config(gui.fontdiff) [font configure font_diff]
1699set font_descs {
1ac17950
CS
1700 {fontui font_ui {mc "Main Font"}}
1701 {fontdiff font_diff {mc "Diff/Console Font"}}
92148d80 1702}
6bbd1cb9 1703load_config 0
92148d80
SP
1704apply_config
1705
1706######################################################################
1707##
1708## ui construction
1709
2ebba528
SP
1710set ui_comm {}
1711
cb07fc2a 1712# -- Menu Bar
a49c67d1 1713#
b4946930 1714menu .mbar -tearoff 0
1ac17950
CS
1715.mbar add cascade -label [mc Repository] -menu .mbar.repository
1716.mbar add cascade -label [mc Edit] -menu .mbar.edit
64a906f8 1717if {[is_enabled branch]} {
1ac17950 1718 .mbar add cascade -label [mc Branch] -menu .mbar.branch
700a65ce 1719}
2ebba528 1720if {[is_enabled multicommit] || [is_enabled singlecommit]} {
a9813cb5 1721 .mbar add cascade -label [mc Commit@@noun] -menu .mbar.commit
2ebba528 1722}
64a906f8 1723if {[is_enabled transport]} {
1ac17950
CS
1724 .mbar add cascade -label [mc Merge] -menu .mbar.merge
1725 .mbar add cascade -label [mc Fetch] -menu .mbar.fetch
1726 .mbar add cascade -label [mc Push] -menu .mbar.push
4ccdab02 1727}
cb07fc2a
SP
1728. configure -menu .mbar
1729
a4abfa62 1730# -- Repository Menu
a49c67d1 1731#
a4abfa62 1732menu .mbar.repository
35874c16
SP
1733
1734.mbar.repository add command \
1ac17950 1735 -label [mc "Browse Current Branch's Files"] \
c74b6c66 1736 -command {browser::new $current_branch}
a8139888 1737set ui_browse_current [.mbar.repository index last]
8e891fac 1738.mbar.repository add command \
1ac17950 1739 -label [mc "Browse Branch Files..."] \
8e891fac 1740 -command browser_open::dialog
35874c16
SP
1741.mbar.repository add separator
1742
d0752429 1743.mbar.repository add command \
1ac17950 1744 -label [mc "Visualize Current Branch's History"] \
7416bbc6 1745 -command {do_gitk $current_branch}
a8139888 1746set ui_visualize_current [.mbar.repository index last]
5753ef1a 1747.mbar.repository add command \
1ac17950 1748 -label [mc "Visualize All Branch History"] \
7416bbc6 1749 -command {do_gitk --all}
d0752429 1750.mbar.repository add separator
75e355d6 1751
a8139888
SP
1752proc current_branch_write {args} {
1753 global current_branch
1754 .mbar.repository entryconf $::ui_browse_current \
1ac17950 1755 -label [mc "Browse %s's Files" $current_branch]
a8139888 1756 .mbar.repository entryconf $::ui_visualize_current \
1ac17950 1757 -label [mc "Visualize %s's History" $current_branch]
a8139888
SP
1758}
1759trace add variable current_branch write current_branch_write
1760
cf25ddc8 1761if {[is_enabled multicommit]} {
1ac17950 1762 .mbar.repository add command -label [mc "Database Statistics"] \
7416bbc6 1763 -command do_stats
0fd49d0a 1764
1ac17950 1765 .mbar.repository add command -label [mc "Compress Database"] \
7416bbc6 1766 -command do_gc
4aca740b 1767
1ac17950 1768 .mbar.repository add command -label [mc "Verify Database"] \
7416bbc6 1769 -command do_fsck_objects
444f92d0 1770
a4abfa62 1771 .mbar.repository add separator
75e355d6 1772
20ddfcaa
SP
1773 if {[is_Cygwin]} {
1774 .mbar.repository add command \
1ac17950 1775 -label [mc "Create Desktop Icon"] \
7416bbc6 1776 -command do_cygwin_shortcut
20ddfcaa 1777 } elseif {[is_Windows]} {
a4abfa62 1778 .mbar.repository add command \
1ac17950 1779 -label [mc "Create Desktop Icon"] \
7416bbc6 1780 -command do_windows_shortcut
06c31115 1781 } elseif {[is_MacOSX]} {
a4abfa62 1782 .mbar.repository add command \
1ac17950 1783 -label [mc "Create Desktop Icon"] \
7416bbc6 1784 -command do_macosx_app
4aca740b 1785 }
4ccdab02 1786}
85ab313e 1787
1ac17950 1788.mbar.repository add command -label [mc Quit] \
cb07fc2a 1789 -command do_quit \
7416bbc6 1790 -accelerator $M1T-Q
cb07fc2a 1791
9861671d
SP
1792# -- Edit Menu
1793#
1794menu .mbar.edit
1ac17950 1795.mbar.edit add command -label [mc Undo] \
9861671d 1796 -command {catch {[focus] edit undo}} \
7416bbc6 1797 -accelerator $M1T-Z
1ac17950 1798.mbar.edit add command -label [mc Redo] \
9861671d 1799 -command {catch {[focus] edit redo}} \
7416bbc6 1800 -accelerator $M1T-Y
9861671d 1801.mbar.edit add separator
1ac17950 1802.mbar.edit add command -label [mc Cut] \
9861671d 1803 -command {catch {tk_textCut [focus]}} \
7416bbc6 1804 -accelerator $M1T-X
1ac17950 1805.mbar.edit add command -label [mc Copy] \
9861671d 1806 -command {catch {tk_textCopy [focus]}} \
7416bbc6 1807 -accelerator $M1T-C
1ac17950 1808.mbar.edit add command -label [mc Paste] \
9861671d 1809 -command {catch {tk_textPaste [focus]; [focus] see insert}} \
7416bbc6 1810 -accelerator $M1T-V
1ac17950 1811.mbar.edit add command -label [mc Delete] \
9861671d 1812 -command {catch {[focus] delete sel.first sel.last}} \
7416bbc6 1813 -accelerator Del
9861671d 1814.mbar.edit add separator
1ac17950 1815.mbar.edit add command -label [mc "Select All"] \
9861671d 1816 -command {catch {[focus] tag add sel 0.0 end}} \
7416bbc6 1817 -accelerator $M1T-A
9861671d 1818
85ab313e
SP
1819# -- Branch Menu
1820#
64a906f8 1821if {[is_enabled branch]} {
700a65ce
SP
1822 menu .mbar.branch
1823
1ac17950 1824 .mbar.branch add command -label [mc "Create..."] \
b1fa2bff 1825 -command branch_create::dialog \
7416bbc6 1826 -accelerator $M1T-N
700a65ce
SP
1827 lappend disable_on_lock [list .mbar.branch entryconf \
1828 [.mbar.branch index last] -state]
1829
1ac17950 1830 .mbar.branch add command -label [mc "Checkout..."] \
d41b43eb
SP
1831 -command branch_checkout::dialog \
1832 -accelerator $M1T-O
1833 lappend disable_on_lock [list .mbar.branch entryconf \
1834 [.mbar.branch index last] -state]
1835
1ac17950 1836 .mbar.branch add command -label [mc "Rename..."] \
61f82ce7
SP
1837 -command branch_rename::dialog
1838 lappend disable_on_lock [list .mbar.branch entryconf \
1839 [.mbar.branch index last] -state]
1840
1ac17950 1841 .mbar.branch add command -label [mc "Delete..."] \
3206c63d 1842 -command branch_delete::dialog
700a65ce
SP
1843 lappend disable_on_lock [list .mbar.branch entryconf \
1844 [.mbar.branch index last] -state]
fd234dfd 1845
1ac17950 1846 .mbar.branch add command -label [mc "Reset..."] \
a6c9b081 1847 -command merge::reset_hard
fd234dfd
SP
1848 lappend disable_on_lock [list .mbar.branch entryconf \
1849 [.mbar.branch index last] -state]
700a65ce
SP
1850}
1851
cb07fc2a 1852# -- Commit Menu
a49c67d1 1853#
2ebba528
SP
1854if {[is_enabled multicommit] || [is_enabled singlecommit]} {
1855 menu .mbar.commit
1856
1857 .mbar.commit add radiobutton \
1ac17950 1858 -label [mc "New Commit"] \
2ebba528
SP
1859 -command do_select_commit_type \
1860 -variable selected_commit_type \
7416bbc6 1861 -value new
2ebba528
SP
1862 lappend disable_on_lock \
1863 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 1864
2ebba528 1865 .mbar.commit add radiobutton \
1ac17950 1866 -label [mc "Amend Last Commit"] \
2ebba528
SP
1867 -command do_select_commit_type \
1868 -variable selected_commit_type \
7416bbc6 1869 -value amend
2ebba528
SP
1870 lappend disable_on_lock \
1871 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 1872
2ebba528 1873 .mbar.commit add separator
24ac9b75 1874
1ac17950 1875 .mbar.commit add command -label [mc Rescan] \
2ebba528 1876 -command do_rescan \
7416bbc6 1877 -accelerator F5
2ebba528
SP
1878 lappend disable_on_lock \
1879 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 1880
1ac17950 1881 .mbar.commit add command -label [mc "Stage To Commit"] \
7416bbc6 1882 -command do_add_selection
2ebba528
SP
1883 lappend disable_on_lock \
1884 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 1885
1ac17950 1886 .mbar.commit add command -label [mc "Stage Changed Files To Commit"] \
2ebba528 1887 -command do_add_all \
7416bbc6 1888 -accelerator $M1T-I
2ebba528
SP
1889 lappend disable_on_lock \
1890 [list .mbar.commit entryconf [.mbar.commit index last] -state]
24ac9b75 1891
1ac17950 1892 .mbar.commit add command -label [mc "Unstage From Commit"] \
7416bbc6 1893 -command do_unstage_selection
2ebba528
SP
1894 lappend disable_on_lock \
1895 [list .mbar.commit entryconf [.mbar.commit index last] -state]
e734817d 1896
1ac17950 1897 .mbar.commit add command -label [mc "Revert Changes"] \
7416bbc6 1898 -command do_revert_selection
2ebba528
SP
1899 lappend disable_on_lock \
1900 [list .mbar.commit entryconf [.mbar.commit index last] -state]
e734817d 1901
2ebba528 1902 .mbar.commit add separator
1461c5f3 1903
1ac17950 1904 .mbar.commit add command -label [mc "Sign Off"] \
2ebba528 1905 -command do_signoff \
7416bbc6 1906 -accelerator $M1T-S
24ac9b75 1907
a9813cb5 1908 .mbar.commit add command -label [mc Commit@@verb] \
2ebba528 1909 -command do_commit \
7416bbc6 1910 -accelerator $M1T-Return
2ebba528
SP
1911 lappend disable_on_lock \
1912 [list .mbar.commit entryconf [.mbar.commit index last] -state]
1913}
cb07fc2a 1914
9b28a8b9
SP
1915# -- Merge Menu
1916#
1917if {[is_enabled branch]} {
1918 menu .mbar.merge
1ac17950 1919 .mbar.merge add command -label [mc "Local Merge..."] \
a870ddc0
SP
1920 -command merge::dialog \
1921 -accelerator $M1T-M
9b28a8b9
SP
1922 lappend disable_on_lock \
1923 [list .mbar.merge entryconf [.mbar.merge index last] -state]
1ac17950 1924 .mbar.merge add command -label [mc "Abort Merge..."] \
a6c9b081 1925 -command merge::reset_hard
9b28a8b9
SP
1926 lappend disable_on_lock \
1927 [list .mbar.merge entryconf [.mbar.merge index last] -state]
9b28a8b9
SP
1928}
1929
1930# -- Transport Menu
1931#
1932if {[is_enabled transport]} {
1933 menu .mbar.fetch
1934
1935 menu .mbar.push
1ac17950 1936 .mbar.push add command -label [mc "Push..."] \
840bcfa7
SP
1937 -command do_push_anywhere \
1938 -accelerator $M1T-P
1ac17950 1939 .mbar.push add command -label [mc "Delete..."] \
aa252f19 1940 -command remote_branch_delete::dialog
9b28a8b9
SP
1941}
1942
0c8d7839
SP
1943if {[is_MacOSX]} {
1944 # -- Apple Menu (Mac OS X only)
1945 #
1ac17950 1946 .mbar add cascade -label [mc Apple] -menu .mbar.apple
0c8d7839
SP
1947 menu .mbar.apple
1948
1ac17950 1949 .mbar.apple add command -label [mc "About %s" [appname]] \
7416bbc6 1950 -command do_about
1ac17950 1951 .mbar.apple add command -label [mc "Options..."] \
7416bbc6 1952 -command do_options
0c8d7839
SP
1953} else {
1954 # -- Edit Menu
1955 #
1956 .mbar.edit add separator
1ac17950 1957 .mbar.edit add command -label [mc "Options..."] \
7416bbc6 1958 -command do_options
273984fc 1959}
557afe82 1960
273984fc
SP
1961# -- Help Menu
1962#
1ac17950 1963.mbar add cascade -label [mc Help] -menu .mbar.help
273984fc 1964menu .mbar.help
0c8d7839 1965
273984fc 1966if {![is_MacOSX]} {
1ac17950 1967 .mbar.help add command -label [mc "About %s" [appname]] \
7416bbc6 1968 -command do_about
0c8d7839 1969}
82aa2354 1970
273984fc
SP
1971set browser {}
1972catch {set browser $repo_config(instaweb.browser)}
20ddfcaa 1973set doc_path [file dirname [gitexec]]
273984fc
SP
1974set doc_path [file join $doc_path Documentation index.html]
1975
20ddfcaa 1976if {[is_Cygwin]} {
ee405993 1977 set doc_path [exec cygpath --mixed $doc_path]
273984fc
SP
1978}
1979
1980if {$browser eq {}} {
1981 if {[is_MacOSX]} {
1982 set browser open
20ddfcaa 1983 } elseif {[is_Cygwin]} {
273984fc
SP
1984 set program_files [file dirname [exec cygpath --windir]]
1985 set program_files [file join $program_files {Program Files}]
1986 set firefox [file join $program_files {Mozilla Firefox} firefox.exe]
1987 set ie [file join $program_files {Internet Explorer} IEXPLORE.EXE]
1988 if {[file exists $firefox]} {
1989 set browser $firefox
1990 } elseif {[file exists $ie]} {
1991 set browser $ie
1992 }
1993 unset program_files firefox ie
1994 }
1995}
1996
1997if {[file isfile $doc_path]} {
1998 set doc_url "file:$doc_path"
1999} else {
2000 set doc_url {http://www.kernel.org/pub/software/scm/git/docs/}
2001}
2002
2003if {$browser ne {}} {
1ac17950 2004 .mbar.help add command -label [mc "Online Documentation"] \
7416bbc6 2005 -command [list exec $browser $doc_url &]
273984fc
SP
2006}
2007unset browser doc_path doc_url
82aa2354 2008
c6951ddb
SP
2009set root_exists 0
2010bind . <Visibility> {
2011 bind . <Visibility> {}
2012 set root_exists 1
2013}
2014
2ebba528
SP
2015# -- Standard bindings
2016#
39fa2a98 2017wm protocol . WM_DELETE_WINDOW do_quit
2ebba528
SP
2018bind all <$M1B-Key-q> do_quit
2019bind all <$M1B-Key-Q> do_quit
2020bind all <$M1B-Key-w> {destroy [winfo toplevel %W]}
2021bind all <$M1B-Key-W> {destroy [winfo toplevel %W]}
2022
3e45ee1e
SP
2023set subcommand_args {}
2024proc usage {} {
2025 puts stderr "usage: $::argv0 $::subcommand $::subcommand_args"
2026 exit 1
2027}
2028
2ebba528
SP
2029# -- Not a normal commit type invocation? Do that instead!
2030#
258871d3 2031switch -- $subcommand {
85d2d597 2032browser -
2ebba528 2033blame {
c52c9452
SP
2034 set subcommand_args {rev? path}
2035 if {$argv eq {}} usage
a0db0d61 2036 set head {}
3e45ee1e
SP
2037 set path {}
2038 set is_path 0
2039 foreach a $argv {
2040 if {$is_path || [file exists $_prefix$a]} {
2041 if {$path ne {}} usage
6b3d8b97 2042 set path $_prefix$a
3e45ee1e
SP
2043 break
2044 } elseif {$a eq {--}} {
2045 if {$path ne {}} {
a0db0d61
SP
2046 if {$head ne {}} usage
2047 set head $path
3e45ee1e
SP
2048 set path {}
2049 }
2050 set is_path 1
a0db0d61
SP
2051 } elseif {$head eq {}} {
2052 if {$head ne {}} usage
2053 set head $a
c52c9452 2054 set is_path 1
3e45ee1e
SP
2055 } else {
2056 usage
2057 }
2058 }
2059 unset is_path
2060
c52c9452
SP
2061 if {$head ne {} && $path eq {}} {
2062 set path $_prefix$head
2063 set head {}
2064 }
2065
a0db0d61 2066 if {$head eq {}} {
d41b43eb 2067 load_current_branch
a0db0d61 2068 } else {
02087abc
SP
2069 if {[regexp {^[0-9a-f]{1,39}$} $head]} {
2070 if {[catch {
2071 set head [git rev-parse --verify $head]
2072 } err]} {
2073 puts stderr $err
2074 exit 1
2075 }
2076 }
a0db0d61 2077 set current_branch $head
2ebba528 2078 }
a0db0d61 2079
85d2d597
SP
2080 switch -- $subcommand {
2081 browser {
2082 if {$head eq {}} {
2083 if {$path ne {} && [file isdirectory $path]} {
2084 set head $current_branch
2085 } else {
2086 set head $path
2087 set path {}
2088 }
2089 }
2090 browser::new $head $path
2091 }
2092 blame {
2093 if {$head eq {} && ![file exists $path]} {
c8c4854b 2094 puts stderr [mc "fatal: cannot stat path %s: No such file or directory" $path]
85d2d597
SP
2095 exit 1
2096 }
2097 blame::new $head $path
2098 }
c52c9452 2099 }
258871d3
SP
2100 return
2101}
2102citool -
2103gui {
2104 if {[llength $argv] != 0} {
2105 puts -nonewline stderr "usage: $argv0"
2106 if {$subcommand ne {gui} && [appname] ne "git-$subcommand"} {
2107 puts -nonewline stderr " $subcommand"
2108 }
2109 puts stderr {}
2110 exit 1
2111 }
2112 # fall through to setup UI for commits
2ebba528 2113}
2ebba528 2114default {
c0f7a6c3 2115 puts stderr "usage: $argv0 \[{blame|browser|citool}\]"
2ebba528
SP
2116 exit 1
2117}
2118}
2119
8553b772
SP
2120# -- Branch Control
2121#
2122frame .branch \
2123 -borderwidth 1 \
2124 -relief sunken
2125label .branch.l1 \
1ac17950 2126 -text [mc "Current Branch:"] \
8553b772 2127 -anchor w \
7416bbc6 2128 -justify left
8553b772
SP
2129label .branch.cb \
2130 -textvariable current_branch \
2131 -anchor w \
7416bbc6 2132 -justify left
8553b772
SP
2133pack .branch.l1 -side left
2134pack .branch.cb -side left -fill x
2135pack .branch -side top -fill x
2136
cb07fc2a 2137# -- Main Window Layout
a49c67d1 2138#
cb07fc2a
SP
2139panedwindow .vpane -orient vertical
2140panedwindow .vpane.files -orient horizontal
c5a1eb88 2141.vpane add .vpane.files -sticky nsew -height 100 -width 200
cb07fc2a
SP
2142pack .vpane -anchor n -side top -fill both -expand 1
2143
2144# -- Index File List
a49c67d1 2145#
c5a1eb88 2146frame .vpane.files.index -height 100 -width 200
1ac17950 2147label .vpane.files.index.title -text [mc "Staged Changes (Will Be Committed)"] \
9adccb05 2148 -background lightgreen
cb07fc2a 2149text $ui_index -background white -borderwidth 0 \
c5a1eb88 2150 -width 20 -height 10 \
3c236977 2151 -wrap none \
6c6dd01a 2152 -cursor $cursor_ptr \
3c236977
SP
2153 -xscrollcommand {.vpane.files.index.sx set} \
2154 -yscrollcommand {.vpane.files.index.sy set} \
cb07fc2a 2155 -state disabled
3c236977
SP
2156scrollbar .vpane.files.index.sx -orient h -command [list $ui_index xview]
2157scrollbar .vpane.files.index.sy -orient v -command [list $ui_index yview]
cb07fc2a 2158pack .vpane.files.index.title -side top -fill x
3c236977
SP
2159pack .vpane.files.index.sx -side bottom -fill x
2160pack .vpane.files.index.sy -side right -fill y
cb07fc2a
SP
2161pack $ui_index -side left -fill both -expand 1
2162.vpane.files add .vpane.files.index -sticky nsew
2163
0812665e 2164# -- Working Directory File List
a49c67d1 2165#
c5a1eb88 2166frame .vpane.files.workdir -height 100 -width 200
1ac17950 2167label .vpane.files.workdir.title -text [mc "Unstaged Changes (Will Not Be Committed)"] \
9adccb05 2168 -background lightsalmon
0812665e 2169text $ui_workdir -background white -borderwidth 0 \
c5a1eb88 2170 -width 20 -height 10 \
3c236977 2171 -wrap none \
6c6dd01a 2172 -cursor $cursor_ptr \
3c236977
SP
2173 -xscrollcommand {.vpane.files.workdir.sx set} \
2174 -yscrollcommand {.vpane.files.workdir.sy set} \
cb07fc2a 2175 -state disabled
3c236977
SP
2176scrollbar .vpane.files.workdir.sx -orient h -command [list $ui_workdir xview]
2177scrollbar .vpane.files.workdir.sy -orient v -command [list $ui_workdir yview]
0812665e 2178pack .vpane.files.workdir.title -side top -fill x
3c236977
SP
2179pack .vpane.files.workdir.sx -side bottom -fill x
2180pack .vpane.files.workdir.sy -side right -fill y
0812665e
SP
2181pack $ui_workdir -side left -fill both -expand 1
2182.vpane.files add .vpane.files.workdir -sticky nsew
cb07fc2a 2183
0812665e 2184foreach i [list $ui_index $ui_workdir] {
3849bfba
SP
2185 rmsel_tag $i
2186 $i tag conf in_diff -background [$i tag cget in_sel -background]
24263b77
SP
2187}
2188unset i
131f503b 2189
0fb8f9ce 2190# -- Diff and Commit Area
a49c67d1 2191#
8009dcdc 2192frame .vpane.lower -height 300 -width 400
0fb8f9ce
SP
2193frame .vpane.lower.commarea
2194frame .vpane.lower.diff -relief sunken -borderwidth 1
2195pack .vpane.lower.commarea -side top -fill x
2196pack .vpane.lower.diff -side bottom -fill both -expand 1
0fd49d0a 2197.vpane add .vpane.lower -sticky nsew
cb07fc2a
SP
2198
2199# -- Commit Area Buttons
a49c67d1 2200#
0fb8f9ce
SP
2201frame .vpane.lower.commarea.buttons
2202label .vpane.lower.commarea.buttons.l -text {} \
cb07fc2a 2203 -anchor w \
7416bbc6 2204 -justify left
0fb8f9ce
SP
2205pack .vpane.lower.commarea.buttons.l -side top -fill x
2206pack .vpane.lower.commarea.buttons -side left -fill y
131f503b 2207
1ac17950 2208button .vpane.lower.commarea.buttons.rescan -text [mc Rescan] \
7416bbc6 2209 -command do_rescan
0fb8f9ce 2210pack .vpane.lower.commarea.buttons.rescan -side top -fill x
390adaea
SP
2211lappend disable_on_lock \
2212 {.vpane.lower.commarea.buttons.rescan conf -state}
131f503b 2213
1ac17950 2214button .vpane.lower.commarea.buttons.incall -text [mc "Stage Changed"] \
7416bbc6 2215 -command do_add_all
7fe7e733 2216pack .vpane.lower.commarea.buttons.incall -side top -fill x
390adaea
SP
2217lappend disable_on_lock \
2218 {.vpane.lower.commarea.buttons.incall conf -state}
131f503b 2219
1ac17950 2220button .vpane.lower.commarea.buttons.signoff -text [mc "Sign Off"] \
7416bbc6 2221 -command do_signoff
0fb8f9ce 2222pack .vpane.lower.commarea.buttons.signoff -side top -fill x
131f503b 2223
a9813cb5 2224button .vpane.lower.commarea.buttons.commit -text [mc Commit@@verb] \
7416bbc6 2225 -command do_commit
0fb8f9ce 2226pack .vpane.lower.commarea.buttons.commit -side top -fill x
390adaea
SP
2227lappend disable_on_lock \
2228 {.vpane.lower.commarea.buttons.commit conf -state}
cb07fc2a 2229
1ac17950 2230button .vpane.lower.commarea.buttons.push -text [mc Push] \
87b49a53
SP
2231 -command do_push_anywhere
2232pack .vpane.lower.commarea.buttons.push -side top -fill x
2233
cb07fc2a 2234# -- Commit Message Buffer
a49c67d1 2235#
0fb8f9ce 2236frame .vpane.lower.commarea.buffer
24ac9b75 2237frame .vpane.lower.commarea.buffer.header
0fb8f9ce 2238set ui_comm .vpane.lower.commarea.buffer.t
24ac9b75
SP
2239set ui_coml .vpane.lower.commarea.buffer.header.l
2240radiobutton .vpane.lower.commarea.buffer.header.new \
1ac17950 2241 -text [mc "New Commit"] \
24ac9b75
SP
2242 -command do_select_commit_type \
2243 -variable selected_commit_type \
7416bbc6 2244 -value new
24ac9b75
SP
2245lappend disable_on_lock \
2246 [list .vpane.lower.commarea.buffer.header.new conf -state]
2247radiobutton .vpane.lower.commarea.buffer.header.amend \
1ac17950 2248 -text [mc "Amend Last Commit"] \
24ac9b75
SP
2249 -command do_select_commit_type \
2250 -variable selected_commit_type \
7416bbc6 2251 -value amend
24ac9b75
SP
2252lappend disable_on_lock \
2253 [list .vpane.lower.commarea.buffer.header.amend conf -state]
a49c67d1 2254label $ui_coml \
cb07fc2a 2255 -anchor w \
7416bbc6 2256 -justify left
4539eacd
SP
2257proc trace_commit_type {varname args} {
2258 global ui_coml commit_type
2259 switch -glob -- $commit_type {
1ac17950
CS
2260 initial {set txt [mc "Initial Commit Message:"]}
2261 amend {set txt [mc "Amended Commit Message:"]}
2262 amend-initial {set txt [mc "Amended Initial Commit Message:"]}
2263 amend-merge {set txt [mc "Amended Merge Commit Message:"]}
2264 merge {set txt [mc "Merge Commit Message:"]}
2265 * {set txt [mc "Commit Message:"]}
4539eacd
SP
2266 }
2267 $ui_coml conf -text $txt
2268}
2269trace add variable commit_type write trace_commit_type
24ac9b75
SP
2270pack $ui_coml -side left -fill x
2271pack .vpane.lower.commarea.buffer.header.amend -side right
2272pack .vpane.lower.commarea.buffer.header.new -side right
2273
cb07fc2a 2274text $ui_comm -background white -borderwidth 1 \
9861671d 2275 -undo true \
b2c6fcf1 2276 -maxundo 20 \
9861671d 2277 -autoseparators true \
cb07fc2a 2278 -relief sunken \
0fb8f9ce 2279 -width 75 -height 9 -wrap none \
b4946930 2280 -font font_diff \
6c6dd01a 2281 -yscrollcommand {.vpane.lower.commarea.buffer.sby set}
390adaea
SP
2282scrollbar .vpane.lower.commarea.buffer.sby \
2283 -command [list $ui_comm yview]
24ac9b75 2284pack .vpane.lower.commarea.buffer.header -side top -fill x
0fb8f9ce 2285pack .vpane.lower.commarea.buffer.sby -side right -fill y
cb07fc2a 2286pack $ui_comm -side left -fill y
0fb8f9ce
SP
2287pack .vpane.lower.commarea.buffer -side left -fill y
2288
0e794311
SP
2289# -- Commit Message Buffer Context Menu
2290#
e8ab6446
SP
2291set ctxm .vpane.lower.commarea.buffer.ctxm
2292menu $ctxm -tearoff 0
2293$ctxm add command \
1ac17950 2294 -label [mc Cut] \
e8ab6446
SP
2295 -command {tk_textCut $ui_comm}
2296$ctxm add command \
1ac17950 2297 -label [mc Copy] \
e8ab6446
SP
2298 -command {tk_textCopy $ui_comm}
2299$ctxm add command \
1ac17950 2300 -label [mc Paste] \
e8ab6446
SP
2301 -command {tk_textPaste $ui_comm}
2302$ctxm add command \
1ac17950 2303 -label [mc Delete] \
e8ab6446
SP
2304 -command {$ui_comm delete sel.first sel.last}
2305$ctxm add separator
2306$ctxm add command \
1ac17950 2307 -label [mc "Select All"] \
75e78c8a 2308 -command {focus $ui_comm;$ui_comm tag add sel 0.0 end}
e8ab6446 2309$ctxm add command \
1ac17950 2310 -label [mc "Copy All"] \
e8ab6446 2311 -command {
0e794311
SP
2312 $ui_comm tag add sel 0.0 end
2313 tk_textCopy $ui_comm
2314 $ui_comm tag remove sel 0.0 end
e8ab6446
SP
2315 }
2316$ctxm add separator
2317$ctxm add command \
1ac17950 2318 -label [mc "Sign Off"] \
0e794311 2319 -command do_signoff
e8ab6446 2320bind_button3 $ui_comm "tk_popup $ctxm %X %Y"
0e794311 2321
0fb8f9ce 2322# -- Diff Header
a49c67d1 2323#
20a53c02
SP
2324proc trace_current_diff_path {varname args} {
2325 global current_diff_path diff_actions file_states
2326 if {$current_diff_path eq {}} {
e8ab6446
SP
2327 set s {}
2328 set f {}
2329 set p {}
2330 set o disabled
2331 } else {
20a53c02 2332 set p $current_diff_path
e8ab6446 2333 set s [mapdesc [lindex $file_states($p) 0] $p]
1ac17950 2334 set f [mc "File:"]
e8ab6446
SP
2335 set p [escape_path $p]
2336 set o normal
2337 }
2338
2339 .vpane.lower.diff.header.status configure -text $s
2340 .vpane.lower.diff.header.file configure -text $f
2341 .vpane.lower.diff.header.path configure -text $p
2342 foreach w $diff_actions {
2343 uplevel #0 $w $o
2344 }
2345}
20a53c02 2346trace add variable current_diff_path write trace_current_diff_path
e8ab6446 2347
9adccb05 2348frame .vpane.lower.diff.header -background gold
e8ab6446 2349label .vpane.lower.diff.header.status \
9adccb05 2350 -background gold \
3e7b0e1d
SP
2351 -width $max_status_desc \
2352 -anchor w \
7416bbc6 2353 -justify left
e8ab6446 2354label .vpane.lower.diff.header.file \
9adccb05 2355 -background gold \
e8ab6446 2356 -anchor w \
7416bbc6 2357 -justify left
e8ab6446 2358label .vpane.lower.diff.header.path \
9adccb05 2359 -background gold \
fce89e46 2360 -anchor w \
7416bbc6 2361 -justify left
e8ab6446
SP
2362pack .vpane.lower.diff.header.status -side left
2363pack .vpane.lower.diff.header.file -side left
2364pack .vpane.lower.diff.header.path -fill x
2365set ctxm .vpane.lower.diff.header.ctxm
2366menu $ctxm -tearoff 0
2367$ctxm add command \
1ac17950 2368 -label [mc Copy] \
fce89e46
SP
2369 -command {
2370 clipboard clear
2371 clipboard append \
2372 -format STRING \
2373 -type STRING \
20a53c02 2374 -- $current_diff_path
fce89e46 2375 }
e8ab6446
SP
2376lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2377bind_button3 .vpane.lower.diff.header.path "tk_popup $ctxm %X %Y"
0fb8f9ce
SP
2378
2379# -- Diff Body
a49c67d1 2380#
0fb8f9ce
SP
2381frame .vpane.lower.diff.body
2382set ui_diff .vpane.lower.diff.body.t
2383text $ui_diff -background white -borderwidth 0 \
2384 -width 80 -height 15 -wrap none \
b4946930 2385 -font font_diff \
0fb8f9ce
SP
2386 -xscrollcommand {.vpane.lower.diff.body.sbx set} \
2387 -yscrollcommand {.vpane.lower.diff.body.sby set} \
0fb8f9ce
SP
2388 -state disabled
2389scrollbar .vpane.lower.diff.body.sbx -orient horizontal \
2390 -command [list $ui_diff xview]
2391scrollbar .vpane.lower.diff.body.sby -orient vertical \
2392 -command [list $ui_diff yview]
2393pack .vpane.lower.diff.body.sbx -side bottom -fill x
2394pack .vpane.lower.diff.body.sby -side right -fill y
2395pack $ui_diff -side left -fill both -expand 1
2396pack .vpane.lower.diff.header -side top -fill x
2397pack .vpane.lower.diff.body -side bottom -fill both -expand 1
2398
30b14ed3 2399$ui_diff tag conf d_cr -elide true
ca521566
SP
2400$ui_diff tag conf d_@ -foreground blue -font font_diffbold
2401$ui_diff tag conf d_+ -foreground {#00a000}
fec4a785
SP
2402$ui_diff tag conf d_- -foreground red
2403
ca521566 2404$ui_diff tag conf d_++ -foreground {#00a000}
fec4a785
SP
2405$ui_diff tag conf d_-- -foreground red
2406$ui_diff tag conf d_+s \
ca521566
SP
2407 -foreground {#00a000} \
2408 -background {#e2effa}
fec4a785
SP
2409$ui_diff tag conf d_-s \
2410 -foreground red \
ca521566 2411 -background {#e2effa}
fec4a785 2412$ui_diff tag conf d_s+ \
ca521566
SP
2413 -foreground {#00a000} \
2414 -background ivory1
fec4a785
SP
2415$ui_diff tag conf d_s- \
2416 -foreground red \
ca521566 2417 -background ivory1
fec4a785
SP
2418
2419$ui_diff tag conf d<<<<<<< \
2420 -foreground orange \
2421 -font font_diffbold
2422$ui_diff tag conf d======= \
2423 -foreground orange \
2424 -font font_diffbold
2425$ui_diff tag conf d>>>>>>> \
2426 -foreground orange \
2427 -font font_diffbold
cb07fc2a 2428
ca521566
SP
2429$ui_diff tag raise sel
2430
0e794311
SP
2431# -- Diff Body Context Menu
2432#
e8ab6446
SP
2433set ctxm .vpane.lower.diff.body.ctxm
2434menu $ctxm -tearoff 0
68c30b4a 2435$ctxm add command \
1ac17950 2436 -label [mc Refresh] \
68c30b4a 2437 -command reshow_diff
86773d9b 2438lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
e8ab6446 2439$ctxm add command \
1ac17950 2440 -label [mc Copy] \
e8ab6446
SP
2441 -command {tk_textCopy $ui_diff}
2442lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2443$ctxm add command \
1ac17950 2444 -label [mc "Select All"] \
75e78c8a 2445 -command {focus $ui_diff;$ui_diff tag add sel 0.0 end}
e8ab6446
SP
2446lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2447$ctxm add command \
1ac17950 2448 -label [mc "Copy All"] \
e8ab6446 2449 -command {
0e794311
SP
2450 $ui_diff tag add sel 0.0 end
2451 tk_textCopy $ui_diff
2452 $ui_diff tag remove sel 0.0 end
e8ab6446
SP
2453 }
2454lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2455$ctxm add separator
a25c5189 2456$ctxm add command \
1ac17950 2457 -label [mc "Apply/Reverse Hunk"] \
a25c5189
SP
2458 -command {apply_hunk $cursorX $cursorY}
2459set ui_diff_applyhunk [$ctxm index last]
2460lappend diff_actions [list $ctxm entryconf $ui_diff_applyhunk -state]
2461$ctxm add separator
e8ab6446 2462$ctxm add command \
1ac17950 2463 -label [mc "Decrease Font Size"] \
b4946930 2464 -command {incr_font_size font_diff -1}
e8ab6446
SP
2465lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2466$ctxm add command \
1ac17950 2467 -label [mc "Increase Font Size"] \
b4946930 2468 -command {incr_font_size font_diff 1}
e8ab6446
SP
2469lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2470$ctxm add separator
2471$ctxm add command \
1ac17950 2472 -label [mc "Show Less Context"] \
b8848f77 2473 -command {if {$repo_config(gui.diffcontext) >= 1} {
358d8de8
SP
2474 incr repo_config(gui.diffcontext) -1
2475 reshow_diff
2476 }}
e8ab6446
SP
2477lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2478$ctxm add command \
1ac17950 2479 -label [mc "Show More Context"] \
b8848f77 2480 -command {if {$repo_config(gui.diffcontext) < 99} {
358d8de8
SP
2481 incr repo_config(gui.diffcontext)
2482 reshow_diff
b8848f77 2483 }}
e8ab6446
SP
2484lappend diff_actions [list $ctxm entryconf [$ctxm index last] -state]
2485$ctxm add separator
1ac17950 2486$ctxm add command -label [mc "Options..."] \
8009dcdc 2487 -command do_options
83751fc1 2488proc popup_diff_menu {ctxm x y X Y} {
ce015c21 2489 global current_diff_path file_states
83751fc1
SP
2490 set ::cursorX $x
2491 set ::cursorY $y
2492 if {$::ui_index eq $::current_diff_side} {
1ac17950 2493 set l [mc "Unstage Hunk From Commit"]
a25c5189 2494 } else {
1ac17950 2495 set l [mc "Stage Hunk For Commit"]
a25c5189 2496 }
047d94d5
SP
2497 if {$::is_3way_diff
2498 || $current_diff_path eq {}
2499 || ![info exists file_states($current_diff_path)]
2500 || {_O} eq [lindex $file_states($current_diff_path) 0]} {
9c9f5fa9 2501 set s disabled
047d94d5
SP
2502 } else {
2503 set s normal
9c9f5fa9 2504 }
9f4119eb 2505 $ctxm entryconf $::ui_diff_applyhunk -state $s -label $l
83751fc1
SP
2506 tk_popup $ctxm $X $Y
2507}
2508bind_button3 $ui_diff [list popup_diff_menu $ctxm %x %y %X %Y]
0e794311 2509
cb07fc2a 2510# -- Status Bar
e8ab6446 2511#
51530d17 2512set main_status [::status_bar::new .status]
cb07fc2a 2513pack .status -anchor w -side bottom -fill x
1ac17950 2514$main_status show [mc "Initializing..."]
cb07fc2a 2515
2d19516d 2516# -- Load geometry
e8ab6446 2517#
2d19516d 2518catch {
51f4d16b 2519set gm $repo_config(gui.geometry)
c4fe7728
SP
2520wm geometry . [lindex $gm 0]
2521.vpane sash place 0 \
2522 [lindex [.vpane sash coord 0] 0] \
2523 [lindex $gm 1]
2524.vpane.files sash place 0 \
2525 [lindex $gm 2] \
2526 [lindex [.vpane.files sash coord 0] 1]
c4fe7728 2527unset gm
390adaea 2528}
2d19516d 2529
cb07fc2a 2530# -- Key Bindings
e8ab6446 2531#
ec6b424a 2532bind $ui_comm <$M1B-Key-Return> {do_commit;break}
93e912c5
SP
2533bind $ui_comm <$M1B-Key-i> {do_add_all;break}
2534bind $ui_comm <$M1B-Key-I> {do_add_all;break}
9861671d
SP
2535bind $ui_comm <$M1B-Key-x> {tk_textCut %W;break}
2536bind $ui_comm <$M1B-Key-X> {tk_textCut %W;break}
2537bind $ui_comm <$M1B-Key-c> {tk_textCopy %W;break}
2538bind $ui_comm <$M1B-Key-C> {tk_textCopy %W;break}
2539bind $ui_comm <$M1B-Key-v> {tk_textPaste %W; %W see insert; break}
2540bind $ui_comm <$M1B-Key-V> {tk_textPaste %W; %W see insert; break}
2541bind $ui_comm <$M1B-Key-a> {%W tag add sel 0.0 end;break}
2542bind $ui_comm <$M1B-Key-A> {%W tag add sel 0.0 end;break}
2543
2544bind $ui_diff <$M1B-Key-x> {tk_textCopy %W;break}
2545bind $ui_diff <$M1B-Key-X> {tk_textCopy %W;break}
2546bind $ui_diff <$M1B-Key-c> {tk_textCopy %W;break}
2547bind $ui_diff <$M1B-Key-C> {tk_textCopy %W;break}
2548bind $ui_diff <$M1B-Key-v> {break}
2549bind $ui_diff <$M1B-Key-V> {break}
2550bind $ui_diff <$M1B-Key-a> {%W tag add sel 0.0 end;break}
2551bind $ui_diff <$M1B-Key-A> {%W tag add sel 0.0 end;break}
b2c6fcf1
SP
2552bind $ui_diff <Key-Up> {catch {%W yview scroll -1 units};break}
2553bind $ui_diff <Key-Down> {catch {%W yview scroll 1 units};break}
2554bind $ui_diff <Key-Left> {catch {%W xview scroll -1 units};break}
2555bind $ui_diff <Key-Right> {catch {%W xview scroll 1 units};break}
60aa065f
SP
2556bind $ui_diff <Key-k> {catch {%W yview scroll -1 units};break}
2557bind $ui_diff <Key-j> {catch {%W yview scroll 1 units};break}
2558bind $ui_diff <Key-h> {catch {%W xview scroll -1 units};break}
2559bind $ui_diff <Key-l> {catch {%W xview scroll 1 units};break}
2560bind $ui_diff <Control-Key-b> {catch {%W yview scroll -1 pages};break}
2561bind $ui_diff <Control-Key-f> {catch {%W yview scroll 1 pages};break}
23effa79 2562bind $ui_diff <Button-1> {focus %W}
49b86f01 2563
64a906f8 2564if {[is_enabled branch]} {
b1fa2bff
SP
2565 bind . <$M1B-Key-n> branch_create::dialog
2566 bind . <$M1B-Key-N> branch_create::dialog
d41b43eb
SP
2567 bind . <$M1B-Key-o> branch_checkout::dialog
2568 bind . <$M1B-Key-O> branch_checkout::dialog
a870ddc0
SP
2569 bind . <$M1B-Key-m> merge::dialog
2570 bind . <$M1B-Key-M> merge::dialog
bd29ebc3 2571}
840bcfa7
SP
2572if {[is_enabled transport]} {
2573 bind . <$M1B-Key-p> do_push_anywhere
2574 bind . <$M1B-Key-P> do_push_anywhere
2575}
bd29ebc3 2576
f1e031bb
SP
2577bind . <Key-F5> do_rescan
2578bind . <$M1B-Key-r> do_rescan
2579bind . <$M1B-Key-R> do_rescan
07123f40
SP
2580bind . <$M1B-Key-s> do_signoff
2581bind . <$M1B-Key-S> do_signoff
93e912c5
SP
2582bind . <$M1B-Key-i> do_add_all
2583bind . <$M1B-Key-I> do_add_all
07123f40 2584bind . <$M1B-Key-Return> do_commit
0812665e 2585foreach i [list $ui_index $ui_workdir] {
24263b77
SP
2586 bind $i <Button-1> "toggle_or_diff $i %x %y; break"
2587 bind $i <$M1B-Button-1> "add_one_to_selection $i %x %y; break"
2588 bind $i <Shift-Button-1> "add_range_to_selection $i %x %y; break"
cb07fc2a 2589}
62aac80b
SP
2590unset i
2591
2592set file_lists($ui_index) [list]
0812665e 2593set file_lists($ui_workdir) [list]
a49c67d1 2594
19c82148 2595wm title . "[appname] ([reponame]) [file normalize [file dirname [gitdir]]]"
cb07fc2a 2596focus -force $ui_comm
1d8b3cbf 2597
85ab313e
SP
2598# -- Warn the user about environmental problems. Cygwin's Tcl
2599# does *not* pass its env array onto any processes it spawns.
2600# This means that git processes get none of our environment.
1d8b3cbf 2601#
20ddfcaa 2602if {[is_Cygwin]} {
1d8b3cbf
SP
2603 set ignored_env 0
2604 set suggest_user {}
c8c4854b 2605 set msg [mc "Possible environment issues exist.
1d8b3cbf
SP
2606
2607The following environment variables are probably
2608going to be ignored by any Git subprocess run
c8c4854b 2609by %s:
1d8b3cbf 2610
c8c4854b 2611" [appname]]
1d8b3cbf
SP
2612 foreach name [array names env] {
2613 switch -regexp -- $name {
2614 {^GIT_INDEX_FILE$} -
2615 {^GIT_OBJECT_DIRECTORY$} -
2616 {^GIT_ALTERNATE_OBJECT_DIRECTORIES$} -
2617 {^GIT_DIFF_OPTS$} -
2618 {^GIT_EXTERNAL_DIFF$} -
2619 {^GIT_PAGER$} -
2620 {^GIT_TRACE$} -
2621 {^GIT_CONFIG$} -
2622 {^GIT_CONFIG_LOCAL$} -
2623 {^GIT_(AUTHOR|COMMITTER)_DATE$} {
2624 append msg " - $name\n"
2625 incr ignored_env
2626 }
2627 {^GIT_(AUTHOR|COMMITTER)_(NAME|EMAIL)$} {
2628 append msg " - $name\n"
2629 incr ignored_env
2630 set suggest_user $name
2631 }
2632 }
2633 }
2634 if {$ignored_env > 0} {
c8c4854b 2635 append msg [mc "
1d8b3cbf 2636This is due to a known issue with the
c8c4854b 2637Tcl binary distributed by Cygwin."]
1d8b3cbf
SP
2638
2639 if {$suggest_user ne {}} {
c8c4854b 2640 append msg [mc "
1d8b3cbf 2641
c8c4854b 2642A good replacement for %s
1d8b3cbf
SP
2643is placing values for the user.name and
2644user.email settings into your personal
2645~/.gitconfig file.
c8c4854b 2646" $suggest_user]
1d8b3cbf
SP
2647 }
2648 warn_popup $msg
2649 }
2650 unset ignored_env msg suggest_user name
2651}
2652
85ab313e
SP
2653# -- Only initialize complex UI if we are going to stay running.
2654#
64a906f8 2655if {[is_enabled transport]} {
4ccdab02 2656 load_all_remotes
85ab313e 2657
3f7fd924
SP
2658 populate_fetch_menu
2659 populate_push_menu
4ccdab02 2660}
85ab313e 2661
4578c5cb
SP
2662if {[winfo exists $ui_comm]} {
2663 set GITGUI_BCK_exists [load_message GITGUI_BCK]
2664
2665 # -- If both our backup and message files exist use the
2666 # newer of the two files to initialize the buffer.
2667 #
2668 if {$GITGUI_BCK_exists} {
2669 set m [gitdir GITGUI_MSG]
2670 if {[file isfile $m]} {
2671 if {[file mtime [gitdir GITGUI_BCK]] > [file mtime $m]} {
2672 catch {file delete [gitdir GITGUI_MSG]}
2673 } else {
2674 $ui_comm delete 0.0 end
2675 $ui_comm edit reset
2676 $ui_comm edit modified false
2677 catch {file delete [gitdir GITGUI_BCK]}
2678 set GITGUI_BCK_exists 0
2679 }
2680 }
2681 unset m
2682 }
2683
2684 proc backup_commit_buffer {} {
2685 global ui_comm GITGUI_BCK_exists
2686
2687 set m [$ui_comm edit modified]
2688 if {$m || $GITGUI_BCK_exists} {
2689 set msg [string trim [$ui_comm get 0.0 end]]
2690 regsub -all -line {[ \r\t]+$} $msg {} msg
2691
2692 if {$msg eq {}} {
2693 if {$GITGUI_BCK_exists} {
2694 catch {file delete [gitdir GITGUI_BCK]}
2695 set GITGUI_BCK_exists 0
2696 }
2697 } elseif {$m} {
2698 catch {
2699 set fd [open [gitdir GITGUI_BCK] w]
2700 puts -nonewline $fd $msg
2701 close $fd
2702 set GITGUI_BCK_exists 1
2703 }
2704 }
2705
2706 $ui_comm edit modified false
2707 }
2708
2709 set ::GITGUI_BCK_i [after 2000 backup_commit_buffer]
2710 }
2711
2712 backup_commit_buffer
2713}
2714
53716a7b 2715lock_index begin-read
301dfaa9
SP
2716if {![winfo ismapped .]} {
2717 wm deiconify .
2718}
8f52548a 2719after 1 do_rescan
3972b987
SP
2720if {[is_enabled multicommit]} {
2721 after 1000 hint_gc
2722}