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