public class

DecoratedStackPanel

extends StackPanel
java.lang.Object
   ↳ com.google.gwt.user.client.ui.UIObject
     ↳ com.google.gwt.user.client.ui.Widget
       ↳ com.google.gwt.user.client.ui.Panel
         ↳ com.google.gwt.user.client.ui.ComplexPanel
           ↳ com.google.gwt.user.client.ui.StackPanel
             ↳ com.google.gwt.user.client.ui.DecoratedStackPanel

Class Overview

A StackPanel that wraps each item in a 2x3 grid (six box), which allows users to add rounded corners.

This widget will only work in quirks mode. If your application is in Standards Mode, use StackLayoutPanel instead.

CSS Style Rules

  • .gwt-DecoratedStackPanel { the panel itself }
  • .gwt-DecoratedStackPanel .gwt-StackPanelItem { unselected items }
  • .gwt-DecoratedStackPanel .gwt-StackPanelItem-selected { selected items }
  • .gwt-DecoratedStackPanel .gwt-StackPanelContent { the wrapper around the contents of the item }
  • .gwt-DecoratedStackPanel .stackItemTopLeft { top left corner of the item}
  • .gwt-DecoratedStackPanel .stackItemTopLeftInner { the inner element of the cell}
  • .gwt-DecoratedStackPanel .stackItemTopCenter { top center of the item}
  • .gwt-DecoratedStackPanel .stackItemTopCenterInner { the inner element of the cell}
  • .gwt-DecoratedStackPanel .stackItemTopRight { top right corner of the item}
  • .gwt-DecoratedStackPanel .stackItemTopRightInner { the inner element of the cell}
  • .gwt-DecoratedStackPanel .stackItemMiddleLeft { left side of the item }
  • .gwt-DecoratedStackPanel .stackItemMiddleLeftInner { the inner element of the cell}
  • .gwt-DecoratedStackPanel .stackItemMiddleCenter { center of the item, where the item text resides }
  • .gwt-DecoratedStackPanel .stackItemMiddleCenterInner { the inner element of the cell}
  • .gwt-DecoratedStackPanel .stackItemMiddleRight { right side of the item }
  • .gwt-DecoratedStackPanel .stackItemMiddleRightInner { the inner element of the cell}

See Also

Summary

Constants
String DEFAULT_STYLENAME
[Expand]
Inherited Constants
From class com.google.gwt.user.client.ui.UIObject
Public Constructors
DecoratedStackPanel()
Creates an empty decorated stack panel.
[Expand]
Inherited Methods
From class com.google.gwt.user.client.ui.StackPanel
From class com.google.gwt.user.client.ui.ComplexPanel
From class com.google.gwt.user.client.ui.Panel
From class com.google.gwt.user.client.ui.Widget
From class com.google.gwt.user.client.ui.UIObject
From class java.lang.Object
From interface com.google.gwt.event.logical.shared.HasAttachHandlers
From interface com.google.gwt.event.shared.HasHandlers
From interface com.google.gwt.user.client.EventListener
From interface com.google.gwt.user.client.ui.HasWidgets
From interface com.google.gwt.user.client.ui.HasWidgets.ForIsWidget
From interface com.google.gwt.user.client.ui.IndexedPanel
From interface com.google.gwt.user.client.ui.IndexedPanel.ForIsWidget
From interface com.google.gwt.user.client.ui.InsertPanel
From interface com.google.gwt.user.client.ui.InsertPanel.ForIsWidget
From interface com.google.gwt.user.client.ui.IsWidget
From interface java.lang.Iterable

Constants

public static final String DEFAULT_STYLENAME

Constant Value: "gwt-DecoratedStackPanel"

Public Constructors

public DecoratedStackPanel ()

Creates an empty decorated stack panel.