gpt4 book ai didi

java - 如何创建具有下拉功能的 SWT.RADIO 样式的 Eclipse 工具栏项?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:08:07 25 4
gpt4 key购买 nike

在 eclipse SWT 领域,当您可以向控件添加多种样式时,它会派上用场。工具栏可以添加多种样式。工具类元素不能享受同样的特权吗?解决方案是什么?

ToolItem API 明确指出

Only one of the styles CHECK, PUSH, RADIO, SEPARATOR and DROP_DOWN may be specified.

基本上,我希望工具栏项的行为类似于带有下拉菜单的单选按钮。我希望用户能够从项目下拉列表中的项目列表更改项目的默认操作。

谁能给我指出正确的方向?

    ...
ToolBar toolBar = new ToolBar(composite, SWT.FLAT | SWT.RIGHT | SWT.HORIZONTAL);

ToolItem item1 = new ToolItem(toolBar, SWT.RADIO);
item1.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
// do something
}
});
item1.setImage(image1);

ToolItem item2 = new ToolItem(toolBar, SWT.RADIO | STW.DROP_DOWN); //only allowed in my dreams
item2.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
// do a drop down action and lots more.
// change image of this ToolItem to match the drop down selection.
item2.setImage(selectedImage);
}

});
item2.setImage(image2);

最佳答案

snippet显示如何创建下拉菜单。要获取单选按钮,请对菜单项使用 SWT.RADIO 样式而不是 SWT.PUSH。

final ToolBar toolBar = new ToolBar (shell, SWT.NONE);
Rectangle clientArea = shell.getClientArea ();
toolBar.setLocation(clientArea.x, clientArea.y);
final Menu menu = new Menu (shell, SWT.POP_UP);
for (int i=0; i<8; i++) {
MenuItem item = new MenuItem (menu, SWT.PUSH);
item.setText ("Item " + i);
}
final ToolItem item = new ToolItem (toolBar, SWT.DROP_DOWN);
item.addListener (SWT.Selection, new Listener () {
public void handleEvent (Event event) {
if (event.detail == SWT.ARROW) {
Rectangle rect = item.getBounds ();
Point pt = new Point (rect.x, rect.y + rect.height);
pt = toolBar.toDisplay (pt);
menu.setLocation (pt.x, pt.y);
menu.setVisible (true);
}
}
});
toolBar.pack ();

关于java - 如何创建具有下拉功能的 SWT.RADIO 样式的 Eclipse 工具栏项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18370274/

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