Searched refs:tip (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalToolTipUI.java59 private JToolTip tip; field in class:MetalToolTipUI
73 tip = (JToolTip)c;
82 tip = null;
86 JToolTip tip = (JToolTip)c;
94 String tipText = tip.getTipText();
99 String accelString = getAcceleratorString(tip);
103 Insets insets = tip.getInsets();
116 SwingUtilities2.drawString(tip, g, tipText, paintTextR.x,
124 SwingUtilities2.drawString(tip, g, accelString,
125 tip
155 getAcceleratorString(JToolTip tip) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthToolTipUI.java180 JToolTip tip = (JToolTip)context.getComponent();
182 Insets insets = tip.getInsets();
183 View v = (View)tip.getClientProperty(BasicHTML.propertyKey);
186 tip.getWidth() - (insets.left + insets.right),
187 tip.getHeight() - (insets.top + insets.bottom));
194 context, g, tip.getTipText(), insets.left, insets.top, -1);
240 JToolTip tip = ((JToolTip) e.getSource());
241 String text = tip.getTipText();
242 BasicHTML.updateRenderer(tip, text);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicToolTipUI.java43 * Standard tool tip L&F.
240 JToolTip tip = ((JToolTip) e.getSource());
241 String text = tip.getTipText();
242 BasicHTML.updateRenderer(tip, text);
245 JToolTip tip = ((JToolTip) e.getSource());
247 if (tip.getUI() instanceof BasicToolTipUI) {
248 ((BasicToolTipUI)tip.getUI()).componentChanged(tip);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DToolTipManager.java62 /** The Window tip is being displayed in. This will be non-null if
63 * the Window tip is in differs from that of insideComponent's Window.
66 JToolTip tip; field in class:ToolTipManager
103 * @param flag true to enable the tip, false otherwise
286 tip = insideComponent.createToolTip();
287 tip.setTipText(toolTipText);
288 size = tip.getPreferredSize();
342 tipWindow = popupFactory.getPopup(insideComponent, tip,
352 window = SwingUtilities.windowForComponent(tip);
374 tip
[all...]
H A DJTabbedPane.java689 * @param tip the tooltip to be displayed for this tab
699 public void insertTab(String title, Icon icon, Component component, String tip, int index) { argument
720 new Page(this, title != null? title : "", icon, null, component, tip));
738 if (!haveRegistered && tip != null) {
753 * Adds a <code>component</code> and <code>tip</code>
761 * @param tip the tooltip to be displayed for this tab
766 public void addTab(String title, Icon icon, Component component, String tip) { argument
767 insertTab(title, icon, component, tip, pages.size());
1156 * @return a string containing the tool tip text at <code>index</code>
1164 return pages.get(index).tip;
2041 String tip; field in class:JTabbedPane.Page
2048 Page(JTabbedPane parent, String title, Icon icon, Icon disabledIcon, Component component, String tip) argument
[all...]
H A DJTree.java1533 String tip = null;
1563 tip = ((JComponent)rComponent).getToolTipText(newEvent);
1567 // No tip from the renderer get our own tip
1568 if (tip == null) {
1569 tip = getToolTipText();
1571 return tip;
H A DJList.java1559 String tip = ((JComponent)rComponent).getToolTipText(
1562 if (tip != null) {
1563 return tip;
H A DJTable.java3381 String tip = null;
3393 // getting the tip
3407 tip = ((JComponent)component).getToolTipText(newEvent);
3411 // No tip from the renderer get our own tip
3412 if (tip == null)
3413 tip = getToolTipText();
3415 return tip;
H A DJComponent.java312 * also known as a "value tip", "flyover help", or "flyover label".
2984 * Registers the text to display in a tool tip.
2992 * the tool tip is turned off for this component
2996 * description: The text to display in a tool tip.
3015 * @return the text of the tool tip
3074 JToolTip tip = new JToolTip();
3075 tip.setComponent(this);
3076 return tip;
3865 // fallback to the tool tip text if it exists
3957 * Returns the tool tip tex
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DJTableHeader.java391 * renderer and, therefore, the proper tip
392 * @return the tool tip for this component
395 String tip = null;
411 // getting the tip
424 tip = ((JComponent)component).getToolTipText(newEvent);
428 // No tip from the renderer get our own tip
429 if (tip == null)
430 tip = getToolTipText();
432 return tip;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DJAXPValidatorComponent.java134 TypeInfoProvider tip = validatorHandler.getTypeInfoProvider();
135 if(tip==null) tip = noInfoProvider;
136 this.typeInfoProvider = tip;
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBeanAttributes.java304 //tool tip only for editable column
312 String tip = null;
314 tip = value.toString();
316 tip = Messages.DOUBLE_CLICK_TO_EXPAND_FORWARD_SLASH_COLLAPSE+
317 ". " + tip;
320 return tip;
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java352 String tip = getResourceString(key + tipSuffix);
353 if (tip != null) {
354 b.setToolTipText(tip);
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse3.cpp136 const TypeInstPtr* tip = TypeInstPtr::make(field_holder->java_mirror()); local
137 obj = _gvn.makecon(tip);
H A Dcfgnode.cpp944 const TypePtr* tip = ti->make_ptr(); local
945 const TypeInstPtr* tiip = (tip != NULL) ? tip->isa_instptr() : NULL;
/openjdk7/jdk/make/common/shared/
H A DDefs.gmk632 # $(HGTIP_FILENAME) which contains the tip but is also positioned in the same
644 # Emit the repo:tip pairs to $@
651 "$${i}" `$(HG) tip --repository $${i} --template '{node|short}\n'` ; \
662 $(HG) tip --repository $1 --template '{node|short}\n' > $1/$(HGTIP_FILENAME);\
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DConnectDialog.java403 String tip = null;
411 tip = vmd.toString();
413 return tip;
/openjdk7/make/scripts/
H A Dwebrev.ksh1152 comm=`hg log --rev $FIRST_CREV:tip --follow --template 'rev {rev} : {desc}\n' $logf`
1894 parentrev="tip"
2262 # specific revision (not the tip), set revision for comment
2270 PREV=`hg parent | grep '^tag:.*tip$'`
2272 print "WARNING: parent rev is not tip. Maybe an update or merge is needed"

Completed in 129 milliseconds