From f664d297f7bb009784868bf3fcf0b3e3bb9a646b Mon Sep 17 00:00:00 2001 From: Felipe Heidrich Date: Tue, 30 Jun 2009 22:00:12 +0000 Subject: *** empty log message *** --- .../win32/org/eclipse/swt/widgets/ToolTip.java | 555 --------------------- 1 file changed, 555 deletions(-) delete mode 100644 bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java (limited to 'bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java') diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java deleted file mode 100644 index 87a7355a3d..0000000000 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java +++ /dev/null @@ -1,555 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2000, 2009 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * IBM Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.swt.widgets; - - -import org.eclipse.swt.graphics.*; -import org.eclipse.swt.internal.win32.*; -import org.eclipse.swt.*; -import org.eclipse.swt.events.*; - -/** - * Instances of this class represent popup windows that are used - * to inform or warn the user. - *

- *

- *
Styles:
- *
BALLOON, ICON_ERROR, ICON_INFORMATION, ICON_WARNING
- *
Events:
- *
Selection
- *
- *

- * Note: Only one of the styles ICON_ERROR, ICON_INFORMATION, - * and ICON_WARNING may be specified. - *

- * IMPORTANT: This class is intended to be subclassed only - * within the SWT implementation. - *

- * - * @see Tool Tips snippets - * @see SWT Example: ControlExample - * @see Sample code and further information - * - * @since 3.2 - * @noextend This class is not intended to be subclassed by clients. - */ - -public class ToolTip extends Widget { - Shell parent; - TrayItem item; - String text = "", message = ""; - int id, x, y; - boolean autoHide = true, hasLocation, visible; - static final int TIMER_ID = 100; - -/** - * Constructs a new instance of this class given its parent - * and a style value describing its behavior and appearance. - *

- * The style value is either one of the style constants defined in - * class SWT which is applicable to instances of this - * class, or must be built by bitwise OR'ing together - * (that is, using the int "|" operator) two or more - * of those SWT style constants. The class description - * lists the style constants that are applicable to the class. - * Style bits are also inherited from superclasses. - *

- * - * @param parent a composite control which will be the parent of the new instance (cannot be null) - * @param style the style of control to construct - * - * @exception IllegalArgumentException - * @exception SWTException - * - * @see SWT#BALLOON - * @see SWT#ICON_ERROR - * @see SWT#ICON_INFORMATION - * @see SWT#ICON_WARNING - * @see Widget#checkSubclass - * @see Widget#getStyle - */ -public ToolTip (Shell parent, int style) { - super (parent, checkStyle (style)); - this.parent = parent; - checkOrientation (parent); - parent.createToolTip (this); -} - -static int checkStyle (int style) { - int mask = SWT.ICON_ERROR | SWT.ICON_INFORMATION | SWT.ICON_WARNING; - if ((style & mask) == 0) return style; - return checkBits (style, SWT.ICON_INFORMATION, SWT.ICON_WARNING, SWT.ICON_ERROR, 0, 0, 0); -} - -/** - * Adds the listener to the collection of listeners who will - * be notified when the receiver is selected by the user, by sending - * it one of the messages defined in the SelectionListener - * interface. - *

- * widgetSelected is called when the receiver is selected. - * widgetDefaultSelected is not called. - *

- * - * @param listener the listener which should be notified when the receiver is selected by the user - * - * @exception IllegalArgumentException - * @exception SWTException - * - * @see SelectionListener - * @see #removeSelectionListener - * @see SelectionEvent - */ -public void addSelectionListener (SelectionListener listener) { - checkWidget (); - if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); - TypedListener typedListener = new TypedListener(listener); - addListener (SWT.Selection,typedListener); - addListener (SWT.DefaultSelection,typedListener); -} - -void destroyWidget () { - if (parent != null) parent.destroyToolTip (this); - releaseHandle (); -} - -/** - * Returns true if the receiver is automatically - * hidden by the platform, and false otherwise. - * - * @return the receiver's auto hide state - * - * @exception SWTException - * - */ -public boolean getAutoHide () { - checkWidget(); - return autoHide; -} - -/** - * Returns the receiver's message, which will be an empty - * string if it has never been set. - * - * @return the receiver's message - * - * @exception SWTException - */ -public String getMessage () { - checkWidget(); - return message; -} - -/** - * Returns the receiver's parent, which must be a Shell. - * - * @return the receiver's parent - * - * @exception SWTException - */ -public Shell getParent () { - checkWidget (); - return parent; -} - -/** - * Returns the receiver's text, which will be an empty - * string if it has never been set. - * - * @return the receiver's text - * - * @exception SWTException - */ -public String getText () { - checkWidget(); - return text; -} - -/** - * Returns true if the receiver is visible, and - * false otherwise. - *

- * If one of the receiver's ancestors is not visible or some - * other condition makes the receiver not visible, this method - * may still indicate that it is considered visible even though - * it may not actually be showing. - *

- * - * @return the receiver's visibility state - * - * @exception SWTException - */ -public boolean getVisible () { - checkWidget(); - if (OS.IsWinCE) return false; - if (item != null) return visible; - int /*long*/ hwndToolTip = hwndToolTip (); - if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, 0) != 0) { - TOOLINFO lpti = new TOOLINFO (); - lpti.cbSize = TOOLINFO.sizeof; - if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, lpti) != 0) { - return (lpti.uFlags & OS.TTF_IDISHWND) == 0 && lpti.uId == id; - } - } - return false; -} - -int /*long*/ hwndToolTip () { - return (style & SWT.BALLOON) != 0 ? parent.balloonTipHandle () : parent.toolTipHandle (); -} - -/** - * Returns true if the receiver is visible and all - * of the receiver's ancestors are visible and false - * otherwise. - * - * @return the receiver's visibility state - * - * @exception SWTException - * - * @see #getVisible - */ -public boolean isVisible () { - checkWidget (); - if (item != null) return getVisible () && item.getVisible (); - return getVisible (); -} - -void releaseHandle () { - super.releaseHandle (); - parent = null; - item = null; - id = -1; -} - -void releaseWidget () { - super.releaseWidget (); - if (item == null) { - if (autoHide) { - int /*long*/ hwndToolTip = hwndToolTip (); - if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, 0) != 0) { - TOOLINFO lpti = new TOOLINFO (); - lpti.cbSize = TOOLINFO.sizeof; - if (OS.SendMessage (hwndToolTip, OS.TTM_GETCURRENTTOOL, 0, lpti) != 0) { - if ((lpti.uFlags & OS.TTF_IDISHWND) == 0) { - if (lpti.uId == id) { - OS.SendMessage (hwndToolTip, OS.TTM_TRACKACTIVATE, 0, lpti); - OS.SendMessage (hwndToolTip, OS.TTM_POP, 0, 0); - OS.KillTimer (hwndToolTip, TIMER_ID); - } - } - } - } - } - } - if (item != null && item.toolTip == this) { - item.toolTip = null; - } - item = null; - text = message = null; -} - -/** - * Removes the listener from the collection of listeners who will - * be notified when the receiver is selected by the user. - * - * @param listener the listener which should no longer be notified - * - * @exception IllegalArgumentException - * @exception SWTException - * - * @see SelectionListener - * @see #addSelectionListener - */ -public void removeSelectionListener (SelectionListener listener) { - checkWidget (); - if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); - if (eventTable == null) return; - eventTable.unhook (SWT.Selection, listener); - eventTable.unhook (SWT.DefaultSelection,listener); -} - -/** - * Makes the receiver hide automatically when true, - * and remain visible when false. - * - * @param autoHide the auto hide state - * - * @exception SWTException - * - * @see #getVisible - * @see #setVisible - */ -public void setAutoHide (boolean autoHide) { - checkWidget (); - this.autoHide = autoHide; - //TODO - update when visible -} - -/** - * Sets the location of the receiver, which must be a tooltip, - * to the point specified by the arguments which are relative - * to the display. - *

- * Note that this is different from most widgets where the - * location of the widget is relative to the parent. - *

- * - * @param x the new x coordinate for the receiver - * @param y the new y coordinate for the receiver - * - * @exception SWTException - */ -public void setLocation (int x, int y) { - checkWidget (); - this.x = x; - this.y = y; - hasLocation = true; - //TODO - update when visible -} - -/** - * Sets the location of the receiver, which must be a tooltip, - * to the point specified by the argument which is relative - * to the display. - *

- * Note that this is different from most widgets where the - * location of the widget is relative to the parent. - *

- * Note that the platform window manager ultimately has control - * over the location of tooltips. - *

- * - * @param location the new location for the receiver - * - * @exception IllegalArgumentException - * @exception SWTException - */ -public void setLocation (Point location) { - checkWidget (); - if (location == null) SWT.error (SWT.ERROR_NULL_ARGUMENT); - setLocation (location.x, location.y); -} - -/** - * Sets the receiver's message. - * - * @param string the new message - * - * @exception IllegalArgumentException - * @exception SWTException - */ -public void setMessage (String string) { - checkWidget (); - if (string == null) error (SWT.ERROR_NULL_ARGUMENT); - message = string; - //TODO - update when visible -} - -/** - * Sets the receiver's text. - * - * @param string the new text - * - * @exception IllegalArgumentException - * @exception SWTException - */ -public void setText (String string) { - checkWidget (); - if (string == null) error (SWT.ERROR_NULL_ARGUMENT); - text = string; - //TODO - update when visible -} - -/** - * Marks the receiver as visible if the argument is true, - * and marks it invisible otherwise. - *

- * If one of the receiver's ancestors is not visible or some - * other condition makes the receiver not visible, marking - * it visible may not actually cause it to be displayed. - *

- * - * @param visible the new visibility state - * - * @exception SWTException - */ -public void setVisible (boolean visible) { - checkWidget (); - if (OS.IsWinCE) return; - if (visible == getVisible ()) return; - if (item == null) { - int /*long*/ hwnd = parent.handle; - TOOLINFO lpti = new TOOLINFO (); - lpti.cbSize = TOOLINFO.sizeof; - lpti.uId = id; - lpti.hwnd = hwnd; - int /*long*/ hwndToolTip = hwndToolTip (); - Shell shell = parent.getShell (); - if (text.length () != 0) { - int icon = OS.TTI_NONE; - if ((style & SWT.ICON_INFORMATION) != 0) icon = OS.TTI_INFO; - if ((style & SWT.ICON_WARNING) != 0) icon = OS.TTI_WARNING; - if ((style & SWT.ICON_ERROR) != 0) icon = OS.TTI_ERROR; - shell.setToolTipTitle (hwndToolTip, text, icon); - } else { - shell.setToolTipTitle (hwndToolTip, null, 0); - } - int maxWidth = 0; - if (OS.IsWinCE || OS.WIN32_VERSION < OS.VERSION (4, 10)) { - RECT rect = new RECT (); - OS.SystemParametersInfo (OS.SPI_GETWORKAREA, 0, rect, 0); - maxWidth = (rect.right - rect.left) / 4; - } else { - int /*long*/ hmonitor = OS.MonitorFromWindow (hwnd, OS.MONITOR_DEFAULTTONEAREST); - MONITORINFO lpmi = new MONITORINFO (); - lpmi.cbSize = MONITORINFO.sizeof; - OS.GetMonitorInfo (hmonitor, lpmi); - maxWidth = (lpmi.rcWork_right - lpmi.rcWork_left) / 4; - } - OS.SendMessage (hwndToolTip, OS.TTM_SETMAXTIPWIDTH, 0, maxWidth); - if (visible) { - int nX = x, nY = y; - if (!hasLocation) { - POINT pt = new POINT (); - if (OS.GetCursorPos (pt)) { - nX = pt.x; - nY = pt.y; - } - } - int /*long*/ lParam = OS.MAKELPARAM (nX, nY); - OS.SendMessage (hwndToolTip, OS.TTM_TRACKPOSITION, 0, lParam); - - /* - * Feature in Windows. Windows will not show a tool tip - * if the cursor is outside the parent window (even on XP, - * TTM_POPUP will not do this). The fix is to temporarily - * move the cursor into the tool window, show the tool tip, - * and then restore the cursor. - */ - POINT pt = new POINT (); - OS.GetCursorPos (pt); - RECT rect = new RECT (); - OS.GetClientRect (hwnd, rect); - OS.MapWindowPoints (hwnd, 0, rect, 2); - if (!OS.PtInRect (rect, pt)) { - int /*long*/ hCursor = OS.GetCursor (); - OS.SetCursor (0); - OS.SetCursorPos (rect.left, rect.top); - OS.SendMessage (hwndToolTip, OS.TTM_TRACKACTIVATE, 1, lpti); - OS.SetCursorPos (pt.x, pt.y); - OS.SetCursor (hCursor); - } else { - OS.SendMessage (hwndToolTip, OS.TTM_TRACKACTIVATE, 1, lpti); - } - - int time = (int)/*64*/OS.SendMessage (hwndToolTip, OS.TTM_GETDELAYTIME, OS.TTDT_AUTOPOP, 0); - OS.SetTimer (hwndToolTip, TIMER_ID, time, 0); - } else { - OS.SendMessage (hwndToolTip, OS.TTM_TRACKACTIVATE, 0, lpti); - OS.SendMessage (hwndToolTip, OS.TTM_POP, 0, 0); - OS.KillTimer (hwndToolTip, TIMER_ID); - } - return; - } - if (item != null && OS.SHELL32_MAJOR >= 5) { - if (visible) { - NOTIFYICONDATA iconData = OS.IsUnicode ? (NOTIFYICONDATA) new NOTIFYICONDATAW () : new NOTIFYICONDATAA (); - TCHAR buffer1 = new TCHAR (0, text, true); - TCHAR buffer2 = new TCHAR (0, message, true); - if (OS.IsUnicode) { - char [] szInfoTitle = ((NOTIFYICONDATAW) iconData).szInfoTitle; - int length1 = Math.min (szInfoTitle.length - 1, buffer1.length ()); - System.arraycopy (buffer1.chars, 0, szInfoTitle, 0, length1); - char [] szInfo = ((NOTIFYICONDATAW) iconData).szInfo; - int length2 = Math.min (szInfo.length - 1, buffer2.length ()); - System.arraycopy (buffer2.chars, 0, szInfo, 0, length2); - } else { - byte [] szInfoTitle = ((NOTIFYICONDATAA) iconData).szInfoTitle; - int length = Math.min (szInfoTitle.length - 1, buffer1.length ()); - System.arraycopy (buffer1.bytes, 0, szInfoTitle, 0, length); - byte [] szInfo = ((NOTIFYICONDATAA) iconData).szInfo; - int length2 = Math.min (szInfo.length - 1, buffer2.length ()); - System.arraycopy (buffer2.bytes, 0, szInfo, 0, length2); - } - Display display = item.getDisplay (); - iconData.cbSize = NOTIFYICONDATA.sizeof; - iconData.uID = item.id; - iconData.hWnd = display.hwndMessage; - iconData.uFlags = OS.NIF_INFO; - if ((style & SWT.ICON_INFORMATION) != 0) iconData.dwInfoFlags = OS.NIIF_INFO; - if ((style & SWT.ICON_WARNING) != 0) iconData.dwInfoFlags = OS.NIIF_WARNING; - if ((style & SWT.ICON_ERROR) != 0) iconData.dwInfoFlags = OS.NIIF_ERROR; - sendEvent (SWT.Show); - this.visible = OS.Shell_NotifyIcon (OS.NIM_MODIFY, iconData); - } else { - //TODO - hide the tray item - } - } -} -} -- cgit