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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
279,052 | Bug 279052 [DND] Gtk ImageTransfer prefers JPEG over PNG | Mylyn's screen capture tools supports importing images from the clipboard using ImageTransfer. On Gtk images imported from the clipboard are always fuzzy since the transfer seems to select JPEG and not a loss-less format such as PNG which works better for screen shots. There doesn't seem to be any obvious way to control the priority of the formats. Could the order be changed so that a loss-less format is tried first? | resolved fixed | 73babea | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/ImageTransfer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-13T18:29:51Z" | "2009-06-04T04:33:20Z" |
280,537 | Bug 280537 [Viewers] OwnerDrawLabelProvider Causes NullPointerException on TableColumn.dispose() | When attempting to dispose of the first column in a TreeViewer that utilizes a OwnerDrawLabelProvider after the first or second column has been resized the below exception is thrown. This only happens when you attempt to dispose of the first column and only after the first or second column has been resized by the user. A normal LabelProvider does not cause this issue. I have modified the JFace Snippet 010OwnerDraw to demonstrate this issue and attached it to this report. The exception seems to be thrown from the Widget class getData(String) method where "table" is null. One odd thing that I noticed while trying to debug this issue is that when using the Eclipse debugger with break points at the snippet dispose call, checkWidget call in getData(String), and checkWidget call in setData(String) the issue seemed to stop. public Object getData (String key) { checkWidget(); if (key == null) error (SWT.ERROR_NULL_ARGUMENT); if ((state & KEYED_DATA) != 0) { Object [] table = (Object []) data; ->>>> for (int i=1; i<table.length; i+=2) { if (key.equals (table [i])) return table [i+1]; } } return null; } Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.getData(Widget.java:554) at org.eclipse.jface.viewers.ColumnViewer.getViewerColumn(ColumnViewer.java:186) at org.eclipse.jface.viewers.OwnerDrawLabelProvider$OwnerDrawListener.handleEvent(OwnerDrawLabelProvider.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Table.sendMeasureItemEvent(Table.java:3467) at org.eclipse.swt.widgets.Table.CDDS_SUBITEMPREPAINT(Table.java:760) at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:6402) at org.eclipse.swt.widgets.Control.wmNotify(Control.java:4718) at org.eclipse.swt.widgets.Composite.wmNotify(Composite.java:1756) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:4348) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3841) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:337) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1576) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1937) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2274) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:333) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:199) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3877) at org.eclipse.swt.widgets.Table.windowProc(Table.java:5476) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2274) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:333) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:199) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3877) at org.eclipse.swt.widgets.Table.windowProc(Table.java:5476) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4528) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2274) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:205) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:199) at org.eclipse.swt.widgets.Table.windowProc(Table.java:5388) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2274) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:333) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:199) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3877) at org.eclipse.swt.widgets.Table.windowProc(Table.java:5476) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:3022) at org.eclipse.swt.widgets.Table.destroyItem(Table.java:1788) at org.eclipse.swt.widgets.TableColumn.destroyWidget(TableColumn.java:193) at org.eclipse.swt.widgets.Widget.release(Widget.java:814) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:441) at test.Test.removeFirst(Test.java:416) at test.Test$1.widgetSelected(Test.java:51) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422) at test.Test.main(Test.java:58) | resolved fixed | 1e404af | ["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 | "2009-08-13T17:55:55Z" | "2009-06-16T22:06:40Z" |
68,194 | Bug 68194 [OLE] OLE components w/o visual representation | Neither OleControlSite nor OleClientSite give capability to create simple OLE object that doesn't have visual representation. | resolved fixed | 5526271 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-12T17:48:32Z" | "2004-06-22T16:00:00Z" |
285,641 | Bug 285641 [Widgets] [preferences] Export from 'Formatter' preference page should add file extension | I20090803-1800 Exporting formatter/cleanup settings from the settings page doesn't add the xml file extension to the file. * open formatter page * have at least one custom formatter * click export all * enter "test" as filename You end up with a file called "test" instead of "test.xml" | resolved fixed | fb37ea6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-12T16:46:07Z" | "2009-08-04T21:06:40Z" |
36,802 | Bug 36802 [OLE] override OleAutomation.equals() | null | resolved fixed | 6baa6a5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-12T16:42:09Z" | "2003-04-23T17:46:40Z" |
268,789 | Bug 268789 [OLE] Cannot create in-place editor for Microsoft Word documents in Windows Vista | Attempting to open a .doc file results in the following error dialog: Cannot create the in-place editor Reason: this is probably because there is no OLE editor registered against the type of file you were trying to open Details: failed to create OLE client. result = -2147024891 This appears to only happen in Windows Vista and only for Word documents (ppt and xls opened fine). | verified fixed | 7f2ab38 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-11T18:49:23Z" | "2009-03-16T13:26:40Z" |
282,998 | Bug 282998 Disposing image during printing crashes SWT on MacOS | null | resolved fixed | 702aad8 | ["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 | "2009-08-10T16:03:26Z" | "2009-07-09T11:46:40Z" |
286,113 | Bug 286113 List Control: item is shown twice after select in "handleEvent(SWT.Selection)" | null | resolved fixed | 35a1290 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/List.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-10T14:11:40Z" | "2009-08-10T10:26:40Z" |
271,703 | Bug 271703 Cannot print from 64 bit eclipse | Tried to print OS.java from eclipse 64 bit (to Preview) and the output is on blank page. Works fine on 32 bit. | verified fixed | 14c1f60 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/cocoa/org/eclipse/swt/printing/Printer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-07T19:40:51Z" | "2009-04-08T19:46:40Z" |
108,792 | Bug 108792 Horizontal caret position lost due to StyledText.replaceStyleRanges | I20050830-0800 - enable Mark Occurences, disable 'sticky' occurences - in the following CU place the caret instead of '|': class |Foo { } - press arrow down - wait for occurences to be updated - press arrow up -> caret position is: c|lass Foo {... | verified fixed | 76bc5fe | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-07T19:16:36Z" | "2005-09-05T11:33:20Z" |
279,013 | Bug 279013 SWT: crash when calling setParent() on Linux | null | verified fixed | 786e888 | ["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 | "2009-08-07T18:23:46Z" | "2009-06-03T20:13:20Z" |
285,656 | Bug 285656 [Widgets] Eclipse framework incorrectly assumes keys that have digits on them will be referred to in the shortcut table as digit keys (Ms Windows only) | Build ID: I20080617-2000 Steps To Reproduce: 1.Create application that have an accelerate key Ctrl+- 2.Launch application,and switch keyboard layout to French(France) 3.stike Ctrl+6 / Ctrl+-. neither Ctrl+6 nor Ctrl+- works.( '-' is mapped to '6' in French(France) keyboard layout ) More information: | resolved fixed | 617366c | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-07T15:45:41Z" | "2009-08-05T05:26:40Z" |
278,944 | Bug 278944 Cocoa: Image transfer not working for images (randomly) | null | verified fixed | 0e0eae7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSBitmapImageRep.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/cocoa/org/eclipse/swt/program/Program.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-06T18:49:08Z" | "2009-06-03T11:53:20Z" |
279,877 | Bug 279877 On Mac OS X Cocoa, setClipping(getClipping()) produces wrong behaviour under some transforms. | null | resolved fixed | 28e31e2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-06T14:54:26Z" | "2009-06-10T21:40:00Z" |
284,993 | Bug 284993 GC#setAlpha() not respected by GC#drawImage() | null | verified fixed | 7d89b46 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-29T14:05:23Z" | "2009-07-29T12:20:00Z" |
280,569 | Bug 280569 [OS X - Cocoa] After moving the shell to another space, rich hover opens on wrong space | Here's the scenario: 1. Open the workbench on space 1. Have a Java editor open (to demonstrate rich hover). 2. Activate Spaces (the feature which shows all the spaces on dark background as overview). 3. Drag the workbench window to space 2. 4. Hover with the mouse over some text in the Java editor. 5. Expected result - rich hover will be shown. Actual result - you will be taken back to space 1 (involuntarily). The rich hover might be shown on space 1 or 2 - I didn't find a consistent behavior here. | resolved fixed | 133ba78 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "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 | "2009-07-28T21:11:07Z" | "2009-06-17T06:26:40Z" |
273,678 | Bug 273678 SWT.ON_TOP style bit is not working for a shell with parent in cocoa | null | resolved fixed | c9f1e3e | ["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 | "2009-07-28T16:33:31Z" | "2009-04-25T14:33:20Z" |
65,796 | Bug 65796 Buttons and text in a table cell editor are not sized small enough on the Mac | Eclipse 3.0 RC1 The ColorCellEditor has problems on OS X - the button to activate the color dialog box does not fit withing the cell, and clicking the button will not activate the color dialog box most of the time. Pressing return will always activate the color dialog box. | resolved fixed | b1b9a7c | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-27T21:10:18Z" | "2004-06-04T20:13:20Z" |
281,725 | Bug 281725 [Cocoa SWT] TabItem.setImage() not working | Build ID: I20090611-1540 Steps To Reproduce: Under the Cocoa x86_64 Mac OS X version of Eclipse 3.5, TabItem images don't appear. Under the Carbon version of 3.5, they do. The code below reproduces the problem -- it works on both platforms, but the tabs are image-less on Carbon. (I don't know if this is a limitation with the native Cocoa widgets or not; if it is, perhaps a Javadoc note that images aren't supported on all platforms would help.) Shell shell = new Shell(); TabFolder tf = new TabFolder(shell, SWT.BORDER); tf.setLayoutData( new GridData( SWT.FILL, SWT.FILL, true, true ) ); TabItem ti = new TabItem(tf, SWT.NONE); ti.setControl( new Composite(tf, SWT.NONE) ); ti.setText("One"); ti.setImage( JFaceResources.getImage(Dialog.DLG_IMG_HELP) ); ti = new TabItem(tf, SWT.NONE); ti.setControl( new Composite(tf, SWT.NONE) ); ti.setText("Two"); ti.setImage( JFaceResources.getImage(Dialog.DLG_IMG_HELP) ); tf.pack(); shell.pack(); shell.open(); | resolved fixed | b79ecd9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSTabViewItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/SWTTabViewItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TabItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-27T20:08:22Z" | "2009-06-26T23:46:40Z" |
283,850 | Bug 283850 hang when calling BrowserFunction while disposing | public class BrowserBug { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout(1, false)); Browser browser = new Browser(shell, SWT.NONE); browser.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); browser.setText("<html><head></head><body><input type='text' onchange='bf(0)' /></body></html>"); new BrowserFunction(browser, "bf"){ public Object function(Object[] arguments) { System.out.println("hello"); return 0; } }; shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 38c20b2 | ["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 | "2009-07-23T20:15:46Z" | "2009-07-17T14:13:20Z" |
276,110 | Bug 276110 Label: SWT.CENTER is being ignored when used with SWT.WRAP | null | verified fixed | 40fb17e | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Label.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-23T18:45:37Z" | "2009-05-13T15:53:20Z" |
275,900 | Bug 275900 Multi-line Text.setSelection(int) needs to reveal the selection | Build id: I20090511-2000 on Cocoa Run Snippet11, which creates a multi-line text, appends a bunch of lines, and then calls setSelection(30). On other platforms, the Text is scrolled to show the new selection. On Cocoa, the Text remains scrolled to the end, where it was after appending the lines. | resolved fixed | a2d7152 | ["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 | "2009-07-23T18:02:38Z" | "2009-05-12T14:53:20Z" |
283,108 | Bug 283108 SWT.Browser widget reacts different compared to IE 6 itself (Javascript) | null | resolved fixed | c3c7ae8 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "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 | "2009-07-23T14:51:54Z" | "2009-07-10T07:13:20Z" |
279,712 | Bug 279712 Resetting alpha to 0xFF has no effect | null | resolved fixed | 344495d | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T20:47:37Z" | "2009-06-09T23:26:40Z" |
277,356 | Bug 277356 [cocoa] npe in Tree widget | Upon launch, Mylyn task list opens with the following error displayed within the view: java.lang.NullPointerException at org.eclipse.swt.widgets.Tree.outlineView_child_ofItem(Tree.java:1910) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4837) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSOutlineView.rowForItem(NSOutlineView.java:76) at org.eclipse.swt.widgets.TreeItem.redraw(TreeItem.java:908) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:1351) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:1356) at org.eclipse.jface.viewers.AbstractTreeViewer.updateChildren(AbstractTreeViewer.java:2666) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefreshStruct(AbstractTreeViewer.java:1863) at org.eclipse.jface.viewers.TreeViewer.internalRefreshStruct(TreeViewer.java:716) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1838) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1794) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1780) at org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:1457) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1392) at org.eclipse.jface.viewers.TreeViewer.preservingSelection(TreeViewer.java:402) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1353) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1455) at org.eclipse.jface.viewers.ColumnViewer.refresh(ColumnViewer.java:537) at org.eclipse.ui.dialogs.FilteredTree$NotifyingTreeViewer.refresh(FilteredTree.java:1205) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1414) at org.eclipse.ui.dialogs.FilteredTree$NotifyingTreeViewer.refresh(FilteredTree.java:1195) at org.eclipse.jface.viewers.ContentViewer.setContentProvider(ContentViewer.java:252) at org.eclipse.jface.viewers.StructuredViewer.setContentProvider(StructuredViewer.java:1611) at org.eclipse.jface.viewers.AbstractTreeViewer.setContentProvider(AbstractTreeViewer.java:2314) at org.eclipse.jface.viewers.TreeViewer.setContentProvider(TreeViewer.java:957) at org.eclipse.ui.dialogs.FilteredTree$NotifyingTreeViewer.setContentProvider(FilteredTree.java:1241) at org.eclipse.mylyn.internal.tasks.ui.views.TaskListView.applyPresentation(TaskListView.java:1112) at org.eclipse.mylyn.internal.tasks.ui.views.TaskListView.applyPresentation(TaskListView.java:1092) at org.eclipse.mylyn.internal.tasks.ui.views.TaskListView.restoreState(TaskListView.java:863) at org.eclipse.mylyn.internal.tasks.ui.views.TaskListView.createPartControl(TaskListView.java:1061) at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:367) at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:226) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:313) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:529) at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:180) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:270) at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:473) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:668) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:568) at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:272) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:981) at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:2626) at org.eclipse.ui.internal.WorkbenchWindow$27.run(WorkbenchWindow.java:2964) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2945) at org.eclipse.ui.internal.WorkbenchWindow$21.runWithException(WorkbenchWindow.java:2262) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3401) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3098) at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803) at org.eclipse.ui.internal.Workbench$28.runWithException(Workbench.java:1384) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3401) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3098) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2316) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:368) 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:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287) | verified fixed | fe7c8ce | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T20:34:35Z" | "2009-05-21T18:20:00Z" |
273,850 | Bug 273850 SWT.MouseDown event not fired on combo widget arrow down (GTK only) | Build ID: 3.4.2 M20090211-1700 Steps To Reproduce: 1.add an event listener to a combo widget 2.click anywhere on the widget but the arrow down button, a SWT.MouseDown event is fired (and caught in the listener) 3. click on the arrow down button, nothing happens. 4. same thing works fine on windows and HPUX motif More information: | resolved fixed | 04669c0 | ["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/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.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 | "2009-07-22T16:44:33Z" | "2009-04-27T13:46:40Z" |
278,782 | Bug 278782 image drawing can interfere with text drawing in classic theme | null | resolved fixed | 35438ac | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/internal/ImageList.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T15:05:44Z" | "2009-06-02T13:40:00Z" |
278,959 | Bug 278959 setting font height should update font width | The first FontData returned from line: FontData[] fontData = display.getFontList("Courier New",true); ...has height 24 and width (in its data) of 19. Subsequently calling setHeight(8) on the FontData leaves the width as 19, which makes the font render quite badly. Example snippet follows: public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setBounds (10,10,200,200); shell.setLayout (new FillLayout()); Text text = new Text (shell, SWT.NONE); FontData[] fontData = display.getFontList ("Courier New",true); for (FontData fd: fontData) { fd.setHeight (8); } Font font = new Font (display, fontData); text.setFont (font); text.setText ("asdf"); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } font.dispose (); display.dispose (); } | resolved fixed | daf2df7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/FontData.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T14:59:01Z" | "2009-06-03T14:40:00Z" |
282,441 | Bug 282441 [swt-win32] System menu of a NO_TRIM shell on Task Bar | Build ID: I20090611-1540 Steps To Reproduce: A NO_TRIM shell has no system menu on the task bar, the shell does not yet react to ALT+F4, which closes the shell on MS Windows. but we almost always need that if the shell has an entry in the task bar. More information: | resolved fixed | 32922fb | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T14:51:20Z" | "2009-07-04T23:26:40Z" |
278,982 | Bug 278982 Tooltip problems handling escaped &s, and Workbench title inconsistency | Build ID: IES 35I20090525 Steps To Reproduce: This is a two fold problem. First I'd like to suggest that tooltip labels simply ignore mnemonics and interpret &s directly. I don't believe mnemonics make sense for tooltips... The problems are: 1) Escaping the &s is not resulting in correct result in a tooltip 2) The escaped &s are not supported in the Eclipse Title bar. The problem is most obvious when considering IEditorPart tooltips. We have a tooltip for editing a UML operation in C++ context (i.e. '&' indicates a reference to a variable). Lets consider a C++ function: int &&& op && ( int & test ); Our tooltip raw text for the 'UML' version is: op && ( test : int & ) : int &&& When we add some qualified names in there and we escape the &s we get something like: CPPModel::Class1::op &&&& ( CPPModel::Class1::op &&&&::test : int && ) : int &&&&&& When we launch an IEditorPart to allow the user to edit this element, we provide the above escaped text as the 'tooltip' text. But, when we inspect the tooltip of the launched EditorPart now, we see: CPPModel::Class1::op && ( CPPModel::Class1::op p::test : int i ) : int in Compared to our expected: CPPModel::Class1::op && ( CPPModel::Class1::op &&::test : int & ) : int &&& Furthermore, the Eclipse Workbench window title is showing the escaped text: CPPModel::Class1::op &&&& ( CPPModel::Class1::op &&&&::test : int && ) : int &&&&&& Expected behavior is that the Workbench title bar will be the same as the tooltip. And the tooltip either properly handles escaped &s, or it updated to not support mnemonics and thus will not require escaping of &s. More information: This is found on Window XP Pro | resolved fixed | 4a0cb89 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-22T14:41:28Z" | "2009-06-03T14:40:00Z" |
283,688 | Bug 283688 No drag/drop feedback selection on Table if using OwnerDrawLabelProvider on Windows | Build ID: I20090611-1540 I have a TableViewer that renders its own cells with an OwnerDrawLabelProvider. The Table also registers drag and drop operations. On Windows there is no highlighting feedback on the table cells at all during a drag/drop operation. It's fine on Mac and Linux. | verified fixed | 790d32c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.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 | "2009-07-21T21:40:55Z" | "2009-07-16T10:26:40Z" |
279,273 | Bug 279273 Improve error message when load library fails. | Build ID: 3.4.2 Steps To Reproduce: (Sorry for not having the build ID, for some reason the 'About Eclipse SDK' dialog doesn't show. I am using Eclipse 3.4.2 release for Linux 64). 1. On a Linux-64 machine, with GTK installed but not the GTK java bindings, install Eclipse 3.4.2 2. Run Eclipse. It will exit without displaying any error messages More information: Of course Eclipse won't work without the GTK+ java bindings. Running eclipse as './eclipse -debug -console -consolelog > out.txt' and reading the out.txt produced I find the line: java.lang.UnsatisfiedLinkError: no swt-pi-lib-3454 or swt-pit-lib in .... (I can't remember the exact error message, but you get the idea). The problem is that I don't think that Eclipse should exit without producing any error message to stdout. If this were to happen to a customer, as it might, using our Eclipse-based IDE they would not think that this was acceptable behaviour (our testing department has already had this problem). Eclipse should check that the libraries are present before trying to load them, and exit gracefully with a clear error message if not. | resolved fixed | 98b1c71 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2se/org/eclipse/swt/internal/Library.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-21T15:54:09Z" | "2009-06-05T13:53:20Z" |
283,958 | Bug 283958 SWT.MULTI does not work for SWT Text control using Mac OS X Cocoa. | null | verified fixed | e11e927 | ["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 | "2009-07-20T15:51:15Z" | "2009-07-20T00:33:20Z" |
277,454 | Bug 277454 [DND] Mac: Refresh required after dragging file to desktop | Build ID: I20090520-2000 Steps To Reproduce: 1.In the package explorer view, create a project, create a file inside a project. 2.Let the file be open in the editor 3.Drag a file from a project to the desktop. Even after the drop, the file is still visible in the package explorer & is open in the editor. The user had to refresh the file or project. Refresh happens automatically on windows. More information: Happens on both Carbon and Cocoa | resolved fixed | 66070eb | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSFileManager.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-20T14:39:43Z" | "2009-05-22T13:46:40Z" |
283,313 | Bug 283313 [Cocoa] Deleting TableViewer elements and calling refresh() causes major crash | Build ID: I20090611-1540 1. I have a TableViewer with a IStructuredContentProvider model and OwnerDrawLabelProvider cell label provider (I use erase() / measure() / paint() to draw the row cell). 2. I populate the model with 300 elements. The table correctly draws 300 custom rows via my OwnerDrawLabelProvider with a vertical scroll bar. 3. I now select a selection of the Table's rows using Command-Click to select a random number of elements, scrolling up and down to get a varied selection. 4. I delete the selected elements from the model. This in turn calls the TableViewer's refresh() method. At this point I get a SWTExceeption "Widget is disposed". The debug trace puts it in the TableItem class at line 462: protected void checkWidget () { Display display = this.display; if (display == null) error (SWT.ERROR_WIDGET_DISPOSED); <---------- HERE and prior to that here: public Font getFont (int index) { checkWidget (); <------------ HERE and prior to that here: void sendMeasureItem (TableItem item, int columnIndex, NSSize size) { NSTableView widget = (NSTableView)this.view; int contentWidth = (int)Math.ceil (size.width); NSSize spacing = widget.intercellSpacing(); int itemHeight = (int)Math.ceil (widget.rowHeight() + spacing.height); GCData data = new GCData (); data.paintRect = widget.frame (); GC gc = GC.cocoa_new (this, data); gc.setFont (item.getFont (columnIndex)); <------------------ HERE Which is called from void drawInteriorWithFrame_inView(int /*long*/ id, int /*long*/ sel, NSRect rect, int /*long*/ view) It's a show stopper for my RCP app. | verified fixed | b7f2691 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-20T14:32:14Z" | "2009-07-13T13:00:00Z" |
281,352 | Bug 281352 Add ICON_* hinting support for GTK+ SWT.SEARCH Text controls | null | resolved fixed | 3e6618f | ["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", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.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 | "2009-07-17T21:11:11Z" | "2009-06-24T13:26:40Z" |
279,917 | Bug 279917 SWT Editor Example does not work RC3 | null | resolved fixed | 04a9d68 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/TextEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-17T15:12:14Z" | "2009-06-11T08:46:40Z" |
277,567 | Bug 277567 Path.close() method on results in different behavior on Cocoa | null | verified fixed | 06b958b | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Path.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-15T17:21:35Z" | "2009-05-23T03:40:00Z" |
279,676 | Bug 279676 IllegalStateException in ProjectionMapping toImageLine | Build ID: M20090211-1700 Steps To Reproduce: In our editor we implement documentChanged where we new up a WorkspaceModifyOperation to update markers and run it passing in the IProgressMonitor returned from AbstractTextEditor.getProgressMonitor(). This code works fine on all platforms, but mac users who upgrade their OS to 10.5.7 experience the following errors and the editor becomes useless. Mac users on 10.5.6 do not see the errors. Strangely, if we pass in null for the progress monitor when we call WorkspaceModifyOperation.run(), the errors do not happen, even on 10.5.7. More information: java.lang.IllegalStateException at org.eclipse.jface.text.projection.ProjectionMapping.toImageLine(ProjectionMapping.java:480) at org.eclipse.jface.text.TextViewer.modelLine2WidgetLine(TextViewer.java:4905) at org.eclipse.jface.text.JFaceTextUtil.modelLineToWidgetLine(JFaceTextUtil.java:220) at org.eclipse.jface.internal.text.source.DiffPainter.paintLine(DiffPainter.java:220) at org.eclipse.jface.internal.text.source.DiffPainter.paint(DiffPainter.java:158) at org.eclipse.jface.text.source.LineNumberChangeRulerColumn.doPaint(LineNumberChangeRulerColumn.java:190) at org.eclipse.jface.text.source.LineNumberRulerColumn.doubleBufferPaint(LineNumberRulerColumn.java:692) at org.eclipse.jface.text.source.LineNumberRulerColumn.access$10(LineNumberRulerColumn.java:662) at org.eclipse.jface.text.source.LineNumberRulerColumn$5.paintControl(LineNumberRulerColumn.java:606) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:217) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:850) at org.eclipse.swt.widgets.Canvas.drawWidget(Canvas.java:114) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1069) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:191) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:370) at org.eclipse.swt.widgets.Display.controlProc(Display.java:862) at org.eclipse.swt.internal.carbon.OS.ReceiveNextEvent(Native Method) at org.eclipse.swt.widgets.Display.runEventLoopTimers(Display.java:3500) at org.eclipse.swt.widgets.ProgressBar.setSelection(ProgressBar.java:243) at org.eclipse.jface.dialogs.ProgressIndicator.done(ProgressIndicator.java:110) at org.eclipse.jface.dialogs.ProgressIndicator.beginTask(ProgressIndicator.java:92) at org.eclipse.jface.action.StatusLine.beginTask(StatusLine.java:349) at org.eclipse.jface.action.StatusLineManager$1.beginTask(StatusLineManager.java:157) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1791) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116) at com.rsi.idldt.proeditor.ProEditor.documentChanged(ProEditor.java:2282) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged2(AbstractDocument.java:739) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:712) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:697) at org.eclipse.jface.text.AbstractDocument.fireDocumentChanged(AbstractDocument.java:762) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1157) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.replace(SynchronizableDocument.java:151) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1176) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.replace(SynchronizableDocument.java:137) at org.eclipse.jface.text.projection.ProjectionTextStore.replace(ProjectionTextStore.java:111) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1150) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1176) at org.eclipse.jface.text.projection.ProjectionDocument.replace(ProjectionDocument.java:631) at org.eclipse.jface.text.DefaultDocumentAdapter.replaceTextRange(DefaultDocumentAdapter.java:248) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:5876) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:6631) at org.eclipse.swt.custom.StyledText.doContent(StyledText.java:2186) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5145) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5170) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4873) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1622) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1617) at org.eclipse.swt.widgets.Control.kEventUnicodeKeyPressed(Control.java:2292) at org.eclipse.swt.widgets.Composite.kEventUnicodeKeyPressed(Composite.java:586) at org.eclipse.swt.widgets.Control.kEventTextInputUnicodeForKeyEvent(Control.java:2254) at org.eclipse.swt.widgets.Canvas.kEventTextInputUnicodeForKeyEvent(Canvas.java:232) at org.eclipse.swt.widgets.Widget.textInputProc(Widget.java:1995) at org.eclipse.swt.widgets.Display.textInputProc(Display.java:3970) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3051) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) 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:386) 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: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) org.eclipse.core.runtime.AssertionFailedException: assertion failed: at org.eclipse.core.runtime.Assert.isTrue(Assert.java:111) at org.eclipse.core.runtime.Assert.isTrue(Assert.java:97) at org.eclipse.jface.text.Position.<init>(Position.java:62) at org.eclipse.jface.text.AbstractDocument.getPositions(AbstractDocument.java:1704) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.getPositions(SynchronizableDocument.java:234) at org.eclipse.jface.text.source.AnnotationModel.getRegionAnnotationIterator(AnnotationModel.java:739) at org.eclipse.jface.text.source.AnnotationModel.getAnnotationIterator(AnnotationModel.java:701) at org.eclipse.jface.text.source.AnnotationRulerColumn.doPaint1(AnnotationRulerColumn.java:704) at org.eclipse.jface.text.source.AnnotationRulerColumn.doubleBufferPaint(AnnotationRulerColumn.java:518) at org.eclipse.jface.text.source.AnnotationRulerColumn.access$3(AnnotationRulerColumn.java:494) at org.eclipse.jface.text.source.AnnotationRulerColumn$1.paintControl(AnnotationRulerColumn.java:280) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:217) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:850) at org.eclipse.swt.widgets.Canvas.drawWidget(Canvas.java:114) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1069) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:191) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:370) at org.eclipse.swt.widgets.Display.controlProc(Display.java:862) at org.eclipse.swt.internal.carbon.OS.ReceiveNextEvent(Native Method) at org.eclipse.swt.widgets.Display.runEventLoopTimers(Display.java:3500) at org.eclipse.swt.widgets.ProgressBar.setSelection(ProgressBar.java:243) at org.eclipse.jface.dialogs.ProgressIndicator.done(ProgressIndicator.java:110) at org.eclipse.jface.dialogs.ProgressIndicator.beginTask(ProgressIndicator.java:92) at org.eclipse.jface.action.StatusLine.beginTask(StatusLine.java:349) at org.eclipse.jface.action.StatusLineManager$1.beginTask(StatusLineManager.java:157) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1791) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116) at com.rsi.idldt.proeditor.ProEditor.documentChanged(ProEditor.java:2282) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged2(AbstractDocument.java:739) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:712) at org.eclipse.jface.text.AbstractDocument.doFireDocumentChanged(AbstractDocument.java:697) at org.eclipse.jface.text.AbstractDocument.fireDocumentChanged(AbstractDocument.java:762) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1157) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.replace(SynchronizableDocument.java:151) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1176) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.replace(SynchronizableDocument.java:137) at org.eclipse.jface.text.projection.ProjectionTextStore.replace(ProjectionTextStore.java:111) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1150) at org.eclipse.jface.text.AbstractDocument.replace(AbstractDocument.java:1176) at org.eclipse.jface.text.projection.ProjectionDocument.replace(ProjectionDocument.java:631) at org.eclipse.jface.text.DefaultDocumentAdapter.replaceTextRange(DefaultDocumentAdapter.java:248) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:5876) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:6631) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2128) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:5764) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5149) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5170) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4873) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1622) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1617) at org.eclipse.swt.widgets.Control.kEventUnicodeKeyPressed(Control.java:2292) at org.eclipse.swt.widgets.Composite.kEventUnicodeKeyPressed(Composite.java:586) at org.eclipse.swt.widgets.Control.kEventTextInputUnicodeForKeyEvent(Control.java:2254) at org.eclipse.swt.widgets.Canvas.kEventTextInputUnicodeForKeyEvent(Canvas.java:232) at org.eclipse.swt.widgets.Widget.textInputProc(Widget.java:1995) at org.eclipse.swt.widgets.Display.textInputProc(Display.java:3970) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3051) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) 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:386) 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: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) | resolved fixed | d816957 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ProgressBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-15T17:02:26Z" | "2009-06-09T17:53:20Z" |
278,625 | Bug 278625 [DND] COM leak during drag and drop | null | resolved fixed | d5edfcb | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DropTarget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-15T16:25:05Z" | "2009-06-01T15:26:40Z" |
277,438 | Bug 277438 Korean Input text flickers in StyledText widget in case the sentence exceeds a row. | Build ID: 3.4 Steps To Reproduce: The issue is SWT related. With SWT 3.4, the problem can be reproduced. However, with SWT version 3.2 and 3.3, problem is not there. Sample Code: __________________________________________________________ package com.ibm.text.korean; import org.eclipse.jface.window.Window; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; public class TextForKorean extends Shell { /** * Launch the application * @param args */ public static void main(String args[]) { try { Display display = Display.getDefault(); FormLayout formLayout = new FormLayout(); Shell shell = new Shell(display, SWT.SHELL_TRIM); formLayout.marginHeight = 10; formLayout.marginWidth = 10; shell.setLayout(formLayout); shell.setText("SWT Application"); shell.setSize(500, 375); Composite com = new Composite(shell,SWT.NONE | SWT.LEFT_TO_RIGHT ); com.setLayout(new FormLayout()); com.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_LIST BACKGROUND)); StyledText text = new StyledText(com, SWT.V_SCROLL | SWT.MULTI | SWT.WRAP | Window.getDefaultOrientation()); text.setFont(new Font(null, "Arial", 20, SWT.BOLD)); text.getVerticalBar().setVisible(false); text.setEnabled(true); text.setTextLimit(2000); FormData formData = new FormData(); formData.top = new FormAttachment(0, 2); formData.bottom = new FormAttachment(100, -2); formData.right = new FormAttachment(100, -2); formData.left = new FormAttachment(0, 2); com.setLayoutData(formData); text.setLayoutData(formData); shell.open(); // shell.layout(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } catch (Exception e) { e.printStackTrace(); } } } _________________________________________________________ Enter some random Korean text in the Shell that opens, you will see a flicker if you keep typing many sentences together(i.e, write to many lines.) To enable the Korean language, go to Control Panel-> Regional and language prefrences. In the advanced tab, select the Korean Language. Run the sample code above on Eclipse 3.2.2(SWT3.2)/or 3.3.1, type the long korean sentences --- cannot reproduce this issue Run this on Eclipse 3.4 (SWT3.4), type the long korean sentences, reproduce this issue More information: The issue looks to be coming from Styledtext widget. When using a simple Text widget, flicker is not seen. The bug has been reported as Critical severity as it is affecting a functionality in our product and hence affecting the users. | resolved fixed | 6df9ccc | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-15T16:21:33Z" | "2009-05-22T11:00:00Z" |
283,346 | Bug 283346 "Hide Eclipse" doesn't work properly | Build ID: 20090619-0625 Steps To Reproduce: 1) Go to the Eclipse menu and choose "Hide Eclipse" 2) Click on Eclipse in the dock to bring it back to the foreground The workbench window comes to the foreground but the menu bar does not repopulate; it still reflects whatever application you were in before you clicked on Eclipse in the dock. You have to command-tab away and back again to get the menu bar to repopulate with Eclipse items. More information: | verified fixed | 5470df4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "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 | "2009-07-14T20:19:55Z" | "2009-07-14T00:06:40Z" |
278,376 | Bug 278376 NPE in Shell.WM_ENTERIDLE | Sometimes, our users report the following NPE: java.lang.NullPointerException at org.eclipse.swt.widgets.Shell.WM_ENTERIDLE(Unknown Source) at org.eclipse.swt.widgets.Control.windowProc(Unknown Source) at org.eclipse.swt.widgets.Canvas.windowProc(Unknown Source) at org.eclipse.swt.widgets.Decorations.windowProc(Unknown Source) at org.eclipse.swt.widgets.Shell.windowProc(Unknown Source) at org.eclipse.swt.widgets.Display.windowProc(Unknown Source) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Unknown Source) at org.eclipse.swt.widgets.Display.runPopups(Unknown Source) at org.eclipse.swt.widgets.Display.readAndDispatch(Unknown Source) [no more swt in stack trace below this line] I have looked at the code and no idea how this can happen. It looks like 'display' was null. | closed fixed | 55b6066 | ["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 | "2009-07-14T18:15:59Z" | "2009-05-29T12:26:40Z" |
280,708 | Bug 280708 Second call to setFont produces incorrect text | In this example code, the second call to gc.setFont causes the text to be displayed incorrectly. The result looks like a series of odd characters. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.GC; 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 Bug { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Path#addString() bug on Win32"); display.loadFont("C:\\Music.ttf"); final Font font = new Font(display, "Music", 60, SWT.NORMAL); final Font arial = new Font(display, "Verdana", 40, SWT.NORMAL); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { GC gc = event.gc; gc.setAntialias(SWT.ON); gc.setFont(font); gc.drawString("fmps", 0, 0); gc.setFont(arial); gc.drawString("fmps", 0, 200); gc.dispose(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } font.dispose(); arial.dispose(); display.dispose(); } } | verified fixed | 03c19a9 | ["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 | "2009-07-14T18:05:09Z" | "2009-06-18T04:40:00Z" |
275,617 | Bug 275617 SWT/Cocoa TreeItem.getBounds() behaviour differently than on other platforms | Build ID: I20090430-2300 Steps To Reproduce: More information: On SWT/Cocoa TreeItem.getBounds() returns the bounds of the whole column, as opposed to Win32 or GTK where getBounds() returns the bounds of the item itself. (we use the win32/gtk behaviour in order to track clicks in the item's icon) | resolved fixed | 3571314 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-10T18:52:16Z" | "2009-05-11T08:20:00Z" |
277,315 | Bug 277315 Combo does not accept drag and drop | Build ID: I20090518-2000 Steps To Reproduce: 1. Launch DNDExample on Cocoa. 2. Set the DragSource and DragTarget as Combo. 3. Drag and drop does not work between these combos. More information: It works fine on another platforms. | verified fixed | ae547b6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-10T15:28:29Z" | "2009-05-21T12:46:40Z" |
173,888 | Bug 173888 [Snippets] CTabFolder doesn't minimize from maximized state | Steps to reproduce: - run Snippet165 - maximize - attempt to minimize; observe the icons change to restore and maximize, but the tab remains maximized There seems to be a line missing in the minimization code that resets the layout data. | resolved fixed | 46c797f | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet165.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-08T19:08:37Z" | "2007-02-12T17:06:40Z" |
278,780 | Bug 278780 Exception disposing menu in SWT.Hide | Run test. Select "item2" in menu bar. This happens: java.lang.NullPointerException at org.eclipse.swt.widgets.Menu.menuDidClose(Menu.java:677) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4706) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:4187) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4385) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:75) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3093) at PR270379.main(PR270379.java:50) import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class PR270379 { public static void main(String[] args) { try { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new GridLayout(1, false)); final Menu bar = new Menu(shell, SWT.BAR); MenuItem file = new MenuItem(bar, SWT.CASCADE); file.setText("File"); final Menu menu = new Menu(shell, SWT.DROP_DOWN); file.setMenu(menu); MenuItem item1 = new MenuItem(menu, SWT.PUSH); item1.setText("Item1"); final MenuItem item2 = new MenuItem(menu, SWT.PUSH); item2.setText("Item2"); shell.setMenuBar(bar); item2.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("here"); } }); menu.addListener(SWT.Hide, new Listener() { public void handleEvent(Event event) { // item2.dispose(); menu.dispose(); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } catch (Throwable e) { e.printStackTrace(); } } } | resolved fixed | 9a40af7 | ["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 | "2009-07-07T21:54:56Z" | "2009-06-02T13:40:00Z" |
275,589 | Bug 275589 can't see text cursor after setting dark background color | 3.5M7, Build ID: I20090430-2300 Steps To Reproduce: 1. set the background to a dark color and the forground to a light color More information: I tune my preferences so that my backgrounds are dark and my foregrounds are light - I don't like staring into a light all day. It's a pain to change all the Eclipse preferences to make this work, but I've done it. I can't find preferences that control the color of the text cursor or the mouse cursor, so they disappear or are hard to see. The text color seems to blink between my background color and black, so it disappears completely if my background is black. The mouse cursor (shaped like an I-beam) seems to be dark grey, so it's barely visible. Perhaps there are preferences that control this, but I couldn't find them. | verified fixed | 16f78cb | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-07T21:43:45Z" | "2009-05-11T05:33:20Z" |
280,921 | Bug 280921 Tree.select() sets selection instead of adding to selection | Run the snippet. On windows, all items are selected. On Cocoa, only the last item created. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Tree tree = new Tree(shell, SWT.MULTI); for (int i = 0; i < 16; i++) { TreeItem item = new TreeItem(tree, SWT.NONE); tree.select(item); item.setText("Item" + i); for (int j = 0; j < 16; j++) { TreeItem item1 = new TreeItem(item, SWT.NONE); item1.setText("Item" + i + " " + j); tree.select(item1); } } shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | verified fixed | 426b839 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-07T21:20:47Z" | "2009-06-19T14:00:00Z" |
278,981 | Bug 278981 NSPasteboard.generalPasteboard () can be null | null | resolved fixed | 14cc02d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-07-06T15:09:40Z" | "2009-06-03T14:40:00Z" |
278,370 | Bug 278370 [Mozilla] DOM is unavailable in completed event listener after setText() | Build ID: 3.5M7 Steps to Reproduce: 1. Initialize org.mozilla.xpcom.Mozilla with XULRunner-1.8.3.1 2. Create an instance of org.eclipse.swt.browser.Browser(parent, SWT.MOZILLA) 4. Call setText("html code with a link to a CSS file and an element with id='div-id'") on the instance 5. Add a ProgressListener to the browser 6. In the method completed(ProgressEvent) of the ProgressListener try to get the element by id="div-id": browser.getWebBrowser().getContentDOMWindow() .getDocument().getElementById("div-id") ACTUAL RESULT: null is returned EXPECTED RESULT: non-null nsIDOMElement is returned More information: It is reproducible for me on Eclipse 3.5M7 and 3.5RC2, but not reproducible on Eclipse 3.5M6. Workaround Exists: instead of calling browser.setText, create a temporary file with needed html code and call browser.setUrl("file:///url_to_the_file") Example project is attached. | verified fixed | 730e935 | ["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 | "2009-06-26T18:53:33Z" | "2009-05-29T12:26:40Z" |
277,377 | Bug 277377 [Browser] Registered BrowserFunctions cannot be called at anytime | null | resolved fixed | 148a6e1 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "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 | "2009-06-26T18:27:06Z" | "2009-05-21T18:20:00Z" |
277,888 | Bug 277888 double tool-tip on 'learn more' link in tooltip | hovering over the 'Learn More' link in the discovery overview pop-up causes two tooltips to appear. | resolved fixed | 5a0c2e9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSTextView.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-26T15:06:18Z" | "2009-05-26T15:00:00Z" |
279,329 | Bug 279329 Scrollbar incorrectly fires selection events | Build RC3 I have a tree in which I'm listing to the vertical scroll bar selection events. If the tree contains a horizontal scroll bar, but no vertical scroll bar and you use the mouse wheel to scroll in the vertical direction, you get selection events on the vertical scroll bar. If the tree contains no scroll bars, scrolling with the mouse wheel does not fire events as expected. | resolved fixed | 4a8ee53 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-26T13:45:15Z" | "2009-06-05T22:13:20Z" |
279,313 | Bug 279313 TreeItem.removeAll incorrectly implemented on Mac platform | Build ID: I20090515-1143 Steps To Reproduce: 1.Construct a tree 2.Add a TreeItem to the tree 3.Call removeAll on the TreeItem -- instead of removing the child items from that TreeItem, it removes all items from the Tree. More information: The implementation for TreeItem.removeAll currently looks like this: public void removeAll () { checkWidget (); parent.setItemCount (0); } It should be this: public void removeAll () { checkWidget (); parent.setItemCount (this, 0); } | verified fixed | 8f3da96 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-26T13:37:47Z" | "2009-06-05T19:26:40Z" |
77,217 | Bug 77217 [browser] Support the Browser widget on Solaris SPARC | null | verified fixed | 6b3ddab | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/AppFileLocProvider.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-25T20:29:40Z" | "2004-10-28T16:13:20Z" |
245,572 | Bug 245572 Browser9 junit test fails with xulrunner 1.9 | It works with xulrunner < 1.9. | resolved fixed | 5394f88 | ["tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser9.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Test_BrowserSuite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-25T19:06:35Z" | "2008-08-28T19:00:00Z" |
277,474 | Bug 277474 [Browser] Snippet173 doesn't block popup window | null | resolved fixed | 190c997 | ["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", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WindowEvent.java", "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 | "2009-06-25T18:35:53Z" | "2009-05-22T13:46:40Z" |
276,178 | Bug 276178 firstColumn in Tables/Trees with no columns should not be resizable by user | Tables/Trees must always have 1+ NSTableColumns in order to show any content, even if no swt Table/TreeColumns are created. If the header is visible then the NSColumn is resizable by the user, which should not be doable (similar to if the checkboxes column was resizable by the user). Snippet: public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10, 10, 200, 200); shell.setLayout(new FillLayout()); Table table = new Table(shell, SWT.NONE); table.setHeaderVisible(true); TableItem item1 = new TableItem(table, SWT.NONE); item1.setText("Item1 Item1 Item1"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 0b72aab | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-25T18:15:31Z" | "2009-05-13T18:40:00Z" |
281,011 | Bug 281011 Control's getMonitor() method does not have an @exception tag | checkWidget() is called in getMonitor()'s implementation so exceptions can be thronw from getMonitor(). However, the @exception tag is missing from the method's javadoc. | resolved fixed | ce9ccc5 | ["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 | "2009-06-22T14:18:03Z" | "2009-06-21T16:00:00Z" |
280,976 | Bug 280976 TreeItem's setForeground(Color) method has two @since tags | /** * Sets the receiver's foreground color to the color specified * by the argument, or to the default system color for the item * if the argument is null. * * @param color the new color (or null) * * @since 2.0 * * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_ARGUMENT - if the argument has been disposed</li> * </ul> * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 2.0 * */ | resolved fixed | 5108b5b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-22T13:47:48Z" | "2009-06-20T15:00:00Z" |
279,501 | Bug 279501 Snippet197 does not dispose its TextLayout instance | Other TextLayout snippets seems okay but not this one. | resolved fixed | 722cbc4 | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet197.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-08T18:43:00Z" | "2009-06-08T16:53:20Z" |
279,042 | Bug 279042 Cocoa: top-level menus not updated as you switch between editors | I installed the Eclipse MDT Galileo RC2 build for MacOSX (cocoa). The Eclipse toolbar does not switch when I switch between editors. For example, if I edit a plugin.xml file and switch to a *.uml file, the toolbar should update and show me the "UML Editor" menu. This doesn't happen! To force a toolbar refresh, I found that I can invoke the Eclipse Preferences dialog (apple-comma), cancel it (escape) and then the toolbar will be properly updated. With a workspace eclipse and a runtime eclipse, this is even worse because there is only one toolbar for both on the mac. In that case, switching between the workspace & the runtime does not refresh the toolbar either. | resolved fixed | 598acde | ["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 | "2009-06-04T19:27:52Z" | "2009-06-03T23:00:00Z" |
278,413 | Bug 278413 [regression] created swt-32 and swt-64 directories must be writable by anyone | null | verified fixed | d9da699 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2se/org/eclipse/swt/internal/Library.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-06-01T20:56:11Z" | "2009-05-29T15:13:20Z" |
277,539 | Bug 277539 GLCanvas renders garbage | Build I20090521-2000 If you create a GLCanvas in a view, show that view, then restart Eclipse, garbage will be drawn and the application will be unusable. The problem is easy to reproduce with the LWJGL plugins. Simple open the LWJGL test view, then restart Eclipse. | resolved fixed | e3ea64a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSOpenGLContext.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSOpenGLView.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/SWTOpenGLView.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T20:28:52Z" | "2009-05-22T22:06:40Z" |
277,268 | Bug 277268 [Forms] section header labels are cut off on Gtk | After updating to 3.5RC1 I noticed that the section header labels in the Mylyn Task Editor where cut off (see screenshot). Once I reflow the form, e.g. by toggling one of the sections, all labels appear with the full text. Not sure if this is a bug in Forms or in SWT. | verified fixed | 45a6d00 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T20:13:27Z" | "2009-05-21T04:26:40Z" |
277,442 | Bug 277442 BlockSelection: Exception and crash while RTL orientation | Build ID: I20090520-2000 Steps To Reproduce: 1) Run 'TextEditor'and have : ABC ABCDEF AB 2) Change the orientation to 'Right to left' 3) Enable Block Selection 4) Block select the (complete) text 5) Application (Text Editor) crash due to the below exception - Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -3 at java.lang.String.<init>(Unknown Source) at org.eclipse.swt.custom.DefaultContent.getTextRange(DefaultContent.java:709) at org.eclipse.swt.custom.StyledText.getBlockSelectionText(StyledText.java:3549) at org.eclipse.swt.custom.StyledText.copySelection(StyledText.java:1789) at org.eclipse.swt.custom.StyledText.handleMouseUp(StyledText.java:5922) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5528) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3880) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3473) at org.eclipse.swt.examples.texteditor.TextEditor.main(TextEditor.java:102) More information: | resolved fixed | 2f2704e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T18:07:30Z" | "2009-05-22T11:00:00Z" |
261,206 | Bug 261206 Console view: Copy is disabled after double-click to select word | I20090114-1322, already broken in 3.5M4, was OK in 3.5M3 - open Console view - feed it with content (e.g. use the Java Stack Trace console) - double-click a word to select it => Ctrl+C does nothing and context menu > Copy and Cut are disabled | verified fixed | f7d2c5a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T17:54:32Z" | "2009-01-15T14:33:20Z" |
277,631 | Bug 277631 Cannot move cursor after cancelling IME input by pressing escape key. | Build ID: I20090522-1126 Steps To Reproduce: 1. Open a text editor and type some texts. 2. Switch to Japanese hiragana input mode (Kotoeri). 3. Press 'a' key. 4. Japanese hiragana character '' is displayed. 5. Press esc key to cancel input. The character '' is disappeared. Expected: - Pressing 'delete' key should delete previously typed characters. - Pressing arrow key should move cursor. Actual: - Pressing 'delete' key does not delete previously typed characters. - Pressing arrow key does not move cursor. More information: | resolved fixed | ac4e7e2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/IME.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T17:50:41Z" | "2009-05-25T02:53:20Z" |
277,437 | Bug 277437 [Cocoa] GC#drawText font background issue | null | resolved fixed | 4639b46 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-26T17:46:15Z" | "2009-05-22T11:00:00Z" |
273,570 | Bug 273570 Unable to create view ID org.eclipse.jdt.ui.PackageExplorer: An unexpected exception was thrown. in existing workspace only | After JAX09/EclipseForum I downloaded Eclipse 3.5M6 form Mac in various forms carbon/cocoa/cocoa-64bit. When opening an existing workspace last edited in 3.4.2 I received this error and the PackageExplorer refuses to open. This does not occur when opening/creating a new workspace. -- Error Details -- Date: Fri Apr 24 12:04:13 CEST 2009 Message: Unable to create view ID org.eclipse.jdt.ui.PackageExplorer: An unexpected exception was thrown. Severity: Error Plugin: org.eclipse.ui.workbench Session Data: eclipse.buildId=I20090313-0100 java.version=1.5.0_16 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=nl_NL Framework arguments: -keyring /Users/maarten/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86 -keyring /Users/maarten/.eclipse_keyring -consoleLog -showlocation Exception Stack Trace: java.lang.NullPointerException at org.eclipse.swt.program.Program.getProgram(Program.java:152) at org.eclipse.swt.program.Program.getPrograms(Program.java:194) at org.eclipse.ui.internal.registry.EditorDescriptor.findProgram(EditorDescriptor.java:163) at org.eclipse.ui.internal.registry.EditorDescriptor.loadValues(EditorDescriptor.java:458) at org.eclipse.ui.internal.registry.EditorRegistry.readEditors(EditorRegistry.java:669) at org.eclipse.ui.internal.registry.EditorRegistry.loadAssociations(EditorRegistry.java:916) at org.eclipse.ui.internal.registry.EditorRegistry.initializeFromStorage(EditorRegistry.java:580) at org.eclipse.ui.internal.registry.EditorRegistry.<init>(EditorRegistry.java:164) at org.eclipse.ui.internal.WorkbenchPlugin.getEditorRegistry(WorkbenchPlugin.java:454) at org.eclipse.ui.internal.Workbench.getEditorRegistry(Workbench.java:1154) at org.eclipse.jdt.internal.ui.viewsupport.AppearanceAwareLabelProvider.<init>(AppearanceAwareLabelProvider.java:47) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerLabelProvider.<init>(PackageExplorerLabelProvider.java:53) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.createLabelProvider(PackageExplorerPart.java:635) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.setProviders(PackageExplorerPart.java:582) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.createPartControl(PackageExplorerPart.java:480) at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:371) at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:230) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595) at org.eclipse.ui.internal.WorkbenchPage.makeActive(WorkbenchPage.java:1242) at org.eclipse.ui.internal.WorkbenchPage.updateActivePart(WorkbenchPage.java:1226) at org.eclipse.ui.internal.WorkbenchPage.handleDeferredEvents(WorkbenchPage.java:1417) at org.eclipse.ui.internal.WorkbenchPage.deferUpdates(WorkbenchPage.java:1406) at org.eclipse.ui.internal.WorkbenchPage.access$14(WorkbenchPage.java:1397) at org.eclipse.ui.internal.WorkbenchPage$15.runWithException(WorkbenchPage.java:3294) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3168) at org.eclipse.swt.widgets.Display.observerProc(Display.java:2828) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:3838) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:3957) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:75) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2871) at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803) at org.eclipse.ui.internal.Workbench$28.runWithException(Workbench.java:1372) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3168) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2880) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2304) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2209) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:492) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:368) 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:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:556) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:511) at org.eclipse.equinox.launcher.Main.run(Main.java:1284) | resolved fixed | 047dfc0 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/cocoa/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-25T20:59:35Z" | "2009-04-24T10:46:40Z" |
277,668 | Bug 277668 Custom Control Example: StyledTextTab Set/Get API incomplete | HEAD Custom Control Example: StyledTextTab Set/Get API is incomplete (e.g. misses block selection and margins). | resolved fixed | 020bda8 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/StyledTextTab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-25T15:26:30Z" | "2009-05-25T11:13:20Z" |
277,235 | Bug 277235 Accessibility Control Example ClassCastException | With GTK Accessibility Module initialized, I get the following stack trace when running ControlsWithAccessibleNamesExample: Exception in thread "main" java.lang.ClassCastException: org.eclipse.swt.accessibility.AccessibleObject at org.eclipse.swt.examples.accessibility.ControlsWithAccessibleNamesExample$1.getName(ControlsWithAccessibleNamesExample.java:67) at org.eclipse.swt.accessibility.AccessibleObject.atkObject_get_name(AccessibleObject.java:395) at org.eclipse.swt.internal.gtk.OS._gtk_container_add(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_container_add(OS.java:5738) at org.eclipse.swt.widgets.Control.showWidget(Control.java:4274) at org.eclipse.swt.widgets.Label.showWidget(Label.java:583) at org.eclipse.swt.widgets.Control.createWidget(Control.java:528) at org.eclipse.swt.widgets.Label.createWidget(Label.java:244) at org.eclipse.swt.widgets.Control.<init>(Control.java:95) at org.eclipse.swt.widgets.Label.<init>(Label.java:95) at org.eclipse.swt.examples.accessibility.ControlsWithAccessibleNamesExample.main(ControlsWithAccessibleNamesExample.java:89) | resolved fixed | e98fb50 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-21T18:33:59Z" | "2009-05-20T22:53:20Z" |
277,314 | Bug 277314 Cocoa - Application crashes while copying an image | Build ID: I20090518-2000 Steps To Reproduce: 1. On Cocoa, launch the Clipboard example 2. Open any image, try to copy it and then application crashes. More information: Copying image through clipboard example works fine on another platforms. | resolved fixed | ec2c543 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-21T17:11:20Z" | "2009-05-21T12:46:40Z" |
276,564 | Bug 276564 Eclipse won't launch using JDK 7 because SWT native libraries don't load | null | resolved fixed | 5b59ebe | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2se/org/eclipse/swt/internal/Library.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-21T16:48:58Z" | "2009-05-15T20:40:00Z" |
277,285 | Bug 277285 Cursor position does not change while typing in Japanese input method program | Build ID: I20090515-1143 Steps To Reproduce: 1. Open a text editor. 2. Switch to Japanese hiragana input mode (Kotoeri). 3. Press 'a' key. 4. Japanese hiragana character '' is displayed. Expected cursor position: | Actual cursor position: | More information: The cursor position does not change by typing more characters, converting hiragana into kanji or pressing arrow keys. | resolved fixed | e8c492b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-21T16:33:25Z" | "2009-05-21T07:13:20Z" |
277,193 | Bug 277193 Graphics drawing in unwanted places when scrolling bundles in a launch config | Build I20090519-2000 When you scroll the list of bundles in a launch config, the bundle icons are overlaying the top and bottom of the table. See the attach movie. | resolved fixed | 2063831 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T21:01:38Z" | "2009-05-20T20:06:40Z" |
277,175 | Bug 277175 Accessibility - Console message printed when custom control has focus | null | resolved fixed | 9e87046 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/cocoa/org/eclipse/swt/accessibility/SWTAccessibleDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T20:50:49Z" | "2009-05-20T17:20:00Z" |
277,195 | Bug 277195 FileDialog NPE's when attempting to upload an attachment with Mylyn | Eclipse SDK Version: 3.5.0 Build id: I20090518-2000 Steps to reproduce: * Open a Mylyn task editor for some issue on Eclipse.org (or your favourite issue tracker). * Expand the Attachments section and hit the Attach... button to spawn a dialog. * In the Add Attachment dialog hit the Browse... button and use the file dialog to select some local file * Notice that upon selecting a file and dismissing the dialog, the File field is not populated. java.lang.NullPointerException at org.eclipse.swt.widgets.FileDialog.open(FileDialog.java:261) at org.eclipse.mylyn.internal.tasks.ui.wizards.AttachmentSourcePage$5.widgetSelected(AttachmentSourcePage.java:302) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3543) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1246) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1269) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1254) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1075) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3441) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3100) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:368) 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:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287) | resolved fixed | 53e829f | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T19:42:11Z" | "2009-05-20T20:06:40Z" |
276,569 | Bug 276569 Cocoa: exception gets logged when opening views while a detached view exists | I am seeing a lot of logged exceptions, and it seems to be caused by the fact that I have a detached (torn off) view. I am out of time to boil this down to reproducible steps, but it should be reproducible as follows: 1. Reset Java perspective. 2. Tear off Package Explorer. 3. Open views and editors in various configurations. 4. Check the error log view regularly. Here is an example stack trace: java.lang.RuntimeException: WARNING: Prevented recursive attempt to activate part org.eclipse.debug.ui.BreakpointView while still in the middle of activating part org.eclipse.team.ui.GenericHistoryView at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3481) at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:3071) at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:279) at org.eclipse.ui.internal.PartPane.handleEvent(PartPane.java:237) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3539) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1246) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1269) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1250) at org.eclipse.swt.widgets.Shell.setActiveControl(Shell.java:1228) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:2887) at org.eclipse.swt.widgets.Display.checkFocus(Display.java:575) at org.eclipse.swt.widgets.Shell.becomeKeyWindow(Shell.java:467) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4533) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSWindow.makeKeyAndOrderFront(NSWindow.java:175) at org.eclipse.swt.widgets.Shell.makeKeyAndOrderFront(Shell.java:1017) at org.eclipse.swt.widgets.Shell.setActive(Shell.java:1193) at org.eclipse.swt.widgets.Shell.bringToTop(Shell.java:476) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:1249) at org.eclipse.swt.widgets.Control.setFocus(Control.java:3232) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:853) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:851) at org.eclipse.team.internal.ui.history.LocalHistoryPage.setFocus(LocalHistoryPage.java:531) at org.eclipse.team.internal.ui.history.GenericHistoryView.setFocus(GenericHistoryView.java:612) at org.eclipse.ui.internal.PartPane.setFocus(PartPane.java:332) at org.eclipse.ui.internal.WorkbenchPage$3.run(WorkbenchPage.java:626) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.runtime.Platform.run(Platform.java:888) at org.eclipse.ui.internal.WorkbenchPage.activatePart(WorkbenchPage.java:621) at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3527) at org.eclipse.ui.internal.WorkbenchPage.activate(WorkbenchPage.java:614) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:1092) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:1069) at org.eclipse.ui.internal.WorkbenchPage$20.run(WorkbenchPage.java:3816) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3813) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3789) at org.eclipse.ui.internal.quickaccess.ViewElement.execute(ViewElement.java:38) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleElementSelected(QuickAccessDialog.java:681) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleSelection(QuickAccessDialog.java:758) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.access$6(QuickAccessDialog.java:748) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog$3.keyPressed(QuickAccessDialog.java:177) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:155) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3539) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1246) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1269) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1254) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1283) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1279) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:1371) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:909) at org.eclipse.swt.widgets.Display.fieldEditorProc(Display.java:4444) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:201) at org.eclipse.swt.widgets.Widget.superKeyDown(Widget.java:1624) at org.eclipse.swt.widgets.Widget.keyDown(Widget.java:908) at org.eclipse.swt.widgets.Control.keyDown(Control.java:2029) at org.eclipse.swt.widgets.Display.fieldEditorProc(Display.java:4436) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:201) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1742) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:1814) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4697) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4269) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4336) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:101) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3093) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:368) 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:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) | resolved fixed | bd8ac1c | ["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 | "2009-05-20T19:01:00Z" | "2009-05-15T20:40:00Z" |
277,173 | Bug 277173 ToolItems and Buttons are not accessible on Cocoa (regression) | null | resolved fixed | 6985048 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T18:42:10Z" | "2009-05-20T17:20:00Z" |
276,506 | Bug 276506 BlockSelection: Paste should end with long caret | I20090514-2000 StyledText in BlockSelection mode: When I copy a block and then paste it multiple times, all copies should be start on the same line. => Paste should end with a long caret that spans all modified lines at the end of the pasted block. Example: - Have: Abcdef 123456 - Select: Abc 123 - Copy, Paste, Paste => Result: Abcdef 123Abc456 123 => Expected: AbcAbcdef 123123456 | resolved fixed | 69f1d6e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T16:27:11Z" | "2009-05-15T15:06:40Z" |
276,854 | Bug 276854 BlockSelection: Shift+Click does not work with normal caret | I20090518-2000 StyledText in BlockSelection mode: Shift+Click does not work with the normal caret. Instead of selecting the block from the caret to the clicked location, it just sets the virtual caret at the clicked location. Subsequent Shift+Clicks then correctly span the selection, starting at the (new) caret location. | verified fixed | fcc2c15 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T16:23:06Z" | "2009-05-19T10:46:40Z" |
276,485 | Bug 276485 BlockSelection: copying block only fills with spaces when folding enabled | I20090514-2000 Copying a selected block only adds spaces at the end of lines when folding is enabled. In the 'New > Untitled Text File' editor and in the Java editor with folding disabled, the lines in the clipboard are not filled up. | resolved fixed | e11f5e8 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T16:21:52Z" | "2009-05-15T12:20:00Z" |
276,516 | Bug 276516 BlockSelection: Arrow_Left and Arrow_Right should set caret to beginning/end of selection | I20090514-2000 In a StyledText, have a block selection. Arrow_Left and Arrow_Right should set the caret to the beginning/end of the selection, like in normal selection mode (regardless of where inside the selection the caret is). - Example: ....... ..ABC.. ..XYZ.. ....... - Select this block by dragging from upper-left to lower-right: ABC XYZ a) Press Arrow_Left Expected: Caret at left of A Was: Caret at left of Z b) Press Arrow_Right Expected: Caret at right of Z Was: Caret at right of 'XYZ.' | verified fixed | 9522aed | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T16:20:11Z" | "2009-05-15T15:06:40Z" |
276,531 | Bug 276531 Selection jumps in tree | [Cocoa I20090514-2000] Not sure if this potentially affects all trees, or only filtered ones. Steps: 1. Open Preferences dialog 2. Make sure it comes up all collapsed, with the first item (General) selected. If not, collapse tree and select the first item, close the dialog, and open again. 3. Expand "General". 4. Click on "Appearance" Expected: "Appearance" gets selected Actual: "Editors" gets selected. | resolved fixed | aa8fe24 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T14:43:48Z" | "2009-05-15T17:53:20Z" |
276,553 | Bug 276553 Cocoa: Menus completely gray after drag-and-drop to detached view | Cocoa I20090514-2000 Steps: 1. Create a new project and put a "build.properties" file in it. Reset Java perspective. 2. Open "Project Explorer" view. 3. Tear off the view 4. Expand the project in the Package Explorer and drag the build.properties file into the Project Explorer, drop it over the same project. 5. Confirm the dialog that pops up asking for a new name. Actual: All menu items are gray except in the Apple, Eclipse, and Help menus. In the Help menu, the items don't highlight as you mouse over. Expected: Menus work normally | resolved fixed | 9060990 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-20T14:42:31Z" | "2009-05-15T17:53:20Z" |
276,683 | Bug 276683 Tree item icons drawn into next column | null | resolved fixed | 0bd40b8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-19T19:59:37Z" | "2009-05-18T09:46:40Z" |
276,760 | Bug 276760 GC#drawRoundRectangle(..) draw too big radii on Cocoa | null | resolved fixed | 3ac7858 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-19T18:39:15Z" | "2009-05-18T18:06:40Z" |
276,826 | Bug 276826 Compile warning in official build | I20090518-2000. 1. WARNING in /JUnit Tests/org/eclipse/swt/tests/junit/AllTests.java (at line 14) import org.eclipse.swt.*; The import org.eclipse.swt is never used | resolved fixed | 1608656 | ["tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/AllTests.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-19T13:39:12Z" | "2009-05-19T08:00:00Z" |
276,131 | Bug 276131 Browser Test crashing | The releng test have been DNF for the last couple builds. Running locally we occasionally see crashes in the BrowserTests so we suspect these crashes to be the cause of the DNF. | resolved fixed | ba89e7d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/cocoa/org/eclipse/swt/printing/Printer.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-15T21:50:41Z" | "2009-05-13T15:53:20Z" |
275,945 | Bug 275945 [clipboard] regression: pasting text from file properties to java editor seems to be in wrong format | null | resolved fixed | a4935bc | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/TextTransfer.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 | "2009-05-15T21:46:59Z" | "2009-05-12T20:26:40Z" |
275,875 | Bug 275875 crash: Cmd+Q only closes first shell in SnippetLauncher | Build id: I20090511-2000 on Cocoa (32-bit, 10.5.6) Load project org.eclipse.swt.snippets. Run SnippetLauncher. Close the first shell (HelloWorld) with the keyboard (Command+Q). Try to close the 2nd shell with the keyboard - the shell does not close, and this message is printed to the console: 2009-05-12 10:10:02.286 java[54557:10b] *** -[NSCFString quitRequested:]: unrecognized selector sent to instance 0x12b9b0 You can close this shell (and subsequent shells) with the mouse (click on red x) but you cannot close any of them, except the first one, using the keyboard. This is probably some display cleanup-on-dispose problem. The snippet launcher creates and disposes successive displays, which not many applications will do. | resolved fixed | df87b53 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-15T21:36:03Z" | "2009-05-12T14:53:20Z" |
275,552 | Bug 275552 Font loading slow for font that is not there (ie. 'Sans Serif') | I have an application that renders a BIRT chart in a Canvas with real-time data. When I run the application on Carbon, all is well. When I run the application on Cocoa, the application grinds to a halt. I'm attaching screen shots of the cpu activity when running the application. The only difference is that I've changed the launch configuration arguments from -ws cocoa to -ws carbon. I'm not able to make my code available publicly, but can make it available to any of the IBM SWT developers. | resolved fixed | 974aef9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSFontManager.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Font.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-15T21:06:50Z" | "2009-05-10T04:33:20Z" |
275,631 | Bug 275631 Ctrl+Tab key binding works incorrectly. | null | resolved fixed | bdf37a2 | ["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 | "2009-05-13T16:37:36Z" | "2009-05-11T11:06:40Z" |
275,913 | Bug 275913 StyledText with block selection: Typing at virtual caret on empty line inserts char after caret | I20090511-2000 CustomControlExample > Styled Text: - add an empty line - activate block selection - click in the middle of the empty line => "virtual" caret appears - type 12345 => line becomes "2345|1" (caret at |) => first character should also be inserted in front of the caret | resolved fixed | aa5281e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-13T15:59:16Z" | "2009-05-12T17:40:00Z" |
269,413 | Bug 269413 [doc] getBackground() of Controls on a TabFolder returns not the shown background color | Build ID: M20080911-1700 Steps To Reproduce: 1. Use WindowsXP (default blue theme) and SWT 3.4.1 2. draw a Tabfolder with at least one TabItem 3. draw a control e.g. Composite or checkbox (Button(SWT.CHECK) on the TabItem 3. The control is shown with the same background color as the TabItem (nearly white) 4. call control.getBackground() -> it returns the default backgound color (gray) 5. use the returned color somewhere, to see its different More information: In the given example, only default backgrounds are used. I made no call to setBackground() on any control. In this case, to my observations, the color returned by getBackground() differs from the shown background color for TabItems and all nested controls on the TabItem. | resolved fixed | 184d0e8 | ["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 | "2009-05-11T22:09:07Z" | "2009-03-19T16:26:40Z" |
268,503 | Bug 268503 [doc] DateTime Javadoc should tell that DROP_DOWN is a hint | I20090312-2000 Javadoc of DateTime should tell that DROP_DOWN is a hint. | resolved fixed | 96685a4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DateTime.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-11T18:45:15Z" | "2009-03-13T10:26:40Z" |
275,681 | Bug 275681 NPE in DialogTab, it doesn't check for null returned by PrintDialog#open | SWT 3.5 RC0 Run control example switch to dialog tab open a print dialog hit escape (or close the dialog by clicking on the cancel button) Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.examples.controlexample.DialogTab.createButtonSelected(DialogTab.java:191) at org.eclipse.swt.examples.controlexample.DialogTab$2.widgetSelected(DialogTab.java:384) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3880) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3473) at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:210) | resolved fixed | b8696a3 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/DialogTab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-05-11T16:44:26Z" | "2009-05-11T16:40:00Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.