Uses of Class
de.lessvoid.nifty.tools.SizeValue

Packages that use SizeValue
de.lessvoid.nifty.controls   
de.lessvoid.nifty.elements   
de.lessvoid.nifty.elements.render   
de.lessvoid.nifty.layout   
de.lessvoid.nifty.layout.manager   
de.lessvoid.nifty.loaderv2.types.apply   
de.lessvoid.nifty.tools   
 

Uses of SizeValue in de.lessvoid.nifty.controls
 

Methods in de.lessvoid.nifty.controls with parameters of type SizeValue
 void NiftyControl.setHeight(SizeValue height)
          Set Height as SizeValue.
 void AbstractController.setHeight(SizeValue height)
           
 void NiftyControl.setWidth(SizeValue width)
          Set width as SizeValue.
 void AbstractController.setWidth(SizeValue width)
           
 

Uses of SizeValue in de.lessvoid.nifty.elements
 

Methods in de.lessvoid.nifty.elements that return SizeValue
 SizeValue Element.getConstraintHeight()
          get current height constraint.
 SizeValue Element.getConstraintWidth()
          get current width constraint.
 SizeValue Element.getConstraintX()
           
 SizeValue Element.getConstraintY()
           
 

Methods in de.lessvoid.nifty.elements with parameters of type SizeValue
 void Element.setConstraintHeight(SizeValue newHeight)
          set new height constraint.
 void Element.setConstraintWidth(SizeValue newWidth)
          set new width constraint.
 void Element.setConstraintX(SizeValue newX)
          set new x position constraint.
 void Element.setConstraintY(SizeValue newY)
          set new y position constraint.
 void Element.setMarginBottom(SizeValue value)
           
 void Element.setMarginLeft(SizeValue value)
           
 void Element.setMarginRight(SizeValue value)
           
 void Element.setMarginTop(SizeValue value)
           
 void Element.setPaddingBottom(SizeValue paddingValue)
           
 void Element.setPaddingLeft(SizeValue paddingValue)
           
 void Element.setPaddingRight(SizeValue paddingValue)
           
 void Element.setPaddingTop(SizeValue paddingValue)
           
 

Uses of SizeValue in de.lessvoid.nifty.elements.render
 

Methods in de.lessvoid.nifty.elements.render with parameters of type SizeValue
 void TextRenderer.setTextLineHeight(SizeValue textLineHeight)
           
 void TextRenderer.setTextMinHeight(SizeValue textMinHeight)
           
 void TextRenderer.setWidthConstraint(Element element, SizeValue elementConstraintWidth, int parentWidth, NiftyRenderEngine renderEngine)
           
 

Uses of SizeValue in de.lessvoid.nifty.layout
 

Methods in de.lessvoid.nifty.layout that return SizeValue
 SizeValue BoxConstraints.getHeight()
          Get the current height constraint for the box.
 SizeValue BoxConstraints.getMarginBottom()
           
 SizeValue BoxConstraints.getMarginLeft()
           
 SizeValue BoxConstraints.getMarginRight()
           
 SizeValue BoxConstraints.getMarginTop()
           
 SizeValue LayoutPart.getMaxHeight(List<LayoutPart> children)
          Calculates the maximum height of the given child elements.
 SizeValue LayoutPart.getMaxWidth(List<LayoutPart> children)
          Calculates the maximum width of the given child elements.
 SizeValue BoxConstraints.getPaddingBottom()
           
 SizeValue BoxConstraints.getPaddingLeft()
           
 SizeValue BoxConstraints.getPaddingRight()
           
 SizeValue BoxConstraints.getPaddingTop()
           
 SizeValue LayoutPart.getSumHeight(List<LayoutPart> children)
          Calculates the sum of the height of all children.
 SizeValue LayoutPart.getSumWidth(List<LayoutPart> children)
          Calculates the sum of the width of all children.
 SizeValue BoxConstraints.getWidth()
          Get the current width constraint of the box.
 SizeValue BoxConstraints.getX()
          Get the horizontal position constraint of the box.
 SizeValue BoxConstraints.getY()
          Get the vertical position constraint of the box.
 

Methods in de.lessvoid.nifty.layout with parameters of type SizeValue
 void BoxConstraints.setHeight(SizeValue newHeight)
          Set a new height constraint for the box.
 void BoxConstraints.setMargin(SizeValue margin)
           
 void BoxConstraints.setMargin(SizeValue topBottomParam, SizeValue leftRightParam)
           
 void BoxConstraints.setMargin(SizeValue topParam, SizeValue leftRightParam, SizeValue bottomParam)
           
 void BoxConstraints.setMargin(SizeValue topParam, SizeValue rightParam, SizeValue bottomParam, SizeValue leftParam)
           
 void BoxConstraints.setMarginBottom(SizeValue marginBottomParam)
           
 void BoxConstraints.setMarginLeft(SizeValue marginLeftParam)
           
 void BoxConstraints.setMarginRight(SizeValue marginRightParam)
           
 void BoxConstraints.setMarginTop(SizeValue marginTopParam)
           
 void BoxConstraints.setPadding(SizeValue padding)
           
 void BoxConstraints.setPadding(SizeValue topBottomParam, SizeValue leftRightParam)
           
 void BoxConstraints.setPadding(SizeValue topParam, SizeValue leftRightParam, SizeValue bottomParam)
           
 void BoxConstraints.setPadding(SizeValue topParam, SizeValue rightParam, SizeValue bottomParam, SizeValue leftParam)
           
 void BoxConstraints.setPaddingBottom(SizeValue paddingBottomParam)
           
 void BoxConstraints.setPaddingLeft(SizeValue paddingLeftParam)
           
 void BoxConstraints.setPaddingRight(SizeValue paddingRightParam)
           
 void BoxConstraints.setPaddingTop(SizeValue paddingTopParam)
           
 void BoxConstraints.setWidth(SizeValue newWidth)
          Set a new width constraint for the box.
 void BoxConstraints.setX(SizeValue newX)
          Get the horizontal position constraint of the box.
 void BoxConstraints.setY(SizeValue newY)
          Set the vertical position constraint of the box.
 

Constructors in de.lessvoid.nifty.layout with parameters of type SizeValue
BoxConstraints(SizeValue newX, SizeValue newY, SizeValue newWidth, SizeValue newHeight, HorizontalAlign newHorizontalAlign, VerticalAlign newVerticalAlign)
          create new BoxConstraints.
 

Uses of SizeValue in de.lessvoid.nifty.layout.manager
 

Methods in de.lessvoid.nifty.layout.manager that return SizeValue
 SizeValue VerticalLayout.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
           
 SizeValue OverlayLayout.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
           
 SizeValue LayoutManager.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
          Calculates a new Height constraint.
 SizeValue HorizontalLayout.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
           
 SizeValue CenterLayout.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
           
 SizeValue AbsolutePositionLayout.calculateConstraintHeight(LayoutPart root, List<LayoutPart> children)
           
 SizeValue VerticalLayout.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
           
 SizeValue OverlayLayout.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
           
 SizeValue LayoutManager.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
          Calculates a new Width constraint.
 SizeValue HorizontalLayout.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
           
 SizeValue CenterLayout.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
           
 SizeValue AbsolutePositionLayout.calculateConstraintWidth(LayoutPart root, List<LayoutPart> children)
           
 

Uses of SizeValue in de.lessvoid.nifty.loaderv2.types.apply
 

Methods in de.lessvoid.nifty.loaderv2.types.apply that return SizeValue
 SizeValue Convert.paddingSizeValue(String value, String defaultValue)
           
 SizeValue Convert.sizeValue(String value)
           
 

Uses of SizeValue in de.lessvoid.nifty.tools
 

Methods in de.lessvoid.nifty.tools that return SizeValue
static SizeValue SizeValue.percent(int percentage)
          static helper to create a percentage based SizeValue.
static SizeValue SizeValue.px(int pixelValue)
          static helper to create a pixel based SizeValue.
static SizeValue SizeValue.wildcard()
          static helper to create a wildcard based SizeValue.
 



Copyright © 2012. All Rights Reserved.