| Summary: | SWT_AWT-Bridge kills ToolBar-ToolTips | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Dima.B <dima_boger> |
| Component: | SWT | Assignee: | Platform-SWT-Inbox <platform-swt-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | eclipse.felipe, remy.suen, Silenio_Quarti |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | stalebug | ||
Are you using Java 6u26 from Oracle? (In reply to comment #1) > Are you using Java 6u26 from Oracle? Programs ans Features > Publisher : "Java 6 Sun Microsystems, Inc" cmd-output: Java SE RE: (build 1.6.0_26-b03) Client VM (build 20.1-b02) not sure but seems so.. This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet. If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant. If the bug is still relevant, please remove the "stalebug" whiteboard tag. |
Hi There : ) it seems that I found a bug with the combination of an used SWT_AWT-Bridge and ToolBar-ToolTips. OS: Win7 (but works on Linux) SWT: v3.7final please see the example below: import org.eclipse.swt.*; import org.eclipse.swt.awt.SWT_AWT; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.widgets.*; public class CopyPasteExample { public static void main (String [] args) { final Display display = new Display(); final Shell shell = new Shell(display); ToolBar bar = new ToolBar (shell, SWT.BORDER); for (int i=0; i<8; i++) { ToolItem item = new ToolItem (bar, SWT.PUSH); item.setText ("Item " + i); item.setToolTipText("Item " + i); } //killMyToolTips SWT_AWT.new_Frame(new Composite(shell, SWT.EMBEDDED)); Rectangle clientArea = shell.getClientArea (); bar.setLocation (clientArea.x, clientArea.y); bar.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } best regards, Dima B.