|
|
|
@ -3,6 +3,7 @@ package com.fr.start.common;
|
|
|
|
|
import com.bulenkov.iconloader.IconLoader; |
|
|
|
|
import com.bulenkov.iconloader.util.JBUI; |
|
|
|
|
import com.fr.base.GraphHelper; |
|
|
|
|
import com.fr.base.i18n.BidiUtils; |
|
|
|
|
import com.fr.design.DesignerEnvManager; |
|
|
|
|
import com.fr.general.locale.image.I18nImage; |
|
|
|
|
import com.fr.stable.GraphDrawHelper; |
|
|
|
@ -46,6 +47,7 @@ public class SplashPane extends JPanel {
|
|
|
|
|
|
|
|
|
|
private static final String ARIAL_FONT_NAME = "Arial"; |
|
|
|
|
private static final String YAHEI_FONT_NAME = "Microsoft YaHei"; |
|
|
|
|
private static final String ARABIC_FONT_NAME = "Calibri"; |
|
|
|
|
|
|
|
|
|
private String thanksLog = StringUtils.EMPTY; |
|
|
|
|
private String moduleText = StringUtils.EMPTY; |
|
|
|
@ -74,6 +76,9 @@ public class SplashPane extends JPanel {
|
|
|
|
|
if (font == null || isDialogFont(font)) { |
|
|
|
|
font = createFont(ARIAL_FONT_NAME); |
|
|
|
|
} |
|
|
|
|
if (BidiUtils.rtl()) { |
|
|
|
|
font = createFont(ARABIC_FONT_NAME); |
|
|
|
|
} |
|
|
|
|
return font; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|