/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.svn.ide.common.threechoices; import org.eclipse.che.ide.ui.window.Window; import com.google.gwt.core.client.GWT; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.uibinder.client.UiHandler; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.Widget; import com.google.inject.Inject; /** * The footer show on choice dialogs. * * @author Mickaƫl Leduque * @author Artem Zatsarynnyy */ public class ChoiceDialogFooter extends Composite { private static final Window.Resources resources = GWT.create(Window.Resources.class); /** The UI binder instance. */ private static ChoiceDialogFooterUiBinder uiBinder = GWT.create(ChoiceDialogFooterUiBinder.class); @UiField Button firstChoiceButton; @UiField Button secondChoiceButton; @UiField Button thirdChoiceButton; /** The action delegate. */ private ChoiceDialogView.ActionDelegate actionDelegate; @Inject public ChoiceDialogFooter() { initWidget(uiBinder.createAndBindUi(this)); firstChoiceButton.addStyleName(resources.windowCss().button()); firstChoiceButton.getElement().setId("ask-dialog-first"); secondChoiceButton.addStyleName(resources.windowCss().button()); secondChoiceButton.getElement().setId("ask-dialog-second"); thirdChoiceButton.addStyleName(resources.windowCss().button()); thirdChoiceButton.getElement().setId("ask-dialog-third"); } /** * Sets the action delegate. * * @param delegate * the new value */ public void setDelegate(final ChoiceDialogView.ActionDelegate delegate) { this.actionDelegate = delegate; } /** * Handler set on the first button. * * @param event the event that triggers the handler call */ @UiHandler("firstChoiceButton") public void handleFirstChoiceClick(final ClickEvent event) { this.actionDelegate.firstChoiceClicked(); } /** * Handler set on the second button. * * @param event the event that triggers the handler call */ @UiHandler("secondChoiceButton") public void handleSecondChoiceClick(final ClickEvent event) { this.actionDelegate.secondChoiceClicked(); } /** The UI binder interface for this component. */ interface ChoiceDialogFooterUiBinder extends UiBinder<Widget, ChoiceDialogFooter> { } }