Searched defs:tooltip (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DTrayIconPeer.java47 * @param tooltip the tooltip to set
51 void setToolTip(String tooltip); argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCTrayIcon.h51 - (void) setTooltip:(NSString *)tooltip; variable
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenMenuPropertyHandler.java39 public void setToolTipText(String tooltip); argument
H A DScreenMenuBar.java192 public void setToolTipText(final String tooltip) {} argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXNodeInfo.java46 public XNodeInfo(Type type, Object data, String label, String tooltip) { argument
50 this.tooltip = tooltip;
66 return tooltip;
76 private String tooltip; field in class:XNodeInfo
/openjdk7/jdk/src/share/classes/java/awt/
H A DTrayIcon.java41 * <code>TrayIcon</code> can have a tooltip (text), an image, a popup
50 * over the <code>TrayIcon</code> the tooltip is displayed.
89 private String tooltip; field in class:TrayIcon
177 * tooltip text.
180 * @param tooltip the string to be used as tooltip text; if the
181 * value is <code>null</code> no tooltip is shown
196 public TrayIcon(Image image, String tooltip) { argument
198 setToolTip(tooltip);
203 * tooltip an
226 TrayIcon(Image image, String tooltip, PopupMenu popup) argument
343 setToolTip(String tooltip) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTrayIcon.java143 public void setToolTip(String tooltip) { argument
144 nativeSetToolTip(getModel(), tooltip);
147 //adds tooltip to the NSStatusBar's NSButton.
148 private native void nativeSetToolTip(long trayIconModel, String tooltip); argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTrayIconPeer.java74 public native void setToolTip(String tooltip); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWarningWindow.java44 private InfoWindow.Tooltip tooltip; field in class:XWarningWindow
150 this.tooltip = new InfoWindow.Tooltip(null, getTarget(),
339 tooltip.enter();
347 tooltip.exit();
H A DXTrayIconPeer.java51 InfoWindow.Tooltip tooltip; field in class:XTrayIconPeer
261 tooltip = new InfoWindow.Tooltip(eframe, target, this);
301 public void setToolTip(String tooltip) { argument
302 tooltipString = tooltip;
465 xtiPeer.tooltip.enter();
469 xtiPeer.tooltip.exit();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_TrayIcon.cpp41 jstring tooltip; member in struct:SetToolTipStruct
706 void AwtTrayIcon::SetToolTip(LPCTSTR tooltip) argument
708 if (tooltip == NULL) {
710 } else if (lstrlen(tooltip) > TRAY_ICON_TOOLTIP_MAX_SIZE) {
711 _tcsncpy(m_nid.szTip, tooltip, TRAY_ICON_TOOLTIP_MAX_SIZE);
714 _tcscpy(m_nid.szTip, tooltip);
725 jstring jtooltip = sts->tooltip;
941 jstring tooltip)
947 if (tooltip != NULL) {
948 sts->tooltip
940 Java_sun_awt_windows_WTrayIconPeer_setToolTip(JNIEnv *env, jobject self, jstring tooltip) argument
[all...]

Completed in 43 milliseconds