Lines Matching refs:title

492      * when the title of a mnemonic changes, or when tabs are added/removed.
818 final String title = tabPane.getTitleAt(tabIndex);
823 layoutLabel(tabPlacement, metrics, tabIndex, title, icon, tabRect, iconRect, textRect, isSelected);
826 String clippedTitle = title;
830 clippedTitle = SwingUtilities2.clipStringIfNecessary(null, metrics, title, availTextWidth);
962 protected void layoutLabel(final int tabPlacement, final FontMetrics metrics, final int tabIndex, final String title, final Icon icon, final Rectangle tabRect, final Rectangle iconRect, final Rectangle textRect, final boolean isSelected) {
970 SwingUtilities.layoutCompoundLabel(tabPane, metrics, title, icon, SwingConstants.CENTER, SwingConstants.CENTER, SwingConstants.CENTER, SwingConstants.TRAILING, tabRect, iconRect, textRect, textIconGap);
988 protected void paintText(final Graphics g, final int tabPlacement, final Font font, final FontMetrics metrics, final int tabIndex, final String title, final Rectangle textRect, final boolean isSelected) {
1009 SwingUtilities2.drawStringUnderlineCharAt(tabPane, g, title, mnemIndex, textRect.x, textRect.y + metrics.getAscent());
1013 SwingUtilities2.drawStringUnderlineCharAt(tabPane, g, title, mnemIndex, textRect.x, textRect.y + metrics.getAscent());
1015 SwingUtilities2.drawStringUnderlineCharAt(tabPane, g, title, mnemIndex, textRect.x - 1, textRect.y + metrics.getAscent() - 1);
1641 final String title = tabPane.getTitleAt(tabIndex);
1642 width += SwingUtilities2.stringWidth(tabPane, metrics, title);
3437 the add) which checks the tab title of the new component to see
3440 The Views (one per tab title requiring HTML rendering) are
3444 for those pages whose tab title do not require HTML rendering.
3465 final String title = tabPane.getTitleAt(index);
3466 final boolean isHTML = BasicHTML.isHTMLString(title);
3471 final View v = BasicHTML.createHTMLView(tabPane, title);
3574 final String title = tabPane.getTitleAt(i);
3575 if (BasicHTML.isHTMLString(title)) {
3576 htmlViews.addElement(BasicHTML.createHTMLView(tabPane, title));