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