package org.eclipse.emf.eef.modelingBot.ui.utils; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Widget; import org.eclipse.swtbot.swt.finder.results.VoidResult; import org.eclipse.swtbot.swt.finder.utils.MessageFormat; import org.eclipse.swtbot.swt.finder.utils.SWTUtils; import org.eclipse.swtbot.swt.finder.widgets.SWTBotRadio; /** * A temporary class used to work around a bug. * * @author alagarde */ public class WrappedSWTBotRadio extends SWTBotRadio { /** * Default constructor. * * @param wrapped * The wrapped SWTBot radio to override click method. */ public WrappedSWTBotRadio(SWTBotRadio wrapped) { super(wrapped.widget); } /** * Selects the radio button. */ public SWTBotRadio click() { if (isSelected()) { log.debug(MessageFormat.format("Widget {0} is already selected, not clicking again.", this)); //$NON-NLS-1$ return this; } waitForEnabled(); log.debug(MessageFormat.format("Clicking on {0}", this)); //$NON-NLS-1$ asyncExec(new VoidResult() { public void run() { deselectOtherRadioButtons(); log.debug(MessageFormat.format("Clicking on {0}", this)); //$NON-NLS-1$ widget.setSelection(true); } /** * @see "http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet224.java?view=co" */ private void deselectOtherRadioButtons() { if (hasStyle(widget.getParent(), SWT.NO_RADIO_GROUP)) return; Widget[] siblings = SWTUtils.siblings(widget); for (Widget widget : siblings) { if ((widget instanceof Button) && hasStyle(widget, SWT.RADIO)) ((Button) widget).setSelection(false); } } }); notify(SWT.MouseEnter); notify(SWT.MouseMove); notify(SWT.Activate); notify(SWT.FocusIn); notify(SWT.MouseDown); notify(SWT.MouseUp); notify(SWT.Selection); notify(SWT.MouseHover); notify(SWT.MouseMove); notify(SWT.MouseExit); notify(SWT.Deactivate); notify(SWT.FocusOut); log.debug(MessageFormat.format("Clicked on {0}", this)); //$NON-NLS-1$ return this; } }