Uses of Interface
org.jvnet.flamingo.ribbon.resize.RibbonBandResizePolicy

Packages that use RibbonBandResizePolicy
org.jvnet.flamingo.ribbon   
org.jvnet.flamingo.ribbon.resize   
 

Uses of RibbonBandResizePolicy in org.jvnet.flamingo.ribbon
 

Methods in org.jvnet.flamingo.ribbon that return RibbonBandResizePolicy
 RibbonBandResizePolicy AbstractRibbonBand.getCurrentResizePolicy()
          Returns the current resize policy of this ribbon band.
 

Methods in org.jvnet.flamingo.ribbon that return types with arguments of type RibbonBandResizePolicy
 java.util.List<RibbonBandResizePolicy> AbstractRibbonBand.getResizePolicies()
          Returns an unmodifiable list of available resize policies of this ribbon band.
 

Methods in org.jvnet.flamingo.ribbon with parameters of type RibbonBandResizePolicy
 void AbstractRibbonBand.setCurrentResizePolicy(RibbonBandResizePolicy resizePolicy)
          Sets the specified parameter to be the current resize policy of this ribbon band.
 

Method parameters in org.jvnet.flamingo.ribbon with type arguments of type RibbonBandResizePolicy
 void AbstractRibbonBand.setResizePolicies(java.util.List<RibbonBandResizePolicy> resizePolicies)
          Sets the specified parameter as the available resize policies of this ribbon band.
 

Uses of RibbonBandResizePolicy in org.jvnet.flamingo.ribbon.resize
 

Classes in org.jvnet.flamingo.ribbon.resize that implement RibbonBandResizePolicy
 class BaseRibbonBandResizePolicy<T extends AbstractBandControlPanel>
          Base class for the core ribbon band resize policies.
static class CoreRibbonResizePolicies.FlowThreeRows
          Core resize policy for JFlowRibbonBand that places the content in three rows.
static class CoreRibbonResizePolicies.FlowTwoRows
          Core resize policy for JFlowRibbonBand that places the content in two rows.
static class CoreRibbonResizePolicies.High2Low
          Core resize policy that maps all RibbonElementPrioritys to RibbonElementPriority.LOW.
static class CoreRibbonResizePolicies.High2Mid
          Core resize policy that maps: RibbonElementPriority.TOP -> RibbonElementPriority.MEDIUM RibbonElementPriority.MEDIUM -> RibbonElementPriority.LOW RibbonElementPriority.LOW -> RibbonElementPriority.LOW
static class CoreRibbonResizePolicies.Low2Mid
          Core resize policy that maps: RibbonElementPriority.TOP -> RibbonElementPriority.TOP RibbonElementPriority.MEDIUM -> RibbonElementPriority.TOP RibbonElementPriority.LOW -> RibbonElementPriority.MEDIUM
static class CoreRibbonResizePolicies.Mid2Low
          Core resize policy that maps: RibbonElementPriority.TOP -> RibbonElementPriority.TOP RibbonElementPriority.MEDIUM -> RibbonElementPriority.LOW RibbonElementPriority.LOW -> RibbonElementPriority.LOW
static class CoreRibbonResizePolicies.Mid2Mid
          Core resize policy that maps: RibbonElementPriority.TOP -> RibbonElementPriority.TOP RibbonElementPriority.MEDIUM -> RibbonElementPriority.MEDIUM RibbonElementPriority.LOW -> RibbonElementPriority.MEDIUM
static class CoreRibbonResizePolicies.Mirror
          Mirror core resize policy that maps the values of RibbonElementPrioritys to themselves.
static class CoreRibbonResizePolicies.None
          Core resize policy that maps all RibbonElementPrioritys to RibbonElementPriority.TOP.
 class IconRibbonBandResizePolicy
          Special resize policy that is used for collapsed ribbon bands.
 

Methods in org.jvnet.flamingo.ribbon.resize that return types with arguments of type RibbonBandResizePolicy
static java.util.List<RibbonBandResizePolicy> CoreRibbonResizePolicies.getCoreFlowPoliciesRestrictive(JFlowRibbonBand ribbonBand, int stepsToRepeat)
          Returns a list that has CoreRibbonResizePolicies.FlowTwoRows policy followed by the CoreRibbonResizePolicies.FlowThreeRows resize policy.
static java.util.List<RibbonBandResizePolicy> CoreRibbonResizePolicies.getCorePoliciesNone(JRibbonBand ribbonBand)
          Returns a list that only has a mirror resize policy that respects the associated ribbon element priority set on the specific components.
static java.util.List<RibbonBandResizePolicy> CoreRibbonResizePolicies.getCorePoliciesPermissive(JRibbonBand ribbonBand)
          Returns a list that starts with a resize policy that shows all command buttons in the CommandButtonDisplayState.BIG and ribbon galleries with the largest number of visible buttons.
static java.util.List<RibbonBandResizePolicy> CoreRibbonResizePolicies.getCorePoliciesRestrictive(JRibbonBand ribbonBand)
          Returns a list that starts with a resize policy that respects the associated ribbon element priority set on the specific components.