Browse Source

REPORT-45441 聚合报表-设计-图表块-名称功能描述优化

research/11.0
Henry.Wang 4 years ago
parent
commit
ad8b0577f4
  1. 20
      designer-base/src/main/java/com/fr/design/widget/WidgetBoundsPaneFactory.java

20
designer-base/src/main/java/com/fr/design/widget/WidgetBoundsPaneFactory.java

@ -22,19 +22,14 @@ public class WidgetBoundsPaneFactory {
public enum NameAttribute { public enum NameAttribute {
//默认的名称 //默认的名称
DEFAULT(), DEFAULT(Toolkit.i18nText("Fine-Design_Basic_Component_Position"), Toolkit.i18nText("Fine-Design_Basic_Component_Size")),
//控件对应的名称 //控件对应的名称
WIDGET(Toolkit.i18nText("Fine-Design_Basic_Widget_Position"),Toolkit.i18nText("Fine-Design_Basic_Widget_Size")); WIDGET(Toolkit.i18nText("Fine-Design_Basic_Widget_Position"), Toolkit.i18nText("Fine-Design_Basic_Widget_Size"));
private String positionName; private String positionName;
private String sizeName; private String sizeName;
NameAttribute() { NameAttribute(String positionName, String sizeName) {
this.positionName = Toolkit.i18nText("Fine-Design_Basic_Component_Position");
this.sizeName = Toolkit.i18nText("Fine-Design_Basic_Component_Size");
}
NameAttribute(String positionName,String sizeName) {
this.positionName = positionName; this.positionName = positionName;
this.sizeName = sizeName; this.sizeName = sizeName;
} }
@ -66,7 +61,8 @@ public class WidgetBoundsPaneFactory {
boundsPane.add(panel); boundsPane.add(panel);
return new UIExpandablePane(Toolkit.i18nText("Fine-Design_Form_Coords_And_Size"), 280, 24, boundsPane); return new UIExpandablePane(Toolkit.i18nText("Fine-Design_Form_Coords_And_Size"), 280, 24, boundsPane);
} }
public static JPanel createRightPane(Component com1, Component com2){
public static JPanel createRightPane(Component com1, Component com2) {
double f = TableLayout.FILL; double f = TableLayout.FILL;
double p = TableLayout.PREFERRED; double p = TableLayout.PREFERRED;
double[] rowSize = {p}; double[] rowSize = {p};
@ -78,7 +74,7 @@ public class WidgetBoundsPaneFactory {
return TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, rowCount, IntervalConstants.INTERVAL_L6, IntervalConstants.INTERVAL_L1); return TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, rowCount, IntervalConstants.INTERVAL_L6, IntervalConstants.INTERVAL_L1);
} }
public static UIExpandablePane createAbsoluteBoundsPane(UISpinner x, UISpinner y, UISpinner width, UISpinner height,NameAttribute nameAttribute) { public static UIExpandablePane createAbsoluteBoundsPane(UISpinner x, UISpinner y, UISpinner width, UISpinner height, NameAttribute nameAttribute) {
double f = TableLayout.FILL; double f = TableLayout.FILL;
double p = TableLayout.PREFERRED; double p = TableLayout.PREFERRED;
@ -104,7 +100,7 @@ public class WidgetBoundsPaneFactory {
} }
public static UIExpandablePane createAbsoluteBoundsPane(UISpinner x, UISpinner y, UISpinner width, UISpinner height) { public static UIExpandablePane createAbsoluteBoundsPane(UISpinner x, UISpinner y, UISpinner width, UISpinner height) {
return createAbsoluteBoundsPane( x, y, width, height,NameAttribute.DEFAULT); return createAbsoluteBoundsPane(x, y, width, height, NameAttribute.DEFAULT);
} }

Loading…
Cancel
Save