|
|
|
@ -230,15 +230,12 @@ public class DesignUtils {
|
|
|
|
|
|
|
|
|
|
private static FRFont getCurrentLocaleFont(){ |
|
|
|
|
FRFont guiFRFont; |
|
|
|
|
Locale defaultLocale = FRContext.getLocale(); |
|
|
|
|
Locale defaultLocale = Locale.getDefault(); |
|
|
|
|
|
|
|
|
|
if (isDisplaySimSun(defaultLocale)) { |
|
|
|
|
guiFRFont = getNamedFont("SimSun"); |
|
|
|
|
} else if(isDisplayDialog(defaultLocale)) { |
|
|
|
|
guiFRFont = getNamedFont("Dialog"); |
|
|
|
|
} else if(isDisplayJapaneseFont(defaultLocale)){ |
|
|
|
|
//日文设计器默认用MS Mincho字体渲染
|
|
|
|
|
guiFRFont = getNamedFont("MS Mincho"); |
|
|
|
|
} else { |
|
|
|
|
guiFRFont = getNamedFont("Tahoma"); |
|
|
|
|
} |
|
|
|
@ -270,14 +267,11 @@ public class DesignUtils {
|
|
|
|
|
private static boolean isDisplaySimSun(Locale defaultLocale){ |
|
|
|
|
return ComparatorUtils.equals(defaultLocale, Locale.SIMPLIFIED_CHINESE); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static boolean isDisplayJapaneseFont(Locale defaultLocale){ |
|
|
|
|
return ComparatorUtils.equals(defaultLocale, Locale.JAPANESE) |
|
|
|
|
|| ComparatorUtils.equals(defaultLocale, Locale.JAPAN); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static boolean isDisplayDialog(Locale defaultLocale){ |
|
|
|
|
return ComparatorUtils.equals(defaultLocale, Locale.TRADITIONAL_CHINESE) |
|
|
|
|
return ComparatorUtils.equals(defaultLocale, Locale.TRADITIONAL_CHINESE) |
|
|
|
|
|| ComparatorUtils.equals(defaultLocale, Locale.JAPANESE) |
|
|
|
|
|| ComparatorUtils.equals(defaultLocale, Locale.JAPAN) |
|
|
|
|
|| ComparatorUtils.equals(defaultLocale, Locale.KOREAN) |
|
|
|
|
|| ComparatorUtils.equals(defaultLocale, Locale.KOREA); |
|
|
|
|
} |
|
|
|
|