|
|
|
@ -52,27 +52,27 @@ public class WriteWebSettingPane extends WebSettingPane<WebWrite> {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
JPanel backgroundPane = GUICoreUtils.createFlowPane(new Component[]{colorBox, colorButton}, BidiUtils.rtl() ? FlowLayout.RIGHT : FlowLayout.LEFT); |
|
|
|
|
JPanel backgroundPane = GUICoreUtils.createFlowPane(new Component[]{colorBox, colorButton}, FlowLayout.LEADING); |
|
|
|
|
|
|
|
|
|
//sheet标签页显示位置
|
|
|
|
|
topRadioButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Top")); |
|
|
|
|
bottomRadioButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Bottom")); |
|
|
|
|
sheetShowLocationLabel = new UILabel(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Sheet_Label_Page_Display_Position"), BidiUtils.rtl() ? UILabel.RIGHT : UILabel.LEFT); |
|
|
|
|
sheetShowLocationLabel = new UILabel(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Sheet_Label_Page_Display_Position"), UILabel.LEADING); |
|
|
|
|
ButtonGroup buttonGroup = new ButtonGroup(); |
|
|
|
|
bottomRadioButton.setSelected(true); |
|
|
|
|
buttonGroup.add(topRadioButton); |
|
|
|
|
buttonGroup.add(bottomRadioButton); |
|
|
|
|
JPanel sheetPane = GUICoreUtils.createFlowPane(new Component[]{sheetShowLocationLabel, topRadioButton, bottomRadioButton}, BidiUtils.rtl() ? FlowLayout.RIGHT : FlowLayout.LEFT); |
|
|
|
|
JPanel sheetPane = GUICoreUtils.createFlowPane(new Component[]{sheetShowLocationLabel, topRadioButton, bottomRadioButton}, FlowLayout.LEADING); |
|
|
|
|
|
|
|
|
|
//Sean: 报表显示位置since 706
|
|
|
|
|
rptShowLocationLabel = new UILabel(BidiUtils.reverseConcatenateStrings(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Show_Location"), ":"), BidiUtils.rtl() ? UILabel.RIGHT : UILabel.LEFT); |
|
|
|
|
rptShowLocationLabel = new UILabel(BidiUtils.reverseConcatenateStrings(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Show_Location"), ":"), UILabel.LEADING); |
|
|
|
|
centerRadioButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Center_Display")); |
|
|
|
|
leftRadioButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Left_Display")); |
|
|
|
|
ButtonGroup rptShowButtonGroup = new ButtonGroup(); |
|
|
|
|
leftRadioButton.setSelected(true); |
|
|
|
|
rptShowButtonGroup.add(centerRadioButton); |
|
|
|
|
rptShowButtonGroup.add(leftRadioButton); |
|
|
|
|
JPanel showLocPane = GUICoreUtils.createFlowPane(new Component[]{rptShowLocationLabel, centerRadioButton, leftRadioButton}, BidiUtils.rtl() ? FlowLayout.RIGHT : FlowLayout.LEFT); |
|
|
|
|
JPanel showLocPane = GUICoreUtils.createFlowPane(new Component[]{rptShowLocationLabel, centerRadioButton, leftRadioButton}, FlowLayout.LEADING); |
|
|
|
|
|
|
|
|
|
unloadCheck = new UICheckBox(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Unload_Check")); |
|
|
|
|
unloadCheck.setSelected(true); |
|
|
|
@ -81,7 +81,7 @@ public class WriteWebSettingPane extends WebSettingPane<WebWrite> {
|
|
|
|
|
showWidgets.setSelected(false); |
|
|
|
|
isAutoStash = new UICheckBox(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Write_Auto_Stash")); |
|
|
|
|
isAutoStash.setSelected(false); |
|
|
|
|
JPanel unloadCheckPane = GUICoreUtils.createFlowPane(new Component[]{unloadCheck, showWidgets, isAutoStash}, BidiUtils.rtl() ? FlowLayout.RIGHT : FlowLayout.LEFT); |
|
|
|
|
JPanel unloadCheckPane = GUICoreUtils.createFlowPane(new Component[]{unloadCheck, showWidgets, isAutoStash}, FlowLayout.LEADING); |
|
|
|
|
JPanel northPane = FRGUIPaneFactory.createNColumnGridInnerContainer_S_Pane(2); |
|
|
|
|
northPane.add(sheetPane); |
|
|
|
|
northPane.add(showLocPane); |
|
|
|
|