javax.swing.plaf

Class TextUI

    • Constructor Detail

      • TextUI

        public TextUI()
    • Method Detail

      • modelToView

        public abstract Rectangle modelToView(JTextComponent t,
                            int pos)
                                       throws BadLocationException
        Converts the given location in the model to a place in the view coordinate system.
        Parameters:
        pos - the local location in the model to translate >= 0
        Returns:
        the coordinates as a rectangle
        Throws:
        BadLocationException - if the given position does not represent a valid location in the associated document
      • modelToView

        public abstract Rectangle modelToView(JTextComponent t,
                            int pos,
                            Position.Bias bias)
                                       throws BadLocationException
        Converts the given location in the model to a place in the view coordinate system.
        Parameters:
        pos - the local location in the model to translate >= 0
        Returns:
        the coordinates as a rectangle
        Throws:
        BadLocationException - if the given position does not represent a valid location in the associated document
      • viewToModel

        public abstract int viewToModel(JTextComponent t,
                      Point pt)
        Converts the given place in the view coordinate system to the nearest representative location in the model.
        Parameters:
        pt - the location in the view to translate. This should be in the same coordinate system as the mouse events.
        Returns:
        the offset from the start of the document >= 0
      • viewToModel

        public abstract int viewToModel(JTextComponent t,
                      Point pt,
                      Position.Bias[] biasReturn)
        Provides a mapping from the view coordinate space to the logical coordinate space of the model.
        Parameters:
        pt - the location in the view to translate. This should be in the same coordinate system as the mouse events.
        biasReturn - filled in by this method to indicate whether the point given is closer to the previous or the next character in the model
        Returns:
        the location within the model that best represents the given point in the view >= 0
      • getNextVisualPositionFrom

        public abstract int getNextVisualPositionFrom(JTextComponent t,
                                    int pos,
                                    Position.Bias b,
                                    int direction,
                                    Position.Bias[] biasRet)
                                               throws BadLocationException
        Provides a way to determine the next visually represented model location that one might place a caret. Some views may not be visible, they might not be in the same order found in the model, or they just might not allow access to some of the locations in the model.
        Parameters:
        t - the text component for which this UI is installed
        pos - the position to convert >= 0
        b - the bias for the position
        direction - the direction from the current position that can be thought of as the arrow keys typically found on a keyboard. This may be SwingConstants.WEST, SwingConstants.EAST, SwingConstants.NORTH, or SwingConstants.SOUTH
        biasRet - an array to contain the bias for the returned position
        Returns:
        the location within the model that best represents the next location visual position
        Throws:
        BadLocationException
        IllegalArgumentException - for an invalid direction
      • damageRange

        public abstract void damageRange(JTextComponent t,
                       int p0,
                       int p1)
        Causes the portion of the view responsible for the given part of the model to be repainted.
        Parameters:
        p0 - the beginning of the range >= 0
        p1 - the end of the range >= p0
      • damageRange

        public abstract void damageRange(JTextComponent t,
                       int p0,
                       int p1,
                       Position.Bias firstBias,
                       Position.Bias secondBias)
        Causes the portion of the view responsible for the given part of the model to be repainted.
        Parameters:
        p0 - the beginning of the range >= 0
        p1 - the end of the range >= p0
      • getEditorKit

        public abstract EditorKit getEditorKit(JTextComponent t)
        Fetches the binding of services that set a policy for the type of document being edited. This contains things like the commands available, stream readers and writers, etc.
        Returns:
        the editor kit binding
      • getRootView

        public abstract View getRootView(JTextComponent t)
        Fetches a View with the allocation of the associated text component (i.e. the root of the hierarchy) that can be traversed to determine how the model is being represented spatially.
        Returns:
        the view

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 29/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/plaf/textui.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, TextUI

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut