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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
250,178 | Bug 250178 change the keyboard block selection expansion increment to match average char width | null | resolved fixed | 2df8e1e | ["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 | "2008-10-21T20:21:51Z" | "2008-10-08T21:06:40Z" |
249,003 | Bug 249003 implement cursors (wait, etc.) | null | resolved fixed | 687943d | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Cursor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-21T17:48:27Z" | "2008-09-29T17:40:00Z" |
251,442 | Bug 251442 block selection: handle multi-line paste | in a paste operation with a multi-line text each line should to be inserted to the correspondent line in the block selection. Special cases. m = number of lines in the clipboard text n = number of lines in the block selection n > m: n-m last lines in the block selection will have no text inserted in it. m > n: m-n lines past of last line of the block selection will have the text insert at the closest offset where the left edge of block selection insertects the line. text inserted in the StyledText through StyledText#insert(String) should follow the same rules. | resolved fixed | 5754542 | ["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 | "2008-10-20T20:09:10Z" | "2008-10-20T19:13:20Z" |
249,005 | Bug 249005 implement/verify mouse events and mouse wheel | null | resolved fixed | 6fa0a9c | ["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/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-20T17:13:36Z" | "2008-09-29T17:40:00Z" |
50,228 | Bug 50228 XOR mode doesn't work with GC | When GEF paints to an Image in XOR mode (fill or draw), it doesn't work. Nothing appears. Someone on the newsgroup was also reporting a similar problem for drawing to a Control's GC. | resolved wontfix | a673c6e | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-20T14:40:39Z" | "2004-01-19T16:33:20Z" |
250,172 | Bug 250172 Fix inserting text in block select mode | null | resolved fixed | 458bcbe | ["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 | "2008-10-17T19:57:41Z" | "2008-10-08T21:06:40Z" |
251,084 | Bug 251084 NullPointerException when VoiceOver asks for position of Shell | - load the latest SWT Cocoa from HEAD - Run org.eclipse.swt.examples.accessibility.ControlsWithAccessibleNamesExample - Turn on VoiceOver - NPE The NPE comes from this line in getPositionAttribute: Point pt = control.getParent().toDisplay(location.x, location.y); The reason is that the control in this case is a Shell, and (top level) shells do not have a parent, so control.getParent() is null. The attached patch fixes the problem, however you will note that the patch goes further and it removes the entire 'else' case. This is because when the application does not answer anything, then we need to defer entirely to Cocoa for the position, size, etc. So the attached patch fixes the "if the app does nothing, then we do nothing" case for getPositionAttribute and getSizeAttribute. I did not go through the other attributes to do the same thing, but the same logic applies - we should only answer something if the app does. | resolved fixed | 147f384 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-16T21:54:15Z" | "2008-10-16T15:13:20Z" |
250,193 | Bug 250193 StyledText SetStyleRange not working | null | resolved fixed | 6e3fbd9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-16T19:40:01Z" | "2008-10-08T21:06:40Z" |
250,976 | Bug 250976 FileDialog should be resizable | null | resolved fixed | f08ba92 | ["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/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-16T17:25:21Z" | "2008-10-15T17:00:00Z" |
249,001 | Bug 249001 implement GC drawFlags | null | resolved fixed | 32b7b3f | ["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 | "2008-10-15T20:47:04Z" | "2008-09-29T17:40:00Z" |
251,007 | Bug 251007 underline not select when last run run is full selected | Run this test case and see the color for underline,strikeout, and border are wrong public static void main(String[] args) { final Display display = new Display(); int style = SWT.SHELL_TRIM; final Shell shell = new Shell(display, style); final String string = "Felipe;"; final Font font = new Font (display, "Tahoma", 24, SWT.NORMAL); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { TextLayout layout = new TextLayout(event.display); layout.setOrientation(shell.getStyle() & (SWT.RIGHT_TO_LEFT | SWT.LEFT_TO_RIGHT)); layout.setText(string); layout.setFont(font); // event.gc.setAdvanced(true); TextStyle style = new TextStyle(); style.underline = true; style.strikeout = true; style.borderStyle = SWT.BORDER_SOLID; layout.setStyle(style, 0, 6); layout.draw(event.gc, 10, 130, 6, 6, null, null, 0); layout.dispose(); } }); shell.setSize(280, 240); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose (); } The reason is that when the last run is full select the clipping is not used (the code was only addclipping for partial select runs). There bug was introduced by the changes in TextLayout#draw of oct 9 of 2008 | resolved fixed | 3249ab9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-15T20:13:07Z" | "2008-10-15T19:46:40Z" |
250,994 | Bug 250994 Last character of the line disappears when selecting code at the end of line | Using I20081014-1600, I had a weird display problem in the java editor. 1) I have an editor with this contents: public class X { public static void main(String[] args) { String s = args[0];<< SELECT FROM HERE TO HERE>>System.out.println(s); } } 2) Select the portion between << and >>. 3) When doing this, the semi-colon at the end of String s = args[0]; is displayed in white :-) 4) Since my editor background is white, it looks like it disappeared. | resolved fixed | 1f16167 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-15T19:35:51Z" | "2008-10-15T19:46:40Z" |
250,859 | Bug 250859 StyledText getRages(int start, int length) returns incorrect array | Build ID: I20080917-0800 Steps To Reproduce: 1. Set 2 different style ranges (different start and length value, no overlapping) 2. get the range of the first style 3. notice that an array of size 3 is returned, the size should be just 2 More information: package bugs; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyleRange; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class GetRangeBug { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout(1, false)); StyledText text = new StyledText(shell, SWT.V_SCROLL | SWT.H_SCROLL); text.setText("The Eclipse Foundation is currently going through the exercise"); StyleRange r1 = new StyleRange(); r1.underline = true; StyleRange r2 = new StyleRange(); r2.strikeout = true; int[] ranges = {12, 10, 36, 5}; StyleRange[] styles = {r1, r2}; text.setStyleRanges(ranges, styles); System.out.println(text.getRanges(12, 10)[0]); System.out.println(text.getRanges(12, 10)[1]); System.out.println(text.getRanges(12, 10)[2]); //output 12, 10, 12 //should be just 12, 10 // there should be no 3rd element in the integer array shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 0342646 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-15T16:55:35Z" | "2008-10-14T21:33:20Z" |
249,007 | Bug 249007 implement modify/verify events | null | resolved fixed | 6ddaa74 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Combo.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/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-15T15:52:21Z" | "2008-09-29T17:40:00Z" |
211,048 | Bug 211048 Accessibility is not implemented for Cocoa | Accessibility is not implement in SWT cocoa. VoiceOver/Accessibility Inspect can not recognize any widgets. Meanwhile, keyboard accessibility also is unable. We can not use TAB key to navigate all widgets. | resolved fixed | 96ce10f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java", "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/NSArray.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableArray.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSString.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSValue.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/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Composite.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/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/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolBar.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/Tree.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 | "2008-10-14T23:36:21Z" | "2007-11-27T10:40:00Z" |
250,782 | Bug 250782 No More Handles Exception when trying to load an image | null | resolved fixed | 177f753 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-14T21:06:17Z" | "2008-10-14T13:13:20Z" |
250,841 | Bug 250841 Table/Tree scrollbars do not work | null | resolved fixed | 1c5467f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotification.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.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/Display.java", "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", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.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 | "2008-10-14T19:47:59Z" | "2008-10-14T18:46:40Z" |
250,622 | Bug 250622 org.eclipse.swt.printing.PrintDialog.open() returns 'null' for two different scenarios | null | verified fixed | 21ad7e1 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/win32/org/eclipse/swt/printing/PrintDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-14T19:39:41Z" | "2008-10-13T09:26:40Z" |
242,716 | Bug 242716 Exception in Table with SWT.MEASUREITEM | Build ID: 3.4.0.v20080603-2000 Steps To Reproduce: 1. Create a table and add a listener for SWT.MEASUREITEM 2. Add columns 3. In the view place the mouse cursor above the table and column header 4. Press the left or right cursor key 5. A tooltip is requested with an item index below 0, which causes an exception (although p.y is lower than 0, the hit test succeeds for some reason): Thread [main] (Suspended) Table.wmNotifyToolTip(NMHDR, int, int) line: 6734 Table.wmNotify(NMHDR, int, int) line: 6216 Table(Control).WM_NOTIFY(int, int) line: 4348 Table(Control).windowProc(int, int, int, int) line: 3841 Table.windowProc(int, int, int, int) line: 5476 Display.windowProc(int, int, int, int) line: 4528 OS.CallWindowProcW(int, int, int, int, int) line: not available [native method] OS.CallWindowProc(int, int, int, int, int) line: 2273 Table.callWindowProc(int, int, int, int, boolean) line: 333 Table.callWindowProc(int, int, int, int) line: 199 Table(Control).windowProc(int, int, int, int) line: 3877 Table.windowProc(int, int, int, int) line: 5476 Display.windowProc(int, int, int, int) line: 4541 OS.DispatchMessageW(MSG) line: not available [native method] OS.DispatchMessage(MSG) line: 2370 Display.readAndDispatch() line: 3420 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2382 Workbench.runUI() line: 2346 Workbench.access$4(Workbench) line: 2198 Workbench$5.run() line: 493 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 488 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 UnifiedSWTSwingApplication(CopyOfIDEApplication).start(IApplicationContext) line: 111 UnifiedSWTSwingApplication.access$4(UnifiedSWTSwingApplication, IApplicationContext) line: 1 UnifiedSWTSwingApplication.start(IApplicationContext) line: 56 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 382 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 585 Main.invokeFramework(String[], URL[]) line: 549 Main.basicRun(String[]) line: 504 Main.run(String[]) line: 1236 Main.main(String[]) line: 1212 More information: | resolved fixed | ef47a6e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-10T21:34:03Z" | "2008-07-31T13:13:20Z" |
248,881 | Bug 248881 Cocoa: (specific) Dialog text doesn't wrap | Build ID: Cocoa 3.5M2 Steps To Reproduce: - Install Eclipse Cocoa PDT 3.5M2 - go to software updates -> Available Software -> Ganymede -> Wen and Java EE development - choose XML Editors, JavaScript, Web Developer Tools, Web Page Editor - Click on install -> a message comes up On carbon, the message reads: The software items you selected may not be valid with your current installation. do you want to open the wizard anyway to reviw the selections? On Cocoa, the second line is missing More information: | resolved fixed | bd9da14 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-10T14:36:42Z" | "2008-09-28T19:26:40Z" |
248,551 | Bug 248551 GC drawString garbled w/ GDI+ and raster font (was BidiLevel is improperly set to -1) | null | resolved fixed | da8686b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/gdip/Gdip.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GCData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-09T21:57:14Z" | "2008-09-25T10:53:20Z" |
250,327 | Bug 250327 SWT.NO_TRIM Shells cannot become the key window | - snippet is below - this appears in eclipse when showing the context menu of the editor pane's CTabFolder, focus cannot be given to its contained Text static void setFocusInNO_TRIMshell() { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,200,200); shell.open(); shell.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { Shell shell2 = new Shell(shell, SWT.NO_TRIM); shell2.setLayout(new FillLayout()); shell2.setSize(300,300); Composite composite = new Composite(shell2, SWT.NONE); composite.setLayout(new FillLayout()); Text text = new Text(composite, SWT.BORDER); shell2.open(); text.setFocus(); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 58383f4 | ["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/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.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 | "2008-10-09T19:28:24Z" | "2008-10-09T19:20:00Z" |
249,999 | Bug 249999 Closing an editor takes two clicks | If you move the mouse outside the "X" on the editor tab after clicking it to close the editor, the editor does not close. A quick look at this seemed to indicate that the mouse up event wasn't getting the right x and y coordinates, but I none of my simple test cases backed that up. | resolved fixed | 1c63a71 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-07T20:04:55Z" | "2008-10-07T17:20:00Z" |
249,517 | Bug 249517 ClassCastException in Combo | open org.eclipse.ui.carbon's fragment.xml. java.lang.ClassCastException: org.eclipse.swt.internal.cocoa.SWTPopUpButton at org.eclipse.swt.widgets.Combo.setBackground(Combo.java:1118) at org.eclipse.swt.widgets.Control.setBackground(Control.java:2319) at org.eclipse.ui.forms.widgets.FormToolkit.adapt(FormToolkit.java:433) at org.eclipse.pde.internal.ui.parts.ComboPart.createControl(ComboPart.java:53) at org.eclipse.pde.internal.ui.editor.plugin.FragmentGeneralInfoSection.createBundlePluginVersionEntry(FragmentGeneralInfoSection.java:197) at org.eclipse.pde.internal.ui.editor.plugin.FragmentGeneralInfoSection.createPluginVersionEntry(FragmentGeneralInfoSection.java:153) at org.eclipse.pde.internal.ui.editor.plugin.FragmentGeneralInfoSection.createSpecificControls(FragmentGeneralInfoSection.java:71) at org.eclipse.pde.internal.ui.editor.plugin.GeneralInfoSection.createClient(GeneralInfoSection.java:89) at org.eclipse.pde.internal.ui.editor.plugin.GeneralInfoSection.<init>(GeneralInfoSection.java:62) at org.eclipse.pde.internal.ui.editor.plugin.FragmentGeneralInfoSection.<init>(FragmentGeneralInfoSection.java:62) at org.eclipse.pde.internal.ui.editor.plugin.OverviewPage.fillBody(OverviewPage.java:82) at org.eclipse.pde.internal.ui.editor.plugin.OverviewPage.createFormContent(OverviewPage.java:70) at org.eclipse.ui.forms.editor.FormPage$1.run(FormPage.java:151) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.forms.editor.FormPage.createPartControl(FormPage.java:149) at org.eclipse.pde.internal.ui.editor.PDEFormPage.createPartControl(PDEFormPage.java:312) at org.eclipse.ui.forms.editor.FormEditor.pageChange(FormEditor.java:491) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.pageChange(PDEFormEditor.java:262) at org.eclipse.ui.part.MultiPageEditorPart.setActivePage(MultiPageEditorPart.java:973) at org.eclipse.ui.forms.editor.FormEditor.setActivePage(FormEditor.java:626) at org.eclipse.ui.forms.editor.FormEditor.setActivePage(FormEditor.java:532) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.setActivePage(PDEFormEditor.java:777) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.createPages(PDEFormEditor.java:253) at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:310) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:678) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:444) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:268) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2820) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2729) at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2721) at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2673) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2668) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2652) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2643) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:646) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:605) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:318) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:160) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:229) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:208) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:274) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:250) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerActionGroup.handleOpen(PackageExplorerActionGroup.java:365) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$4.open(PackageExplorerPart.java:610) at org.eclipse.ui.OpenAndLinkWithEditorHelper$InternalListener.open(OpenAndLinkWithEditorHelper.java:48) at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:820) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:874) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:818) at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:1079) at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1183) at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:264) at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:258) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:298) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:985) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1009) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:994) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:825) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2816) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2550) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) 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:370) 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 | b787d7e | ["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 | "2008-10-06T16:52:28Z" | "2008-10-02T15:06:40Z" |
249,286 | Bug 249286 Table.setTopIndex does not work correctly with MeasureItem | null | resolved fixed | 8259fbf | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-06T16:45:04Z" | "2008-10-01T11:20:00Z" |
249,000 | Bug 249000 implement graphics in non-UI thread | null | resolved fixed | e188a1e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSNumber.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSThread.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/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Device.java", "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", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Pattern.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Transform.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 | "2008-10-06T14:59:55Z" | "2008-09-29T17:40:00Z" |
249,612 | Bug 249612 Links on preference pages are opened in browser | Open the Preference Dialog Go to the Java/Editor/Mark Occurrences preference page. Click the "Annotations" link at the top of the page. --> the link is opened the browser. It should take me to the Annotations preference page. | resolved fixed | 4eb6226 | ["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 | "2008-10-03T20:01:09Z" | "2008-10-03T16:06:40Z" |
249,608 | Bug 249608 TextLayout.draw(...) does not use GC foreground | - run the snippet below - on cocoa it draws its text in black, on other platforms it draws it in red - this fix is needed asap because jface uses TextLayout to draw its custom Table/Tree items, and Cocoa's custom Table/Tree drawing implementation will be released soon | resolved fixed | ff62aa5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-03T18:56:24Z" | "2008-10-03T16:06:40Z" |
211,696 | Bug 211696 CLabel does not specify that "&" introduces mnemonic | CLabel#setText(String) does not specify that "&" in the text is interpreted as mnemonic. Should have a boilerplate like org.eclipse.swt.widgets.Label#setText(String). | resolved fixed | 81c8912 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-10-02T21:18:15Z" | "2007-12-03T00:00:00Z" |
248,950 | Bug 248950 Custom Control Example crashes. | Launch custom control example, do nothing, it crashes. Nothing in console. No apple crash reporter message. | resolved fixed | 8399575 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-29T17:41:50Z" | "2008-09-29T14:53:20Z" |
248,731 | Bug 248731 FileDialog does not provide enough information to open multiple files from different directories (COCOA) | null | resolved fixed | 7e61638 | ["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 | "2008-09-26T17:59:58Z" | "2008-09-26T14:40:00Z" |
248,735 | Bug 248735 System.out.println() in DragSource | null | resolved fixed | 650b44b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DragSource.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-26T17:19:17Z" | "2008-09-26T14:40:00Z" |
247,069 | Bug 247069 Display#post(*) sometimes freezes eclipse | I'm using code in a Job that waits on a blocking Queue, pulls of KeyDown and KeyUp events, and posts them to the display. execute(Hello!,h) Event: Event {type=1 null time=0 data=null x=0 y=0 width=0 height=0 detail=0} h 0 true Re-schedule Event: Event {type=2 null time=0 data=null x=0 y=0 width=0 height=0 detail=0} h 0 true Re-schedule Sometimes it works as above (although it results in 2 letters in the text editor :-) Sometimes, it freezes: execute(Hello!,h) Event: Event {type=1 null time=0 data=null x=0 y=0 width=0 height=0 detail=0} h 1 When it freezes and I suspend stacks to understand where eclipse is, it appears to be locks on the display? ex: Thread [Worker-5] (Suspended) Object.wait(long, int) line: not available [native method] Lock(Object).wait() line: 199 [local variables unavailable] Lock.lock() line: 34 OS.GDK_DISPLAY() line: 1094 [local variables unavailable] Display.post(Event) line: 2904 PostHandler$1.run(IProgressMonitor) line: 38 Worker.run() line: 55 Thread [main] (Suspended) Display(Device).isDisposed() line: 683 Display.checkDevice() line: 705 Display.getSystemFont() line: 2229 CLabel(Control).defaultFont() line: 96 CLabel(Control).internal_new_GC(GCData) line: 2954 GC.gtk_new(Drawable, GCData) line: 196 CLabel(Control).gtk_expose_event(int, int) line: 2706 CLabel(Composite).gtk_expose_event(int, int) line: 669 CLabel(Canvas).gtk_expose_event(int, int) line: 170 CLabel(Widget).windowProc(int, int, int) line: 1539 CLabel(Control).windowProc(int, int, int) line: 4507 Display.windowProc(int, int, int) line: 4099 OS._gtk_main_do_event(int) line: not available [native method] OS.gtk_main_do_event(int) line: 5806 Display.eventProc(int, int) line: 1177 OS._g_main_context_iteration(int, boolean) line: not available [native method] OS.g_main_context_iteration(int, boolean) line: 1564 Display.readAndDispatch() line: 3031 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2382 Workbench.runUI() line: 2346 Workbench.access$4(Workbench) line: 2198 Workbench$5.run() line: 493 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 488 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 IDEApplication.start(IApplicationContext) line: 113 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 370 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 79 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 43 Method.invoke(Object, Object...) line: 618 Main.invokeFramework(String[], URL[]) line: 549 Main.basicRun(String[]) line: 504 Main.run(String[]) line: 1236 Main.main(String[]) line: 1212 I'm able to reproduce this problem fairly reliably on my RHEL 5.2 based system. PW | resolved fixed | 9db59a0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-26T14:51:18Z" | "2008-09-11T19:06:40Z" |
248,467 | Bug 248467 Keypad Enter and Help keys do not draw in MenuItems | The following snippet works on Carbon, but the menu items are not drawn on Cocoa. SK, any ideas? import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; public class Snippet { static Display display; public static void main(String[] args) { display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Menu menuBar = new Menu(shell, SWT.BAR); shell.setMenuBar(menuBar); MenuItem item = new MenuItem(menuBar, SWT.CASCADE); item.setText("Test"); Menu menu = new Menu(shell, SWT.DROP_DOWN); item.setMenu(menu); item = new MenuItem(menu, SWT.PUSH); item.setText("Fake CTRL+Keypad Enter\t\u2303\u2305"); item = new MenuItem(menu, SWT.PUSH); item.setText("Fake CTRL+Help\t\u2303\u211C"); display.addFilter(SWT.Selection, new Listener () { public void handleEvent (Event e) { System.out.println("Selection: " + e); } }); display.addFilter(SWT.KeyDown, new Listener() { public void handleEvent(Event e) { System.out.println("KeyDown: " + new KeyEvent(e)); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 988f390 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-24T18:55:34Z" | "2008-09-24T15:26:40Z" |
248,187 | Bug 248187 Adobe Reader 9.0 browser crash NPE | null | resolved fixed | 6a0a69c | ["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 | "2008-09-23T18:17:16Z" | "2008-09-22T19:00:00Z" |
248,266 | Bug 248266 Javadoc warnings in N20080922-2000 | /builds/N200809222000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java:351: warning - @return tag cannot be used in method with void return type. | resolved fixed | 4a3ea50 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/IME.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-23T15:45:48Z" | "2008-09-23T14:26:40Z" |
248,167 | Bug 248167 Accelerators are not drawn on menu items in Eclipse | This happens because Eclipse doesn't use MenuItem.setAccelerator() and cocoa doesn't support custom draw in menu items. | resolved fixed | f782649 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSMenuItem.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/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/MenuItem.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 | "2008-09-22T18:42:43Z" | "2008-09-22T16:13:20Z" |
247,550 | Bug 247550 Alt+Arrow moves line up/down by 2 in Java editor | null | resolved fixed | 68d8177 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSResponder.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/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-18T20:06:31Z" | "2008-09-16T21:20:00Z" |
247,728 | Bug 247728 implement underline (squiggle/error) and outline for cocoa | implement underline (squiggle/error) and outline for cocoa | resolved fixed | bbd5415 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T20:39:55Z" | "2008-09-17T19:33:20Z" |
247,702 | Bug 247702 NPE in Display.map(...) when called from TabFolder Selection listener | - run the snippet below - click between the tabs a couple of times and you'll get the NPE at the bottom public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10,10,300,200); new Composite(shell, SWT.NONE); final TabFolder folder = new TabFolder(shell, SWT.NONE); folder.setBounds(10,10,200,100); final Composite composite = new Composite(folder, SWT.NONE); final Composite comp2 = new Composite(composite, SWT.NONE); TabItem item0 = new TabItem(folder, SWT.NONE); item0.setControl(new Text(folder, SWT.SINGLE)); TabItem item1 = new TabItem(folder, SWT.NONE); item1.setText("item"); item1.setControl(composite); shell.open(); folder.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println(display.map(comp2, null, new Point(10,10))); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } java.lang.NullPointerException at org.eclipse.swt.widgets.Display.map(Display.java:2354) at org.eclipse.swt.widgets.Display.map(Display.java:2297) at cocoa.Main$29.handleEvent(Main.java:775) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:984) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1008) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:993) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:821) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2786) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2525) | resolved fixed | f5a8e8f | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T18:26:25Z" | "2008-09-17T19:33:20Z" |
247,649 | Bug 247649 Compiler warnings in I20080917-0100 | 1. WARNING in /builds/I200809170100/src/plugins/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java (at line 15) import java.awt.Dimension; The import java.awt.Dimension is never used 2. WARNING in /builds/I200809170100/src/plugins/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java (at line 19) import java.awt.event.ComponentAdapter; The import java.awt.event.ComponentAdapter is never used 3. WARNING in /builds/I200809170100/src/plugins/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java (at line 20) import java.awt.event.ComponentEvent; The import java.awt.event.ComponentEvent is never used The preference for unused imports should be turned to error. This would prevent this kind of errors in the future. | resolved fixed | 7977d63 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T16:46:52Z" | "2008-09-17T14:00:00Z" |
247,676 | Bug 247676 setting TabFolder content in Selection callback does not appear | snippet: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setBounds(10,10,300,200); final TabFolder folder = new TabFolder(shell, SWT.NONE); TabItem item0 = new TabItem(folder, SWT.NONE); item0.setText("item0"); Label label = new Label(folder, SWT.NONE); label.setText("item 0 label"); item0.setControl(label); TabItem item1 = new TabItem(folder, SWT.NONE); item1.setText("item1"); folder.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { TabItem item = (TabItem)event.item; if (item.getControl() == null) { Label label = new Label(folder, SWT.NONE); label.setText("item 1 label"); item.setControl(label); } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | cd59b0b | ["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/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/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T16:42:11Z" | "2008-09-17T16:46:40Z" |
247,557 | Bug 247557 Tracker seems broken, affects dragging Views, Editors | I was testing for M2 and noticed that the DnD feedback was broken on my Vista box (works fine elsewhere). I think I've tracked it down to a snippet (that I'll attach) indicating that the return value from 'display.getCursorControl()' is returning null on Vista rather than the actual control. Note that this seems to be Tracker-related...if you add the same code directly in a mouse move listener it seems to work on both. | resolved fixed | b5976ba | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tracker.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T16:25:23Z" | "2008-09-16T21:20:00Z" |
247,667 | Bug 247667 TabFolder sends Selection events for programmatic selections | snippet: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setBounds(10,10,300,200); final TabFolder folder = new TabFolder(shell, SWT.NONE); folder.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("selection: " + folder.indexOf((TabItem)event.item)); } }); new TabItem(folder, SWT.NONE); new TabItem(folder, SWT.NONE); shell.open(); folder.setSelection(1); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 204c50b | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T15:37:15Z" | "2008-09-17T16:46:40Z" |
245,667 | Bug 245667 Horizontal Sash does not show resize cursor | I20080827-0935 and M20080827-2000 Horizontal Sash widgets don't show the resize cursor on the Mac. This can be seen in Eclipse (between parts) and in the ControlExample. Works fine for vertical sashes. Works for both styles on GTK and Windows. | resolved fixed | c57c255 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-17T14:32:56Z" | "2008-08-29T08:53:20Z" |
247,549 | Bug 247549 default button doesn't work for single line Texts | to reproduce try Snippet 108 | resolved fixed | babefdb | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.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/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-16T19:42:46Z" | "2008-09-16T18:33:20Z" |
247,290 | Bug 247290 SWT ToolItem loses text when only one item and VERTICAL with image | null | resolved fixed | 52351d1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-16T19:03:22Z" | "2008-09-15T12:00:00Z" |
247,318 | Bug 247318 Crash creating new display after disposing previous one | This snippet crashes. public static void main (String [] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); new Display().dispose(); } | resolved fixed | 0e1964e | ["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 | "2008-09-15T17:30:16Z" | "2008-09-15T17:33:20Z" |
247,237 | Bug 247237 Compiler warnings in cocoa port in N20080914-2000 | null | resolved fixed | c23a8fe | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/Transfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/cocoa/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java", "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/Text.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 | "2008-09-15T14:59:23Z" | "2008-09-14T19:20:00Z" |
246,820 | Bug 246820 org.eclipse.swt.tools causes 242 warnings in latest I-build | null | verified fixed | 9f6cbd1 | ["bundles/org.eclipse.swt.tools/JNI", "Generation/org/eclipse/swt/tools/internal/ReflectClass.java", "bundles/org.eclipse.swt.tools/JNI", "Generation/org/eclipse/swt/tools/internal/ReflectMethod.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-12T16:29:28Z" | "2008-09-10T07:00:00Z" |
247,083 | Bug 247083 disposing first column in Tree fails | Attempting to dispose a Tree's first column fails and spews: *** NSOutlineView cannot remove outlineTableColumn with removeTableColumn:. Use setOutlineTableColumn: instead. | resolved fixed | 7c899ac | ["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 | "2008-09-11T20:51:28Z" | "2008-09-11T21:53:20Z" |
244,318 | Bug 244318 Unable to scroll fast using MX Revolution Mouse | I use the Logitech MX Revolution mouse which has a fast scrolling function. (the wheel will spin freely giving high scroll speeds). When I scroll in Eclipse, it is slow and will not scroll as fast as the wheel is turning. This causes the scrolling to abruptly change directions and not stop even if the wheel is no longer turning. Thanks | resolved fixed | 2224d8c | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scrollable.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-10T20:34:43Z" | "2008-08-15T17:06:40Z" |
145,890 | Bug 145890 SWT_AWT.new_Shell() unimplemented in OS X/Carbon | null | resolved wontfix | 308fb22 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSApplication.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/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.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 | "2008-09-09T22:41:12Z" | "2006-06-07T22:40:00Z" |
246,602 | Bug 246602 Table/Tree columns do not send Selection events | null | resolved fixed | 1ba4cb6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/SWTTableHeaderView.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/Table.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/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-08T15:36:08Z" | "2008-09-08T16:06:40Z" |
225,264 | Bug 225264 Help menu opens up in the wrong place | Trying to select the Help menu causes erratic behaviour. The menu appears in the top-rightmost corner and it is almost impossible to select any items in it. | resolved fixed | 759a42a | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-05T18:32:00Z" | "2008-04-02T07:06:40Z" |
246,235 | Bug 246235 App crashes on exit | null | resolved fixed | df73cd4 | ["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 | "2008-09-04T15:45:03Z" | "2008-09-04T14:53:20Z" |
244,472 | Bug 244472 Text does not WRAP on RHEL3 | - gtk version on RHEL3 is 2.2.4 - works on RHEL4 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.MULTI | SWT.WRAP); text.setText("as as as asd asd ads asdf asdf asdf as asd adsf"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 841bca6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-09-03T21:59:38Z" | "2008-08-18T20:06:40Z" |
245,266 | Bug 245266 Upside down table | Creating a GC on a Table in a SetData handler and calling getFontMetrics on that GC, causes a Transformation to be applied to the current graphics context which flips your table items vertically. Test case: public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); final Table table = new Table (shell, SWT.VIRTUAL | SWT.MULTI); table.setBounds(5, 5, 250, 250); table.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { GC gc = new GC(table); gc.getFontMetrics(); gc.dispose(); TableItem item = (TableItem) event.item; item.setText("SetData " + event.index); } }); table.setItemCount(20); shell.setSize(300, 300); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose(); } | resolved fixed | 86647f0 | ["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 | "2008-09-03T19:49:57Z" | "2008-08-26T17:00:00Z" |
244,723 | Bug 244723 Embedding external widgets into SWT using the EMBEDDED Style | Build ID: M20070212-1330 Steps To Reproduce: We are working with a customer and trying to embed their native widgets into SWT using the SWT Composite. We would like to have access to one of the private member in the Composite.java (org.eclipse.swt.widgets.Composite.java class for the gtk toolkit. The member we need access to is the socketHandle. Is there way to make this member public or provide a getter method to access it. Here is how i am creating a composite... Composite nativeComposite = new Composite(parent, SWT.EMBED); More information: | resolved fixed | 75c696a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-28T19:52:36Z" | "2008-08-20T16:33:20Z" |
244,931 | Bug 244931 On carbon platform, when scroll the mouse wheel on top of the vertical scroll bar of a canvas, no selection event is generated. | Build ID: M20070212-1330 Steps To Reproduce: 1. Create a shell. 2. Create a canvas on the shell which has larger height than the shell. 3. Add a selection listener to the vertical bar of the canvas. 4. When scrolling the wheel on the vertical scrollbar, no selection event is sent. More information: import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.events.SelectionListener; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class ScrollBarSample { public static void main(String[] args) { Display display = new Display (); Shell shell = new Shell (display, SWT.SHELL_TRIM); shell.setLayout (new FillLayout ()); shell.setSize(400, 300); Canvas canvas = new Canvas(shell, SWT.V_SCROLL); canvas.setSize(400, 1200); if(canvas.getVerticalBar() != null) { canvas.getVerticalBar().addSelectionListener(new SelectionListener(){ public void widgetDefaultSelected(SelectionEvent arg0) { } public void widgetSelected(SelectionEvent arg0) { System.out.println("detail is : " + arg0.detail); }}); } shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } | resolved fixed | 6bf8171 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ScrollBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-27T21:24:00Z" | "2008-08-22T10:13:20Z" |
243,558 | Bug 243558 StyledText: squiggles not drawn for tabs | R3.4 and 3.5 M1. The squiggle drawing algorithm fails for tabs on WindowsXP (works on Linux-GTK). Paste this into the Package Explorer to see the missing squiggles: public class T { void main() { String s= "missing squiggles for Tabs" String s2= "squiggles work for Spaces" } | verified fixed | a4842ea | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-27T16:23:30Z" | "2008-08-08T10:06:40Z" |
245,379 | Bug 245379 Table.getVerticalBar() returns null | import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class PR176510 { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); // final Tree tree = new Tree(shell, SWT.NONE); // for (int i = 0; i < 100; i++) { // TreeItem item = new TreeItem(tree, SWT.NONE); // item.setText("Item xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + i); // } // final Table tree = new Table(shell, SWT.NONE); // for (int i = 0; i < 100; i++) { // TableItem item = new TableItem(tree, SWT.NONE); // item.setText("Item xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + i); // } final List tree = new List(shell, SWT.H_SCROLL | SWT.V_SCROLL); for (int i = 0; i < 100; i++) { tree.add("Item" + i); } tree.getVerticalBar().addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("ver selection=" + tree.getVerticalBar().getSelection() + " " + event.detail); } }); tree.getHorizontalBar().addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("hor selection=" + tree.getHorizontalBar().getSelection() + " " + event.detail); } }); shell.setSize(200, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } | resolved fixed | 82256ac | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-27T13:56:16Z" | "2008-08-27T15:13:20Z" |
245,185 | Bug 245185 Message in the MessaeBox is not BiDi correctly | Build ID: I20080617-2000 Steps To Reproduce: 1.From Control Panel -> Regional and language, select Hebrew 2.Bring up an app. with the following sample code: MessageBox mb = new MessageBox(PlatformUI.getWorkbench().getDisplay().getActiveShell()); mb.setMessage(Activator.getResourceString("str.fedcal.action.google.warning")); 3. The English value for str.fedcal.action.google.warning is this: str.fedcal.action.google.warning=Oops, there are no calendar URLs on this page. To add a public calendar, you must first open that calendar's Calendar Settings page, then click this button again.\n\nNote: You can only add public calendars that you own or have already subscribed to. To make a calendar public, enable sharing from the Calendar Settings page. 4. From the App, you'll see that the MessageBox is correctly displayed with a right to left style. But, the message is incorrectly displayed from left to right, and aligned on the left. More information: . I tried to remove \n from the string, but, it didn't help Windows version; . I tried to revmoe \n from the string, but it didn't help . As you can see from the steps above, this is not a real Hebrew machine. . No, I didn't try it on a real Hebrew machine. . I'm on Windows XP thank you. | resolved fixed | 0bc7e9f | ["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/MessageBox.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-26T18:32:20Z" | "2008-08-25T21:33:20Z" |
244,574 | Bug 244574 ProgressBar state can be visually lost by updating selection | In ProgressBar.setSelection() the bar's state is temporarily set to Normal in order to update its selection value. However, reverting the ProgressBar to its non-Normal state afterwards may not be shown visually. Run the snippet below and change the state to SWT.PAUSED, and note that the bar may flash yellow temporarily, but will then stay green. If you change the INCREMENT to a larger value like 5, or the SLEEP value to a larger value like 2000, then the bar will return to yellow after each increment. Is there a way to make Vista redraw the bar immediately after its state has been reverted to its non-Normal value in setSelection()? public static void main(String[] args) { final int INCREMENT = 2; final int SLEEP = 1000; final Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10, 10, 500, 200); shell.setLayout(new GridLayout()); final ProgressBar bar = new ProgressBar(shell, SWT.NONE); final Button normalButton = new Button(shell, SWT.RADIO); normalButton.addSelectionListener(new SelectionAdapter() { public void widgetSelected(final SelectionEvent e) { bar.setState(SWT.NORMAL); } }); normalButton.setSelection(true); normalButton.setText("Normal"); final Button pausedButton = new Button(shell, SWT.RADIO); pausedButton.addSelectionListener(new SelectionAdapter() { public void widgetSelected(final SelectionEvent e) { display.syncExec(new Runnable() { public void run() { bar.setState(SWT.PAUSED); } }); } }); pausedButton.setText("Paused"); bar.setSelection(bar.getMaximum() / 4); shell.open(); Runnable runnable = new Runnable() { public void run() { if (bar.isDisposed()) return; bar.setSelection(bar.getSelection() + INCREMENT); display.timerExec(SLEEP, this); } }; display.timerExec(SLEEP, runnable); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 6940f18 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ProgressBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-25T19:47:05Z" | "2008-08-19T15:33:20Z" |
49,996 | Bug 49996 [CCombo] CCombo, CLabel - Custom widgets are nulling internal slots too soon | This came up because StyledText is doing the same thing. StyledText will probably handle this by async'ing the slot nulling. If a client hooks a disposeListener to a custom widget then they're able to catch the widget in a middle state in which its internal slots have been nulled out, but its state hasn't been OR'd with DISPOSED yet (so it still passes checkWidget()). Two examples that show this: 1. NPE in CCombo (type anything into the CCombo): public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setBounds(10,10,200,200); final CCombo combo = new CCombo(shell, SWT.BORDER); combo.setBounds(10,10,100,100); combo.addListener(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { combo.dispose(); } }); combo.addListener(SWT.Dispose, new Listener() { public void handleEvent(Event event) { System.out.println(combo.getText()); } }); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } 2. Wrong answer in CLabel (hover over it): public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setBounds(10,10,200,200); final CLabel label = new CLabel(shell, SWT.BORDER); label.setText("hover here"); label.setToolTipText("tool tip"); label.setBounds(10,10,100,100); final Color red = new Color(display, 255, 0, 0); label.addListener(SWT.MouseHover, new Listener() { public void handleEvent(Event event) { label.dispose(); } }); label.addListener(SWT.Dispose, new Listener() { public void handleEvent(Event event) { System.out.println(label.getText()); } }); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } red.dispose(); display.dispose (); } | resolved fixed | aa84c6a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CBanner.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableCursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTree.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ViewForm.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-25T17:39:48Z" | "2004-01-14T17:06:40Z" |
234,809 | Bug 234809 [QuickAccess] PopupDialog stays open even though Eclipse has focus | Eclipse 3.4 Steps to reproduce: - Ctrl+3 - From the dropdown select "Move" - Move the mouse over "File" of the main menubar - Click on "File" Actual results: - the menu opens - the popup dialog is not closing | resolved fixed | 107886f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tracker.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-22T16:56:36Z" | "2008-05-30T09:33:20Z" |
231,776 | Bug 231776 [SWT Mac] Incorrect mouseExit event generated when balloon ToolTip is shown | Build ID: 3.4 Steps To Reproduce: 1. In SWT control's mouseHover event handler, create and show a balloon ToolTip. 2. On Mac OS X 10.5, When the ToolTip is shown, the background control will receive an extra (incorrect) mouseExit event (which is generated in Display.runEnterExit). The extra mouseExit event is not generated on Windows & Linux. 3. You can try compile and run the example. On Windows, the tooltip will show normally, but on Mac, the tooltip will disappear immediately after it is shown. 4. Also, the mouseHover interval on Mac seems much bigger than Windows, but that's another story. More information: import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.Point; public class TooltipTest { /** * @param args */ public static void main(String[] args) { final Display display = new Display(); final Shell main = new Shell(); main.setText("Hello"); main.setBounds(100, 100, 200, 200); main.setVisible(true); main.addMouseTrackListener(new MouseTrackListener() { private ToolTip tip = null; public void mouseEnter(MouseEvent e) { } public void mouseHover(MouseEvent e) { main.setText("mouseHover"); // Show the tooltip if (tip == null) { tip = new ToolTip(main, SWT.ICON_INFORMATION | SWT.BALLOON); tip.setMessage("Message"); tip.setVisible(true); } } public void mouseExit(MouseEvent e) { main.setText("mouseExit"); // Hide the tooltip if (tip != null) { tip.dispose(); tip = null; } } }); while (!main.isDisposed()) { display.readAndDispatch(); } } } | resolved fixed | 9220027 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolTip.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-22T16:46:49Z" | "2008-05-13T12:00:00Z" |
239,965 | Bug 239965 Application menu does not share application name | When self hosting, the application menu in Eclipse reads "java". This SHOULD be a simple fix - I'll attach a patch that looks like it should work. But it doesn't. It doesn't work in Cocoa either so there may be some magic required to update the main menu that I'm not aware of... I cant update the name of anything that is currently visible. For instance, a simple app with an app delegate that looks like this also fails: #import "AppDelegate.h" @implementation AppDelegate -(void)applicationDidFinishLaunching:(NSNotification*)aNotification { NSMenu *menu = [[NSApplication sharedApplication] mainMenu]; NSMenuItem *appMenuItem = [menu itemAtIndex: 0]; NSString *original = [item title]; NSLog(@"old title = %@", original); [item setTitle: @"Wuggu?"]; NSString *newTitle = [item title]; NSLog(@"new title = %@", newTitle); } @end the title method on the item does return the new value but the menu is still rendered with the old title. | resolved fixed | b4b4915 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSString.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/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-22T14:29:45Z" | "2008-07-08T12:26:40Z" |
196,884 | Bug 196884 [OpenGL] GLCanvas doesn't work on Vista | I've observed this on two separate machines running Vista, one with an NVIDIA GeForce 7400 and one without a graphics card at all (using an emulated opengl driver). Both machines are able to run OpenGL games just fine, so I'm fairly certain it's an SWT problem. For a snippet illustrating the bug I suggest the LWJGLExample.java which is included in your org.eclipse.swt.opengl.examples plugin. This is supposed to show an animated rotating and expanding/contracting taurus, but when I run it under Vista, at first a blank window comes up. If I resize the window I can get the taurus to appear, but it is frozen. Sometimes when I stop dragging it starts animating just fine, but after another drag it's frozen again! | resolved fixed | 44efb8e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java", "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/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-21T16:40:56Z" | "2007-07-17T22:06:40Z" |
244,396 | Bug 244396 [DND] Combo on Linux does not fire DragSourceEvent. | Build ID: I20080617-2000 Environment: - ON: Suse Linux ED10 - Eclipse 3.4GM Steps To Reproduce: 1. Run snippet code on SLED10. 2. Input some text in combo area and highlight the text. 3. Drag the text to the Text area on the right. [Result]: "dragStart" and "dragSetData" can not be triggered at all during drag process. [Expected]: "dragStart" and "dragSetData" should be triggered during drag process. More information: | resolved fixed | 498c28f | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-20T19:43:03Z" | "2008-08-18T09:00:00Z" |
244,234 | Bug 244234 losing keybindings... | I started tracking this down this afternoon, but didn't get finished and I have to get to the airport now. 1 - start Eclipse 2 - in editor notice that ctrl-space works 3 - pretzel-tab to another application 4 - pretzel-tab back to eclipse --> ctrl-space doesn't work anymore. When you come back to eclipse, the org.eclipse.ui.window and org.eclipse.ui.dialogAndWindow contexts get removed from ContextManager. Stack to removeActiveContext call (note that I've been hacking around a lot so line number may be off): Daemon Thread [Thread-0] (Suspended (breakpoint at line 227 in ContextManager)) ContextManager.removeActiveContext(String) line: 227 ContextAuthority.updateContext(String, boolean) line: 773 ContextAuthority.deactivateContext(IContextActivation) line: 368 ContextAuthority.unregisterShell(Shell) line: 750 ContextService.unregisterShell(Shell) line: 257 WorkbenchWindow.hardClose() line: 1583 WorkbenchWindow.busyClose() line: 722 WorkbenchWindow.access$0(WorkbenchWindow) line: 698 WorkbenchWindow$3.run() line: 814 BusyIndicator.showWhile(Display, Runnable) line: 70 WorkbenchWindow.close() line: 812 WindowManager.close() line: 109 Workbench$16.run() line: 912 SafeRunner.run(ISafeRunnable) line: 37 Workbench.busyClose(boolean) line: 909 Workbench.access$15(Workbench, boolean) line: 838 Workbench$23.run() line: 1082 BusyIndicator.showWhile(Display, Runnable) line: 70 Workbench.close(int, boolean) line: 1080 Workbench.close() line: 1052 Workbench$56.handleEvent(Event) line: 2253 EventTable.sendEvent(Event) line: 84 Display.sendEvent(int, Event) line: 2830 Display.applicationDelegateProc(int, int, int) line: 3466 OS.objc_msgSend(int, int, int) line: not available [native method] NSApplication.terminate(id) line: 326 Display.applicationDelegateProc(int, int, int) line: 3453 OS.objc_msgSendSuper(objc_super, int, int) line: not available [native method] Display.applicationSendEvent(int, int, int) line: 3408 Display.applicationProc(int, int, int) line: 3419 OS.objc_msgSend(int, int, int) line: not available [native method] NSApplication.sendEvent(NSEvent) line: 253 Display.readAndDispatch() line: 2493 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2382 Workbench.runUI() line: 2346 Workbench.access$4(Workbench) line: 2198 Workbench$5.run() line: 493 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 488 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 IDEApplication.start(IApplicationContext) line: 113 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 382 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 585 Main.invokeFramework(String[], URL[]) line: 549 Main.basicRun(String[]) line: 504 Main.run(String[]) line: 1236 Main.main(String[]) line: 1212 | resolved fixed | 836e6cc | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "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/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-18T21:33:19Z" | "2008-08-14T18:53:20Z" |
244,108 | Bug 244108 [WorkbenchLauncher] ArrayIndexOutOfBoundsException in IDEApplication.start() when launching partially branded product | Eclipse 3.4 If you create a product that contains a splash screen, but no window images, it will fail with: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.widgets.Decorations.setImages(Decorations.java:536) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:100) 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:382) 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) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) To reproduce: Create a plugin Copy the Eclipse splash.bmp into the plugin Create a feature that contains said plugin In the plugin, create a product configuration. On the Overview page, create a new product and select org.eclipse.ui.ide.workbench as the application Set the configuration to be based on features On the Configuration page, add the feature created above, and org.eclipse.platform Back on the Overview page, click Launch an Eclipse application | resolved fixed | f33c93a | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-14T19:52:48Z" | "2008-08-14T02:13:20Z" |
244,072 | Bug 244072 Tree and Table setBackground doesn't work | setBackground doesn't work on Tree or Table | resolved fixed | 5177de6 | ["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 | "2008-08-14T14:05:45Z" | "2008-08-13T20:40:00Z" |
243,924 | Bug 243924 Debugger crashes on Step out. | Simple test case that crashes the same way: public static void main(String[] args) { try { final Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Test Shell"); final Tree tree = new Tree(shell, SWT.BORDER | SWT.VIRTUAL); tree.setBounds(10, 10, 100, 200); tree.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TreeItem item = (TreeItem) event.item; item.setText("0x"+Integer.toHexString(event.index)); } }); shell.open(); tree.setItemCount(100); final TreeItem item = tree.getItem(0); item.setItemCount(300); item.setExpanded(true); tree.clearAll(true); item.setItemCount(2); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } catch (Throwable t) { t.printStackTrace(); } } | resolved fixed | 2741d2d | ["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 | "2008-08-12T20:09:46Z" | "2008-08-12T19:40:00Z" |
241,062 | Bug 241062 [consistency] Font#getFontData() not safe from non-ui thread on MacOS | This seems to have worked before in 3.3 and changed in 3.4. A call to Font#getFontData() from a non-ui thread results in a SWT exception. For one, the JavaDoc is not speced to throw this exception and second, it works fine on Windows and Linux. The call to Device#getDPI() from getFontData() calls checkDevice() and causes this issue. | resolved fixed | c21fa84 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Device.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 | "2008-08-06T14:07:34Z" | "2008-07-16T09:20:00Z" |
243,012 | Bug 243012 Password fields can be copied to the clipboard on Mac OS X | Build ID: I20080617-2000 Steps To Reproduce: 1. Start Eclipse 2. Open Eclipse -> Preferences 3. Navigate to General -> Network Connections 4. Enable Manual Proxy Configuration and Enable proxy authentication 5. Enter some text in the Password field 6. Select the text and press command-c to copy it 7. Paste it in the User Name field 8. Notice the password is visible in plain text More information: This seems to happen with any SWT password field. | resolved fixed | 81792a1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-05T21:11:32Z" | "2008-08-04T00:33:20Z" |
243,232 | Bug 243232 Child shells don't stay above their parent | There is currently no parent-child relationship between shells on SWT-Cocoa. Also note that while NSWindow provides an addChild call, it causes children to move when the parent shell moves which is undesirable for SWT. | resolved fixed | 515557d | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-05T20:21:42Z" | "2008-08-05T21:00:00Z" |
243,037 | Bug 243037 SWT.getPlatform() should list all valid values | null | resolved fixed | 61b97c8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/SWT.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-05T20:08:04Z" | "2008-08-04T08:53:20Z" |
242,603 | Bug 242603 Solaris crash: symbol gnome_icon_theme_new: referenced symbol not found | Build ID: 3.4 Steps To Reproduce: 1. Fire up Eclipse on Solaris 9 2. Open preference page "File Associations" 3. Add new assoc: *.doesnotmatter 4. Associate the "Text Editor" with that new extension 5. Push the default button 6. Push the OK button : crash More information: In the shell that started Eclipse the following can be found: ld.so.1: ./eclipse: fatal: relocation error: file /tmp/helmuth/deleteme/org.eclipse.osgi/bundles/128/1/.cp/libswt-gnome-gtk-3448.so: symbol gnome_icon_theme_new: referenced symbol not found [1] Killed ./eclipse -configuration /tmp/helmuth/deleteme -data /tmp/helmuth/deleteme More info: gtk version: [97 helmuth@szg-anar 3.4/SunOS]# pkginfo -l SUNWgnome-base-libs PKGINST: SUNWgnome-base-libs NAME: GNOME base GUI libraries - platform dependent files, /usr filesystem CATEGORY: GNOME2,application ARCH: sparc VERSION: 2.0.2,REV=9.4.2003.05.14.06.42 BASEDIR: /usr VENDOR: Sun Microsystems, Inc. DESC: GNOME base GUI libraries - platform dependent files, /usr filesystem PSTAMP: gnome2-20030514 INSTDATE: Sep 15 2004 20:42 HOTLINE: Please contact your local service provider STATUS: completely installed FILES: 87 installed pathnames 4 shared pathnames 9 directories 51 executables 12109 blocks used (approx) | resolved fixed | b0eddb1 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/gtk/org/eclipse/swt/program/Program.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-08-05T14:59:13Z" | "2008-07-30T17:46:40Z" |
210,441 | Bug 210441 setBackground/setBackgroundImage not implemented. | Neither of these are implemented. This should be pretty easy using Core Animation layers. I'll take a kick at this if you're not interested. | resolved fixed | 1b86173 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-31T18:57:43Z" | "2007-11-20T20:20:00Z" |
242,484 | Bug 242484 org.eclipse.swt.graphics.Rectangle.contains(int, int) returns incorrect results | The implementation of Rectangle.contains(int, int) does not account for possible overflow or underflow and can return incorrect results if it occurs. Here is an example that shows SWT's Rectangle.contains(int, int) incorrectly returning true. It also shows AWT's and draw2d's implementations returning the correct value (false): public class Rectmangler { public static void main(String[] args) { int x = 800; int y = Integer.MAX_VALUE; org.eclipse.swt.graphics.Rectangle swt = new org.eclipse.swt.graphics.Rectangle(0, -1024, 1280, 1024); System.out.printf("SWT says %s\n", swt.contains(x, y)); java.awt.Rectangle awt = new java.awt.Rectangle(0, -1024, 1280, 1024); System.out.printf("AWT says %s\n", awt.contains(x, y)); org.eclipse.draw2d.geometry.Rectangle draw2d = new org.eclipse.draw2d.geometry.Rectangle(0, -1024, 1280, 1024); System.out.printf("draw2d says %s\n", draw2d.contains(x, y)); } } When I run this I get: SWT says true AWT says false draw2d says false | resolved fixed | 50b5846 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/Rectangle.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-31T15:44:54Z" | "2008-07-30T01:06:40Z" |
242,263 | Bug 242263 Problems with read-only text boxes on Linux | I have some UI in the WTP project where I am attempting to follow the Eclipse accessibility guidelines by turning free-standing labels into border-less read-only text boxes so that screen readers can get at them. The text boxes are located in a tab panel. This works fine on WinXP and Vista. The text box background is truly transparent. On WinXP the gradient on the tab panel comes through correctly. However, on Linux the text box background is white while tab panel is gray. I tried setting the text box background explicitly to SWT.COLOR_WIDGET_BACKGROUND, which makes the UI render correctly on Linux (at least in my setup), but of course breaks WinXP. Is this a bug in SWT Linux implementation? If not, is my only option to include OS-specific code branches in my UI code? | resolved fixed | 51bddbd | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-30T17:54:47Z" | "2008-07-28T15:46:40Z" |
242,414 | Bug 242414 AntiAlias does not work in TextLayout | Build ID: M20070921-1145 Steps To Reproduce: 1. Run the code snippet below: 2. Four pieces of text are displayed, the first thre (using TextLayout) are not antiAliased More information: import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.FontData; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.graphics.TextLayout; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TextLayoutTest_System { final static String longString = "A string that is too long should be wrapped, but it would be nice to be Anti aliased."; public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Canvas canvas = new Canvas(shell, SWT.NO_BACKGROUND); FontData fd = new FontData("Verdana", 12, SWT.NORMAL); final Font ourFont = new Font(null, fd); final Color itemBackground = new Color(null, 156, 202, 248); final Color itemForeground = new Color(null, 56, 104, 152); final TextLayout layout = new TextLayout(canvas.getDisplay()); layout.setText(longString); layout.setFont(ourFont); canvas.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { Rectangle client = canvas.getClientArea(); layout.setWidth(client.width); // Option A - Top Quarter of Screen == Off Screen Bitmap Rectangle rectOptionA = new Rectangle(0, 0, client.width, client.height/4); Image imgOptionA = new Image(canvas.getDisplay(), rectOptionA); GC gcOptionA = new GC(imgOptionA); gcOptionA.setAdvanced(true); gcOptionA.setAdvanced(true); gcOptionA.setTextAntialias(SWT.ON); gcOptionA.setAntialias(SWT.ON); gcOptionA.setInterpolation(SWT.HIGH); gcOptionA.setBackground(itemBackground); gcOptionA.setForeground(itemForeground); gcOptionA.fillRectangle(rectOptionA); gcOptionA.setFont(ourFont); layout.draw(gcOptionA, rectOptionA.x, rectOptionA.y); e.gc.drawImage(imgOptionA, rectOptionA.x, rectOptionA.y); gcOptionA.dispose(); // Option B - Middle (Top) Quarter of Screen == Event GC Rectangle rectOptionB = new Rectangle(client.x, client.y + client.height/4, client.width, client.height/4); GC gcOptionB = e.gc; gcOptionB.setAdvanced(true); gcOptionB.setAdvanced(true); gcOptionB.setTextAntialias(SWT.ON); gcOptionB.setAntialias(SWT.ON); gcOptionB.setInterpolation(SWT.HIGH); gcOptionB.setBackground(itemBackground); gcOptionB.setForeground(itemForeground); gcOptionB.fillRectangle(rectOptionB); gcOptionB.setFont(ourFont); layout.draw(gcOptionB, rectOptionB.x, rectOptionB.y); // Option C - Middle (Bottom) Quartyer of Screen == Canvas GC Rectangle rectOptionC = new Rectangle(client.x, client.y + 2 * client.height/4, client.width, client.height/4); GC gcOptionC = new GC(canvas); gcOptionC.setAdvanced(true); gcOptionC.setAdvanced(true); gcOptionC.setTextAntialias(SWT.ON); gcOptionC.setAntialias(SWT.ON); gcOptionC.setInterpolation(SWT.HIGH); gcOptionC.setBackground(itemBackground); gcOptionC.setForeground(itemForeground); gcOptionC.fillRectangle(rectOptionC); gcOptionC.setFont(ourFont); layout.draw(gcOptionC, rectOptionC.x, rectOptionC.y); gcOptionC.dispose(); // Option D - Bottom Quarter of Screen == Off Screen Bitmap --> This IS Antialiased, but not wrapped Rectangle rectOptionD = new Rectangle(0, 0, client.width, client.height/4); Image imgOptionD = new Image(canvas.getDisplay(), rectOptionD); GC gcOptionD = new GC(imgOptionD); gcOptionD.setAdvanced(true); gcOptionD.setAdvanced(true); gcOptionD.setTextAntialias(SWT.ON); gcOptionD.setAntialias(SWT.ON); gcOptionD.setInterpolation(SWT.HIGH); gcOptionD.setBackground(itemBackground); gcOptionD.setForeground(itemForeground); gcOptionD.fillRectangle(rectOptionD); gcOptionD.setFont(ourFont); gcOptionD.drawString("This text is AntiAliased, but not Wrapped", rectOptionD.x, rectOptionD.y, true); e.gc.drawImage(imgOptionD, client.x, client.y + 3 * client.height/4); gcOptionA.dispose(); } }); shell.setSize(100, 600); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); ourFont.dispose(); itemBackground.dispose(); itemForeground.dispose(); layout.dispose(); } } | resolved fixed | 4f652c6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-30T15:15:40Z" | "2008-07-29T16:46:40Z" |
97,496 | Bug 97496 Table: setBackground is not deferred by setRedraw(false) | 3.1RC1 - run the snippet at the bottom - click on the shell and Table.setRedraw(false) is invoked - click on the shell again and Table.setBackground(green) is invoked. This clears the entire table, including the header, to green. It seems like this should do nothing because of the previous setRedraw(false) - click on the shell again and Table.setRedraw(true) is invoked: now the header and table contents reappear public class Main { static int counter = 0; public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,300,300); final Table table = new Table(shell, SWT.NONE); table.setBounds(10,10,200,200); table.setHeaderVisible(true); table.setLinesVisible(true); new TableItem(table, SWT.NONE).setText("abc"); shell.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { if (counter == 0) { System.out.println("setRedraw(false)"); table.setRedraw(false); counter++; return; } if (counter == 1) { System.out.println("setBackground(green): everything disappears"); table.setBackground(display.getSystemColor (SWT.COLOR_GREEN)); counter++; return; } if (counter == 2) { System.out.println("setRedraw(true), everything reappears"); table.setRedraw(true); counter++; return; } System.out.println("nothing left to do"); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | d8985a1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-29T18:17:57Z" | "2005-05-31T14:33:20Z" |
241,671 | Bug 241671 Mouse cursor disappears in editor and gets progressively slower coming back | Build ID: 3.4.0 (I20080617-2000) Steps To Reproduce: It is standard behavior on OS X that the mouse cursor disappears while typing. However, after using Eclipse for a little while (in this case it was an hour that I started noticing it), the mouse cursor does not immediately reappear on mouse move, but takes about a second or so to come back. This can be really disconcerting. I have verification of this behavior from two other people, as well. More information: Incidentally, I was afraid this might be related to my Mac refresh provider causing slowdowns in the kernel, so I pulled it out just in case, and I get the same behavior. | resolved fixed | 5664dff | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-29T14:46:31Z" | "2008-07-22T15:20:00Z" |
242,003 | Bug 242003 Image buffer is allocated twice unnecessarily | - happens on all platforms except win32 - Image buffer gets allocated twice unnecessarily: Image.getImageData() { if (isDisposed()) SWT.error(SWT.ERROR_GRAPHIC_DISPOSED); int width = OS.CGImageGetWidth(handle); int height = OS.CGImageGetHeight(handle); int bpr = OS.CGImageGetBytesPerRow(handle); int bpp = OS.CGImageGetBitsPerPixel(handle); int dataSize = height * bpr; byte[] srcData = new byte[dataSize]; OS.memmove(srcData, data, dataSize); PaletteData palette = new PaletteData(0xFF0000, 0xFF00, 0xFF); ImageData data = new ImageData(width, height, bpp, palette); data.data = srcData; .... } new ImageData(width, height, bpp, palette) { ... ImageData(...) .... setAllFields( ..... data != null ? data : new byte[bytesPerLine * height], ..... ); } } | resolved fixed | 0658222 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-28T20:10:56Z" | "2008-07-24T17:20:00Z" |
232,688 | Bug 232688 Shell.setActive() is not implemented | null | resolved fixed | 8435be4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-28T15:23:58Z" | "2008-05-18T08:40:00Z" |
241,443 | Bug 241443 [Button] Paint event missed on traversal | null | resolved fixed | 1501c9b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-24T21:49:56Z" | "2008-07-18T22:26:40Z" |
242,030 | Bug 242030 Filter in SWT.Paint event not delivered for table, tree and composite | I observed this while debugging something else. Test code to follow. | resolved fixed | 0aad010 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-24T21:45:11Z" | "2008-07-24T20:06:40Z" |
241,144 | Bug 241144 SWT deletes libswt-cairo-motif if libcairo isn't found | Build ID: M20080221-1800 Steps To Reproduce: 1. Compile all the SWT libraries, including libswt-cairo-motif (which requires libcairo to be present) 2. Remove libcairo or make sure your SWT run won't find it. 3. Run a snippet like Snippet10 which will fail with an error because it can't find libcairo. Make sure it is using the new SWT libraries (-Dswt.library.path should be set). 4. Notice that it deleted the libswt-cairo-motif library you built earlier. More information: Although I've seen this problem on AIX with Motif, it may affect other platforms as well. | resolved fixed | e70f7d5 | ["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 | "2008-07-23T17:06:18Z" | "2008-07-16T20:26:40Z" |
236,724 | Bug 236724 [Browser] Eclipse causes JVM crash in libxul when editing Java | null | resolved fixed | 282f74d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-22T21:00:25Z" | "2008-06-11T18:46:40Z" |
240,817 | Bug 240817 SWT Tree: in 3.4, DragSourceEvent gives higher x-coordinate than in 3.3 | null | resolved fixed | d9d246e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/common/org/eclipse/swt/dnd/DNDEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-22T19:00:16Z" | "2008-07-15T13:53:20Z" |
241,720 | Bug 241720 Padding wrong when vertical lines displayed in Tree and Table | Using GTK 2.12, setLinesVisible () will now display vertical lines. The padding for the text in each column needs to be adjusted to compensate for the new lines. | resolved fixed | ec148bf | ["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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-22T18:19:24Z" | "2008-07-22T18:06:40Z" |
241,380 | Bug 241380 Ctrl+N doesn't work in the internal browser view | Build ID: I20080617-2000 Steps To Reproduce: 1. Open the internal Web Browser View 2. Open google.com 3. Press CTRL+N: nothing happens. In Eclipse 3.3 ( I20070621-1340) the New-Wizard was opened. I expect the same behaviour in 3.4 More information: | resolved fixed | 6c4ffa7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-21T19:32:25Z" | "2008-07-18T11:20:00Z" |
241,490 | Bug 241490 GC.setAlpha() / GC.getAlpha() does not work properly on Linux | null | resolved fixed | a3cc51f | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-21T17:57:53Z" | "2008-07-21T06:00:00Z" |
240,190 | Bug 240190 OSX: TabFolder Images not shown if setImage before setText or setControl | null | resolved fixed | 850349f | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TabItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-17T14:05:01Z" | "2008-07-09T16:13:20Z" |
84,552 | Bug 84552 The image of a checked action in a menu of a pulldown action is not displayed | When one checks the action in a menu of a pulldown action, the image of the action is not displayed under Linux GTK whereas under Windows the image is displayed | resolved fixed | 2f33060 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-09T21:24:58Z" | "2005-02-07T09:53:20Z" |
239,482 | Bug 239482 SWT.VIRTUAL Table Freezes under 3.4 when dragging (DND) | null | resolved fixed | f623b20 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-09T19:26:04Z" | "2008-07-03T15:46:40Z" |
211,536 | Bug 211536 RTFTransfer not implemented; code demonstrating NSPasteboard attached | The org.eclipse.swt.dnd.RTFTransfer isn't implemented | resolved fixed | 4dbd09d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/ByteArrayTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/FileTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/HTMLTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/ImageTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/RTFTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TextTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/Transfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TransferData.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/cocoa/org/eclipse/swt/dnd/URLTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSArray.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSData.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableArray.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/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-09T18:51:35Z" | "2007-11-30T02:33:20Z" |
236,634 | Bug 236634 Cannot dismiss attribute type combo | Open the schema editor on UI schema ... org.eclipse.ui/schema/menus.exsd Select an attribute and try and change the type. The type changes (and the section fields get updated) but the combo box won't go away, and continues to push changes to the attribute section. I tried the combos in the PDE editor and they did not exhibit the same problem. PW | resolved fixed | 840ffc9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2008-07-08T18:53:17Z" | "2008-06-11T13:13:20Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.