use of com.google.gwt.uibinder.client.UiHandler in project GwtMobile by dennisjzh.
the class CheckBoxPage method onGroup1SelectionChanged.
@UiHandler("group1")
void onGroup1SelectionChanged(SelectionChangedEvent e) {
CheckBox radio = (CheckBox) group1.getWidget(e.getSelection());
Utils.Console("group1 " + e.getSelection() + " " + radio.getText());
}
use of com.google.gwt.uibinder.client.UiHandler in project GwtMobile by dennisjzh.
the class RadioButtonPage method onRadioGroup1SelectionChanged.
@UiHandler("radiogroup1")
void onRadioGroup1SelectionChanged(SelectionChangedEvent e) {
RadioButton radio = (RadioButton) radiogroup1.getWidget(e.getSelection());
Utils.Console("group1 " + e.getSelection() + " " + radio.getText());
}
use of com.google.gwt.uibinder.client.UiHandler in project che by eclipse.
the class NavigateToFileViewImpl method handleKeyDown.
@UiHandler("fileName")
void handleKeyDown(KeyDownEvent event) {
switch(event.getNativeKeyCode()) {
case KeyCodes.KEY_UP:
event.stopPropagation();
event.preventDefault();
if (list != null) {
list.getSelectionModel().selectPrevious();
}
return;
case KeyCodes.KEY_DOWN:
event.stopPropagation();
event.preventDefault();
if (list != null) {
list.getSelectionModel().selectNext();
}
return;
case KeyCodes.KEY_PAGEUP:
event.stopPropagation();
event.preventDefault();
if (list != null) {
list.getSelectionModel().selectPreviousPage();
}
return;
case KeyCodes.KEY_PAGEDOWN:
event.stopPropagation();
event.preventDefault();
if (list != null) {
list.getSelectionModel().selectNextPage();
}
return;
case KeyCodes.KEY_ENTER:
event.stopPropagation();
event.preventDefault();
ItemReference selectedItem = list.getSelectionModel().getSelectedItem();
if (selectedItem != null) {
delegate.onFileSelected(Path.valueOf(selectedItem.getPath()));
;
}
return;
case KeyCodes.KEY_ESCAPE:
event.stopPropagation();
event.preventDefault();
hidePopup();
return;
}
Scheduler.get().scheduleDeferred(new Command() {
@Override
public void execute() {
delegate.onFileNameChanged(fileName.getText());
}
});
}
use of com.google.gwt.uibinder.client.UiHandler in project platformlayer by platformlayer.
the class JettyServiceViewImpl method onMetricButton.
@UiHandler("metricButton")
public void onMetricButton(ClickEvent e) {
MetricPlace metricPlace = new MetricPlace(activity.getPlace(), "jvm");
activity.goTo(metricPlace);
}
use of com.google.gwt.uibinder.client.UiHandler in project opennms by OpenNMS.
the class FilterPanel method onApplicationSelect.
/**
* <p>onApplicationSelect</p>
*
* @param event a {@link com.google.gwt.event.logical.shared.SelectionEvent} object.
*/
@UiHandler("applicationNameSuggestBox")
public void onApplicationSelect(final SelectionEvent<Suggestion> event) {
Suggestion item = event.getSelectedItem();
m_eventBus.fireEvent(new ApplicationSelectedEvent(item.getReplacementString()));
}
Aggregations