Uses of Class
com.threerings.opengl.gui.Container

Packages that use Container
com.threerings.opengl.gui User interface classes. 
com.threerings.opengl.gui.config GUI configurations. 
com.threerings.opengl.gui.layout   
 

Uses of Container in com.threerings.opengl.gui
 

Subclasses of Container in com.threerings.opengl.gui
 class ChatOverlay
          A chat display for use as a HUD element.
 class DecoratedWindow
          A top-level window with a border, a background and a title bar.
 class List
          Displays a list of selectable entries and fires an ActionEvent when the selected value changes.
 class PopupMenu
          Displays a popup menu of items, one of which can be selected.
 class PopupWindow
          A window that is popped up to display something like a menu or a tooltip or some other temporary, modal overlaid display.
 class ScrollBar
          Displays a scroll bar for all your horizontal and vertical scrolling needs.
 class ScrollButton
          Displays a scroll button for all your horizontal and vertical scrolling needs.
 class ScrollingList<V,C extends Component>
          Provides a scrollable, lazily instantiated component view of values
 class ScrollPane
          Provides a scrollable clipped view on a sub-heirarchy of components.
 class Spinner
          Displays a value with little next and previous buttons.
 class StretchWindow
          A window that automatically stretches to cover the entire render surface.
 class TabbedPane
          Displays one of a set of components (tabs) depending on which tab is selected.
 class TextArea
          Displays one or more lines of text which may contain basic formatting (changing of color, toggling bold, italic and underline).
 class UserInterface
          A user interface component configured from a resource.
 class UserInterfaceWindow
          A window that contains a user interface.
 class Window
          A window defines the top-level of a component hierarchy.
 

Methods in com.threerings.opengl.gui that return Container
 Container Component.getParent()
          Returns the parent of this component in the interface hierarchy.
 

Methods in com.threerings.opengl.gui with parameters of type Container
 void Window.setParent(Container parent)
           
 void Component.setParent(Container parent)
          Informs this component of its parent in the interface heirarchy.
 

Uses of Container in com.threerings.opengl.gui.config
 

Methods in com.threerings.opengl.gui.config with parameters of type Container
 void LayoutConfig.configure(GlContext ctx, Scope scope, com.threerings.util.MessageBundle msgs, Container cont)
          Configures the supplied container with this layout.
 

Uses of Container in com.threerings.opengl.gui.layout
 

Methods in com.threerings.opengl.gui.layout that return Container
static Container GroupLayout.makeHBox(GlContext ctx, GroupLayout.Justification justification)
          Makes a container configured with a horizontal group layout manager.
static Container GroupLayout.makeHBox(GlContext ctx, GroupLayout.Justification justification, Component... comps)
          Makes a horizontal box of components that uses the supplied (on-axis) justification.
static Container GroupLayout.makeVBox(GlContext ctx, GroupLayout.Justification justification)
          Creates a container configured with a vertical group layout manager.
static Container GroupLayout.makeVBox(GlContext ctx, GroupLayout.Justification justification, Component... comps)
          Makes a vertical box of components that uses the supplied (on-axis) justification.
 

Methods in com.threerings.opengl.gui.layout with parameters of type Container
 Dimension VGroupLayout.computePreferredSize(Container target, int whint, int hhint)
           
 Dimension TableLayout.computePreferredSize(Container target, int whint, int hhint)
           
abstract  Dimension LayoutManager.computePreferredSize(Container target, int whint, int hhint)
          Computes the preferred size for the supplied container, based on the preferred sizes of its children and the layout policy implemented by this manager.
 Dimension HGroupLayout.computePreferredSize(Container target, int whint, int hhint)
           
 Dimension BorderLayout.computePreferredSize(Container target, int whint, int hhint)
           
 Dimension AnchorLayout.computePreferredSize(Container target, int whint, int hhint)
           
 Dimension AbsoluteLayout.computePreferredSize(Container target, int whint, int hhint)
           
 void VGroupLayout.layoutContainer(Container target)
           
 void TableLayout.layoutContainer(Container target)
           
abstract  void LayoutManager.layoutContainer(Container target)
          Effects the layout policy of this manager on the supplied target, adjusting the size and position of its children based on the size and position of the target at the time of this call.
 void HGroupLayout.layoutContainer(Container target)
           
 void BorderLayout.layoutContainer(Container target)
           
 void AnchorLayout.layoutContainer(Container target)
           
 void AbsoluteLayout.layoutContainer(Container target)
           
 



Copyright © 2011. All Rights Reserved.