如何创建一个带有非活动文本作为后缀的 SWT 文本字段?

How to create a SWT text field with inactive text as a suffix?

我正在使用 Java 的 SWT 工具包创建带有文本字段输入的 GUI。这些输入字段需要输入数字并分配有单位。我正在尝试创建一种奇特的方式来将字段中的单位集成为文本的固定后缀,这样用户只能编辑数字部分。我还希望后缀显示为灰色,以便用户知道它已被禁用 - 如下所示:

在搜索时,我看到了一些使用来自 Swing 的掩码格式化程序的解决方案可能会成功,但我有点希望 SWT 可能有一些默认设置。关于如何使这项工作有任何建议吗?

该字段是矩阵的一部分,因此我不能简单地将单位添加到 header 标签。我想我可以在可以提供单位作为标签的文本字段之后创建另一列,但我想要一些更直观和美观的东西。

有什么建议吗?

一个选项是将 TextLabel 小部件分组在同一个组合中,并将 Label 上的文本设置为所需的后缀:

后缀左侧区域为单行文本域,可编辑,后缀为禁用Label.


public class TextWithSuffixExample {

    public class TextWithSuffix {

        public TextWithSuffix(final Composite parent) {
            // The border gives the appearance of a single component
            final Composite baseComposite = new Composite(parent, SWT.BORDER);
            baseComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
            final GridLayout baseCompositeGridLayout = new GridLayout(2, false);
            baseCompositeGridLayout.marginHeight = 0;
            baseCompositeGridLayout.marginWidth = 0;
            baseComposite.setLayout(baseCompositeGridLayout);

            // You can set the background color and force it on 
            // the children (the Text and Label objects) to add 
            // to the illusion of a single component
            baseComposite.setBackground(new Color(parent.getDisplay(), new RGB(255, 255, 255)));
            baseComposite.setBackgroundMode(SWT.INHERIT_FORCE);

            final Text text = new Text(baseComposite, SWT.SINGLE | SWT.RIGHT);
            text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

            final Label label = new Label(baseComposite, SWT.NONE);
            label.setEnabled(false);
            label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, true));
            label.setText("kg/m^3");
        }

    }

    final Display display;
    final Shell shell;

    public TextWithSuffixExample() {
        display = new Display();
        shell = new Shell(display);
        shell.setLayout(new GridLayout());
        shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

        new TextWithSuffix(shell);
    }

    public void run() {
        shell.setSize(200, 100);
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) {
                display.sleep();
            }
        }
        display.dispose();
    }

    public static void main(final String[] args) {
        new TextWithSuffixExample().run();
    }

}