HomeSort by relevance Sort by last modified time
    Searched refs:prefHeight (Results 1 - 13 of 13) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Stack.java 42 private float prefWidth, prefHeight, minWidth, minHeight, maxWidth, maxHeight;
66 prefHeight = 0;
78 prefHeight = Math.max(prefHeight, layout.getPrefHeight());
85 prefHeight = Math.max(prefHeight, child.getHeight());
118 return prefHeight;
HorizontalGroup.java 36 private float prefWidth, prefHeight;
58 prefHeight = 0;
64 prefHeight = Math.max(prefHeight, layout.getPrefHeight());
67 prefHeight = Math.max(prefHeight, child.getHeight());
70 prefHeight += padTop + padBottom;
73 prefHeight = Math.round(prefHeight);
129 return prefHeight;
    [all...]
Container.java 20 private Value prefWidth = Value.prefWidth, prefHeight = Value.prefHeight;
111 float prefWidth = this.prefWidth.get(actor), prefHeight = this.prefHeight.get(actor);
126 height = Math.min(prefHeight, containerHeight);
197 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */
203 prefHeight = size;
209 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */
216 prefHeight = height;
222 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. *
    [all...]
VerticalGroup.java 32 private float prefWidth, prefHeight;
54 prefHeight = padTop + padBottom + spacing * (n - 1);
60 prefHeight += layout.getPrefHeight();
63 prefHeight += child.getHeight();
69 prefHeight = Math.round(prefHeight);
125 return prefHeight;
Cell.java 23 Value prefWidth, prefHeight;
77 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */
83 prefHeight = size;
89 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */
96 prefHeight = height;
102 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified value. */
108 /** Sets the minWidth, prefWidth, maxWidth, minHeight, prefHeight, and maxHeight to the specified values. */
129 /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */
133 prefHeight = height;
138 /** Sets the minHeight, prefHeight, and maxHeight to the specified value. *
    [all...]
List.java 47 private float prefWidth, prefHeight;
119 prefHeight = items.size * itemHeight;
124 prefHeight += background.getTopHeight() + background.getBottomHeight();
258 return prefHeight;
TextArea.java 109 float prefHeight = textHeight * prefRows;
111 prefHeight = Math.max(prefHeight + style.background.getBottomHeight() + style.background.getTopHeight(),
114 return prefHeight;
Value.java 71 /** Value that is the prefHeight of the actor in the cell. */
72 static public Value prefHeight = new Value() {
Table.java 810 float prefHeight = c.prefHeight.get(a);
816 if (prefHeight < minHeight) prefHeight = minHeight;
818 if (maxHeight > 0 && prefHeight > maxHeight) prefHeight = maxHeight;
826 rowPrefHeight[row] = Math.max(rowPrefHeight[row], prefHeight + vpadding);
    [all...]
Label.java 154 float prefHeight = getPrefHeight();
155 if (prefHeight != lastPrefHeight) {
156 lastPrefHeight = prefHeight;
SelectBox.java 65 private float prefWidth, prefHeight;
174 prefHeight = Math.max(bg.getTopHeight() + bg.getBottomHeight() + font.getCapHeight() - font.getDescent() * 2,
177 prefHeight = font.getCapHeight() - font.getDescent() * 2;
296 return prefHeight;
Tree.java 43 private float leftColumnWidth, prefWidth, prefHeight;
156 prefHeight = getHeight();
161 prefHeight = getHeight() - prefHeight;
185 prefHeight -= node.height + ySpacing;
334 return prefHeight;
TextField.java 666 float prefHeight = textHeight;
668 prefHeight = Math.max(prefHeight + style.background.getBottomHeight() + style.background.getTopHeight(),
671 return prefHeight;
    [all...]

Completed in 281 milliseconds