|
|
|
@ -5,6 +5,7 @@ package com.fr.design.actions.help;
|
|
|
|
|
|
|
|
|
|
import com.fr.base.FRContext; |
|
|
|
|
import com.fr.base.GraphHelper; |
|
|
|
|
import com.fr.base.i18n.BidiUtils; |
|
|
|
|
import com.fr.design.DesignerEnvManager; |
|
|
|
|
import com.fr.design.gui.ilable.ActionLabel; |
|
|
|
|
import com.fr.design.gui.ilable.BoldFontTextLabel; |
|
|
|
@ -225,7 +226,7 @@ public class AboutPane extends JPanel {
|
|
|
|
|
JPanel panel = FRGUIPaneFactory.createNormalFlowInnerContainer_S_Pane(); |
|
|
|
|
panel.add(new UILabel(desc)); |
|
|
|
|
panel.add(emailLabel); |
|
|
|
|
return panel; |
|
|
|
|
return BidiUtils.applyOrientationByLocale(panel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private JPanel getURLActionPane(final String desc, final String url) { |
|
|
|
@ -245,7 +246,7 @@ public class AboutPane extends JPanel {
|
|
|
|
|
panel.add(new UILabel(desc)); |
|
|
|
|
panel.add(actionLabel); |
|
|
|
|
|
|
|
|
|
return panel; |
|
|
|
|
return BidiUtils.applyOrientationByLocale(panel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class UserLabel extends BoldFontTextLabel { |
|
|
|
@ -283,6 +284,7 @@ public class AboutPane extends JPanel {
|
|
|
|
|
|
|
|
|
|
this.textLabel = label; |
|
|
|
|
centerPane.add(textLabel); |
|
|
|
|
BidiUtils.applyOrientationByLocale(centerPane); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setFont(Font font) { |
|
|
|
@ -328,7 +330,7 @@ public class AboutPane extends JPanel {
|
|
|
|
|
lastLabel.setForeground(Color.lightGray); |
|
|
|
|
centerPane.add(lastLabel); |
|
|
|
|
|
|
|
|
|
add(centerPane, BorderLayout.CENTER); |
|
|
|
|
add(BidiUtils.applyOrientationByLocale(centerPane), BorderLayout.CENTER); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setFont(Font font) { |
|
|
|
|