gpt4 book ai didi

Java:如何从 AbstractAction 对象引用 GUI 组件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:55:52 25 4
gpt4 key购买 nike

通常需要根据另一个 GUI 对象的状态来更改其他 GUI 对象的行为。例如。按下按钮时,标签应更改其名称。但是,当我使用像 JButton myButton = new JButton(myButtonAction); 这样的 AbstractAction 对象时,我需要在继承自 AbstractAction 的对象中引用 GUI 对象。我应该只在 GUI 中创建 AbstractAction 对象,然后将所有必要的 GUI 引用传递给 AbstractAction 对象,还是这会被认为是不好的风格?

为了使它更具体:

// AbstractAction
public class MyAction extends AbstractAction {
public MyAction(String name,
String description, Integer mnemonic, JLabel) {
super(name);
putValue(SHORT_DESCRIPTION, description);
putValue(MNEMONIC_KEY, mnemonic);
}
public void actionPerformed(ActionEvent e) {

// do something
}
}
}

public class GUI{
public Action myAction = null;

public GUI(){
JLabel label = new JLabel("text");
//This is not a good idea:
myAction = new MyAction("some text" , desc, new Integer(KeyEvent.VK_Q), label);

JButton myButton = new JButton(myAction);
}
}

最佳答案

您想尽可能地放松耦合,而不是像您的问题所暗示的那样加强耦合,为此,我认为您应该进一步抽象,将部分进一步分离成一个完整的 MVC 程序。然后监听器(Action)可以更改模型,而作为您的 GUI 的 View 可以监听模型的更改并做出相应的响应。

例如:

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;

import javax.swing.*;
import javax.swing.event.SwingPropertyChangeSupport;

public class MvcEg {

private static void createAndShowGui() {
View view = new MvcEgView();
Model model = new MvcEgModel();
new MvcEgControl(model, view);

JFrame frame = new JFrame("MvcEg");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(view.getMainPanel());
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}

interface View {

void setMyButtonAction(Action action);

Component getMainPanel();

void setStatusLabelText(String text);

}

@SuppressWarnings("serial")
class MvcEgView implements View {
private static final int PREF_W = 500;
private static final int PREF_H = 400;
private static final String STATUS_TEXT = "Status: ";
private JPanel mainPanel = new JPanel() {
@Override
public Dimension getPreferredSize() {
return new Dimension(PREF_W, PREF_H);
}
};
private JLabel statusLabel = new JLabel(STATUS_TEXT, SwingConstants.CENTER);
private JButton myButton = new JButton();

public MvcEgView() {
JPanel btnPanel = new JPanel(new GridBagLayout());
btnPanel.add(myButton);

mainPanel.setLayout(new BorderLayout());
mainPanel.add(btnPanel, BorderLayout.CENTER);
mainPanel.add(statusLabel, BorderLayout.SOUTH);
}

@Override
public void setMyButtonAction(Action action) {
myButton.setAction(action);
}

@Override
public void setStatusLabelText(String text) {
statusLabel.setText(STATUS_TEXT + text);
}

@Override
public Component getMainPanel() {
return mainPanel;
}
}

interface Model {
public static final String MOD_FIVE_STATUS = "mod five status";

void incrementStatus();

ModFiveStatus getModFiveStatus();

void removePropertyChangeListener(PropertyChangeListener listener);

void addPropertyChangeListener(PropertyChangeListener listener);

void setModFiveStatus(ModFiveStatus modFiveStatus);

}

class MvcEgModel implements Model {
private ModFiveStatus modFiveStatus = ModFiveStatus.ZERO;
private SwingPropertyChangeSupport pcSupport = new SwingPropertyChangeSupport(
this);

@Override
public void incrementStatus() {
int value = modFiveStatus.getValue();
value++;
value %= ModFiveStatus.values().length;
setModFiveStatus(ModFiveStatus.getValuesStatus(value));
}

@Override
public void setModFiveStatus(ModFiveStatus modFiveStatus) {
ModFiveStatus oldValue = this.modFiveStatus;
ModFiveStatus newValue = modFiveStatus;
this.modFiveStatus = modFiveStatus;
pcSupport.firePropertyChange(MOD_FIVE_STATUS, oldValue, newValue);
}

@Override
public ModFiveStatus getModFiveStatus() {
return modFiveStatus;
}

@Override
public void addPropertyChangeListener(PropertyChangeListener listener) {
pcSupport.addPropertyChangeListener(listener);
}

@Override
public void removePropertyChangeListener(PropertyChangeListener listener) {
pcSupport.removePropertyChangeListener(listener);
}

}

enum ModFiveStatus {
ZERO(0, "Zero"), ONE(1, "One"), TWO(2, "Two"), THREE(3, "Three"), FOUR(4, "Four");
private int value;
private String text;

private ModFiveStatus(int value, String text) {
this.value = value;
this.text = text;
}

public int getValue() {
return value;
}

public String getText() {
return text;
}

public static ModFiveStatus getValuesStatus(int value) {
if (value < 0 || value >= values().length) {
throw new ArrayIndexOutOfBoundsException(value);
}

for (ModFiveStatus modFiveStatus : ModFiveStatus.values()) {
if (modFiveStatus.getValue() == value) {
return modFiveStatus;
}
}
// default that should never happen
return null;
}

}

@SuppressWarnings("serial")
class MvcEgControl {
private Model model;
private View view;

public MvcEgControl(final Model model, final View view) {
this.model = model;
this.view = view;

view.setMyButtonAction(new MyButtonAction("My Button", KeyEvent.VK_B));
view.setStatusLabelText(model.getModFiveStatus().getText());
System.out.println("model's status: " + model.getModFiveStatus());
System.out.println("model's status text: " + model.getModFiveStatus().getText());

model.addPropertyChangeListener(new ModelListener());
}

private class MyButtonAction extends AbstractAction {


public MyButtonAction(String text, int mnemonic) {
super(text);
putValue(MNEMONIC_KEY, mnemonic);
}

@Override
public void actionPerformed(ActionEvent e) {
model.incrementStatus();
System.out.println("button pressed");
}
}

private class ModelListener implements PropertyChangeListener {

@Override
public void propertyChange(PropertyChangeEvent evt) {
if (evt.getPropertyName().equals(Model.MOD_FIVE_STATUS)) {
String status = model.getModFiveStatus().getText();
view.setStatusLabelText(status);
System.out.println("status is: " + status);
}
}

}

}

在我看来,关键是模型对 View 一无所知,而 View 对模型知之甚少(此处为一无所知)。

关于Java:如何从 AbstractAction 对象引用 GUI 组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17503652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com