javax.swing

Class LayoutStyle


  • public abstract class LayoutStyle
    extends Object
    LayoutStyle provides information about how to position components. This class is primarily useful for visual tools and layout managers. Most developers will not need to use this class.

    You typically don't set or create a LayoutStyle. Instead use the static method getInstance to obtain the current instance.

    Since:
    1.6
    • Constructor Detail

      • LayoutStyle

        public LayoutStyle()
        Creates a new LayoutStyle. You generally don't create a LayoutStyle. Instead use the method getInstance to obtain the current LayoutStyle.
    • Method Detail

      • setInstance

        public static void setInstance(LayoutStyle style)
        Sets the shared instance of LayoutStyle. Specifying null results in using the LayoutStyle from the current LookAndFeel.
        Parameters:
        style - the LayoutStyle, or null
        See Also:
        getInstance()
      • getInstance

        public static LayoutStyle getInstance()
        Returns the shared instance of LayoutStyle. If an instance has not been specified in setInstance, this will return the LayoutStyle from the current LookAndFeel.
        Returns:
        the shared instance of LayoutStyle
        See Also:
        LookAndFeel.getLayoutStyle()
      • getPreferredGap

        public abstract int getPreferredGap(JComponent component1,
                          JComponent component2,
                          LayoutStyle.ComponentPlacement type,
                          int position,
                          Container parent)
        Returns the amount of space to use between two components. The return value indicates the distance to place component2 relative to component1. For example, the following returns the amount of space to place between component2 and component1 when component2 is placed vertically above component1:
           int gap = getPreferredGap(component1, component2,
                                     ComponentPlacement.RELATED,
                                     SwingConstants.NORTH, parent);
         
        The type parameter indicates the relation between the two components. If the two components will be contained in the same parent and are showing similar logically related items, use RELATED. If the two components will be contained in the same parent but show logically unrelated items use UNRELATED. Some look and feels may not distinguish between the RELATED and UNRELATED types.

        The return value is not intended to take into account the current size and position of component2 or component1. The return value may take into consideration various properties of the components. For example, the space may vary based on font size, or the preferred size of the component.

        Parameters:
        component1 - the JComponent component2 is being placed relative to
        component2 - the JComponent being placed
        position - the position component2 is being placed relative to component1; one of SwingConstants.NORTH, SwingConstants.SOUTH, SwingConstants.EAST or SwingConstants.WEST
        type - how the two components are being placed
        parent - the parent of component2; this may differ from the actual parent and it may be null
        Returns:
        the amount of space to place between the two components
        Throws:
        NullPointerException - if component1, component2 or type is null
        IllegalArgumentException - if position is not one of SwingConstants.NORTH, SwingConstants.SOUTH, SwingConstants.EAST or SwingConstants.WEST
        Since:
        1.6
        See Also:
        LookAndFeel.getLayoutStyle()
      • getContainerGap

        public abstract int getContainerGap(JComponent component,
                          int position,
                          Container parent)
        Returns the amount of space to place between the component and specified edge of its parent.
        Parameters:
        component - the JComponent being positioned
        position - the position component is being placed relative to its parent; one of SwingConstants.NORTH, SwingConstants.SOUTH, SwingConstants.EAST or SwingConstants.WEST
        parent - the parent of component; this may differ from the actual parent and may be null
        Returns:
        the amount of space to place between the component and specified edge
        Throws:
        IllegalArgumentException - if position is not one of SwingConstants.NORTH, SwingConstants.SOUTH, SwingConstants.EAST or SwingConstants.WEST

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/swing/LayoutStyle.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut