Lines Matching refs:tooltip

781    * Creates a JButton with the given label and tooltip.
783 * @param tooltip the tooltip of the button.
784 * @return a JButton with the given label and tooltip.
786 public static JButton makeJButton(Message label, Message tooltip)
795 if (tooltip != null)
797 b.setToolTipText(tooltip.toString());
842 Message tooltip = getIconTooltip(iconName);
844 if (tooltip != null)
846 l.setToolTipText(tooltip.toString());
895 * Creates a JTextField with the given icon, tooltip text, size and text
898 * @param tooltip the tooltip text.
901 * @return a JTextField with the given icon, tooltip text, size and text
904 public static JTextField makeJTextField(Message text, Message tooltip,
908 updateTextFieldComponent(f, text, tooltip, size, style);
914 * Creates a JPasswordField with the given icon, tooltip text, size and text
917 * @param tooltip the tooltip text.
920 * @return a JPasswordField with the given icon, tooltip text, size and text
923 public static JPasswordField makeJPasswordField(Message text, Message tooltip,
927 updateTextFieldComponent(f, text, tooltip, size, style);
933 * Creates a JRadioButton with the given text, tooltip text and text
936 * @param tooltip the tooltip text.
938 * @return a JRadioButton with the given text, tooltip text and text
941 public static JRadioButton makeJRadioButton(Message text, Message tooltip,
951 if (tooltip != null)
953 rb.setToolTipText(tooltip.toString());
961 * Creates a JCheckBox with the given text, tooltip text and text
964 * @param tooltip the tooltip text.
966 * @return a JCheckBox with the given text, tooltip text and text
969 public static JCheckBox makeJCheckBox(Message text, Message tooltip,
979 if (tooltip != null)
981 cb.setToolTipText(tooltip.toString());
1411 * @param tooltip the new tooltip text of the field.
1416 Message tooltip, int size, TextStyle textStyle)
1423 if (tooltip != null)
1425 field.setToolTipText(tooltip.toString());
1627 * Returns the icon tooltip text for the given IconType.
1628 * @param iconType the IconType for which we want to get the tooltip text.
1629 * @return the icon tooltip text for the given IconType.
1636 Message tooltip;
1640 tooltip = INFO_CURRENT_STEP_ICON_TOOLTIP.get();
1644 tooltip = INFO_SPLASH_ICON_TOOLTIP.get();
1648 tooltip = INFO_BACKGROUND_ICON_TOOLTIP.get();
1652 tooltip = INFO_MINIMIZED_ICON_TOOLTIP.get();
1656 tooltip = INFO_MINIMIZED_ICON_TOOLTIP.get();
1660 tooltip = INFO_WARNING_ICON_TOOLTIP.get();
1664 tooltip = INFO_WARNING_ICON_TOOLTIP.get();
1668 tooltip = INFO_ERROR_ICON_TOOLTIP.get();
1672 tooltip = INFO_ERROR_ICON_TOOLTIP.get();
1676 tooltip = INFO_INFORMATION_ICON_TOOLTIP.get();
1680 tooltip = INFO_INFORMATION_ICON_TOOLTIP.get();
1684 tooltip = null;
1688 tooltip = null;
1692 tooltip = null;
1696 tooltip = null;
1700 tooltip = null;
1704 tooltip = null;
1711 return tooltip;