use of org.rstudio.core.client.widget.HelpButton in project rstudio by rstudio.
the class PreferencesDialogPaneBase method checkBoxWithHelp.
protected HorizontalPanel checkBoxWithHelp(CheckBox checkBox, String topic) {
HorizontalPanel panel = new HorizontalPanel();
panel.add(checkBox);
HelpButton helpButton = new HelpButton(topic, false);
Style helpStyle = helpButton.getElement().getStyle();
helpStyle.setMarginTop(1, Unit.PX);
helpStyle.setMarginLeft(6, Unit.PX);
panel.add(helpButton);
return panel;
}
Aggregations