use of com.google.gwt.user.client.ui.RadioButton in project che by eclipse.
the class CustomListBox method insertItem.
/**
* Inserts an item into the list box.
*
* @param item
* the text of the item to be inserted.
* @param value
* the item's value.
*/
public void insertItem(String item, String value) {
//create new widget
final RadioButton radioButton = new RadioButton(optionsGroupName, item);
//remove the default gwt-RadioButton style
radioButton.removeStyleName("gwt-RadioButton");
//set value
final InputElement inputElement = (InputElement) radioButton.getElement().getElementsByTagName("input").getItem(0);
inputElement.removeAttribute("tabindex");
inputElement.setAttribute("value", value);
//set default state
if (defaultSelectedIndex > -1 && optionsPanel.getElement().getChildCount() == defaultSelectedIndex) {
inputElement.setChecked(true);
currentItemLabel.setInnerText(item);
}
//add to widget
optionsPanel.add(radioButton);
}
use of com.google.gwt.user.client.ui.RadioButton in project ovirt-engine by oVirt.
the class RadioGroup method updateButtons.
private void updateButtons() {
for (Map.Entry<K, RadioButton> entry : buttons.entrySet()) {
RadioButton radioButton = entry.getValue();
if (usePatternfly) {
// patternfly hacks
Element.as(radioButton.getElement().getChild(0)).getStyle().setVerticalAlign(VerticalAlign.TOP);
getRadioButtonWidgetLabel(radioButton).getStyle().setPaddingLeft(10, Unit.PX);
getRadioButtonWidgetLabel(radioButton).getStyle().setPosition(Position.RELATIVE);
// $NON-NLS-1$
getRadioButtonWidgetLabel(radioButton).getStyle().setProperty(MAX_WIDTH, "94%");
}
if (entry.getKey().equals(selectedValue)) {
radioButton.setValue(true);
radioButton.setTabIndex(tabIndex);
if (accessKey != 0) {
radioButton.setAccessKey(accessKey);
}
} else if (Objects.equals(oldSelectedValue, entry.getKey())) {
radioButton.setTabIndex(-1);
// $NON-NLS-1$
radioButton.getElement().removeAttribute("accessKey");
}
}
}
use of com.google.gwt.user.client.ui.RadioButton in project ovirt-engine by oVirt.
the class HostInstallPopupView method initEditors.
void initEditors() {
isoEditor = new ListModelListBoxEditor<>(new NullSafeRenderer<RpmVersion>() {
@Override
public String renderNullSafe(RpmVersion version) {
// Format string to contain major.minor version only.
return version.getRpmName();
}
});
// $NON-NLS-1$
rbPassword = new RadioButton("1");
// $NON-NLS-1$
rbPublicKey = new RadioButton("1");
publicKeyEditor = new StringEntityModelTextAreaLabelEditor();
activateHostAfterInstallEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
overrideIpTablesEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
}
use of com.google.gwt.user.client.ui.RadioButton in project ovirt-engine by oVirt.
the class HostPopupView method initEditors.
private void initEditors() {
publicKeyEditor = new StringEntityModelTextAreaLabelEditor();
// List boxes
clusterEditor = new GroupedListModelListBoxEditor<>(new GroupedListModelListBox<Cluster>(new NameRenderer<Cluster>()) {
@Override
public String getModelLabel(Cluster model) {
return model.getName();
}
@Override
public String getGroupLabel(Cluster model) {
return messages.hostDataCenter(model.getStoragePoolName());
}
@Override
public Comparator<Cluster> getComparator() {
return new DataCenterClusterComparator();
}
/**
* Comparator that sorts on data center name first, and then cluster name. Ignoring case.
*/
final class DataCenterClusterComparator implements Comparator<Cluster> {
@Override
public int compare(Cluster cluster1, Cluster cluster2) {
if (cluster1.getStoragePoolName() != null && cluster2.getStoragePoolName() == null) {
return -1;
} else if (cluster2.getStoragePoolName() != null && cluster1.getStoragePoolName() == null) {
return 1;
} else if (cluster1.getStoragePoolName() == null && cluster2.getStoragePoolName() == null) {
return 0;
}
if (cluster1.getStoragePoolName().equals(cluster2.getStoragePoolName())) {
return cluster1.getName().compareToIgnoreCase(cluster2.getName());
} else {
return cluster1.getStoragePoolName().compareToIgnoreCase(cluster2.getStoragePoolName());
}
}
}
});
externalHostNameEditor = new ListModelListBoxEditor<>(new NameRenderer<VDS>());
providersEditor = new ListModelListBoxEditor<>(new NameRenderer<Provider<OpenstackNetworkProviderProperties>>());
externalDiscoveredHostsEditor = getListModelTypeAheadListBoxEditor();
externalHostGroupsEditor = getListModelTypeAheadListBoxEditor();
externalComputeResourceEditor = getListModelTypeAheadListBoxEditor();
// Check boxes
pmEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
pmEnabledEditor.setUsePatternFly(true);
pmKdumpDetectionEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
pmKdumpDetectionEditor.setUsePatternFly(true);
disableAutomaticPowerManagementEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
disableAutomaticPowerManagementEditor.setUsePatternFly(true);
externalHostProviderEnabledEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
overrideIpTablesEditor = new EntityModelCheckBoxEditor(Align.RIGHT);
// $NON-NLS-1$
rbPassword = new RadioButton("1");
// $NON-NLS-1$
rbPublicKey = new RadioButton("1");
// $NON-NLS-1$
rbDiscoveredHost = new EntityModelRadioButtonEditor("2");
// $NON-NLS-1$
rbProvisionedHost = new EntityModelRadioButtonEditor("2");
kernelCmdlineBlacklistNouveau = new EntityModelCheckBoxEditor(Align.RIGHT);
kernelCmdlineIommu = new EntityModelCheckBoxEditor(Align.RIGHT);
kernelCmdlineKvmNested = new EntityModelCheckBoxEditor(Align.RIGHT);
kernelCmdlineUnsafeInterrupts = new EntityModelCheckBoxEditor(Align.RIGHT);
kernelCmdlinePciRealloc = new EntityModelCheckBoxEditor(Align.RIGHT);
consoleAddressEnabled = new EntityModelCheckBoxEditor(Align.RIGHT);
hostedEngineDeployActionsEditor = new ListModelListBoxEditor<>(new EnumRenderer<HostedEngineDeployConfiguration.Action>());
}
use of com.google.gwt.user.client.ui.RadioButton in project cuba by cuba-platform.
the class CubaOptionGroupWidget method buildOptions.
@Override
public void buildOptions(UIDL uidl) {
super.buildOptions(uidl);
for (Widget widget : panel) {
if (widget instanceof RadioButton) {
((RadioButton) widget).addKeyDownHandler(this);
((RadioButton) widget).addValueChangeHandler(this);
}
}
updateEnabledState();
}
Aggregations