List of usage examples for com.google.gwt.user.client.ui HasWidgets interface-usage
From source file at.ac.fhcampuswien.atom.client.gui.frames.TabLayoutPanelCopy.java
/**
* A panel that represents a tabbed set of pages, each of which contains another
* widget. Its child widgets are shown as the user selects the various tabs
* associated with them. The tabs can contain arbitrary text, HTML, or widgets.
*
* <p>
From source file cc.alcina.framework.gwt.client.widget.CustomisableTabPanel.java
/** * * Keep in sync with GWT - TabPanel */ @SuppressWarnings("deprecation") public class CustomisableTabPanel extends Composite implements TabListener, SourcesTabEvents, HasWidgets,
From source file cc.kune.common.client.ui.AbstractFlowToolbar.java
/** * The Class AbstractFlowToolbar. * * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado) */ public abstract class AbstractFlowToolbar extends FlowPanel implements AbstractToolbar, HasWidgets {
From source file cc.kune.common.client.ui.IconLabel.java
/** * The Class IconLabel. * * @author vjrj@ourproject.org (Vicente J. Ruiz Jurado) */ public class IconLabel extends Composite implements HasWidgets, HasDirectionalText {
From source file com.ait.ext4j.client.ui.Container.java
/** * Base class for any {@link Component} that can contain other components. * Containers handle the basic behavior of containing items, namely adding, * inserting and removing items. */ public class Container extends Component implements HasWidgets {
From source file com.ait.toolkit.sencha.touch.client.core.ComplexContainer.java
/**
* A class used to handle the logical and physical basic operations on
* containers as well as to provide a basic iterator implementation. The class
* attempts to mimic the behavior from GWT @See {@link ComplexPanel}. In fact,
* many of the methods here are borrowed from it. It would have been better to
* simply have @See {@link Container} extend it, however due to the current
From source file com.ait.toolkit.sencha.touch.client.ui.TabItem.java
/** * A basic implemetation for a TabItem to be used with {@link TabPanel} */ public class TabItem extends Composite implements HasWidgets { private Widget widget;
From source file com.alkacon.geranium.client.ui.AreaSelectPanel.java
/** * Select area widget. Allows the user to select an area inside the widget.<p> */ public class AreaSelectPanel extends Composite implements HasWidgets, IndexedPanel, HasValueChangeHandlers<PositionBean>, HasMouseDownHandlers, HasMouseUpHandlers, HasClickHandlers, HasMouseMoveHandlers, MouseDownHandler, MouseUpHandler, MouseMoveHandler {
From source file com.arcbees.seo.widget.ContainerNode.java
public class ContainerNode extends BaseNode implements HasWidgets { @Override public void add(Widget w) { } @Override
From source file com.beyobe.client.widgets.Carousel.java
/**
* the carousel widget renders its children in a horizontal row. users can select a different child
* by swiping between them
*
* @author Daniel Kurka
*