Browse Source

修改名称

master
mengao 7 years ago
parent
commit
334071cc25
  1. 2
      designer_base/src/com/fr/design/gui/style/FormatPane.java
  2. 2
      designer_chart/src/com/fr/plugin/chart/designer/component/format/FormatPaneWithOutFont.java
  3. 2
      designer_chart/src/com/fr/plugin/chart/designer/component/format/VanChartFormatPaneWithCheckBox.java
  4. 4
      designer_chart/src/com/fr/plugin/chart/range/component/LegendLabelFormatPane.java

2
designer_base/src/com/fr/design/gui/style/FormatPane.java

@ -69,7 +69,7 @@ public class FormatPane extends AbstractBasicStylePane {
this.initComponents(TYPES); this.initComponents(TYPES);
} }
public UIComboBox getTypeComboBox() { protected UIComboBox getTypeComboBox() {
return typeComboBox; return typeComboBox;
} }

2
designer_chart/src/com/fr/plugin/chart/designer/component/format/VanChartFormatPane.java → designer_chart/src/com/fr/plugin/chart/designer/component/format/FormatPaneWithOutFont.java

@ -10,7 +10,7 @@ import java.awt.*;
/** /**
* Created by mengao on 2017/8/28. * Created by mengao on 2017/8/28.
*/ */
public class VanChartFormatPane extends FormatPane { public class FormatPaneWithOutFont extends FormatPane {
private static final int HEIGHT = 30; private static final int HEIGHT = 30;

2
designer_chart/src/com/fr/plugin/chart/designer/component/format/VanChartFormatPaneWithCheckBox.java

@ -114,7 +114,7 @@ public abstract class VanChartFormatPaneWithCheckBox extends JPanel{
} }
protected FormatPane createFormatPane() { protected FormatPane createFormatPane() {
return new VanChartFormatPane(); return new FormatPaneWithOutFont();
} }
public boolean isDirty() { public boolean isDirty() {

4
designer_chart/src/com/fr/plugin/chart/range/component/LegendLabelFormatPane.java

@ -8,7 +8,7 @@ import com.fr.design.layout.TableLayout;
import com.fr.general.Inter; import com.fr.general.Inter;
import com.fr.plugin.chart.designer.TableLayout4VanChartHelper; import com.fr.plugin.chart.designer.TableLayout4VanChartHelper;
import com.fr.plugin.chart.designer.component.VanChartHtmlLabelPaneWithOutWidthAndHeight; import com.fr.plugin.chart.designer.component.VanChartHtmlLabelPaneWithOutWidthAndHeight;
import com.fr.plugin.chart.designer.component.format.VanChartFormatPane; import com.fr.plugin.chart.designer.component.format.FormatPaneWithOutFont;
import com.fr.plugin.chart.designer.style.VanChartStylePane; import com.fr.plugin.chart.designer.style.VanChartStylePane;
import javax.swing.*; import javax.swing.*;
@ -31,7 +31,7 @@ public class LegendLabelFormatPane extends JPanel{
public LegendLabelFormatPane(){ public LegendLabelFormatPane(){
labelFormatStyle = new UIButtonGroup<Integer>(new String[]{Inter.getLocText("Plugin-ChartF_Common"), labelFormatStyle = new UIButtonGroup<Integer>(new String[]{Inter.getLocText("Plugin-ChartF_Common"),
Inter.getLocText("Plugin-ChartF_Custom")}); Inter.getLocText("Plugin-ChartF_Custom")});
labelFormat = new VanChartFormatPane(); labelFormat = new FormatPaneWithOutFont();
htmlLabelPane = new VanChartHtmlLabelPaneWithOutWidthAndHeight(); htmlLabelPane = new VanChartHtmlLabelPaneWithOutWidthAndHeight();
centerPane = new JPanel(new CardLayout()){ centerPane = new JPanel(new CardLayout()){

Loading…
Cancel
Save