gpt4 book ai didi

java - 为两个 JTextArea 设置事件监听器

转载 作者:行者123 更新时间:2023-12-01 08:02:18 24 4
gpt4 key购买 nike

我正在开发一个图像处理软件(只是为了好玩),它的功能之一是图像调整大小选项。基本上会弹出窗口,其中有两个 JTextArea 组件,用于获取调整大小所需的图像宽度和高度。如果用户需要的话,还有 JCheckBox 用于保持宽高比。问题是。当选中复选框并且用户首先输入宽度或高度时。我希望其他文本区域在每次进行更改时都能相应地更新自身,以便保留 AR。我已经开发了一些处理此问题的代码,但由于缺乏了解我应该真正分配给哪个组件的监听器,所以它没有提供我真正想要的东西。

代码:

String height, width;
if (checkBoxImage.isSelected()){
// aspect ratio = width / height
width = widthArea.getText();
height = heightArea.getText();
double aspectRatio = (double) images.get(tabbedPane.getSelectedIndex()).getWidth() / images.get(tabbedPane.getSelectedIndex()).getHeight();
/**
* to do, update width, height area
* to the closest user input
*/
if(heightArea.getText().length() != 0 && heightArea.getText().length() <= 5
&& heightArea.getText().charAt(0) != '0'){
//parsing string to integer
try{
int heightNum = Integer.parseInt(height);
int widthNum = (int) Math.round(aspectRatio * heightNum);
widthArea.setText(String.valueOf(widthNum) );
widthArea.updateUI();
frameimgSize.repaint();
}
catch(NumberFormatException e1){JOptionPane.showMessageDialog(error,e1.getMessage(),"Error", JOptionPane.ERROR_MESSAGE);}
}
//width has been entered first
else if(widthArea.getText().length() != 0 && widthArea.getText().length() <= 5 &&
widthArea.getText().charAt(0) != '0'){
try{
int widthNum = Integer.parseInt(width);
int heightNum = (int) Math.round(aspectRatio * widthNum);
heightArea.setText(String.valueOf(heightNum) );
heightArea.updateUI();
frameimgSize.repaint();
}
catch(NumberFormatException e1){JOptionPane.showMessageDialog(error,e1.getMessage(),"Error", JOptionPane.ERROR_MESSAGE);}
}
}

最佳答案

宽度和高度字段中包含非数字值是否有效?

如果没有,则使用 JSpinnersJFormattedTextFields 而不是 JTextFields。如果是这样,(例如,您允许输入“单位”以及宽度和高度),您应该将 DocumentListener 附加到您的 JTextFields 以监视底层文本文档内容的更改。这是一个例子:

widthField.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
update();
}
public void removeUpdate(DocumentEvent e) {
update();
}
public void insertUpdate(DocumentEvent e) {
update();
}

// your method that handles any Document change event
public void update() {
if( aspectCheckBox1.isSelected() ) {

// parse the width and height,
// constrain the height to the aspect ratio and update it here
}
}

});

然后,您可以向 heightTextField 添加一个类似的 DocumentListener。

请注意,如果您使用 JTextFields,则需要解析其内容、读取单位(如果适用)并在用户输入无效数值的情况下处理 NumberFormatExceptions

回答有关在哪里添加处理程序的问题...

当文档的高度 GUI 元素发生更改时,应更新宽度。同样,当 GUI 元素的宽度发生文档更改时,高度 也会更新。

您需要妥善处理被零除错误(或限制输入始终大于 0),使用 double 执行计算,最好使用 Math.round() 以获得最佳结果用于保留方面的整数值。

即:

int calculateHeight(int width, double aspect) {

if( aspect <= 0.0 ) {
// handle this error condition
}
return (int)Math.round(width / aspect);
}

为了实际跟踪宽高比,我会将其存储在一个成员变量中,并向 JCheckBox 添加一个 ActionListener...因为在宽度和高度的每个值发生变化时都会更新目标宽高比由于整数舍入,字段可能会导致纵横比“蠕动”。

以下是每次纵横比检查状态发生变化时跟踪纵横比的示例:

private double aspect = 1.0;

aspectCheckBox.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
preserveAspectActionPerformed(evt);
}
});

private void preserveAspectActionPerformed(java.awt.event.ActionEvent evt) {

try {
double w = Double.parseDouble(widthField.getText());
double h = Double.parseDouble(heightField.getText());
aspect = w / h;
}
catch(NumberFormatException ex) {
// ... error occurred due to non-numeric input
// (use a JSpinner or JFormattedTextField to avoid this)
}
}

最重要的是避免在工作中使用错误的输入类型:

希望对您有帮助。

关于java - 为两个 JTextArea 设置事件监听器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24398107/

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