paintComponent如何从外部setColor

时间:2015-05-21 15:49:40

标签: java swing paintcomponent jcolorchooser

我的项目有点问题,在这种情况下,我不知道如何处理setColor选项。 主要问题是我不能给paintComponent矿色提供颜色我不知道该怎么做。我从Scatterplot创建一个对象(Scatterplot sp = new Scatterplot)不起作用。

这是plotPanel的代码。

public class Scatterplot extends JPanel {

    List<Double> values_x = new ArrayList<>();
    List<Double> values_y = new ArrayList<>();

    protected double maxValue_x, minValue_x, maxValue_y, minValue_y;


    public Scatterplot(List<Double> variableValues_1, List<Double> variableValues_2) {
        values_x = variableValues_1;
        maxValue_x = Collections.max(values_x);
        minValue_x = Collections.min(values_x);

        values_y = variableValues_2;
        maxValue_y = Collections.max(values_y);
        minValue_y = Collections.min(values_y);

    }



    @Override
    protected void paintComponent(Graphics g) {

        int m = 30;
        double width = getWidth();
        double height = getHeight();

        double x1 = (width-2*m) / (maxValue_x - minValue_x);
        double y1 = (height-2*m) / (maxValue_y - minValue_y);

        for (int i = 0; i < values_x.size(); i++) {
            double value_x = values_x.get(i);  
            double value_y = values_y.get(i);

            g.fillOval((int)(2*m + x1*(value_x-minValue_x)-2*m), (int)(height - (y1*(value_y-minValue_y))-2*m), 2*m, 2*m);

        }
    }      
}

JColorChooser在这里实现:

public class GuiOptionPanel extends JPanel {


    public GuiOptionPanel(DataModel dataModel) {
        JPanel optionPanel = new JPanel(new GridLayout(7,1));

        JPanel menuPanel = new JPanel();
        JLabel menuLabel = new JLabel("Menu");
        menuLabel.setFont(menuLabel.getFont().deriveFont(Font.BOLD));
        menuPanel.add(menuLabel);
        optionPanel.add(menuPanel);

        JButton setColorButton = new JButton("Set Color");
        optionPanel.add(setColorButton);
        setColorButton.addActionListener((ActionEvent e) -> {
            JColorChooser.showDialog( null, "Color", null );
        });

        add(optionPanel);
    }
}

这是所有(以及一些更多的面板)添加到框架中:

public GuiFrame(DataModel dataModel) {
    setSize(FRAME_WIDTH, FRAME_HIGHT);
    /**
     * Create Objects
     */
    GuiInfoPanel ip = new GuiInfoPanel(dataModel);
    GuiOptionPanel op = new GuiOptionPanel(dataModel);
    JComponent sp = new Scatterplot(dataModel.getVariableValues(0), dataModel.getVariableValues(1));
    JComponent hg1 = new Histograms(dataModel.getVariableValues(0));
    JComponent hg2 = new Histograms(dataModel.getVariableValues(1));
    /**
     * Create Panels
     */
    createMainPanel();

    /**
     * Add Panels
     */
    this.add(mainPanel);
    this.add(ip, BorderLayout.SOUTH);
    menuPanel.add(op, BorderLayout.NORTH);
    scatterplotPanel.add(sp, BorderLayout.CENTER);
    histogram1.add(hg1, BorderLayout.CENTER);
    histogram2.add(hg2, BorderLayout.CENTER);
    }

daterModel类(由接口返回):

package dataplotproject;

import java.util.ArrayList;
import java.util.List;

public class DataModel {

    List<Variable> listOfEveryVariable = new ArrayList<>();
    String fileName = "";

    public DataModel(List<Variable> listOfEveryVariable2, String fileName2) {
        listOfEveryVariable = listOfEveryVariable2;
        fileName = fileName2;
    }

    public List<Variable> getVariables() {
        return listOfEveryVariable;
    }

    public String getFileName() {
        return fileName;
    }

    public List<String> getVariableNames() {
        List<String> names = new ArrayList<>();
        for (Variable obj : listOfEveryVariable) {
            names.add(obj.getName());
        }
        return names;
    }

    public List<Double> getVariableValues(int i){
       return listOfEveryVariable.get(i).getValueList();
    }
}

2 个答案:

答案 0 :(得分:0)

这是一个广泛的问题,有许多合理的答案:这是一种方法:

  1. 在Scatterplot中提供Color实例变量(使用setter方法和默认颜色值)
  2. 使用(1)在渲染之前在Scatterplot的paintComponent方法中设置颜色,例如g.setColor(myColor);
  3. Scatterplot对象的引用传递给GuiOptionPanel
  4. GuiOptionPanel中的ActionListener实现中,JColorChooser.showDialog方法返回一个Color对象。将其分配给变量。 Color chosenColor = JColorChooser.showDialog( null, "Color", null );
  5. 将(4)中的颜色从(1)和(3)
  6. 传递给Scatterplot的setter方法

    请注意,如果用户取消,则从JColorChooser.showDialog返回的Color可能为null - 应添加条件以确保它不是null。如果您希望颜色更改立即生效,您还应该在(1)的颜色设置器方法中调用repaint

答案 1 :(得分:0)

如果我理解正确,你可能想要这样做:

<?php echo DISPLAY_ULTIMATE_PLUS(); ?>

换句话说,组件由其Graphics对象绘制,该对象处理颜色等事物。