提交 50102c56 编写于 作者: A Alexander Gavrilov 提交者: Shawn O. Pearce

git-gui: Add a menu of available encodings.

To make encoding selection easier, add a menu that
lists available encodings to the Options window.

Menu structure is borrowed from Firefox.
Signed-off-by: NAlexander Gavrilov <angavrilov@gmail.com>
Tested-by: NJohannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: NShawn O. Pearce <spearce@spearce.org>
上级 72e6b002
......@@ -206,7 +206,7 @@ set encoding_aliases {
{ ISO-8859-16 iso-ir-226 ISO_8859-16:2001 ISO_8859-16 latin10 l10 }
{ GBK CP936 MS936 windows-936 }
{ JIS_Encoding csJISEncoding }
{ Shift_JIS MS_Kanji csShiftJIS }
{ Shift_JIS MS_Kanji csShiftJIS ShiftJIS Shift-JIS }
{ Extended_UNIX_Code_Packed_Format_for_Japanese csEUCPkdFmtJapanese
EUC-JP }
{ Extended_UNIX_Code_Fixed_Width_for_Japanese csEUCFixWidJapanese }
......@@ -240,6 +240,52 @@ set encoding_aliases {
{ Big5 csBig5 }
}
set encoding_groups {
{"" ""
{"Unicode" UTF-8}
{"Western" ISO-8859-1}}
{we "West European"
{"Western" ISO-8859-15 CP-437 CP-850 MacRoman CP-1252 Windows-1252}
{"Celtic" ISO-8859-14}
{"Greek" ISO-8859-14 ISO-8859-7 CP-737 CP-869 MacGreek CP-1253 Windows-1253}
{"Icelandic" MacIceland MacIcelandic CP-861}
{"Nordic" ISO-8859-10 CP-865}
{"Portuguese" CP-860}
{"South European" ISO-8859-3}}
{ee "East European"
{"Baltic" CP-775 ISO-8859-4 ISO-8859-13 CP-1257 Windows-1257}
{"Central European" CP-852 ISO-8859-2 MacCE CP-1250 Windows-1250}
{"Croatian" MacCroatian}
{"Cyrillic" CP-855 ISO-8859-5 ISO-IR-111 KOI8-R MacCyrillic CP-1251 Windows-1251}
{"Russian" CP-866}
{"Ukrainian" KOI8-U MacUkraine MacUkrainian}
{"Romanian" ISO-8859-16 MacRomania MacRomanian}}
{ea "East Asian"
{"Generic" ISO-2022}
{"Chinese Simplified" GB2312 GB1988 GB12345 GB2312-RAW GBK EUC-CN GB18030 HZ ISO-2022-CN}
{"Chinese Traditional" Big5 Big5-HKSCS EUC-TW CP-950}
{"Japanese" EUC-JP ISO-2022-JP Shift-JIS JIS-0212 JIS-0208 JIS-0201 CP-932 MacJapan}
{"Korean" EUC-KR UHC JOHAB ISO-2022-KR CP-949 KSC5601}}
{sa "SE & SW Asian"
{"Armenian" ARMSCII-8}
{"Georgian" GEOSTD8}
{"Thai" TIS-620 ISO-8859-11 CP-874 Windows-874 MacThai}
{"Turkish" CP-857 CP857 ISO-8859-9 MacTurkish CP-1254 Windows-1254}
{"Vietnamese" TCVN VISCII VPS CP-1258 Windows-1258}
{"Hindi" MacDevanagari}
{"Gujarati" MacGujarati}
{"Gurmukhi" MacGurmukhi}}
{me "Middle Eastern"
{"Arabic" ISO-8859-6 Windows-1256 CP-1256 CP-864 MacArabic}
{"Farsi" MacFarsi}
{"Hebrew" ISO-8859-8-I Windows-1255 CP-1255 ISO-8859-8 CP-862 MacHebrew}}
{mi "Misc"
{"7-bit" ASCII}
{"16-bit" Unicode}
{"Legacy" CP-863 EBCDIC}
{"Symbol" Symbol Dingbats MacDingbats MacCentEuro}}
}
proc tcl_encoding {enc} {
global encoding_aliases
set names [encoding names]
......@@ -248,7 +294,7 @@ proc tcl_encoding {enc} {
set i [lsearch -exact $lcnames $enc]
if {$i < 0} {
# look for "isonnn" instead of "iso-nnn" or "iso_nnn"
if {[regsub {^iso[-_]} $enc iso encx]} {
if {[regsub {^(iso|cp|ibm|jis)[-_]} $enc {\1} encx]} {
set i [lsearch -exact $lcnames $encx]
}
}
......@@ -260,7 +306,7 @@ proc tcl_encoding {enc} {
foreach e $ll {
set i [lsearch -exact $lcnames $e]
if {$i < 0} {
if {[regsub {^iso[-_]} $e iso ex]} {
if {[regsub {^(iso|cp|ibm|jis)[-_]} $e {\1} ex]} {
set i [lsearch -exact $lcnames $ex]
}
}
......@@ -288,3 +334,84 @@ proc get_path_encoding {path} {
}
return $tcl_enc
}
proc build_encoding_submenu {parent grp cmd} {
global used_encodings
set mid [lindex $grp 0]
set gname [mc [lindex $grp 1]]
set smenu {}
foreach subset [lrange $grp 2 end] {
set name [mc [lindex $subset 0]]
foreach enc [lrange $subset 1 end] {
set tcl_enc [tcl_encoding $enc]
if {$tcl_enc eq {}} continue
if {$smenu eq {}} {
if {$mid eq {}} {
set smenu $parent
} else {
set smenu "$parent.$mid"
menu $smenu
$parent add cascade \
-label $gname \
-menu $smenu
}
}
if {$name ne {}} {
set lbl "$name ($enc)"
} else {
set lbl $enc
}
$smenu add command \
-label $lbl \
-command [concat $cmd [list $tcl_enc]]
lappend used_encodings $tcl_enc
}
}
}
proc popup_btn_menu {m b} {
tk_popup $m [winfo pointerx $b] [winfo pointery $b]
}
proc build_encoding_menu {emenu cmd {nodef 0}} {
$emenu configure -postcommand \
[list do_build_encoding_menu $emenu $cmd $nodef]
}
proc do_build_encoding_menu {emenu cmd {nodef 0}} {
global used_encodings encoding_groups
$emenu configure -postcommand {}
if {!$nodef} {
$emenu add command \
-label [mc "Default"] \
-command [concat $cmd [list {}]]
}
set sysenc [encoding system]
$emenu add command \
-label [mc "System (%s)" $sysenc] \
-command [concat $cmd [list $sysenc]]
# Main encoding tree
set used_encodings [list identity]
$emenu add separator
foreach grp $encoding_groups {
build_encoding_submenu $emenu $grp $cmd
}
# Add unclassified encodings
set unused_grp [list [mc Other]]
foreach enc [encoding names] {
if {[lsearch -exact $used_encodings $enc] < 0} {
lappend unused_grp $enc
}
}
build_encoding_submenu $emenu [list other [mc Other] $unused_grp] $cmd
}
......@@ -152,7 +152,7 @@ proc do_options {} {
{i-1..99 gui.diffcontext {mc "Number of Diff Context Lines"}}
{i-0..99 gui.commitmsgwidth {mc "Commit Message Text Width"}}
{t gui.newbranchtemplate {mc "New Branch Name Template"}}
{t gui.encoding {mc "Default File Contents Encoding"}}
{c gui.encoding {mc "Default File Contents Encoding"}}
} {
set type [lindex $option 0]
set name [lindex $option 1]
......@@ -182,6 +182,7 @@ proc do_options {} {
pack $w.$f.$optid.v -side right -anchor e -padx 5
pack $w.$f.$optid -side top -anchor w -fill x
}
c -
t {
frame $w.$f.$optid
label $w.$f.$optid.l -text "$text:"
......@@ -194,6 +195,16 @@ proc do_options {} {
pack $w.$f.$optid.v -side left -anchor w \
-fill x -expand 1 \
-padx 5
if {$type eq {c}} {
menu $w.$f.$optid.m
build_encoding_menu $w.$f.$optid.m \
[list set ${f}_config_new($name)] 1
button $w.$f.$optid.b \
-text [mc "Change"] \
-command [list popup_btn_menu \
$w.$f.$optid.m $w.$f.$optid.b]
pack $w.$f.$optid.b -side left -anchor w
}
pack $w.$f.$optid -side top -anchor w -fill x
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册