|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.fr.design.hyperlink; |
|
|
|
package com.fr.design.hyperlink; |
|
|
|
|
|
|
|
|
|
|
|
import com.fr.base.Utils; |
|
|
|
import com.fr.base.Utils; |
|
|
|
|
|
|
|
import com.fr.base.i18n.BidiUtils; |
|
|
|
import com.fr.design.beans.BasicBeanPane; |
|
|
|
import com.fr.design.beans.BasicBeanPane; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBox; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBox; |
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
@ -74,8 +75,8 @@ public abstract class AbstractHyperNorthPane<T extends Hyperlink> extends BasicB |
|
|
|
newWindowConfPane.add(widthTextFiled); |
|
|
|
newWindowConfPane.add(widthTextFiled); |
|
|
|
|
|
|
|
|
|
|
|
JPanel centerPanel = new JPanel(new BorderLayout()); |
|
|
|
JPanel centerPanel = new JPanel(new BorderLayout()); |
|
|
|
centerPanel.add(targetFramePanel, BorderLayout.WEST); |
|
|
|
centerPanel.add(targetFramePanel, BidiUtils.rtl() ? BorderLayout.EAST : BorderLayout.WEST); |
|
|
|
centerPanel.add(newWindowConfPane, BorderLayout.EAST); |
|
|
|
centerPanel.add(newWindowConfPane, BidiUtils.rtl() ? BorderLayout.WEST : BorderLayout.EAST); |
|
|
|
newWindowConfPane.setVisible(false); |
|
|
|
newWindowConfPane.setVisible(false); |
|
|
|
|
|
|
|
|
|
|
|
centerPane.add(centerPanel); |
|
|
|
centerPane.add(centerPanel); |
|
|
@ -87,6 +88,7 @@ public abstract class AbstractHyperNorthPane<T extends Hyperlink> extends BasicB |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.add(this.setFootPanel(), BorderLayout.SOUTH); |
|
|
|
this.add(this.setFootPanel(), BorderLayout.SOUTH); |
|
|
|
|
|
|
|
BidiUtils.applyOrientationByLocale(this); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected String[] getTargetFrames() { |
|
|
|
protected String[] getTargetFrames() { |
|
|
|