List of usage examples for com.google.gwt.user.client.ui HTMLPanel subclass-usage
From source file org.cruxframework.crux.plugin.gadget.client.widget.GadgetView.java
/**
* This widget is used to limit the area, inside a .crux.xml page, that will
* be added to a specific gadget view
*
* @author Thiago da Rosa de Bustamante
*
From source file org.ednovo.gooru.client.uc.HTMLEventPanel.java
public class HTMLEventPanel extends HTMLPanel implements HasClickHandlers, HasMouseOutHandlers, HasMouseOverHandlers { public HTMLEventPanel(String html) { super(html); }
From source file org.ednovo.gooru.client.ui.HTMLEventPanel.java
public class HTMLEventPanel extends HTMLPanel implements HasClickHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasBlurHandlers { public HTMLEventPanel(String html) { super(html); }
From source file org.gwtbootstrap3.client.ui.gwt.HTMLPanel.java
/** * @author Sven Jacobs * @author Grant Slender * @author David Buhler */ public class HTMLPanel extends com.google.gwt.user.client.ui.HTMLPanel
From source file org.gwtbootstrap3.client.ui.HTMLPanel.java
/** * @author Sven Jacobs * @author Grant Slender */ public class HTMLPanel extends com.google.gwt.user.client.ui.HTMLPanel implements HasId, HasSpy, HasTarget, HasResponsiveness, HasInlineStyle {
From source file org.java.multicore.demos.gwt.employeeadmin.client.utils.panel.PagePanel.java
public class PagePanel extends HTMLPanel implements HasTransitionEndHandlers { public enum Direction { LEFT_TO_CENTER, CENTER_TO_RIGHT, RIGHT_TO_CENTER, CENTER_TO_LEFT, LEFT_TO_RIGHT, RIGHT_TO_LEFT };
From source file org.opencms.gwt.client.ui.CmsHTMLHoverPanel.java
/** * A HTML Panel implementation toggles the I_CmsStateCss.cmsHovering CSS class on mouse over.<p> * * @since 8.0.0 */ public class CmsHTMLHoverPanel extends HTMLPanel implements HasMouseOutHandlers, HasMouseOverHandlers {
From source file org.rebioma.client.maps.TileLayerLegend.java
public abstract class TileLayerLegend extends HTMLPanel { public interface LegendCallback { public void onLookup(LatLng point, String value); }
From source file org.silverpeas.mobile.client.components.HTMLPanelClickable.java
/** * @author: svu */ public class HTMLPanelClickable extends HTMLPanel implements HasClickHandlers { public HTMLPanelClickable(String html) { super(html);
From source file org.spiffyui.client.widgets.SlideDownPrefsPanel.java
/**
* The SlideDownPrefsPanel shows a tab that sticks to the bottom of the
* header of the page. It slides down when clicked to reveal a preferences
* panel for the current page. It will also fire event and notify
* SlideDownPrefsPanelToggleListeners when the panel is toggled (expanded or collapsed)
*/