You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.4 KiB
117 lines
2.4 KiB
18 years ago
|
# git-gui branch (create/delete) support
|
||
|
# Copyright (C) 2006, 2007 Shawn Pearce
|
||
|
|
||
17 years ago
|
proc _error_parent {} {
|
||
17 years ago
|
set p [grab current .]
|
||
|
if {$p eq {}} {
|
||
|
return .
|
||
|
}
|
||
|
return $p
|
||
17 years ago
|
}
|
||
|
|
||
18 years ago
|
proc error_popup {msg} {
|
||
|
set title [appname]
|
||
|
if {[reponame] ne {}} {
|
||
|
append title " ([reponame])"
|
||
|
}
|
||
|
set cmd [list tk_messageBox \
|
||
|
-icon error \
|
||
|
-type ok \
|
||
18 years ago
|
-title [append "$title: " [mc "error"]] \
|
||
18 years ago
|
-message $msg]
|
||
17 years ago
|
if {[winfo ismapped [_error_parent]]} {
|
||
|
lappend cmd -parent [_error_parent]
|
||
18 years ago
|
}
|
||
|
eval $cmd
|
||
|
}
|
||
|
|
||
|
proc warn_popup {msg} {
|
||
|
set title [appname]
|
||
|
if {[reponame] ne {}} {
|
||
|
append title " ([reponame])"
|
||
|
}
|
||
|
set cmd [list tk_messageBox \
|
||
|
-icon warning \
|
||
|
-type ok \
|
||
18 years ago
|
-title [append "$title: " [mc "warning"]] \
|
||
18 years ago
|
-message $msg]
|
||
17 years ago
|
if {[winfo ismapped [_error_parent]]} {
|
||
|
lappend cmd -parent [_error_parent]
|
||
18 years ago
|
}
|
||
|
eval $cmd
|
||
|
}
|
||
|
|
||
17 years ago
|
proc info_popup {msg} {
|
||
18 years ago
|
set title [appname]
|
||
|
if {[reponame] ne {}} {
|
||
|
append title " ([reponame])"
|
||
|
}
|
||
|
tk_messageBox \
|
||
17 years ago
|
-parent [_error_parent] \
|
||
18 years ago
|
-icon info \
|
||
|
-type ok \
|
||
|
-title $title \
|
||
|
-message $msg
|
||
|
}
|
||
|
|
||
|
proc ask_popup {msg} {
|
||
|
set title [appname]
|
||
|
if {[reponame] ne {}} {
|
||
|
append title " ([reponame])"
|
||
|
}
|
||
18 years ago
|
set cmd [list tk_messageBox \
|
||
18 years ago
|
-icon question \
|
||
|
-type yesno \
|
||
|
-title $title \
|
||
|
-message $msg]
|
||
17 years ago
|
if {[winfo ismapped [_error_parent]]} {
|
||
|
lappend cmd -parent [_error_parent]
|
||
18 years ago
|
}
|
||
|
eval $cmd
|
||
18 years ago
|
}
|
||
|
|
||
17 years ago
|
proc hook_failed_popup {hook msg {is_fatal 1}} {
|
||
18 years ago
|
set w .hookfail
|
||
|
toplevel $w
|
||
|
|
||
|
frame $w.m
|
||
|
label $w.m.l1 -text "$hook hook failed:" \
|
||
|
-anchor w \
|
||
|
-justify left \
|
||
|
-font font_uibold
|
||
|
text $w.m.t \
|
||
17 years ago
|
-background white \
|
||
|
-foreground black \
|
||
|
-borderwidth 1 \
|
||
18 years ago
|
-relief sunken \
|
||
|
-width 80 -height 10 \
|
||
|
-font font_diff \
|
||
|
-yscrollcommand [list $w.m.sby set]
|
||
|
scrollbar $w.m.sby -command [list $w.m.t yview]
|
||
|
pack $w.m.l1 -side top -fill x
|
||
17 years ago
|
if {$is_fatal} {
|
||
|
label $w.m.l2 \
|
||
|
-text [mc "You must correct the above errors before committing."] \
|
||
|
-anchor w \
|
||
|
-justify left \
|
||
|
-font font_uibold
|
||
|
pack $w.m.l2 -side bottom -fill x
|
||
|
}
|
||
18 years ago
|
pack $w.m.sby -side right -fill y
|
||
|
pack $w.m.t -side left -fill both -expand 1
|
||
|
pack $w.m -side top -fill both -expand 1 -padx 5 -pady 10
|
||
|
|
||
|
$w.m.t insert 1.0 $msg
|
||
|
$w.m.t conf -state disabled
|
||
|
|
||
|
button $w.ok -text OK \
|
||
|
-width 15 \
|
||
|
-command "destroy $w"
|
||
|
pack $w.ok -side bottom -anchor e -pady 10 -padx 10
|
||
|
|
||
|
bind $w <Visibility> "grab $w; focus $w"
|
||
|
bind $w <Key-Return> "destroy $w"
|
||
17 years ago
|
wm title $w [strcat "[appname] ([reponame]): " [mc "error"]]
|
||
18 years ago
|
tkwait window $w
|
||
|
}
|