Class CoreRibbonResizePolicies.FlowTwoRows
java.lang.Object
org.pushingpixels.flamingo.api.ribbon.resize.BaseRibbonBandResizePolicy<JFlowBandControlPanel>
org.pushingpixels.flamingo.api.ribbon.resize.CoreRibbonResizePolicies.FlowTwoRows
- All Implemented Interfaces:
RibbonBandResizePolicy
- Enclosing class:
- CoreRibbonResizePolicies
public static class CoreRibbonResizePolicies.FlowTwoRows
extends BaseRibbonBandResizePolicy<JFlowBandControlPanel>
Core resize policy for
JFlowRibbonBand
that places the content in
two rows.-
Field Summary
Fields inherited from class org.pushingpixels.flamingo.api.ribbon.resize.BaseRibbonBandResizePolicy
controlPanel
-
Constructor Summary
ConstructorsConstructorDescriptionFlowTwoRows
(JFlowBandControlPanel controlPanel) Creates a new two-row resize policy forJFlowRibbonBand
s. -
Method Summary
Modifier and TypeMethodDescriptionint
getPreferredWidth
(int availableHeight, int gap) Returns the preferred width of the associated ribbon band under the specified dimensions.void
install
(int availableHeight, int gap) Installs this resize policy on the associated ribbon band.
-
Constructor Details
-
FlowTwoRows
Creates a new two-row resize policy forJFlowRibbonBand
s.- Parameters:
controlPanel
- The control panel of the associated ribbon band.
-
-
Method Details
-
getPreferredWidth
public int getPreferredWidth(int availableHeight, int gap) Description copied from interface:RibbonBandResizePolicy
Returns the preferred width of the associated ribbon band under the specified dimensions.- Parameters:
availableHeight
- The height available for the associated ribbon band.gap
- The inter-component gap.- Returns:
- The preferred width of the associated ribbon band under the specified dimensions.
-
install
public void install(int availableHeight, int gap) Description copied from interface:RibbonBandResizePolicy
Installs this resize policy on the associated ribbon band. ForJFlowRibbonBand
s only changes the bounds of the flow components. ForJRibbonBand
s can also change the display state of the command buttons (withAbstractCommandButton.setDisplayState(org.pushingpixels.flamingo.api.common.CommandButtonDisplayState)
) and the number of visible buttons in the ribbon galleries. Note that this method is for internal use only and should not be called by the application code.- Parameters:
availableHeight
- The height available for the associated ribbon band.gap
- The inter-component gap.
-