com.vaadin.client.SimpleTree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2000-2013 Vaadin Ltd.
*
* 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.
*/
package com.vaadin.client;
import com.google.gwt.dom.client.Document;
import com.google.gwt.dom.client.SpanElement;
import com.google.gwt.dom.client.Style;
import com.google.gwt.dom.client.Style.BorderStyle;
import com.google.gwt.dom.client.Style.Cursor;
import com.google.gwt.dom.client.Style.Display;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.ui.ComplexPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.Widget;
public class SimpleTree extends ComplexPanel {
private Element children = Document.get().createDivElement().cast();
private SpanElement handle = Document.get().createSpanElement();
private SpanElement text = Document.get().createSpanElement();
public SimpleTree() {
setElement(Document.get().createDivElement());
Style style = getElement().getStyle();
style.setProperty("whiteSpace", "nowrap");
style.setPadding(3, Unit.PX);
style.setPaddingLeft(12, Unit.PX);
style = handle.getStyle();
style.setDisplay(Display.NONE);
style.setProperty("textAlign", "center");
style.setWidth(10, Unit.PX);
style.setCursor(Cursor.POINTER);
style.setBorderStyle(BorderStyle.SOLID);
style.setBorderColor("#666");
style.setBorderWidth(1, Unit.PX);
style.setMarginRight(3, Unit.PX);
style.setProperty("borderRadius", "4px");
handle.setInnerHTML("+");
getElement().appendChild(handle);
getElement().appendChild(text);
style = children.getStyle();
style.setPaddingLeft(9, Unit.PX);
style.setDisplay(Display.NONE);
getElement().appendChild(children);
addDomHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
if (event.getNativeEvent().getEventTarget().cast() == handle) {
if (children.getStyle().getDisplay().intern() == Display.NONE
.getCssName()) {
open(event.getNativeEvent().getShiftKey());
} else {
close();
}
} else if (event.getNativeEvent().getEventTarget().cast() == text) {
select(event);
}
}
}, ClickEvent.getType());
}
protected void select(ClickEvent event) {
}
public void close() {
children.getStyle().setDisplay(Display.NONE);
handle.setInnerHTML("+");
}
public void open(boolean recursive) {
handle.setInnerHTML("-");
children.getStyle().setDisplay(Display.BLOCK);
if (recursive) {
for (Widget w : getChildren()) {
if (w instanceof SimpleTree) {
SimpleTree str = (SimpleTree) w;
str.open(true);
}
}
}
}
public SimpleTree(String caption) {
this();
setText(caption);
}
public void setText(String text) {
this.text.setInnerText(text);
}
public void addItem(String text) {
Label label = new Label(text);
add(label, children);
}
@Override
public void add(Widget child) {
add(child, children);
}
@Override
protected void add(Widget child, Element container) {
super.add(child, container);
handle.getStyle().setDisplay(Display.INLINE_BLOCK);
getElement().getStyle().setPaddingLeft(3, Unit.PX);
}
}