mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
* 'master' of https://github.com/j6t/git-gui: (26 commits)
git-gui: eliminate _search_exe
git-gui: remove procs gitexec and _git_cmd
git-gui: use dashless 'git cmd' form for read/write
git-gui: default to full copy for linked worktrees
git-gui: use git-clone
git-gui: remove non-ttk code
git-gui: remove ${NS} indirection for ttk
git-gui: always use themed widgets from ttk
git-gui: remove redundant check for Tk >= 8.5
git-gui: remove unreachable Tk 8.4 code
git-gui: remove unused git-version
git-gui: use git_init to create new repository dir
git-gui: git-remote is always available
git-gui: git merge understands --strategy=recursive
git-gui: git-diff knows submodules and textconv
git-gui: git-blame understands -w and textconv
git-gui: git rev-parse knows show_toplevel
git-gui: use git-branch --show-current
git-gui: git-diff-index always knows submodules
git-gui: git ls-files knows --exclude-standard
...
81 lines
1.3 KiB
Tcl
81 lines
1.3 KiB
Tcl
# goto line number
|
|
# based on code from gitk, Copyright (C) Paul Mackerras
|
|
|
|
class linebar {
|
|
|
|
field w
|
|
field ctext
|
|
|
|
field linenum {}
|
|
|
|
constructor new {i_w i_text args} {
|
|
set w $i_w
|
|
set ctext $i_text
|
|
|
|
ttk::frame $w
|
|
ttk::label $w.l -text [mc "Goto Line:"]
|
|
tentry $w.ent \
|
|
-textvariable ${__this}::linenum \
|
|
-background lightgreen \
|
|
-validate key \
|
|
-validatecommand [cb _validate %P]
|
|
ttk::button $w.bn -text [mc Go] -command [cb _goto]
|
|
|
|
pack $w.l -side left
|
|
pack $w.bn -side right
|
|
pack $w.ent -side left -expand 1 -fill x
|
|
|
|
eval grid conf $w -sticky we $args
|
|
grid remove $w
|
|
|
|
trace add variable linenum write [cb _goto_cb]
|
|
bind $w.ent <Return> [cb _goto]
|
|
bind $w.ent <Escape> [cb hide]
|
|
|
|
bind $w <Destroy> [list delete_this $this]
|
|
return $this
|
|
}
|
|
|
|
method show {} {
|
|
if {![visible $this]} {
|
|
grid $w
|
|
}
|
|
focus -force $w.ent
|
|
}
|
|
|
|
method hide {} {
|
|
if {[visible $this]} {
|
|
$w.ent delete 0 end
|
|
focus $ctext
|
|
grid remove $w
|
|
}
|
|
}
|
|
|
|
method visible {} {
|
|
return [winfo ismapped $w]
|
|
}
|
|
|
|
method editor {} {
|
|
return $w.ent
|
|
}
|
|
|
|
method _validate {P} {
|
|
# only accept numbers as input
|
|
string is integer $P
|
|
}
|
|
|
|
method _goto_cb {name ix op} {
|
|
after idle [cb _goto 1]
|
|
}
|
|
|
|
method _goto {{nohide {0}}} {
|
|
if {$linenum ne {}} {
|
|
$ctext see $linenum.0
|
|
if {!$nohide} {
|
|
hide $this
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|