2

我在工具栏中有几个ToolItems带有样式的 SWT。SWT.RADIO我想使用 以编程方式取消选择所有这些toolItem.setSelection(false),但这是不可能的。当前ToolItem选定的保持选中状态。我可以选择另一个 ToolItem 使用toolItem.setSelection(true),这将取消选择第一个,但我找不到取消选择所有这些的方法,尽管当 GUI 启动时,它们都被取消选择。有谁知道如何取消选择所有这些?

更新:我发现了问题所在:我检查了@rgeorge,发现toolItem.setSelection(false)如果工具栏是用ToolBar toolBar = new ToolBar(shell). 但是如果我使用Mac上可以获得的工具栏shell.getToolBar()(窗口框架统一工具栏),它就不起作用。似乎是 SWT 不兼容。这是一些重现效果的代码(更改useShellToolbar为在 Mac 上切换案例):

// taken from SWT Snippet47
package org.eclipse.swt.snippets;

import org.eclipse.swt.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.widgets.*;

public class ToolbarRadioButtonGroupTest {

public static void main (String [] args) {

    boolean useShellToolBar  = true;

    Display display = new Display ();
    Shell shell = new Shell (display);

    Image image = new Image (display, 20, 20);
    Color color = display.getSystemColor (SWT.COLOR_BLUE);
    GC gc = new GC (image);
    gc.setBackground (color);
    gc.fillRectangle (image.getBounds ());
    gc.dispose ();

    Image image2 = new Image (display, 20, 20);
    color = display.getSystemColor (SWT.COLOR_GREEN);
    gc = new GC (image2);
    gc.setBackground (color);
    gc.fillRectangle (image2.getBounds ());
    gc.dispose ();

    ToolBar bar = null;
    if (useShellToolBar){
        bar = shell.getToolBar();
    }else{
        bar = new ToolBar (shell, SWT.BORDER | SWT.FLAT);
    }

    Rectangle clientArea = shell.getClientArea ();
    bar.setBounds (clientArea.x, clientArea.y, 200, 32);
    int number = 3;
    final ToolItem[] items = new ToolItem[number];
    for (int i=0; i<number; i++) {
        ToolItem item = new ToolItem (bar, SWT.RADIO);
        item.setImage (image);
        items[i] = item;
    }

    ToolItem sep = new ToolItem(bar, SWT.SEPARATOR);

    ToolItem push = new ToolItem(bar, SWT.PUSH);
    push.setImage(image2);
    push.addListener(SWT.Selection, new Listener(){

        @Override
        public void handleEvent(Event event) {
            for (ToolItem toolItem : items) {
                toolItem.setSelection(false);
            }

        }

    });

    shell.open ();
    while (!shell.isDisposed ()) {
        if (!display.readAndDispatch ()) display.sleep ();
    }
    image.dispose ();
    image2.dispose ();
    display.dispose ();
}
} 
4

1 回答 1

0
btnB.setSelection(false);

您需要对每个按钮都这样做,然后您将全部取消选择,尝试使用buttonname.optionName(optionargs);

于 2014-07-10T14:38:17.890 回答