List of usage examples for com.google.gwt.user.client.ui Label subclass-usage
From source file com.qut.gwtuilib.client.display.RequiredField.java
public class RequiredField extends Label { public RequiredField() { ToolTip toolTip = new ToolTip("This is mandatory content"); this.addMouseListener(toolTip); this.addStyleName(CSSConstants.requiredField);
From source file com.risevision.ui.client.common.widgets.LastModifiedWidget.java
public class LastModifiedWidget extends Label { private static LastModifiedWidget instance; // private UserServiceAsync userService = (UserServiceAsync) GWT.create(UserService.class); // private RpcGetUserCallbackHandler callbackHandler = new RpcGetUserCallbackHandler(); // private Date changeDate;
From source file com.risevision.ui.client.common.widgets.UnitLabelWidget.java
public class UnitLabelWidget extends Label { private static String PIXEL_LABEL = "Pixels"; public static String PIXEL_UNIT = "px"; public static String PERCENT_UNIT = "%"; public UnitLabelWidget(String text) {
From source file com.risevision.ui.client.display.PlayerOSLabel.java
public class PlayerOSLabel extends Label { public static final String WINDOWS = "Windows"; public static final String LINUX = "Linux 32-bit"; public static final String LINUX_64BIT = "Linux 64-bit"; public static final String MAC_OS = "Mac OS"; public static final String RASPBIAN = "Raspbian";
From source file com.smartgwt.client.widgets.layout.SectionHeader.java
/** * Simple SectionHeader class based on a Label with an icon, skinnable via CSS. */ public class SectionHeader extends Label { public static SectionHeader getOrCreateRef(JavaScriptObject jsObj) {
From source file com.smartgwt.client.widgets.ViewLoader.java
/**
* The ViewLoader component can be used to load new Smart GWT-based user interfaces into a running application. <P>
* <b>NOTE:</b> before using a ViewLoader, be sure that you have read about and understood the {@link
* com.smartgwt.client.docs.SmartArchitecture Smart GWT Architecture}. The most responsive and scalable application
* architecture preloads views rather than using ViewLoaders. <P> A ViewLoader is a Canvas, and can be provided anywhere a
* Canvas can be provided: as a Tab pane, and Layout member, etc. When a ViewLoader draws, it shows a {@link
From source file com.spaceapplications.vaadin.addon.eventtimeline.gwt.client.VEventLabel.java
/** * The widget to display a single VEvent. * * @author Thomas Neidhart / Space Applications Services NV/SA */ public class VEventLabel extends Label {
From source file com.sun.labs.aura.dbbrowser.client.viz.StyleLabel.java
/** * A GWT Label that also can set its own CSS style */ public class StyleLabel extends Label { public StyleLabel(String text, String style) { super(text);
From source file com.sun.labs.aura.music.wsitm.client.ui.SpannedLabel.java
/** * * @author mailletf */ public class SpannedLabel extends Label {
From source file com.threerings.gwt.ui.InlineLabel.java
/** * A small helper class to provide us with an inline label, since the default * implementation of Label creates a DIV, and there's no way to make a SPAN. */ public class InlineLabel extends Label { public InlineLabel() {