Browse Source

统一radius

feature/big-screen
Qinghui.Liu 5 years ago
parent
commit
6ab1324258
  1. 10
      designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/style/ChartTextAttrPaneWithAuto.java
  2. 5
      designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeCateOrPercentLabelDetailPane.java
  3. 12
      designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeLabelDetailPane.java
  4. 2
      designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeValueLabelDetailPane.java

10
designer-chart/src/main/java/com/fr/design/mainframe/chart/gui/style/ChartTextAttrPaneWithAuto.java

@ -27,11 +27,7 @@ public class ChartTextAttrPaneWithAuto extends ChartTextAttrPane {
} }
protected void initFontColorState() { protected void initFontColorState() {
if (isColorAuto) { setFontColor(isColorAuto ? new UIColorButtonWithAuto() : new UIColorButton());
setFontColor(new UIColorButtonWithAuto());
} else {
setFontColor(new UIColorButton());
}
} }
protected Object[] getFontSizeComboBoxModel() { protected Object[] getFontSizeComboBoxModel() {
@ -45,9 +41,9 @@ public class ChartTextAttrPaneWithAuto extends ChartTextAttrPane {
} }
return fontSizes; return fontSizes;
} else {
return super.getFontSizeComboBoxModel();
} }
return super.getFontSizeComboBoxModel();
} }
protected float getFontSize() { protected float getFontSize() {

5
designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeCateOrPercentLabelDetailPane.java

@ -1,7 +1,6 @@
package com.fr.van.chart.designer.style.label; package com.fr.van.chart.designer.style.label;
import com.fr.chart.chartattr.Plot; import com.fr.chart.chartattr.Plot;
import com.fr.plugin.chart.gauge.VanChartGaugePlot;
import com.fr.plugin.chart.type.GaugeStyle; import com.fr.plugin.chart.type.GaugeStyle;
import com.fr.van.chart.designer.TableLayout4VanChartHelper; import com.fr.van.chart.designer.TableLayout4VanChartHelper;
import com.fr.van.chart.designer.component.label.LabelContentPaneWithCate; import com.fr.van.chart.designer.component.label.LabelContentPaneWithCate;
@ -46,11 +45,11 @@ public class VanChartGaugeCateOrPercentLabelDetailPane extends VanChartGaugeLabe
} }
} }
protected boolean getFontSizeAuto() { protected boolean isFontSizeAuto() {
return getGaugeStyle() == GaugeStyle.RING || getGaugeStyle() == GaugeStyle.SLOT; return getGaugeStyle() == GaugeStyle.RING || getGaugeStyle() == GaugeStyle.SLOT;
} }
protected boolean getFontColorAuto() { protected boolean isFontColorAuto() {
return getGaugeStyle() == GaugeStyle.RING || getGaugeStyle() == GaugeStyle.SLOT; return getGaugeStyle() == GaugeStyle.RING || getGaugeStyle() == GaugeStyle.SLOT;
} }

12
designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeLabelDetailPane.java

@ -61,17 +61,17 @@ public class VanChartGaugeLabelDetailPane extends VanChartPlotLabelDetailPane {
return TableLayoutHelper.createTableLayoutPane(getLabelStyleComponents(plot), row, col); return TableLayoutHelper.createTableLayoutPane(getLabelStyleComponents(plot), row, col);
} }
protected boolean getFontSizeAuto() { protected boolean isFontSizeAuto() {
return false; return false;
} }
protected boolean getFontColorAuto() { protected boolean isFontColorAuto() {
return false; return false;
} }
protected ChartTextAttrPane initTextFontPane() { protected ChartTextAttrPane initTextFontPane() {
return new ChartTextAttrPaneWithAuto(getFontSizeAuto(), getFontColorAuto()) { return new ChartTextAttrPaneWithAuto(isFontSizeAuto(), isFontColorAuto()) {
protected double[] getRowSize() { protected double[] getRowSize() {
double p = TableLayout.PREFERRED; double p = TableLayout.PREFERRED;
return new double[]{p, p}; return new double[]{p, p};
@ -205,10 +205,12 @@ public class VanChartGaugeLabelDetailPane extends VanChartPlotLabelDetailPane {
super.update(detail); super.update(detail);
detail.setCustom(true); detail.setCustom(true);
if (align != null && align.getSelectedItem() != null) { if (align != null) {
if (align.getSelectedItem() != null) {
detail.setAlign(align.getSelectedItem()); detail.setAlign(align.getSelectedItem());
} else if (align != null) { } else {
align.setSelectedItem(detail.getAlign()); align.setSelectedItem(detail.getAlign());
} }
} }
} }
}

2
designer-chart/src/main/java/com/fr/van/chart/designer/style/label/VanChartGaugeValueLabelDetailPane.java

@ -60,7 +60,7 @@ public class VanChartGaugeValueLabelDetailPane extends VanChartGaugeLabelDetailP
} }
} }
protected boolean getFontSizeAuto() { protected boolean isFontSizeAuto() {
return getGaugeStyle() != GaugeStyle.THERMOMETER; return getGaugeStyle() != GaugeStyle.THERMOMETER;
} }

Loading…
Cancel
Save