Java tutorial
/******************************************************************************* * Copyright 2013 Ednovo d/b/a Gooru. All rights reserved. * * http://www.goorulearning.org/ * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ******************************************************************************/ package org.ednovo.gooru.client.mvp.authentication.uc; import org.ednovo.gooru.client.PlaceTokens; import org.ednovo.gooru.client.gin.AppClientFactory; import org.ednovo.gooru.client.mvp.authentication.SignUpCBundle; import org.ednovo.gooru.client.mvp.search.event.SetHeaderZIndexEvent; import org.ednovo.gooru.client.util.MixpanelUtil; import org.ednovo.gooru.shared.util.MessageProperties; 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.Window; import com.google.gwt.user.client.ui.Anchor; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.InlineLabel; import com.google.gwt.user.client.ui.Label; import com.google.gwt.user.client.ui.PopupPanel; import com.google.gwt.user.client.ui.Widget; public class SignUpDontWorryView extends PopupPanel implements MessageProperties { private static SignUpDontWorryViewUiBinder uiBinder = GWT.create(SignUpDontWorryViewUiBinder.class); interface SignUpDontWorryViewUiBinder extends UiBinder<Widget, SignUpDontWorryView> { } @UiField(provided = true) SignUpCBundle res; @UiField Label lblCancel, lblTitle, lblHeading, lblSubHeading, quriesText; @UiField Button btnGoToSetting, btnOk; @UiField InlineLabel pleaseContactText; @UiField Anchor supportLink; public SignUpDontWorryView() { super(false); this.res = SignUpCBundle.INSTANCE; res.css().ensureInjected(); setWidget(uiBinder.createAndBindUi(this)); this.setGlassEnabled(true); this.center(); this.setSize("502px", "352px"); Window.enableScrolling(false); AppClientFactory.fireEvent(new SetHeaderZIndexEvent(98, false)); this.addStyleName(SignUpCBundle.INSTANCE.css().popupBackground()); this.setGlassStyleName(SignUpCBundle.INSTANCE.css().signUpPopUpGlassCss()); //this.getElement().getStyle().setBackgroundColor("transparent"); setUiAndIds(); } public void setUiAndIds() { lblTitle.setText(GL0481 + GL_SPL_EXCLAMATION); lblHeading.setText(GL0482); lblHeading.getElement().setAttribute("style", "margin-bottom:0px"); lblSubHeading.setText(GL0496); btnGoToSetting.getElement().setId("btnGoToSetting"); btnOk.getElement().setId("btnOk"); btnOk.setText(GL0190); btnGoToSetting.setText(GL0497); btnOk.getElement().setAttribute("style", "margin-left: 10px"); quriesText.setText(GL1139 + GL_GRR_COMMA); pleaseContactText.setText(GL1145); supportLink.setText(GL0299); supportLink.setHref(GL1055); } @UiHandler("lblCancel") public void onClickLblCancel(ClickEvent event) { MixpanelUtil.close_signUp(); this.hide(); if (AppClientFactory.getPlaceManager().getCurrentPlaceRequest().getNameToken() .equalsIgnoreCase(PlaceTokens.PREVIEW_PLAY)) { } else { Window.enableScrolling(true); AppClientFactory.fireEvent(new SetHeaderZIndexEvent(0, true)); } } @UiHandler("btnOk") public void onClickButtonLeave(ClickEvent event) { MixpanelUtil.close_signUp(); this.hide(); if (AppClientFactory.getPlaceManager().getCurrentPlaceRequest().getNameToken() .equalsIgnoreCase(PlaceTokens.PREVIEW_PLAY)) { } else { Window.enableScrolling(true); AppClientFactory.fireEvent(new SetHeaderZIndexEvent(0, true)); } } @UiHandler("btnGoToSetting") public void onClickbtnGoToSetting(ClickEvent event) { this.hide(); AppClientFactory.getPlaceManager().redirectPlace(PlaceTokens.SETTINGS); } }