org.gwtbootstrap3.client.ui.LinkedGroupItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwtbootstrap3 Show documentation
Show all versions of gwtbootstrap3 Show documentation
GWT wrapper for the Bootstrap front-end framework
package org.gwtbootstrap3.client.ui;
/*
* #%L
* GwtBootstrap3
* %%
* Copyright (C) 2013 GwtBootstrap3
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import org.gwtbootstrap3.client.ui.base.ComplexWidget;
import org.gwtbootstrap3.client.ui.base.HasActive;
import org.gwtbootstrap3.client.ui.base.HasHref;
import org.gwtbootstrap3.client.ui.base.HasTargetHistoryToken;
import org.gwtbootstrap3.client.ui.base.mixin.ActiveMixin;
import org.gwtbootstrap3.client.ui.constants.Styles;
import org.gwtbootstrap3.client.ui.html.Span;
import com.google.gwt.dom.client.AnchorElement;
import com.google.gwt.dom.client.Document;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.event.dom.client.DoubleClickEvent;
import com.google.gwt.event.dom.client.DoubleClickHandler;
import com.google.gwt.event.dom.client.HasClickHandlers;
import com.google.gwt.event.dom.client.HasDoubleClickHandlers;
import com.google.gwt.event.shared.HandlerRegistration;
import com.google.gwt.user.client.History;
/**
* @author Joshua Godi
*/
public class LinkedGroupItem extends ComplexWidget implements HasClickHandlers, HasDoubleClickHandlers, HasHref,
HasTargetHistoryToken, HasActive {
private final ActiveMixin activeMixin = new ActiveMixin(this);
private final Span span = new Span();
private String targetHistoryToken;
public LinkedGroupItem(final String href) {
setElement(Document.get().createAnchorElement());
setStyleName(Styles.LIST_GROUP_ITEM);
setHref(href);
add(span);
}
public LinkedGroupItem(final String text, final String href) {
this(href);
setText(text);
}
public LinkedGroupItem() {
this(EMPTY_HREF);
}
@Override
public HandlerRegistration addClickHandler(final ClickHandler handler) {
return addDomHandler(handler, ClickEvent.getType());
}
@Override
public HandlerRegistration addDoubleClickHandler(final DoubleClickHandler handler) {
return addDomHandler(handler, DoubleClickEvent.getType());
}
public void setText(final String text) {
span.setText(text);
}
public String getText() {
return span.getText();
}
@Override
public void setHref(final String href) {
AnchorElement.as(getElement()).setHref(href);
}
@Override
public String getHref() {
return AnchorElement.as(getElement()).getHref();
}
@Override
public void setTargetHistoryToken(final String targetHistoryToken) {
this.targetHistoryToken = targetHistoryToken;
final String hash = History.encodeHistoryToken(targetHistoryToken);
setHref("#" + hash);
}
@Override
public String getTargetHistoryToken() {
return targetHistoryToken;
}
@Override
public void setActive(final boolean active) {
activeMixin.setActive(active);
}
@Override
public boolean isActive() {
return activeMixin.isActive();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy