gpt4 book ai didi

java - JTextField/JTextComponent 中的选择有限?

转载 作者:搜寻专家 更新时间:2023-11-01 02:15:23 24 4
gpt4 key购买 nike

考虑一个 JFormattedTextField(或者实际上是任何 JTextComponent),其中有一个前缀和一个后缀显示在字段的实际“文本”周围。

例如,双 3.5 将是字符串(通过格式化)“3.50”,其周围将是前缀“$”和后缀“”,用于显示文本“$ 3.50”。

显然,这很容易做到。但是,仍然允许用户在前缀/后缀中选择文本,因此他们可以想象删除部分或全部前缀/后缀。我希望用户受到限制,以至于根本无法选择前缀/后缀(但仍然是文本字段的一部分,所以没有 JLabel)。我几乎可以使用 CaretListener(或通过覆盖 setCaretPosition/moveCaretPosition)来完成此操作,这可以防止 C-a 选择整个字段,并且可以防止使用箭头键移动到前缀/后缀中。但是,鼠标拖动和 shift-箭头键仍然允许选择移动到这些限制区域。

有什么想法吗?

最佳答案

您可以为此使用 NavigationFilter。

这是一个让你入门的例子:

import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;

public class NavigationFilterPrefixWithBackspace extends NavigationFilter
{
private int prefixLength;
private Action deletePrevious;

public NavigationFilterPrefixWithBackspace(int prefixLength, JTextComponent component)
{
this.prefixLength = prefixLength;
deletePrevious = component.getActionMap().get("delete-previous");
component.getActionMap().put("delete-previous", new BackspaceAction());
component.setCaretPosition(prefixLength);
}

public void setDot(NavigationFilter.FilterBypass fb, int dot, Position.Bias bias)
{
fb.setDot(Math.max(dot, prefixLength), bias);
}

public void moveDot(NavigationFilter.FilterBypass fb, int dot, Position.Bias bias)
{
fb.moveDot(Math.max(dot, prefixLength), bias);
}

class BackspaceAction extends AbstractAction
{
public void actionPerformed(ActionEvent e)
{
JTextComponent component = (JTextComponent)e.getSource();

if (component.getCaretPosition() > prefixLength)
{
deletePrevious.actionPerformed( null );
}
}
}

public static void main(String args[]) throws Exception {

JTextField textField = new JTextField("Prefix_", 20);
textField.setNavigationFilter( new NavigationFilterPrefixWithBackspace(7, textField) );

JFrame frame = new JFrame("Navigation Filter Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(textField);
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible(true);
}
}

我相信这就是 JFormattedTextField 的工作方式。所以我不确定您是否可以将其与格式化文本字段一起使用,因为它可能会取代默认行为。

关于java - JTextField/JTextComponent 中的选择有限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7421337/

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