LayoutManager
public function installUI(c:Component):Void
Description copied from ComponentUI
Configures the specified component appropriate for the look and feel.
This method is invoked when the ComponentUI
instance is being installed
as the UI delegate on the specified component. This method should
completely configure the component for the look and feel,
including the following:
LayoutManager
on the component if necessary.
public function uninstallUI(c:Component):Void
Description copied from ComponentUI
Reverses configuration which was done on the specified component during
installUI
. This method is invoked when this
ComponentUI
instance is being removed as the UI delegate
for the specified component. This method should undo the
configuration performed in installUI
, being careful to
leave the Component
instance in a clean state (no
extraneous listeners, look-and-feel-specific property objects, etc.).
This should include the following:
public function setPopupVisible(c:JComboBox, v:Boolean):Void
Set the visiblity of the popup
public function isPopupVisible(c:JComboBox):Boolean
Determine the visibility of the popup
public function isFocusTraversable(c:JComboBox):Boolean
Determine whether or not the combo box itself is traversable
public function preferredLayoutSize(target:Container):Dimension
Description copied from LayoutManager
Calculates the preferred size dimensions for the specified container, given the components it contains.
public function minimumLayoutSize(target:Container):Dimension
Description copied from LayoutManager
Calculates the minimum size dimensions for the specified container, given the components it contains.