issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
230,388 | Bug 230388 Cannot get focus out of browser widget any more | I20080502-0100, was OK in M5. Cannot get focus out of browser widget any more. To reproduce, e.g. launch ControlExample, tab into the browser widget and then try to get out by keyboard. - Tab and Shift+Tab used to pass focus out after the last/first link was selected (worked fine in M5, broken in M6 and in HEAD) - Ctrl+Tab and Ctrl+Shift+Tab already didn't work in M5 This is an accessibility problem. E.g. in Javadoc hovers (opened with F2 in a Java editor), you cannot reach the toolbar buttons any more. | resolved fixed | 63e89a7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-06T19:25:13Z" | "2008-05-06T13:20:00Z" |
216,919 | Bug 216919 Incompatibilities with MacOSX CMI (Context Menu Interface) | null | resolved fixed | addc9b9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-06T18:19:06Z" | "2008-01-29T15:20:00Z" |
229,776 | Bug 229776 SWT.TOGGLE style bit stops setRegion from working on linux | swt.jar from the I20080429-0100 build setRegion still does not work on linux when you set the SWT.TOGGLE style bit on Canvas or Button import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SwtToggleTest { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setSize(300,400); shell.setText("Composite.setBackgroundMode()"); Image image = new Image(Display.getDefault(), 210, 100); GC gc = new GC(image); gc.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_BLUE)); gc.fillRectangle(image.getBounds()); gc.dispose(); Region region = new Region(); region.add(0, 0, 140, 50); region.add(70, 50, 140, 50); Canvas c1 = new Canvas(shell, SWT.TOGGLE); c1.setBounds(10, 50, 210, 100); c1.setBackgroundImage(image); c1.setRegion(region); Button b1 = new Button(shell, SWT.TOGGLE); b1.setBounds(10, 200, 210, 100); b1.setImage(image); b1.setRegion(region); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 69fd5aa | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-05T21:13:11Z" | "2008-05-01T13:53:20Z" |
229,680 | Bug 229680 PRIMARY_MODAL Shell can make other Shell lose its menubar | - run the snippet below - note that the main Shell has menubar item "Menu" - push its Button to create a PRIMARY_MODAL child Shell - click away to some other running app - click back on the _original_ Shell (not the child Shell) - close the PRIMARY_MODAL child Shell - now the original Shell is all that's left, but its menubar item is not shown public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Button b = new Button(shell, SWT.PUSH); b.setText("Open dialog"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { Shell dialog = new Shell(shell, SWT.PRIMARY_MODAL | SWT.SHELL_TRIM); dialog.setSize(100, 50); dialog.open(); } }); Menu bar = new Menu(shell, SWT.BAR); shell.setMenuBar(bar); new MenuItem(bar, SWT.CASCADE).setText("Menu"); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 78ef2a0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-05T20:36:47Z" | "2008-04-30T18:26:40Z" |
230,071 | Bug 230071 Snippet223 requires an image | I just tried to run Snippet223 and it fails trying to acquire the 'eclipse.png' image...all the other snippets I've seen are self-contained (one of their best features...;-). | resolved fixed | 3eb1df8 | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet223.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet225.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet258.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-05T15:39:40Z" | "2008-05-03T15:53:20Z" |
229,841 | Bug 229841 Widget is disposed in ControlExample | - run the ControlExample - press the Set/Get API Button --> shows a dialog - press this button again --> shows another dialog - close the second of these dialogs - in the first dialog choose anything in the Combo and you'll get the error at the bottom -> the problem is that Tab.resetLabels() is sending #getText() to the Text that was on the second of the dialogs; this happens because the two shown dialogs were sharing Tab's fields like setText, get/setButton, etc. Exception in thread "main" org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3773) at org.eclipse.swt.SWT.error(SWT.java:3691) at org.eclipse.swt.SWT.error(SWT.java:3662) at org.eclipse.swt.widgets.Widget.error(Widget.java:462) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:335) at org.eclipse.swt.widgets.Combo.getText(Combo.java:838) at org.eclipse.swt.examples.controlexample.Tab.resetLabels(Tab.java:1018) at org.eclipse.swt.examples.controlexample.Tab$35.widgetSelected(Tab.java:982) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3782) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3381) at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:210) | resolved fixed | 0c5b7c9 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/Tab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-05-01T20:00:14Z" | "2008-05-01T19:26:40Z" |
229,377 | Bug 229377 No vertical scrollbars in the stacktrace console | null | resolved fixed | c6e05bd | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ScrollBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-30T13:56:42Z" | "2008-04-29T14:40:00Z" |
148,094 | Bug 148094 Control#setCapture() not working as expected | Eclipse 3.2 According to the JavaDoc of Control#setCapture(), "causes the receiver to have all mouse events delivered to it until the method is called with false". See this snippet: public class Main { static Tree t; public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Button b = new Button(shell, SWT.NONE); b.addSelectionListener(new SelectionAdapter() { public void widgetDefaultSelected(SelectionEvent e) { t.setCapture(true); } }); t = new Tree(shell, SWT.NONE); for (int i = 0; i < 100; i++) { new TreeItem(t, SWT.None).setText("Hello World"); } shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } Hitting the Button, I begin using my MouseWhell to scroll, but the Tree is not scrolling. From what the JavaDoc tells me, I had expected this behaviour. Since I more think that this is a platform-limitation than a bug in setCapture() , at least the JavaDoc should clarify what this API is about. Ben | resolved fixed | ccfcf50 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-29T19:06:21Z" | "2006-06-21T20:00:00Z" |
220,642 | Bug 220642 [open type] Open Type dialog does not work in high contrast | null | resolved fixed | 5ada5ca | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-29T16:29:37Z" | "2008-02-27T19:20:00Z" |
229,172 | Bug 229172 [Win32] MessageBox gets stuck in event loop | null | resolved fixed | b8e1e72 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-29T13:42:20Z" | "2008-04-28T22:00:00Z" |
228,667 | Bug 228667 ACC: SWT does not give focus to a context menu from a dialog | null | resolved fixed | 2396633 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-28T21:14:31Z" | "2008-04-24T12:26:40Z" |
228,968 | Bug 228968 NPE in MozillaDelegate | I20080422-0800 Just found this in my logs. Sorry, no steps to reproduce. -- Error Log -- Date: Thu Apr 24 11:20:56 CEST 2008 Message: Unhandled event loop exception Severity: Error Plugin ID: org.eclipse.ui Stack Trace: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3773) at org.eclipse.swt.SWT.error(SWT.java:3691) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3374) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3032) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2315) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2181) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:477) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:472) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) Caused by: java.lang.NullPointerException at org.eclipse.swt.browser.MozillaDelegate$2.run(MozillaDelegate.java:134) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:132) ... 22 more | resolved fixed | bf6f8d6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-28T15:15:53Z" | "2008-04-26T00:33:20Z" |
228,770 | Bug 228770 setRegion on Canvas not working on linux | using org.eclipse.swt_3.4.0.v3436a.jar and org.eclipse.swt.gtk.linux.x86_3.4.0.v3436.jar on a fedora core 5 machine The following snippet causes two canvases to be drawn whose bounds overlap, but their regions do not. The entire canvas is drawn, rather than just the regions. When I try the same snippet with Buttons instead of Canvases, the Buttons are drawn (and are selection sensitive) based on the regions. I also tested this on OSX and a Windows XP machine. The test behaved the same on OSX (separate bug filed) and on the windows box the canvases were drawn based on the regions. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; public class OverlappedCanvas1 { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.CLOSE); shell.setText("FlatButtonTest"); shell.setBounds(0, 0, 300, 200); Region region = new Region(); region.add(0, 0, 150, 100); region.subtract(0,50,50,50); region.subtract(100,0,50,50); // shell.open(); Canvas b1 = new Canvas(shell, SWT.PUSH); b1.setBounds(0,0,150,100); b1.setRegion(region); b1.setBackground(display.getSystemColor(SWT.COLOR_BLUE)); Canvas b2 = new Canvas(shell, SWT.PUSH); b2.setBounds(100,0,150,100); b2.setRegion(region); b2.setBackground(display.getSystemColor(SWT.COLOR_RED)); Button b3 = new Button(shell, SWT.PUSH); b3.setBounds(150, 125, 100, 50); b3.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { shell.close(); } }); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 0a6811e | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-25T15:46:45Z" | "2008-04-24T20:46:40Z" |
214,381 | Bug 214381 Tree hover help leaving cheese | null | resolved fixed | 13ddd9a | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-24T17:12:32Z" | "2008-01-04T18:06:40Z" |
219,641 | Bug 219641 Triple vertical scrollbar inside compare editor | Eclipse 3.4 M5: Sometimes I see 3 vertical scrollbars inside the compare editor. One of them is the normal scrollbar at the right side of editor. The other 2 are inside the left and right panes. I'll post a screenshot. | resolved fixed | ce2f7e8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ScrollBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-23T18:10:23Z" | "2008-02-20T17:53:20Z" |
228,287 | Bug 228287 [Accessibility] Link is not accessible on Leopard | Link is not accessible on Leopard. The role comes through (hyperlink) but the text and the links are not read. | resolved fixed | ab04bfe | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-23T15:47:46Z" | "2008-04-22T21:33:20Z" |
226,016 | Bug 226016 BIDI3.4: Last two characters in BIDI text are not shaped correctly | null | closed fixed | c6273c6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-22T23:00:49Z" | "2008-04-07T17:40:00Z" |
225,677 | Bug 225677 Random crashes attributable to Safari | Whenever I use the internal browser I often end up getting crashes at random moments. Most of the time these crashes occur after I have stopped using the browser and I've closed it, so I suspect there's some cleanup that's not happening properly. The stack traces are always similiar, WebDocumentLoaderMac::setDataSource is always the final native call in these crashes. I'm attaching a stack trace below... | resolved fixed | b2efc2a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-22T20:02:26Z" | "2008-04-04T00:46:40Z" |
225,975 | Bug 225975 SWT Table: PaintItem events not sent for items with empty text on Mac OS X | null | resolved fixed | f1b82b7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-18T19:49:37Z" | "2008-04-07T14:53:20Z" |
227,597 | Bug 227597 BIDI: owner draw: tool tips don't work with BIDI | N2008040417-2000. In the upcoming build JDT now has support to render BIDI string labels (with the special chars). This also works when colored labels are enabled, however, the tool tip is not honoring those special chars and hence the tool tip is still broken. Works if colored labels are disabled. | resolved fixed | ef5c191 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-17T22:24:55Z" | "2008-04-17T16:33:20Z" |
220,471 | Bug 220471 [Accessibility] Editable Combo is not accessible on Leopard | I20080207-1530 - Carbon VoiceOver does not read editable Combos on OS X 10.5 Leopard. VO just says "combo box blank" when encountering an editable Combo that contains some text. Read-only Combos are read correctly. | resolved fixed | 381bf83 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-17T21:17:53Z" | "2008-02-26T21:06:40Z" |
210,028 | Bug 210028 [mac] screenshot tool does not capture multiple displays properly | Using Mylyn's 'Capture Desktop' feature, one of my displays is drawn over top the other. | resolved fixed | 26a1f72 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-17T21:15:29Z" | "2007-11-15T20:53:20Z" |
224,122 | Bug 224122 Opening a modal dialog while an ON_TOP shell is active should activate the dialog | null | resolved fixed | fe69c2c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-17T20:04:45Z" | "2008-03-26T14:00:00Z" |
226,363 | Bug 226363 BIDI3.4:HCG TreeColumn has wrong BIDI alignment with style SWT.NONE | null | resolved fixed | c0cb993 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-17T16:39:35Z" | "2008-04-09T19:40:00Z" |
227,411 | Bug 227411 Controls in shell blocked by a modal shell still scroll via the scroll wheel | I20080415-1646 The following snippet shows the problem. When the shells are up, click on the shell underneith. Note that it doesn't get focus. Now (while the mouse is still over this bottom shell) use the scroll the scrollwheel. It should scroll. SYSTEM_MODAL causes the same behaviour. I cant reproduce this behaviour on Windows or in other OS X applications with Modal dialogs (Safari File->Export for instance) import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; public class ScrollTest { /** * @param args */ public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(100, 100); Text t = new Text(shell, SWT.V_SCROLL); t.setText("Line\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\n"); shell.open(); Shell another = new Shell(shell, SWT.APPLICATION_MODAL); another.setLayout(new FillLayout()); another.pack(); Label l = new Label(another, SWT.NONE); l.setText("Yup."); another.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | be6f344 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-16T22:50:41Z" | "2008-04-16T18:20:00Z" |
174,014 | Bug 174014 GC.isClipped() always returns false in advanced graphics mode | The GC.isClipped() method in Windows doesn't check if GDI+ is enabled as setClipping() and getClipping() do. | resolved fixed | 53ff3be | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-16T21:17:03Z" | "2007-02-13T15:20:00Z" |
73,390 | Bug 73390 Tooltips not shown for some widgets | On RedHat 9 and SuSE tooltips are not displayed in predictable or consistent manner in StyledText and Tree controls (possibly others). When mouse hovers over tree item whose text is too long to fit in the Tree control horizontally - tooltip must be displayed with full item's text. This happens only occasionaly on these platoforms. The same with StyledText. When there are some regions that must display tootips (not the entire Styledtext widget), these tooltips also displayed *very* rarely. | resolved fixed | b3f5c32 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-16T18:08:47Z" | "2004-09-07T18:00:00Z" |
223,512 | Bug 223512 [CCombo] dropdown does not move when window is dragged | null | resolved fixed | 340ab48 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-15T20:27:52Z" | "2008-03-21T17:20:00Z" |
226,229 | Bug 226229 Carbon Text widgets cannot be properly center-aligned when style is SWT.SEARCH | It appears that when the style is SWT.SEARCH, there is extra padding that is applied to the height of the widget which doesn't seem to be very useful. I have a snippet and a patch. | resolved fixed | 7d1fcf9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-15T20:10:06Z" | "2008-04-09T05:46:40Z" |
223,015 | Bug 223015 Combo height on Linux is too small | null | resolved fixed | 3c4a8b6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-15T16:26:55Z" | "2008-03-17T21:40:00Z" |
216,503 | Bug 216503 MouseEnter always preceded by MouseMove | - run the ControlExample, go to any tab - turn on listeners for MouseEnter, MouseExit and MouseMove - move the pointer into an example control on the page -> the initial event sequence always goes MouseMove then MouseEnter, not vice versa | resolved fixed | 2c83c15 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-14T21:44:27Z" | "2008-01-24T21:26:40Z" |
169,839 | Bug 169839 [CellEditors] TableViewer Text controls don't scroll text on OSX | When entering long Strings into a Text control in a Table, the Text control always just shows the first characters instead of scrolling like the Text control does in other contexts (and in the TableViewer on other platforms). | resolved fixed | d76a5ee | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-14T21:10:11Z" | "2007-01-08T15:26:40Z" |
226,022 | Bug 226022 Compiler warnings in N20080406-0200 | 1. WARNING in /builds/N200804062000/src/plugins/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java (at line 2811) public int EnumFontFamExProc(int lpelfe, int lpntme, int FontType, int lParam) { The method EnumFontFamExProc(int, int, int, int) from the type new Object(){} is never used locally | resolved fixed | c0bbc0f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-14T21:06:00Z" | "2008-04-07T17:40:00Z" |
36,729 | Bug 36729 File deleted by unexpected drag and drop | Here is a strange scenario in which a file is deleted when it is selected. 1) Open the Java Browsing Perspective 2) Open the Package Explorer and place it on the far right of the editor 3) In the Package Explorer, expand a project that is shared with CVS so a shared file is visible 4) Edit this file and make a change 5) Team>Sychronize the file. 6) Make the Sync view a fast view such that the file from step 3 is visible in the Package Explorer while the sync view is open 7) In the sync view, modify the file but DON'T save it. 8) Click on the file in the packages explorer. The sync view will lose focus and the user is prompted to save the changes in the sync view. 9) Say No when asked to save the changes 10) File selected in step 8 is deleted | resolved fixed | e21dc3e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-14T20:42:28Z" | "2003-04-21T18:33:20Z" |
158,243 | Bug 158243 Background for read only Text objects is wrong in dialogs. | Look at any of the error messages at the top of any Property Page, the background is white but should be the striped aqua background. The fix is simple really, since these controls use HITextView all you have to do is call HITextViewSetBackgroundColor with null as the color param. I would presume SWT could do this on the OS X implementation when setBackground is called with null as the color, and then the ImageAndMessageArea could call setBackground(null). I made the changes locally and it seems to fix the problem just fine. | resolved fixed | c79dd09 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-11T21:03:00Z" | "2006-09-21T23:06:40Z" |
225,527 | Bug 225527 rendering problems after removing owner listeners | null | resolved fixed | 6f5c054 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-11T20:57:16Z" | "2008-04-03T10:53:20Z" |
226,747 | Bug 226747 CCombo arrow button not centered | null | resolved fixed | 9da76fa | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-11T19:03:38Z" | "2008-04-11T18:53:20Z" |
197,238 | Bug 197238 UML causing stack overflow | Build ID: n/a Steps To Reproduce: use the latest UML distro from eclipse website and enable view. it will cause eclipse to have a stack overflow. a clean launch will not reset eclipse so you will have to uninstall eclipse and reinstall More information: stack overflow from terminal: mbp:~ chris$ Exception in thread "Thread-2" java.lang.StackOverflowError at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:216) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1495) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1519) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1504) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:825) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1029) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:137) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:363) at org.eclipse.swt.widgets.Display.controlProc(Display.java:835) at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:216) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1495) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1519)Invalid memory access of location 0000004d eip=917f4111 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1504) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:825) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1029) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:137) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:363) at org.eclipse.swt.widgets.Display.controlProc(Display.java:835) at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143) | resolved fixed | fc5ae94 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-11T15:41:37Z" | "2007-07-20T05:40:00Z" |
177,368 | Bug 177368 Display.getCursorControl returning null for complex Xlib widget on Eclipse/Gtk | Build ID: M20070212-1330 Steps To Reproduce: 1. We have a set of existing widgets created using Xlib which have child windows. 2. We create an SWT control representing the top-level widget and use GtkSocket/plug to parent our widget in the SWT control. 3. If we create a viewpart with this control and try dragging another view over this view, then the cursor will change to the cursor that appears when you drag a view over the desktop. Stepping through the code reveals that when Display.getCursorControl() is called from DragUtil.java, the result is null, so Eclipse thinks we've moved outside the bounds of the Eclipse window. More information: I did some investigation on the problem and noticed that getCursorControl is calling gdk_window_at_pointer to get the GdkWindow that the mouse pointer is currently over. Unfortunately, the child Xlib windows are "blocking" the parent GdkWindow from being seen, so gdk_window_at_pointer is returning 0. I experimented with using gdk_window_foreign_new on all the child windows, so that every window in the embedded widget is represented by a GdkWindow. However, this causes a problem when getCursorControl attempts to lookup a GtkWidget handle for the GdkWindow returned by gdk_window_at_pointer. It wouldn't be practical for us to create a GtkWidget for every child window. What I propose is: There is logic already for where the cursor is over a child GtkWidget but that widget isn't directly represented by an SWT control. In that case, getCursorControl will walk up the tree until it finds the top level GtkWidget that is represented by a Java control. It's this Java/SWT control that gets returned. We should extend the tree walking logic, so that we can work up the tree from an Xlib window until we find a parent GdkWindow that has an associated GtkWidget and then continue walking until we find the associated SWT control. That way, embedding foreign controls should work as well as it does in Windows. Here is some possible code that would do the above: org.eclipse.swt.Control getCursorControl() { int handle = OS.getCursorControlHandle(); //walk up the window tree to find the first one who's created by SWT. //We have to walk up here for that there are cases the application could create //child GtkWidget under an SWT control from JNI code, such as GtkSocket. for( ; handle != 0; handle = OS.GetParent( handle ) ) { org.eclipse.swt.Widget widget = Display.findWidget( handle ); if( widget != null )return (Control)widget; } return null; } C code for OS.getCursorControlHandle(): Window GetParentWindow( Display *display, Window xid ) { Window root = 0, parent = 0, *children = 0; unsigned int nchildren = 0; if( !XQueryTree( display, xid, &root, &parent, &children, &nchildren ) )return 0; if( children )XFree( children ); return parent; } GtkWidget *GtkWidgetFromWindow( Window xid ) { GdkWindow *gdk_window = gdk_window_lookup( xid ); if( !gdk_window )return NULL; GtkWidget *widget; gdk_window_get_user_data( gdk_window, (void **)&widget ); return widget; } extern "C" jint Java_com_ibm_yourpackage_yourclass_getCursorControlHandle() { unsigned int mask; GtkWidget *widget = NULL; int root_x, root_y, x, y; Window root = None, parent, child, grand_child; //1. to avoid crash from an X error gdk_error_trap_push(); //2. use XQueryPointer and XTranslateCoordinates to find the smallest cursor window root = XDefaultRootWindow(gdk_display); if( !XQueryPointer( gdk_display, root, &root, &child, &root_x, &root_y, &x, &y, &mask ) ) goto lExit; for( (parent = root, x = root_x, y = root_y); child != None ; parent = child, child = grand_child ) { if( !XTranslateCoordinates( gdk_display, parent, child, x, y, &x, &y, &grand_child ) ) goto lExit; } child = parent; //3, walk up the ancestors of the cursor window, to find the GtkWidget. for( ; child && child != root; child = GetParentWindow( gdk_display, child ) ) { widget = GtkWidgetFromWindow( child ); if( widget )break; } lExit: gdk_error_trap_pop(); return (jint)widget; } | resolved fixed | 11d9126 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-11T14:47:17Z" | "2007-03-14T16:33:20Z" |
187,036 | Bug 187036 [Workbench] TVT33:TCT[Workbench] 159: ar: 13.001120 Tool tips text does not have RTL reading order | OS: Windows Build date: 05112007 Component Name: CDT Blocking: No Tester Name: Noha Steps to recreate the problem: Create a new workspace. Switch to the C/C++ Perspective: from the main menu go to Window -> Open Perspective -> Other and select C/C++ Problem description: The tool tips text such as 'New C/C++ Project' does not have RTL reading order, however when I click anywhere else such as clicking on any of the main menus and then go back to the tool tips they become RTL enabled. As discussed, this is probably a Platform/Base problem. Thanks! Vivian Hi, Updating with screen shots. This is a general problem for all tooltips (including workbench toolbar buttons and view's local toolbar buttons). The switching reading order behavior happens to all strings with Engish mixed in Bidi words. Platform UI please take a look. This article was reassigned from Category:''TVT Testcases''. | resolved fixed | 7957e07 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T21:14:11Z" | "2007-05-15T14:40:00Z" |
143,358 | Bug 143358 Tree items array don't shrink correctly | build 3.2 RC5 In Tree.setItemCount (TreeItem parentItem, int count) the code computes a new shrinked array but doesn't assgined it. Here: //TODO - move shrink to paint event // shrink items array int lastIndex = items.length; for (int i=items.length; i>0; i--) { if (items [i-1] != null) { lastIndex = i; break; } } if (lastIndex < items.length - 4) { int length = Math.max (4, (lastIndex + 3) / 4 * 4); TreeItem [] newItems = new TreeItem [length]; System.arraycopy(items, 0, newItems, 0, Math.min(items.length, lastIndex)); } Is is missing a item = newItems; after the last system array copy. The GTK apparently doesn't shrink the array at all. | resolved fixed | 764d043 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T21:03:50Z" | "2006-05-23T21:33:20Z" |
125,866 | Bug 125866 need more parent.indexOf() == -1 checks in TableItem | There's only one place in TableItem that checks the results of parent.indexOf(..) to see whether it's valid before using it, and that's setImage(..). The three other calls to the method do not check if it's valid. These methods are: getBounds(int) getImageBounds(int) redraw(int) This is bad because, in theory, indexOf could return -1. These functions increment the index returned by one and use it to call the OS. I've had getBounds(int) return bounds of the column header on OSX on occasion and have guessed it's due to this (I don't have OSX to test on, only reports from users) Using SWT Build 3221 | resolved fixed | de3efc6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TableItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T20:20:19Z" | "2006-01-31T17:53:20Z" |
116,748 | Bug 116748 Custom Combo: drop down menu is hard to use | The drop down menu of the Custom Combo uses a List widget which has a selection behavior that is not suitable for menus because you have to hit the text in order to select an item. Clicking in the white space after the text just dismissed the menu but doesn't select the item. I suggest to use a Table instead of a List widget. | resolved fixed | 61c9c3d | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T19:50:42Z" | "2005-11-16T22:26:40Z" |
226,469 | Bug 226469 Successfully to setFocus to a control while getFocusControl return null | null | resolved fixed | 62648eb | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T18:45:29Z" | "2008-04-10T09:33:20Z" |
42,485 | Bug 42485 Mouse cursor does not hide when typing on Mac OS X | Eclipse 3.0 M3 Build id: 200308281813 Mac OS X 10.2.6 Open any text editing view and start typing. The mouse cursor still remains visible. The correct behavior on Mac OS is to hide the mouse cursor while you are typing so that the cursor doesn't get in the way. | resolved fixed | 613aaf4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T16:05:50Z" | "2003-09-03T20:13:20Z" |
130,470 | Bug 130470 [Tree] Selection-Rect changes on expanding TreeItem causes pixel corruption | I am not sure wether this is a Windows Bug. When expanding the Root treeitem on this snippet, I can see the Selection-Rectangle expand by some pixels: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Tree tree = new Tree(shell, SWT.BORDER); TreeItem root = new TreeItem(tree, SWT.NONE); root.setText("Root"); TreeItem child = new TreeItem(root, SWT.NONE); child.setText("Hello World"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } I am running with Manifest. Can also reproduce with M4. Ben | resolved fixed | 5bb9869 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-10T15:46:40Z" | "2006-03-05T20:20:00Z" |
153,365 | Bug 153365 DirectoryDialog's setFilterPath() has no effect | The DirectoryDialog's setFilterPath() has no effect on the Mac (Eclipse 3.1.1 and 3.2). Instead of showing the specified directory, the dialog presents the previously chosen directory. An SWT newsgroup poster reported the same situation on Linux. However, things seem fine on Windows. Steve Northover replied on the newsgroup saying that it looked like the method was never implemented on the Mac. | resolved fixed | 2e1b2b2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-09T16:07:08Z" | "2006-08-09T21:46:40Z" |
196,676 | Bug 196676 [consistency] Link does not fire double-click events | 3.3 - see this in the ControlExample - on other platforms this event does fire | resolved fixed | 5869dd8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-08T21:57:21Z" | "2007-07-16T15:33:20Z" |
225,973 | Bug 225973 Cant attach Menu to a Link widget | setMenu() has no effect, listeners to catch mouse events to display the menu that way are never called | resolved fixed | 4f9bd13 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-08T21:36:28Z" | "2008-04-07T14:53:20Z" |
224,941 | Bug 224941 Esc deactivates parent shell if SWT.TOOL is used | I20080330-1350 - press Ctrl+Shift+L (Key Assist) - press Esc => expected: workbench window becomes active again => was: the next OS window on the MRU stack comes to front (as if I pressed Alt+Tab) | resolved fixed | 90fa3bc | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-08T19:39:06Z" | "2008-03-31T16:13:20Z" |
211,181 | Bug 211181 Help Browser crashes on Windows 2000 | Build ID: M20071023-1652 Steps To Reproduce: 1. Start Eclipse on Windows 2000 (inside VMWare Player on Linux) 2. Select Help -> Help Contents 3. As soon as the mouse enter the browser it will crash. This error message is printed on the Console: [INFO] HttpServer - Version Jetty/5.1.x [INFO] Container - Started org.mortbay.jetty.servlet.ServletHandler@4b9101 [INFO] Container - Started HttpContext[/help,/help] [INFO] SocketListener - Started SocketListener on 0.0.0.0:51545 [INFO] Container - Started org.mortbay.http.HttpServer@ee5d13 Exception in thread "Help Browser UI" java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.browser.IE.handleMouseEvent(IE.java:807) at org.eclipse.swt.browser.IE$2.handleEvent(IE.java:155) at org.eclipse.swt.ole.win32.OleEventTable.sendEvent(OleEventTable.java:55) at org.eclipse.swt.ole.win32.OleEventSink.notifyListener(OleEventSink.java:144) at org.eclipse.swt.ole.win32.OleEventSink.Invoke(OleEventSink.java:119) at org.eclipse.swt.ole.win32.OleEventSink.access$1(OleEventSink.java:96) at org.eclipse.swt.ole.win32.OleEventSink$1.method6(OleEventSink.java:70) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:119) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2265) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3291) at org.eclipse.help.ui.internal.browser.embedded.EmbeddedBrowserAdapter$UIThread2.run(EmbeddedBrowserAdapter.java:40) I made a quick fix in IE.java: void handleMouseEvent (OleEvent e) { + if (e.arguments == null || e.arguments.length < 1) + return; Variant arg = e.arguments[0]; Which seems to work but there is probably a better fix. | resolved fixed | 428dd2f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-08T19:17:51Z" | "2007-11-28T08:53:20Z" |
225,946 | Bug 225946 TOGGLE Buttons inherit background with SWT.INHERIT_DEFAULT | Set a custom background color and background mode SWT.INHERIT_DEFAULT on a composite that contains PUSH and TOGGLE buttons. Although both button types look the same, the TOGGLE buttons inherit the background color of the composite but PUSH buttons do not. This will probably not happen with Windows, as Windows buttons can not take a background color. | resolved fixed | 6fed2ee | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-08T18:34:45Z" | "2008-04-07T09:20:00Z" |
220,465 | Bug 220465 [Accessibility] StyledText is not accessible on Leopard | I20080207-1530 - Carbon VoiceOver does not read StyledText on OS X 10.5 Leopard. VO just says "text blank" when encountering a StyledText. | resolved fixed | 490158b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-07T20:12:48Z" | "2008-02-26T21:06:40Z" |
225,997 | Bug 225997 TextLayout font seems not the be the system font | 3.4 M6. When custom drawing table items it seems that the font used in the TextLayout isn't the same as originally used by the Table (item). This is hard to verify as both, TextLayout.getFont() and Table(Item).getFont() return 'null'. However, if a paint listener is added and the item string painted, then a different font is used. It works on Windows but not on Linux-GTK. | resolved fixed | e2edffd | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-07T19:46:50Z" | "2008-04-07T17:40:00Z" |
192,646 | Bug 192646 TextLayout implementation on VISTA platform cannot correctly render some gb18030 characters(Mongolian Baiti, Microsoft Yi Baiti etc) | Build ID: M20060629-1905 Steps To Reproduce: 1.Create a shell. 2.Create a TextLayout instance and set some gb18030 characters as its text. 3.Run the application and find that these characters cannot display correctly. More information: The code snippet used to reproduce this problem: /** * @param args */ public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setSize(358, 217); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { TextLayout layout = new TextLayout(display); event.gc.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); String text = "sss \u1820, \u1821, \ua000, \ua001"; // event.gc.drawText(text, 0, 0); layout.setText(text); layout.setWidth(shell.getBounds().width); layout.draw(event.gc, 0, 0); layout.dispose(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } | resolved fixed | 5f75e2d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-04T20:14:59Z" | "2007-06-14T11:20:00Z" |
225,593 | Bug 225593 org.eclipse.swt.events.LineStyleEvent doesn't keep the style when multiple listener are listening | Build ID: M20071023-1652 Steps To Reproduce: 1. Create a StyleText widget 2. Add more than 1 LineStyleListener 3. The event.styles attribute is always null but should keep styles that have been set by other listener triggered before. Without that, it seems difficult to add several styleRanges from several listeners. More information: in LineStyleEvent constructor, we should have 1 more line : styles = e.styles; | resolved fixed | 40fe2b7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-04T16:29:54Z" | "2008-04-03T16:26:40Z" |
225,329 | Bug 225329 Owner draw: gc in paint doesn't have foreground color set | null | resolved fixed | 56f156a | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-04T14:46:55Z" | "2008-04-02T12:40:00Z" |
207,909 | Bug 207909 [carbon SWT] ON_TOP shell can not be hidden when parent shell is minimized | Build ID: Eclipse 3.3.1, Mac OS X 10.5, No test on Eclipse 3.4. Steps To Reproduce: 1. Run the snippet code from Eclipse PDE; 2. Click the green shell, be sure the focus on the "ON_TOP" shell (green background color); 3. Mouse hovering onto the minimized button of bottom shell (this is parent shell); 4. Click the minimize button, The parent shell is minimized to Dock bar; 5. But the "ON_TOP" shell is still stay on the screen. Run this code on Windows, the "ON_TOP" shell will be hidden following the parent shell if it's minimized. If remove the ON_TOP style while create the topShell in the below code, this shell will be hidden since parent is minimized. More information: Snippet code: public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display, SWT.BORDER | SWT.MAX |SWT.MIN | SWT.CLOSE); shell.setSize(500,300); shell.setLayout(new FillLayout()); Shell topShell = new Shell(shell,SWT.ON_TOP | SWT.NO_TRIM); topShell.pack(); topShell.setBounds(50,50,50,300); topShell.setVisible(true); topShell.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_GREEN)); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } | resolved fixed | 7c5ffc1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-03T21:28:29Z" | "2007-10-30T04:53:20Z" |
225,440 | Bug 225440 MenuDetect events sent with (0, 0) coordinates | null | resolved fixed | 85b9814 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-02T21:50:49Z" | "2008-04-02T21:00:00Z" |
225,263 | Bug 225263 Opening a fast view crashes Eclipse | 1. Make a view a fast view. 2. Click on the new fast view's icon to expand the view. 3. Eclipse crashes with a dump to the console similiar to this: 2008-04-02 00:29:27.910 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x23a50680 of class NSException autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x954f7378 0x90a1162e 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.915 java[35545:80f] An uncaught exception was raised 2008-04-02 00:29:27.915 java[35545:80f] *** -[NSCFArray insertObject:atIndex:]: index (17) beyond bounds (17) 2008-04-02 00:29:27.915 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x23a506f0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x954fb02a 0x90a8b1ce 0x9539d0fb 0x90a11aec 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.916 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x168bc0 of class NSCFData autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x955042a5 0x95503e81 0x90a8b1e2 0x9539d0fb 0x90a11aec 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.916 java[35545:80f] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFArray insertObject:atIndex:]: index (17) beyond bounds (17)' 2008-04-02 00:29:27.917 java[35545:80f] Stack: ( 2426974795, 2503594235, 2426974251, 2426974314, 2505520095, 2504987356, 2448524299, 511010808, 56121777 ) | resolved fixed | dff17e9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-02T19:44:05Z" | "2008-04-02T07:06:40Z" |
221,411 | Bug 221411 [Accessibility] Leopard: VoiceOver doesn't follow focus if Browser is in Shell | null | resolved fixed | 3d06bb7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-02T18:22:53Z" | "2008-03-04T22:33:20Z" |
210,854 | Bug 210854 setSize on Spinner doesn't have an effect | As Spinner is a composite, setSize doesn't appear to resize the view. However, setting FILL_HORIZONTAL and FILL_VERTICAL do appear to work. Steps to reproduce: Run ControlExample Go to Spinner tab Click on '10x10', '50x50' or '100x100' - no effect seen Cilck on Horizontal Fill or Vertical Fill - spinner expands to full size of view | resolved fixed | d0b78d7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-02T15:10:33Z" | "2007-11-25T11:26:40Z" |
224,642 | Bug 224642 Scrolled form does not resize child controls when the form is resized | Build ID: I20070625-1500 Steps To Reproduce: 1. Use MultiPageEditorPart 2. In a form page create a few controls on a composite that is parented by the scrolled form. 3. Resize the editor. The controls do not get resized , but rather the editor covers them up as you shrink it. 4. Would expect the controls to be resized to fit the new size of the scrolled composite. More information: It seems to be in the ScolledCompositeLayout and ScrolledComposite classes. The minHeight gets calculated when the composite gets drawn and gets cached and never gets changed. So once the minHeight of the editor becomes < the min height composite , scroll bars appear on the editor. The layout takes the Math#max() of the minHeight of sc or the actual height. If the min height is > , then the scroll bars appear. I think that the composite should resize all of the children appropriately. This produces a 508 accessibility problem. For example , if you are using a table , and it is being partially covered up by the editor , and scroll down through it via keyboard. The focus leaves the viewable area. | resolved wontfix | f18e9dd | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet296.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-02T05:02:52Z" | "2008-03-28T16:00:00Z" |
221,268 | Bug 221268 Running operation that continuously refreshes/updates SWT Browser it does not stay minimized | Build ID: 3.3 Steps To Reproduce: When Running operation that continuously refreshes/updates SWT Browser it does not stay minimized. When you minimize it , it again pops up no matter how many times you minimize. It happens when the refresh operation is continously happening in screen. The instance of browse is created by following:- Browser browser = new Browser(composite, SWT.MOZILLA); This issue is only happening in windows. More information: | resolved fixed | e60a3ad | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-01T21:31:33Z" | "2008-03-04T05:53:20Z" |
181,864 | Bug 181864 [Browser] crash when disposed in changing callback | null | resolved fixed | 26b9045 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-01T20:56:40Z" | "2007-04-11T00:06:40Z" |
224,462 | Bug 224462 [Browser-Mozilla] Save-as window shown when disposing the browser during a location changing event | null | resolved fixed | 70407a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-01T20:49:04Z" | "2008-03-27T20:33:20Z" |
225,038 | Bug 225038 Virtual table create all items if setItemCount before create first column | null | resolved fixed | f377938 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-04-01T14:41:49Z" | "2008-04-01T03:20:00Z" |
223,846 | Bug 223846 [Viewers] Open Resource dialog causes 'Ignored reentrant call while viewer is busy' | I20080325-0100, Mac OS X only (could not reproduce on WinXP) - make sure there's 1 element in the Open Resource history - open Open Resource dialog and start to type => message in log: !ENTRY org.eclipse.jface 2 0 2008-03-25 15:52:20.036 !MESSAGE Ignored reentrant call while viewer is busy. This is only logged once per viewer instance, but similar calls will still be ignored. !STACK 0 java.lang.RuntimeException at org.eclipse.jface.viewers.ColumnViewer.checkBusy(ColumnViewer.java:743) at org.eclipse.jface.viewers.AbstractTableViewer.replace(AbstractTableViewer.java:1041) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ContentProvider.updateElement(FilteredItemsSelectionDialog.java:2889) at org.eclipse.jface.viewers.AbstractTableViewer$1.handleEvent(AbstractTableViewer.java:78) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1553) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1577) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1562) at org.eclipse.swt.widgets.Table.checkData(Table.java:214) at org.eclipse.swt.widgets.TableItem.getImage(TableItem.java:443) at org.eclipse.swt.widgets.TableItem.calculateWidth(TableItem.java:128) at org.eclipse.swt.widgets.Table.setScrollWidth(Table.java:3018) at org.eclipse.swt.widgets.Table.checkItems(Table.java:260) at org.eclipse.swt.widgets.TableItem.getBounds(TableItem.java:271) at org.eclipse.jface.viewers.TableViewerRow.getBounds(TableViewerRow.java:44) at org.eclipse.jface.viewers.ViewerCell.getBounds(ViewerCell.java:89) at org.eclipse.jface.viewers.OwnerDrawLabelProvider.update(OwnerDrawLabelProvider.java:162) at org.eclipse.jface.viewers.StyledCellLabelProvider.update(StyledCellLabelProvider.java:196) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ItemsListLabelProvider.update(FilteredItemsSelectionDialog.java:1689) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:142) at org.eclipse.jface.viewers.AbstractTableViewer.doUpdateItem(AbstractTableViewer.java:386) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:880) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.refreshItem(StructuredViewer.java:1476) at org.eclipse.jface.viewers.AbstractTableViewer.replace(AbstractTableViewer.java:1044) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ContentProvider.updateElement(FilteredItemsSelectionDialog.java:2889) at org.eclipse.jface.viewers.AbstractTableViewer.getVirtualSelection(AbstractTableViewer.java:497) at org.eclipse.jface.viewers.AbstractTableViewer.getSelectionFromWidget(AbstractTableViewer.java:468) at org.eclipse.jface.viewers.StructuredViewer.getSelection(StructuredViewer.java:972) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1376) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1328) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1428) at org.eclipse.jface.viewers.ColumnViewer.refresh(ColumnViewer.java:528) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1387) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog.refresh(FilteredItemsSelectionDialog.java:930) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$RefreshJob.runInUIThread(FilteredItemsSelectionDialog.java:1370) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:94) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3300) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3031) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.dialogs.FilteredResourcesSelectionDialog.open(FilteredResourcesSelectionDialog.java:355) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.queryFileResource(OpenResourceHandler.java:154) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.execute(OpenResourceHandler.java:88) at org.eclipse.ui.internal.ide.handlers.OpenResourceHandler.run(OpenResourceHandler.java:176) at org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy.execute(ActionDelegateHandlerProxy.java:289) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:471) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:822) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:511) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1107) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1552) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1577) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1562) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1614) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1609) at org.eclipse.swt.widgets.Control.kEventUnicodeKeyPressed(Control.java:2169) at org.eclipse.swt.widgets.Composite.kEventUnicodeKeyPressed(Composite.java:584) at org.eclipse.swt.widgets.Control.kEventTextInputUnicodeForKeyEvent(Control.java:2134) at org.eclipse.swt.widgets.Widget.textInputProc(Widget.java:1987) at org.eclipse.swt.widgets.Display.textInputProc(Display.java:3906) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3011) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2375) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2339) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2205) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:478) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:473) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) | resolved fixed | 96e9fcd | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-27T21:29:23Z" | "2008-03-25T15:46:40Z" |
221,924 | Bug 221924 Perspective Switcher context menu appears in bad location | null | resolved fixed | 9c38099 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-27T16:24:35Z" | "2008-03-07T22:46:40Z" |
224,198 | Bug 224198 URLTransfer sometimes can't DND with Firefox browser | URLTransfer sometimes does not work on Linux because it currently does not support the "text/x-mozilla-url" data flavor. | resolved fixed | 0609ae1 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/URLTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/org/eclipse/swt/dnd/URLTransfer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-26T22:08:32Z" | "2008-03-26T19:33:20Z" |
223,219 | Bug 223219 Several LineBackgroundListeners on a StyledText | Build ID: I20080207-1530 Steps To Reproduce: If you register 2 LineBackgroundListener on a styled text, only the last listener work is taken into account. Consequence: In an editor, if the cursorLinePainter is enabled, it is not possible to perform custom decoration using a line background listener. More information: The problem is that when the LineBackgroundEvent is passed from listener to listener (@see StyledTextListener#handleEvent), the color is always reset to null. Actual: public LineBackgroundEvent(StyledTextEvent e) { super(e); lineOffset = e.detail; lineText = e.text; } Expected: public LineBackgroundEvent(StyledTextEvent e) { super(e); lineOffset = e.detail; lineText = e.text; lineBackground = e.lineBackground; } If it is possible i can help for the fix ;). | resolved fixed | 01f5253 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/LineBackgroundEvent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-26T21:28:24Z" | "2008-03-19T15:20:00Z" |
223,514 | Bug 223514 [Spinner] SWT.READ_ONLY doesn't work | Build ID: I20080207-1530 Steps To Reproduce: 1. Open ControlExample with Cocoa 2. Goto "Spinner" tab 3. Enable SWT.READ_ONLY 4. Type digits in the spinner box Notice that you may type into the spinner input box still, unlike platforms like Carbon where it is disabled. | resolved fixed | 645c27e | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-26T14:00:55Z" | "2008-03-21T17:20:00Z" |
223,513 | Bug 223513 StyledText crashes on double-click of whitespace | null | resolved fixed | e973f73 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T21:35:22Z" | "2008-03-21T17:20:00Z" |
223,970 | Bug 223970 Table/Tree does not redraw checkboxes when enabled | Run the testcase. Press the button. Note that the checkboxes in the table do not redraw enabled. Scroll the table to force them to redraw. import org.eclipse.swt.SWT; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class PR44 { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Table table = new Table(shell, SWT.CHECK); table.setEnabled(false); for (int i = 0; i < 300; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText("Item" + i); item.setChecked(true); } Button b = new Button(shell, SWT.PUSH); b.setText("Press"); b.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { table.setEnabled(!table.getEnabled()); } }); shell.setSize(300, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 3f3113d | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T20:26:37Z" | "2008-03-25T21:20:00Z" |
223,909 | Bug 223909 Plug-Ins Launch Tab no longer contains a checkable tree | null | resolved fixed | 3019715 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T20:06:20Z" | "2008-03-25T18:33:20Z" |
223,941 | Bug 223941 NPE on Font#dispose | Version: 3.4.0 Build id: I20080325-0100 Create and dispose a font: public static void main(String[] args) { final Display display = new Display(); Font f = new Font(display, "Tahoma", 12, SWT.NORMAL); f.dispose(); } Here is the stack: Warning: Missing charsets in String to FontSet conversion Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.graphics.Font.destroy(Font.java:158) at org.eclipse.swt.graphics.Resource.dispose(Resource.java:64) at PR.main(PR.java:12) Here is the code that is broken: void destroy() { if (handle == device.systemFont.handle) return; OS.XmFontListFree (handle); handle = 0; } It doesn't check for device==null, | resolved fixed | 78e701f | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Device.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T19:13:55Z" | "2008-03-25T18:33:20Z" |
223,932 | Bug 223932 TextLayout uses wrong system font | Run the testcase. Note that the wrong font is used when org.eclipse.swt.internal.carbon.smallFonts system property is specified. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; public class PR { public static void main(String[] args) throws Exception { final Display display = new Display(); final Shell shell = new Shell(display); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { TextLayout layout = new TextLayout(display); layout.setText("Hello"); Rectangle rect = layout.getBounds(); layout.draw(event.gc, 10, 10); layout.dispose(); rect.x = rect.y = 10; event.gc.drawRectangle(rect); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | b11ebaa | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T18:24:42Z" | "2008-03-25T18:33:20Z" |
223,881 | Bug 223881 click on end of line place cursor wrong offset | null | resolved fixed | 0d2837b | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T16:10:00Z" | "2008-03-25T15:46:40Z" |
223,753 | Bug 223753 Disabling table's resizable columns has no effect | Build ID: 3.4 Steps To Reproduce: 1. Run "Control Example" with Cocoa bindings 2. Select "Table" tab 3. Enable "Header Visible" and disable "Resizable Columns", and note that column is still resizable More information: | resolved fixed | 067aa41 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T15:20:25Z" | "2008-03-25T01:53:20Z" |
223,813 | Bug 223813 TextLayout#getBounds() only considers first line on carbon | null | verified fixed | 3128787 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-25T15:03:50Z" | "2008-03-25T13:00:00Z" |
223,179 | Bug 223179 BIDI3.4:HCG Hebrew data in Java editor is treated different from Win OS | null | resolved fixed | 1e8ec51 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-24T21:55:36Z" | "2008-03-19T09:46:40Z" |
223,591 | Bug 223591 Button.print(GC) does not work on Windows. | null | resolved fixed | 1d45a49 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-24T21:10:52Z" | "2008-03-23T22:06:40Z" |
210,858 | Bug 210858 Editing text has no horizontal scrollbar | The SWT.H_SCROLL can't be set on the text box. This means that the SWT.WRAP has no effect, since all text wraps in the scrollbox. Run Control Example Go to Text page Click SWT.MULTI Deselect SWT.WRAP Type text; wraps anyway | resolved fixed | 6efaacc | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-24T20:54:40Z" | "2007-11-25T14:13:20Z" |
222,798 | Bug 222798 [Shell] SWT.MAX does not work | null | resolved fixed | 16aaba7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-24T20:30:59Z" | "2008-03-14T18:40:00Z" |
223,397 | Bug 223397 Set/Get API of DateTime widget crashes the control example | Build ID: I20080207-1530 Steps To Reproduce: 1. open control example 2. select DateTime tab 3. Focuses the date, time or calendar widget by clicking on it. 4. Make some changes to the widget's numbers (either keyboard or mouse input). 5. Click the Set/Get API button in Other section. More information: The program crashes when above actions take place. | resolved fixed | 071d2cf | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/DateTime.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-20T21:12:46Z" | "2008-03-20T19:06:40Z" |
215,204 | Bug 215204 read-only Combo.setText() does not fire Modify event on GTK | null | resolved fixed | 8dba171 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-19T20:34:21Z" | "2008-01-14T11:26:40Z" |
222,281 | Bug 222281 Table events screwed up if asyncExec happens on focus lost / out | null | verified fixed | 14d62fa | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-19T14:12:19Z" | "2008-03-11T18:26:40Z" |
78,825 | Bug 78825 [CCombo] Tab doesn't go to next entry field when list is down | When the list is down in the CCombo widget then Tab key cause no action. The Tab key should go to the next entry field just like Combo widget does. | resolved fixed | cebd071 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-13T21:57:09Z" | "2004-11-17T11:13:20Z" |
220,112 | Bug 220112 [SashForm] Add getter/setter methods to control SashForm.SASH_WIDTH | Not only is this an instance variable that is deceptively named like a constant, it is not exposed via typical get/set methods. Please add setSashWidth() and getSashWidth() methods so it can be controlled like other widget properties. | resolved fixed | 122fd0d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/SashForm.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-13T19:51:53Z" | "2008-02-24T21:53:20Z" |
220,974 | Bug 220974 ClassCastException in Safari | -start a target with empty workspace -click the go to workbench icon on the welcome page. java.lang.ClassCastException: C at org.eclipse.swt.browser.Safari.browserProc(Safari.java:225) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:166) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2290) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2402) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2366) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2232) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:476) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:471) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:107) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:77) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) | resolved fixed | 7169133 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-13T18:13:08Z" | "2008-02-29T18:33:20Z" |
221,957 | Bug 221957 Huge Cursor in huge Text control | Build ID: M20070921-1145 Steps To Reproduce: 1. Run CustomControlExample on linux gtk 2. CTabFolderTab 3. Horizontal/Vertical Fill yes 4. click on the CTabItems text "CTabItem Content: 0", see the huge Cursor (three letters width) More information: I think the Cursors size should be depending on the used Font. But here it seems to depend on the lines height? Interesting is also, if you play with the controls size, 10x10 make a real mini cursor. I use Ubuntu 7.10, GTK 2.12 | resolved fixed | 9bc423f | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CTabFolderTab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-13T15:49:12Z" | "2008-03-08T12:40:00Z" |
175,689 | Bug 175689 [CCombo] CCombo#deselectAll() doesn't clear Text | When calling CCombo#deselectAll() the selection the text shown is not cleared, only the selection in the list. This is different than what happens in an Combo where the text is also cleared. Snippet attached | resolved fixed | c0d239c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-12T19:42:22Z" | "2007-02-27T12:40:00Z" |
214,944 | Bug 214944 [browser] xulrunner 1.9-based Browser has no initial background | - happens on win2000, doesn't happen on linux, haven't tried osx - run snippet 128 with the setUrl() line at the bottom commented out - the browser has no background drawn for it until a url or text is set - the only known way to fix this so far is to set the initial page to about:blank and don't send any resulting events | resolved fixed | 1a91a06 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-12T19:10:30Z" | "2008-01-10T18:33:20Z" |
204,891 | Bug 204891 TabFolder.setSelection() does not update focus hilight on OS X | null | resolved fixed | caa84d2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-12T19:07:30Z" | "2007-09-28T09:00:00Z" |
222,381 | Bug 222381 AIOOBE in GIFFileFormat | I20080304-1113 With the subversive plugin enabled (version 1.1.7) 1. Go to SVN Repository exploring 2. Expand a repository location Is: org.eclipse.swt.SWTException: i/o error (java.lang.ArrayIndexOutOfBoundsException: 7) at org.eclipse.swt.SWT.error(SWT.java:3756) at org.eclipse.swt.SWT.error(SWT.java:3674) at org.eclipse.swt.internal.image.GIFFileFormat.readApplicationExtension(GIFFileFormat.java:334) at org.eclipse.swt.internal.image.GIFFileFormat.readExtension(GIFFileFormat.java:182) at org.eclipse.swt.internal.image.GIFFileFormat.getExtensions(GIFFileFormat.java:154) at org.eclipse.swt.internal.image.GIFFileFormat.loadFromByteStream(GIFFileFormat.java:102) at org.eclipse.swt.internal.image.FileFormat.loadFromStream(FileFormat.java:48) at org.eclipse.swt.internal.image.FileFormat.load(FileFormat.java:84) at org.eclipse.swt.graphics.ImageLoader.load(ImageLoader.java:127) at org.eclipse.swt.graphics.ImageDataLoader.load(ImageDataLoader.java:22) at org.eclipse.swt.graphics.ImageData.<init>(ImageData.java:328) at org.eclipse.jface.resource.URLImageDescriptor.getImageData(URLImageDescriptor.java:57) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:273) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.ui.model.WorkbenchLabelProvider.getImage(WorkbenchLabelProvider.java:157) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.getImage(WrappedViewerLabelProvider.java:117) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.update(WrappedViewerLabelProvider.java:165) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:142) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:932) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:102) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:1012) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2041) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem(AbstractTreeViewer.java:827) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:802) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:776) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:627) at org.eclipse.jface.viewers.AbstractTreeViewer.handleTreeExpand(AbstractTreeViewer.java:1442) at org.eclipse.jface.viewers.TreeViewer.handleTreeExpand(TreeViewer.java:918) at org.eclipse.jface.viewers.AbstractTreeViewer$4.treeExpanded(AbstractTreeViewer.java:1453) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:125) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Tree.wmNotifyChild(Tree.java:7145) at org.eclipse.swt.widgets.Control.wmNotify(Control.java:4707) at org.eclipse.swt.widgets.Composite.wmNotify(Composite.java:1761) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:4337) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3830) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4472) at org.eclipse.swt.internal.win32.OS.$$YJP$$CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(OS.java) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2250) at org.eclipse.swt.widgets.Tree.callWindowProc(Tree.java:1497) at org.eclipse.swt.widgets.Tree.WM_LBUTTONDOWN(Tree.java:6121) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3811) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5662) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4485) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2368) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2332) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:476) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:471) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:606) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) Caused by: java.lang.ArrayIndexOutOfBoundsException: 7 at org.eclipse.swt.internal.image.GIFFileFormat.readApplicationExtension(GIFFileFormat.java:327) ... 81 more Maybe corrupt images? | resolved fixed | 115808b | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/GIFFileFormat.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-12T17:17:23Z" | "2008-03-12T11:06:40Z" |
221,687 | Bug 221687 [Viewers] TableViewer scrolls after selection on AIX | Eclipse 3.3.2 If you select a row in a TableViewer, scroll down a page or two, then when you shift-click to select a range of rows the viewer scrolls back to the first row. This problem appears specific to AIX. | resolved fixed | a16a381 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-12T15:58:59Z" | "2008-03-06T16:13:20Z" |
222,305 | Bug 222305 ToolItem should call ToolBar.destroyItem | null | resolved fixed | c6c9e16 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-11T20:31:12Z" | "2008-03-11T21:13:20Z" |
215,243 | Bug 215243 Wrong drawing behaviour using SWT and Cairo drawing a text and then an oval | null | resolved fixed | 3bf64ab | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-11T20:16:17Z" | "2008-01-14T17:00:00Z" |
221,958 | Bug 221958 Transform.setIdentity() method is needed | I suggest to add Transform.setIdentity() method. Since all Transform modifiers (multiply, rotate, scale, translate) modify existing transform matrix I think setIdentity() is a necessity. I suppose a typical UI developer might not be familiar with transform matrices and would be completely lost as to what arguments to pass to Transform.setElements(float,...) method. | resolved fixed | ec55194 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Transform.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-11T17:08:44Z" | "2008-03-08T12:40:00Z" |
221,938 | Bug 221938 new GC(Control) doesn't work | null | resolved fixed | ccdda85 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-03-10T18:31:20Z" | "2008-03-07T22:46:40Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.