Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Swing Tooltip sur ComboBox
Article publié le 21/01/2008 13:54:34Suite à l'astuce qui permettait d'afficher plusieurs colonnes dans un ComboBox, il existe une alternative intéressante : afficher un ToolTip avec la description pour chaque élément.
Pour ne pas créer à chaque fois un nouveau ToolTip, nous utiliserons
Code Java (1 ligne)
Nous allons afficher dans le ToolTip le code en gras et la description en italique, avec des espaces insécables en début et en fin de chaîne pour que le ToolTip présente un padding horizontal.
Code Java (56 lignes)
package be.mil.cccis.atdl3.util.renderer; import java.awt.Component; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.ListCellRenderer; import javax.swing.ToolTipManager; import be.mil.cccis.atdl3.domain.generic.Catalog; /** * Provides custom display for ‹code›be.mil.cccis.atdl3.domain.generic.Catalog‹/code›. * Paints it contents in two columns CODE and DESCRIPTION. * @author gaudry.s * */ /** * */ private static final long serialVersionUID = 162343178097966067L; /** * Creates a new renderer */ public CatalogComboBoxRenderer() { setOpaque(true); setHorizontalAlignment(LEFT); setVerticalAlignment(CENTER); } /* (non-Javadoc) * @see javax.swing.ListCellRenderer#getListCellRendererComponent(javax.swing.JList, java.lang.Object, int, boolean, boolean) */ int index, boolean isSelected, boolean cellHasFocus) { if(value==null){ setText(""); } else{ if(value instanceof Catalog){ Catalog item = (Catalog)value; setText( "‹html›‹body›"+item.getCode()+"‹/body›‹/html›" ); setToolTipText( "‹html›‹body› ‹b›"+item.getCode() + "‹/b› ‹i›" + description+"‹/i› ‹/body›‹/html›"); } else setText("‹html›‹body›"+value.toString()+"‹/body›‹/html›"); } setBackground(isSelected ? list.getSelectionBackground() : list.getBackground()); setForeground(isSelected ? list.getSelectionForeground() : list.getForeground()); return this; } }
En plus, comme dans cette application certains appels à toString retournent du code HTML ( Et là je ne suis pas d'accord du tout de laisser au modèle la responsabilité d'une certaine logique de présentation, mais c'est ce qui arrive quand on travaille à plusieurs en projet), le Renderer enrobe le texte aussi par des balises HTML.
Un article de Steph
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-429.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.