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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
293,513 | Bug 293513 Text.getCaretPosition() returns 0 after setting text | After setting text on a Text, Text.getCaretPosition() always returns 0 even if the caret is really not in the 0 position. Looking at the code, here's my analysis: * Text.setText() calls Text.setEditText(), which sets selectionRange to null * Text.getCaretPosition() always returns 0 when selectionRange is null Version: 3.6.0 Build id: I20091027-0100 | resolved fixed | 79adf31 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-30T20:33:33Z" | "2009-10-27T21:46:40Z" |
292,281 | Bug 292281 Cheese over a fast view | I20091013 I triggered a synchronization and then opened the progress view as a fast view at the bottom of the screen (see screenshot). When I hover over the link shown in the progress dialog when the synchronization is over (and there was changes found during the sync), I get the cheese. | resolved fixed | 30ca87a | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-30T20:12:36Z" | "2009-10-14T14:20:00Z" |
72,905 | Bug 72905 [CTabFolder] does not gain focus | I have a CTabFolder which has a few CTabItems. Each CTabItem has a few widget controls (for example, texts and combos). If one of the widgets has the focus, then the tab can not gain focus by clicking on the title of the tab using mouse. However, the tab can get focus if I use TAB key to tab through. I do not see this problem with org.eclipse.swt.widgets.TabFolder. | resolved fixed | 5a45eee | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-29T15:32:07Z" | "2004-08-30T21:06:40Z" |
293,490 | Bug 293490 ControlExample is too wide on Cocoa. | We shorten the tab item text on carbon, but not on cocoa. | resolved fixed | dcae49c | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/ControlExample.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-27T19:16:15Z" | "2009-10-27T19:00:00Z" |
293,315 | Bug 293315 Internal browser cannot add exception for self-signed certificates in Linux | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729) Build Identifier: I20091020-0931 In Windows, the internal browser will give a yes or no prompt to let you accept the self-signed certificate, but in Linux, there is no such option and you are left with a blank page. If you use the external Firefox browser, there is an option to add an exception for this certificate, but you cannot do this with the internal browser. Reproducible: Always Steps to Reproduce: 1. Find a website that has a self-signed certificate 2. Open that website with the Eclipse internal browser | resolved fixed | 508b980 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptService2.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-26T19:52:15Z" | "2009-10-26T15:13:20Z" |
286,040 | Bug 286040 [Image Saving] o.e.swt.internal.image.PngEncoder is very slow on writing large images | Build ID: I20090611-1540 Steps To Reproduce: 1. ImageLoader.load() a large (e.g. 3000x3000) 24/32 bit image 2. ImageLoader.save() it as IMAGE_PNG 3. Watch the PNG encoder struggling for good 20 seconds on it More information: The main slowdown factor is that PngEncoder.writeImageData() is making 3-4(with alpha) writes to the output stream for each pixel. So with 10M pixel image it's 30M write() calls. The write() call overhead is pretty big, and by simply moving it out of the inner loop I managed to increase the encoder performance tenfold. Please see the patch. | resolved fixed | 2d52bf5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/PngEncoder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-26T18:50:18Z" | "2009-08-08T00:06:40Z" |
278,081 | Bug 278081 [OS X] Setting a slider thumb to the maximum range does not disable scrolling | This problem is unique to Mac OS X Cocoa. When setting the thumb value to the maximum range (or more), the slider should be grayed out as it is simply irrelevant - no scrolling can happen. This is the behavior on Windows, Linux GTK, and Mac OS X Carbon. In the new SWT Cocoa, the slider scroller still appears and fills the entire slider. This looks bad and breaks backward compatibility. The following snippet demonstrates the problem - On Cocoa - it will show a thumb which fills the entire slider. On other platform - the slider is automatically disabled. --------------------------- import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Slider; public class Snippet17b { public static void main(final String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Slider slider = new Slider(shell, SWT.HORIZONTAL); slider.setBounds(10, 10, 200, 32); slider.setMaximum(100); slider.setThumb(100); slider.setEnabled(false); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } } | resolved fixed | cd9f038 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Slider.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-23T15:19:15Z" | "2009-05-27T16:00:00Z" |
281,383 | Bug 281383 [Browser] Cookies cannot be set before the first Browser instance | null | resolved fixed | 16f3a6f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WebBrowser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-22T19:18:29Z" | "2009-06-24T19:00:00Z" |
274,432 | Bug 274432 Carbon:Calling shell fullscreen in fullscreen mode, normal window size is lost | Build ID: I20090428-0100 Steps To Reproduce: Problem seen only in Carbon. 1.Run the snippet below. 2.Set window to fullscreen by selecting the "fullscreen" button. 3.Click on the button again. 4.Try to bring the window to its original size by clicking on "normal screen" button. Shell returns from fullscreen mode, but not to its original size. public class Fullscreen { public static void main(String args[]) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new RowLayout()); Button b = new Button(shell, SWT.PUSH); b.setText("fullscreen"); b.setBounds(10, 10, 100, 30); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent s) { shell.setFullScreen(true); System.out.println("fullscreen"); } }); Button b1 = new Button(shell, SWT.PUSH); b1.setText("normal screen"); b1.setBounds(10, 10, 100, 30); b1.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e) { shell.setFullScreen(false); System.out.println("normal"); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } More information: Calling setFullScreen(true) when in fullscreen mode, overwrites the saved shell size. I'm not sure if it is a valid use case, but this case works fine in windows & gtk. | resolved fixed | d36a760 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-22T18:23:18Z" | "2009-04-29T21:20:00Z" |
235,554 | Bug 235554 sub-shell can't be invisible when the main shell be maximized | 1.run the "ShellDeactiveTest.java" application 2.click the "Click Me" button, it will show a context menu 3.click the maximize box on the main window. 4.the main window has been maximized, but the context menu can't be hidden 5.on windows. the application can run as expected, that is say when the main window be maximized, the context menu is hidden. | resolved fixed | 021f3d9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-22T18:20:35Z" | "2008-06-04T09:00:00Z" |
136,932 | Bug 136932 [CTabFolder] CTabItem messed up ToolTip | When a CTabItem has a tooltip, it often does not dispose of it properly. Using the snippet below, hover over the tab until the tooltip appears. Then, quickly move the mouse to the middle of the label. The tooltip will not go away, it will move to where the mouse it (and follow the mouse around as you move it around the label area). Furthermore, if you quickly moved the mouse to the button instead of the label, you will get the button's tooltip, but moving to the label changes the tooltip back to the CTabItem's tooltip. Moving the mouse slowly down from the tab area makes the tooltip go away correctly (which is why I say, "move the mouse quickly") This is on Mac only, and I've been seeing it on 3.2M6 and 3.2RC1. Snippet: final Display display = Display.getDefault(); final Shell shell = new Shell(display); FillLayout layout = new FillLayout(SWT.VERTICAL); layout.spacing = 5; shell.setLayout(layout); shell.setText("Test 2"); final CTabFolder tf = new CTabFolder(shell, SWT.FLAT); CTabItem ti = new CTabItem(tf, SWT.NONE); ti.setText("This is a CTabItem"); ti.setToolTipText("This is the ToolTip from CTabItem"); Composite composite = new Composite(tf, SWT.NONE); composite.setLayout(new FillLayout(SWT.HORIZONTAL)); ti.setControl(composite); Button btn = new Button(composite, SWT.PUSH); btn.setText("Button"); btn.setToolTipText("Button's Tooltip"); final Label l = new Label(composite, SWT.BORDER); l.setText("Label"); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); | resolved fixed | 449c08b | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-22T17:55:47Z" | "2006-04-16T12:20:00Z" |
290,568 | Bug 290568 [DND] JVM crash with "Invalid memory access" after calling dispose() in dragFinished() | User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: 20090619-0625 Trying to dispose a dragged composite in dragFinished() ends up in an "Invalid memory access" JVM crash. Happens with SWT versions 3.5 and M20090917-800 (both cocoa 64bit), using java 1.6 on OS X 10.5.8. Trying to dispose the parent of the dragged composite results in the same crash too. This doesn't happen on Linux (SWT 3.5 64bit, java 1.6, Ubuntu 9.04). I attached a test class and the crash dump. Reproducible: Always Steps to Reproduce: 1. Drag one composite onto the other 2. 3. | resolved fixed | b0ef442 | ["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 | "2009-10-21T17:34:00Z" | "2009-09-25T17:33:20Z" |
53,184 | Bug 53184 [ViewForm] View Toolbars should wrap right-aligned | When view toolbars must wrap to a new line because there are too many items for the view's width, the second etc. lines of toolbar items should also be aligned to the right. This follows the alignment of the original top line. The right-alignment would also decrase the distance to the buttons' new location after wrapping (which can be annoyingly far away when a view like "New Search" wraps because the title string becomes wider). | verified fixed | 81a6c1f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ViewFormLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-21T16:00:43Z" | "2004-02-26T15:40:00Z" |
292,333 | Bug 292333 ColorDialog always returns null on 64 bit Cocoa (or sometimes hangs and does not return) | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 GTB5 (.NET CLR 3.5.30729) Build Identifier: I20090917-0100 On Mac OS X (Snow Leopard, 64-bit Intel, running the 64-bit version of Eclipse), calling ColorDialog.open() will either always return null, or hang. Reproducible: Always Steps to Reproduce: 1. Use the 64-bit Eclipse on Snow Leopard on a 64-bit intel mac (naturally) 2. Call ColorDialog.open() 3. Get frustrated. | resolved fixed | bc304da | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-20T21:29:01Z" | "2009-10-15T01:26:40Z" |
211,983 | Bug 211983 Rollover tooltips don't appear in first column of owner-drawn Tables | I20071204-1547 Rollover tooltips don't appear for owner-drawn Tables. This can be seen in JDT table views (e.g. Types in the Java Browsing perspective), or in the ControlExample after adding a listener for the PaintItem event. | verified fixed | 7efd368 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-20T20:58:36Z" | "2007-12-05T10:20:00Z" |
72,872 | Bug 72872 CLabel should allow setting of hIndent and vIndent | CLable defines hIndent and vIndent to a fixed value (3). This prevents the widget from fitting into the Forms UI because it is displayed with margin and not in-line with other widgets (eg. "Label"). CLabel should have setters and getters for both values. | resolved fixed | 3eceed6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java", "examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CLabelTab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-16T18:14:21Z" | "2004-08-30T12:46:40Z" |
275,979 | Bug 275979 Group computeSize wrong | Build ID: I20090430-2300 Steps To Reproduce: 1. Install Cocoa version of Eclipse on Mac 2. Eclipse > Preferences, Plug-in Development, Target Platform 3. Click "Running Platform" line, then click"Edit..." 4. Click "Environment" tab Actual result: The group box at the bottom of the dialog, labeled "Java Runtime Environment," is laid out incorrectly: It is truncated at the bottom. The moment you begin to resize the dialog, it lays out correctly. See cocoa-screenshot.png. Expected result: Dialog lays out correctly, as it does if you run the Carbon version of Eclipse. See carbon-screenshot.png. | resolved fixed | 65c87a6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSBox.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/Group.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-16T16:54:25Z" | "2009-05-12T23:13:20Z" |
292,321 | Bug 292321 Reduce NSString garbage in NSAutoreleasePool | There are some place where we are putting a lot of NSString objects into the pool when we could be releasing them right away. | resolved fixed | 40cc649 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSString.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/IME.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-15T16:04:08Z" | "2009-10-14T22:40:00Z" |
291,486 | Bug 291486 [Browser] Browser widget crashes VM after failed Ctrl+L in hover | null | resolved fixed | 0b3d59f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-14T19:26:08Z" | "2009-10-06T14:40:00Z" |
292,187 | Bug 292187 NPE in OleClientSite on a clean Windows install | null | resolved fixed | 52ce1d2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-14T13:26:50Z" | "2009-10-13T18:53:20Z" |
291,788 | Bug 291788 [Widgets] Focus lost after F3 | I20091006-0800, Cocoa, Mac OS X 10.6.1 - Have a simple class like this: package p; public class C { static int fField; public static void main(String[] args) { fField= 1; } } - Set caret into reference to fField - Press F3 => Focus is lost. Caret does not blink any more. Pressing the Tab key about 11 times puts the focus back into the editor area. Same problem occurs after refactorings (e.g. extract local variable). Tried in I20090923-1538, and there it's working fine. | resolved fixed | 27f89c4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-13T15:28:59Z" | "2009-10-08T16:40:00Z" |
292,119 | Bug 292119 SWT Balloon ToolTip (title text) not displayed if text is too long - display bug | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: 3.5.1v20090826-0800 I'm using org.eclipse.swt.widgets.ToolTip objects to display some info messages. There exists a display bug in the tooltip if the title text set with setText("...") is too long (> 100 chars). 2 different display bugs: 1) the title text (setText) is too long and the message text (setMessage) is set, then the tooltip is displayed only with the message text and no title is shown. 2) the title text (setText) is too long and no message text (setMessage) is set for this tooltip, then the tooltip is displayed as very small empty tooltip - with border and background but no content. notes: * this happens on Windows 7 and Windows XP * the tooltip style (SWT.BALLOON or none) is irrelevant Reproducible: Always Steps to Reproduce: final ToolTip toolTip3 = new ToolTip(shell, SWT.BALLOON | SWT.ICON_INFORMATION); toolTip3.setText("Here is a message for the user. When the message is too long it shoudl wrap, but instead it is not displayed because it is too long!!!"); //toolTip3.setMessage("balloon tip with Title-text not displayed because too long"); // either set message (1) or not (2) toolTip3.setLocation(400, 400); Button button3 = new Button(shell, SWT.PUSH); button3.setText("Press for balloon tip: with only a too long Title-text and no message -> damaged display"); button3.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { toolTip3.setVisible(true); } }); | resolved fixed | 7e2e8eb | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-13T13:36:58Z" | "2009-10-13T07:46:40Z" |
288,964 | Bug 288964 [Browser] Registering a function has no effect on newly opened window | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 Build Identifier: 3.6M1 Functions registered on a new browser instance (set in an OpenWindowListener) cannot be called. Navigating seems to re-register the function but without any navigation, calling the function on the loaded page does not work. Reproducible: Always Steps to Reproduce: 1. Open a link using the native context menu of IE. 2. In the open window listener, set the browser instance to use on which we add a custom function. 3. Triggering that function has no effect. | resolved fixed | 11ef00f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-09T20:33:27Z" | "2009-09-09T18:13:20Z" |
277,355 | Bug 277355 [Browser-Mozilla] document.open() fails. | null | resolved fixed | 45ef213 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-09T17:17:30Z" | "2009-05-21T18:20:00Z" |
291,918 | Bug 291918 NSMenuItem does not clear title when attributed Title is cleared | read only Combo and MenuItem use setAttributedTitle to set their text, but the text is not getting cleared when the attributed title is set to empty string. | resolved fixed | 1b660f4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Combo.java", "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 | "2009-10-09T14:54:30Z" | "2009-10-09T14:53:20Z" |
291,724 | Bug 291724 Link widget has problems with mnemonics on GTK | null | resolved fixed | 0b2b02c | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-08T15:01:41Z" | "2009-10-08T11:06:40Z" |
291,726 | Bug 291726 "Gtk-CRITICAL **" messages when listening to events of Link widget | I20091006-0800 - ControlExample > Link - click the "Listen" checkbox Messages written to stderr: (SWT:25806): Gtk-CRITICAL **: file gtkentry.c: line 3534 (gtk_entry_get_text): assertion `GTK_IS_ENTRY (entry)' failed (SWT:25806): GLib-CRITICAL **: file gutf8.c: line 217 (g_utf8_strlen): assertion `p != NULL || max == 0' failed [.. repeated 5 more times ..] | resolved fixed | cc63730 | ["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 | "2009-10-08T14:44:39Z" | "2009-10-08T11:06:40Z" |
288,474 | Bug 288474 Saving a docx file fails silently due to not killing WINWORD process on close | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729) Build Identifier: M20090901-1530 Editing a docx in the in-place editor and saving appears to work, but after closing and reopening the file you will not see the changes made. If you check running processes, you will see WINWORD still running after closing the editor. If you manually kill the process after closing the editor, any changes made will be there when reopening the file. Reproducible: Always Steps to Reproduce: 1. Open a docx with in-place editor 2. Make changes and save 3. Close editor and reopen [changes will not be there] 4. Check running processes for WINWORD [still running] | resolved fixed | 8c113a4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-07T20:28:51Z" | "2009-09-03T15:00:00Z" |
291,209 | Bug 291209 [Widgets] Images on TableColumns are top-left justified instead of vertically centering like the sort arrows | User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9 Build Identifier: 3.5.1 GM In Cocoa SWT, if you setImage on a TableColumn, you end up with odd veritcal alignment. The sort arrow is positioned in the middle of the cell, but custom images are at y=0 and it looks goofy. Reproducible: Always | resolved fixed | 6bb8fc1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-06T20:04:29Z" | "2009-10-02T16:13:20Z" |
264,398 | Bug 264398 [Browser] Arrow_Down does not scroll after tabbing into Browser | I20090203-1200, was OK in 3.4.1 After a Browser widget got the keyboard focus, it sometimes does not react on the Arrow_Down (which should scroll down). This happens e.g. when I press F2 on a documented element in the Java editor and then try to scroll in the sticky Javadoc hover. It can also be reproduced in the ControlExample: - launch - with the mouse, click the 'Browser' tab - press the Tab key - press Arrow_Down => does not scroll any more As soon as I clicked into the Browser with the mouse, scrolling usually works. But then, Ctrl+(Shift+)Tab don't let me escape from the Browser any more. Tab without Ctrl seems to be fine to get out. | resolved fixed | 814aad6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-06T16:30:14Z" | "2009-02-10T18:20:00Z" |
291,307 | Bug 291307 Menu images (PNG) does not support semi-alpha-transparency on Windows Vista/7 | null | resolved fixed | e4496f7 | ["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 | "2009-10-05T20:43:32Z" | "2009-10-05T08:06:40Z" |
291,354 | Bug 291354 [Widgets] Windows 7: small indeterminate ProgressBar looks broken | I20090929-0800 on Windows 7. When the indeterminate ProgressBar is small (like in the Eclipse status bar) then it does not go to the end and hence looks broken. Test Case: 1. start SWT Control Example 2. switch to 'ProgressMonitor' tab 3. check style SWT.INDETERMINATE 4. make the progress bar narrow (same size as in the status line of the Eclipse workbench window) ==> the progress indication does not go to the end which looks broken. This looks fine on XP and Vista. Most likely a native issue but something we need to fix or workaround as it is very prominent in the status line of each Eclipse workbench window. Side note: the normal (non-indeterminate) Windows 7 progress bar seems to be more precise/accurate which makes it very visible if end values are not correctly set when an operation is finished (looks like the operation doesn't reach its end). That however, is a problem that has to get fixed on the client side. | verified fixed | edc6305 | ["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 | "2009-10-05T18:06:04Z" | "2009-10-05T13:40:00Z" |
289,752 | Bug 289752 Bidi: Ctrl+RightShift/Ctrl+LeftShift doesn't switch the StyledText orientation | User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727) Build Identifier: any On Windows platform one is able to change System Editor's (and not only) orientation by pressing Ctrl+RightShift/Ctrl+LeftShift. SWT Text widget due to being implemented by platform editor, sticks to this behaviour. Unfortunately SWT StyledText doesn't respect these (or any other) hot key combination, thus impeding its usability for Arabic/Hebrew customers. It worth noting in this context that eclipse Text Editor did respect these feature prior to year 2003 but such behaviour was complained after under defect 165089. Eclipse Text Editor is basd on SWT StyledText indeed, however even if the discussed behaviour has been desided to be disoraged for Text Editor, it still highly important to StyledText, on Bidi systems (i.e. system having Arabic or Hebrew keyboard installed). We are willing to contribute the code backing up discussed functionality. Reproducible: Always Steps to Reproduce: 1. Run SWT application having StyledText widget. 2. Press Ctrl+RightShift. 3. Result: Nothing happens in sense that widget's orientation doesn't chagne | resolved fixed | 72e3e81 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-05T18:02:18Z" | "2009-09-17T15:06:40Z" |
60,387 | Bug 60387 [Import/Export] Add 3rd Option for Export to File System | The servlet spec in the J2EE spec calls for a WEB-INF directory under the document root with a classes directory under that. I want to export my Java classes to this classes directory. Currently that is only possible if my project in Eclipse just happens to be named "WEB-INF". The two options currently available for exporting to the file system are: "Create directory structure for files" or "Create only selected directories" With the first option, there doesn't seem to be any way to select only directories from a top level package and lower. If a checkbox for a directory corresponding to a package is clicked, the checkboxes for the directories about it - including the project directory - are also filled in with gray checkmarks. During the export, the project directory is (unwillingly in my case) created. So what one ends up with when one attempts to export to the classes directory is: doc-root WEB-INF classes Project_Name top-level-package sub-package sub-package class class I have to manually open the Project_Name folder in the above hierarchy, cut the top-level-package, go up a level, paste it where it belongs under classes, and then deleted the unwanted Project_Name directory. The second option just dumps all the classes into one directory, so unless I only use a single package in my project or export the classes separately for each package (even more unworkable than the above cut-and-paste), this option can't be used. This problem is THE single biggest impediment to my efficient use of Eclipse. SUGGESTION: Add a 3rd option, similar to the first: "Create directory structure for files without project directory" Or, it could be made even more general: "Create directory structure for files with only explicity selected directories" In the first variant, just the project directory itself is left out, and the export is from the top level directory under the project on down. This would work fine with exports where the target is the WEB-INF/classes directory. Nothing in the UI would have to be changed beyond adding the option. In the second variant, only directories with *black* checkmarks (and below), not gray implicitly marked ones above, are exported to the target directory. In the case of Java classes, one could export to target subpackages. This raises an issue however of how to allow the user to select directories and files to be exported. Currently, selecting a file implicity selects all the directories above it, filling in the checkboxes with gray checkmarks, and selecting a directory explicity selects all directories and files below it. The user would have to select a directory first, and then unselect the directories and files below it that he/she didn't want, which would be tedious. It would be useful if there were some way to select a given file, then mark the directory above it from which level the directories should be created, say by right-clicking the checkbox, or holding down the shift key while clicking it, such that it turns black - creating a chain to already selected files, but doesn't force select other stuff beneath it. | resolved wontfix | 056762a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WebBrowser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/forms/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/photon/org/eclipse/swt/browser/Voyager.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/wpf/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/InputStream.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIMIMEInputStream.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableURLRequest.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/WebView.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/SAFEARRAY.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/SAFEARRAYBOUND.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-02T20:58:07Z" | "2004-04-29T09:13:20Z" |
291,229 | Bug 291229 KeyEvent#stateMask also contains mouse buttons | HEAD (but problem is not new) The KeyEvent#stateMask field also contains mouse buttons, but its Javadoc only tells about "keyboard modifier keys". It also mentions "key code constants", but e.g. SWT#CTRL says it's an "event mask". I would add these references to make it clear what masks are meant: * @see org.eclipse.swt.SWT#MODIFIER_MASK * @see org.eclipse.swt.SWT#BUTTON_MASK | resolved fixed | 9b206a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/events/KeyEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/events/MouseEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/widgets/Event.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-02T18:46:49Z" | "2009-10-02T16:13:20Z" |
204,582 | Bug 204582 Mac - manually added external editors fail to launch | null | resolved fixed | 7796d3e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/carbon/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-01T21:46:24Z" | "2007-09-25T17:06:40Z" |
280,277 | Bug 280277 possible leak in FileDialog | From the newsgroup, should be investigated: I'm debugging my mixed Java/C++ application and trying to eliminate memory leaks. I'm using the leaks(1) tool in Mac OS X, and I can see a growing number of leaked NSCFArray and AEListImpl objects. The stack traces show they were all created in the Java_org_eclipse_swt_internal_carbon_OS_NavDialogRun function call. I'm using Carbon SWT (3.4.1.v3452b); is this problem known/spurious/benign? | resolved wontfix | e69ccdf | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/carbon/org/eclipse/swt/program/Program.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-10-01T21:21:51Z" | "2009-06-15T15:33:20Z" |
291,030 | Bug 291030 Repaint cheese with RTL scrollable in bottom left corner | null | resolved fixed | 6384119 | ["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 | "2009-10-01T20:54:07Z" | "2009-10-01T12:26:40Z" |
290,759 | Bug 290759 Shell.setEnabled(false) not implemented on Cocoa | null | resolved fixed | a5a51bc | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-29T20:44:23Z" | "2009-09-28T23:20:00Z" |
278,132 | Bug 278132 icons with overlays become faded in appearance | Take a look at the attached screenshot. Icons with no overlay appear in their original color, whereas those that have an overlay become faded. Version: 3.5.0 Build id: I20090522-1710 | resolved fixed | 370cf15 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-29T14:13:56Z" | "2009-05-27T21:33:20Z" |
289,612 | Bug 289612 [SWT/AWT] JLabel in Snippet319 does not appear | using SWT from HEAD, 32-bit Cocoa, on OSX 10.5.8 - run Snippet319 - there should be a a JLabel under the swt Label, but it's not there -> the JLabel does appear on the other platforms | resolved fixed | bd52a40 | ["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 | "2009-09-29T04:45:39Z" | "2009-09-16T14:06:40Z" |
290,635 | Bug 290635 [SWT_AWT] NPE when disposing the embedded Shell | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: N20090923-2100-cocoa-macosx-x86_64 Disposing the embedded Shell works fine on other platforms. With the new Mac OSX Cocoa port, a null pointer exception is thrown when this Shell is disposed. In the context of our application, this effectively makes it crash. Reproducible: Always Steps to Reproduce: 1. Embed an SWT control in a Swing/AWT application. 2. Dispose the embedded Shell based on a user action. => get the NPE. | resolved fixed | a4b9a68 | ["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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-28T23:00:02Z" | "2009-09-26T21:20:00Z" |
228,695 | Bug 228695 Measure event always comes before an Erase/Paint event on Mac and Windows, but not on GTK | Run the attached snippet on GTK and observe how the items don't look right after moving over them with the mouse, or after scrolling. They are supposed to look like: 000 111 222 333 etc. The snippet works on Windows and the Mac. It caches a TextLayout object in MeasureItem and uses it in PaintItem. | resolved fixed | f29c810 | ["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 | "2009-09-24T20:58:01Z" | "2008-04-24T15:13:20Z" |
232,560 | Bug 232560 Icons disappear in PackageExplorer when mouse is over an item | When the mouse moves over an item in the PackageExplorer, the icon of the item in the tree disappears. This only appears to happen on linux-gtk-ppc. | resolved fixed | b4953cb | ["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 | "2009-09-24T20:02:45Z" | "2008-05-16T17:46:40Z" |
279,408 | Bug 279408 [Browser]Can't visit sharing folder in internal browser if path depth>2 | Build ID: I20080617-2000 Steps To Reproduce: Open internal browser, try to visit a sharing folder in another machine: e.g. input url "file://<machine ip>/<folderA>/<folderB>/<folderC>" in browser. There will be no authorization dialog prompt up to let user input username and password, and internal browser will tell user "This program cannot display the webpage" after hang a few minutes. But if the path depth < 2, e.g. visit file://<machine ip> or file://<machine ip>/<folderA>, everything will be ok. More information: I'm in windows XP Service Pack 3 with Internet Explorer 7.0.5730.11. | resolved fixed | 1558841 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-24T19:03:13Z" | "2009-06-08T05:46:40Z" |
142,593 | Bug 142593 Scrolling a table eventually locks up the entire application | I have a table created with the following attributes: SWT.VIRTUAL | SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION The table has thousands of rows in it and about a dozen columns. The data in the table changes rapidly. When I scroll the table by dragging the scroll bar up and down, the scrolling and the entire application will eventually lock up: if you drag the scroll bar up and down repeatedly without letting go the table will eventually stop moving with it and all other processing in the SWT thread will stop. If you let go of the scroll bar, the application recovers. The SWT thread stack trace always looks very much like this (the top level method is always the same) when the application is stuck in this fashion: "SwtThread" prio=5 tid=11 Runnable at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1580) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:197) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:142) at org.eclipse.swt.widgets.Composite.WM_SYSCOMMAND(Composite.java:1315) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3110) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3751) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1580) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:197) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:142) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3123) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3751) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1656) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2756) at com.hb.gui.api.swt.SwtFactory$SwtRunnable.run(SwtFactory.java:738) at java.lang.Thread.run(unknown source) When the table is locked up, the scroll bar continues to respond and to move up and down, but the table stops following it altogether. It usually takes about a dozen scrolls in rapid fashion to achieve this behavior. It always happens eventaully. | resolved fixed | 2ef2e70 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-24T18:58:32Z" | "2006-05-18T19:20:00Z" |
290,320 | Bug 290320 SWT overrides LSUIPresentationMode in Info.plist | In cocoa and carbon, Shell.updateSystemUIMode() resets the UI mode to kUIModeNormal overwriting the Info.plist setting. | resolved fixed | 404220e | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-24T15:54:49Z" | "2009-09-23T21:06:40Z" |
290,397 | Bug 290397 Accessible not compiling in HEAD (win32.86_64) | null | resolved fixed | fe058a0 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-24T13:05:03Z" | "2009-09-24T11:00:00Z" |
290,216 | Bug 290216 [Build] Compile warnings in official build | I20090922-0800 and latest N-build. org/eclipse/swt/awt/SWT_AWT.java (at line 21) import org.eclipse.swt.internal.cocoa.*; The import org.eclipse.swt.internal.cocoa is never used org/eclipse/swt/widgets/Shell.java (at line 13) import java.util.*; The import java.util is never used org/eclipse/swt/widgets/Shell.java (at line 16) import org.eclipse.swt.awt.*; The import org.eclipse.swt.awt is never used | resolved fixed | 8eb7584 | ["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 | "2009-09-23T14:49:30Z" | "2009-09-23T07:13:20Z" |
290,240 | Bug 290240 Link.setText doesn't reset the anchor | (1) call link.setText("<a>some text</a>"); The link is shown in blue color with the underline (2) now call link.setText("some text"); The link is still shown the same way although it doesn't have the anchor. It works fine if you reverse the order of the calls - the link is not displayed first and then displayed after the second call. Lakshmi found that it works fine in Windows & Carbon. So its a Cocoa only bug. | resolved fixed | eeeaec4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-23T13:14:37Z" | "2009-09-23T10:00:00Z" |
290,204 | Bug 290204 Use GTK_STOCK_CLEAR instead of GTK_STOCK_CANCEL for Text ICON_* hinting support | null | resolved fixed | f4dfb4b | ["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/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-23T12:58:33Z" | "2009-09-23T01:40:00Z" |
290,125 | Bug 290125 javadoc error in N20090921-2000 | /builds/N200909212000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java:8607: warning - @param argument "tabStop" is not a parameter name. 1 warning | resolved fixed | b6bab5d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-22T13:22:50Z" | "2009-09-22T11:46:40Z" |
287,234 | Bug 287234 [DND] drag/drop onto empty table generates exception in SWT | null | resolved fixed | b0fe84d | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T20:31:14Z" | "2009-08-20T20:26:40Z" |
289,401 | Bug 289401 [Widgets] Black screen in windows 7 aero mode using Tracker | Hi, I didn't want to open a ticket with a Major severity, but this one is pretty bad. I'm not sure if this is happening on Vista aero mode as well, but it is definitely happening consistently on Windows 7 aero mode. We have an SWT app (currently running SWT 3.4 on windows 7. SWT 3.5 has the same problem). The application is kind of like a graphical editor. I'm using a Tracker object to place an object on the screen after selecting the object they want to place. So, after they hit OK on a dialog, I create the tracker on the composite, and have it draw a rectangle a certain size as they move the mouse. When they click on the composite, the tracker ends, and I place the object on the screen at that location. When the code calls tracker.open(), the whole screen turns black. I can still see the mouse cursor, but the screen is entirely black. Once I click on the composite, and the tracker.open() returns, the screen returns to its normal view. My code is pretty simple... Tracker tracker = new Tracker(compositeClientArea, SWT.NONE); tracker.setStippled(true); tracker.setCursor(BaseView.getMoveCursor()); //scale image width/height based on zoom mode zoomPointTemp.x = width; zoomPointTemp.y = height; ImageRotationCache.zoomImageSize(zoomPointTemp, getZoomableAdapter().getZoomLevel()); //set starting rectangle Rectangle rectStart = new Rectangle(0, 0, zoomPointTemp.x, zoomPointTemp.y); final Rectangle[] rects = new Rectangle[1]; rects[0] = rectStart; tracker.setRectangles(rects); tracker.addListener(SWT.Move, new Listener() { ... } if (!tracker.open()) .... When I switch to windows 7 basic mode, everything works fine. Also of note, I have 2 monitors on my development machine. This is kind of the wierd part. If I move the app to the second monitor, and initiate the tracker, the main primary monitor still turns black, but the second monitor shows the app fine, and I can see the whole operation. Not sure if this is related to two monitors or not... Any ideas what's going on? Thanks, Joe | resolved fixed | 18fa841 | ["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 | "2009-09-21T19:08:08Z" | "2009-09-14T23:13:20Z" |
289,244 | Bug 289244 [Graphics] GDI+ drawText is not consistent with GDI | null | resolved fixed | 63863d9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T18:57:03Z" | "2009-09-11T17:26:40Z" |
277,714 | Bug 277714 Cocoa: click and hold to scroll up scrolls down | 1. Open a long file and scroll somewhere near the middle of the file. 2. Click and hold in the area of the scrollbar above the slider. Expected: page-wise scrolling up Actual: page-wise scrolling up once, then down as long as you hold the mouse button down. | resolved fixed | b410448 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSScroller.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/ScrollBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T18:45:45Z" | "2009-05-25T16:46:40Z" |
84,620 | Bug 84620 [browser] onbeforeunload not sent when browser disposed | null | resolved fixed | b4926c8 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptService2.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T15:35:08Z" | "2005-02-07T21:00:00Z" |
202,414 | Bug 202414 Link widget has problems with mnemonics | R3.3 and I20070529-0010. Links.setText(String) claims it allows mnemonics. I added one into the normal text and I also tried to put one into the link text (i.e. between <a> and </a>) but they are only rendered in the UI but not usable i.e. neither is the link opened nor the widget is getting focus. Another issue is that the underscore (_) of the mnemonic is always rendered and not just when being activated via 'Alt' key. Test Case: 1. go to Package Explorer 2. view menu > Top Level Elements > Working Sets 3. select a folder 4. context menu > Assign Working Sets... | verified fixed | b2239f4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T14:43:16Z" | "2007-09-06T09:13:20Z" |
289,470 | Bug 289470 [Browser] setText() fails when current content came from setText() | The snippet below does not work because DocumentComplete is not received for the second about:blank navigation. Not sure if the asyncExec() should be needed or not. static int counter = 0; public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10,10,200,200); shell.setLayout(new FillLayout()); final Browser browser = new Browser(shell, SWT.NONE); browser.setText(createPage()); shell.open(); browser.addLocationListener(new LocationAdapter() { public void changing(LocationEvent event) { event.doit = false; display.asyncExec(new Runnable() { public void run() { String string = createPage(); System.out.println("setting page text to: " + string); browser.setText(string); } }); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } static String createPage() { return "<html><body><a href=\"link" + counter + "\">I am link " + counter++ + "</a></body></html>"; } | resolved fixed | ac8aa4e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T14:29:21Z" | "2009-09-15T13:06:40Z" |
289,467 | Bug 289467 [64] index out of bounds in Region | on 64 bit cocoa, call Region.add(new int[] {1,2,3}); get an exception. | resolved fixed | e115a16 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/Region.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T14:17:41Z" | "2009-09-15T13:06:40Z" |
288,506 | Bug 288506 [Widgets] DirectoryDialog should show hidden files | null | resolved fixed | 9b0cd40 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T14:10:38Z" | "2009-09-03T15:00:00Z" |
279,356 | Bug 279356 StyledText: non-uniform tabstops on different lines | null | resolved fixed | 7abe340 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextListener.java", "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 | "2009-09-21T13:58:54Z" | "2009-06-06T20:26:40Z" |
148,532 | Bug 148532 Disabled ToolItem with Text and Image gets cut-off | Eclipse 3.2 Check this Snippet: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Image img = new Image(display, 16, 16); ToolBar bar = new ToolBar(shell, SWT.NONE); final ToolItem item = new ToolItem(bar, SWT.NONE); item.setText("Register Account"); item.setImage(img); Button b = new Button(shell, SWT.NONE); b.setText("Click Me!"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { item.setEnabled(!item.isEnabled()); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } Steps to reproduce: Click the Button Actual Results: The ToolItem changes from "Register Account" to "Register" Expected Results: The ToolItem keeps showing "Register Account" Ben | resolved fixed | 831ce80 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-21T13:44:45Z" | "2006-06-24T11:53:20Z" |
289,974 | Bug 289974 SWT.MouseWheel Javadoc should mention that it is for vertical wheel | 3.6 M2. Since we now have SWT.MouseVerticalWheel and SWT.MouseHorizontalWheel, SWT.MouseWheel's Javadoc should mention that it is for the vertical wheel and maybe even deprecated it or at least recommend to use SWT.MouseVerticalWheel in the code. | verified fixed | 98713c9 | ["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 | "2009-09-21T13:43:51Z" | "2009-09-21T08:00:00Z" |
275,070 | Bug 275070 unused code in GC#setClipping | null | resolved fixed | ce083aa | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-11T16:27:13Z" | "2009-05-05T21:46:40Z" |
133,133 | Bug 133133 [Bidi] Numeral contextual behavior is not respected in eclipse editors | Build date: m5a OS: all Steps to recreate problem: 1. Create a new file (Go to file -> New -> File and follow the wizard to create it). 2. Double click on the file to open it. 3. Write an Arabic word and then write some numbers. Expected output: Numbers are represented in National digits. Actual output: Numbers are represented in Nominal digits Remark: This happens in all editors. | resolved fixed | a57bc57 | ["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 | "2009-09-11T16:08:23Z" | "2006-03-24T11:33:20Z" |
288,857 | Bug 288857 GDI Handle Resource Leak | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 Build Identifier: I20090611-1540 If you run the attached program and a tool that monitors GDI handles (either taskman with the 'GDI Handles' column added or procexp.exe), you will find that it leaks GDI handles pretty quickly. The attachment is a very cut down version of a shipping program that was crashing in the field with a 'No More Handles' error. Using Sleak, I found a couple that were mine, but it was still crashing. I eventually got down to this, and I can't seem to reduce it any more without 'plugging' the leak. In the code, there are lines marked "**X" where X is 1-4. By commenting out all the lines marked either 1, 2, 3 or 4 together, the leak stops. Reproducible: Always Steps to Reproduce: 1. Compile attachment and use SWT 3.5 2. run taskman with the GDI Handles column added in the 'processes' tab 3. run the program 4. Note increasing number of GDI handles leaked (9-10 for every taskman update - appears to be 1 handled leaked per paint call) Please note that while advanced graphics is not required for the features of this program, it is required in the original application, and removing it stops the leak. It seems to be an interaction of a number of those lines, as you will see when you look at the various combinations of lines that stop the leak when commented. | resolved fixed | 6e8b160 | ["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 | "2009-09-11T14:43:11Z" | "2009-09-08T20:00:00Z" |
289,219 | Bug 289219 Program.findProgram("txt") returns null on Snow Leopard | findProgram does some extra work for text edit in order to be sure that the app knows how to handle the extension. On Snow Leopard the TextEdit plist file has changed and the extra checking fails. Using LaunchServices code directly (like Carbon port) works correctly. | resolved fixed | 80def70 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSURL.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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-11T14:37:33Z" | "2009-09-11T14:40:00Z" |
287,307 | Bug 287307 [Widgets] [GTK2.18] Control.setZOrder broken on Gtk+ >= 2.17.3 | null | resolved fixed | d569a8e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-10T21:04:17Z" | "2009-08-21T15:53:20Z" |
277,072 | Bug 277072 onbeforeunload dialog is not displayed | null | resolved fixed | 52b84ff | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WebBrowser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-10T19:51:34Z" | "2009-05-20T09:00:00Z" |
288,856 | Bug 288856 [Browser] dialog is not shown in response to returned string from onbeforeunload JS event | null | resolved fixed | 328b563 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-08T19:21:25Z" | "2009-09-08T20:00:00Z" |
288,452 | Bug 288452 TextLayout renders underlines badly when antialias is on | User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; fr; rv:1.9.0.13) Gecko/2009080315 Ubuntu/9.04 (jaunty) Firefox/3.0.13 Build Identifier: I20090611-1540 When using antialias and rendering underlines, the line instead of being crisp is washed instead of being crisp. This does not happen on earlier versions neither it doesn't happen on Linux or Mac OS X for the same version. See this screenshot and the snippet for more details. Reproducible: Always | closed fixed | 17e8a7d | ["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 | "2009-09-03T16:09:16Z" | "2009-09-03T12:13:20Z" |
288,480 | Bug 288480 Label creates SWTView that it doesn't register. | Should either register the view, or use an NSView | resolved fixed | fac69d0 | ["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 | "2009-09-03T14:41:57Z" | "2009-09-03T15:00:00Z" |
281,695 | Bug 281695 Incorrect loading of cursors from custom PNG images on Windows. | null | resolved fixed | 845cd36 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Cursor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-09-01T20:13:42Z" | "2009-06-26T18:13:20Z" |
283,217 | Bug 283217 Can't print Image with alphas with transparent pixel unspecified | null | resolved fixed | 1f2f75e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-31T21:53:08Z" | "2009-07-11T05:26:40Z" |
288,146 | Bug 288146 Can't apply a patch via a wizard | Build id: N20090829-2000 1. Open an Apply Patch Wizard 2. Copy a valid patch into the clipboard 3. Select Clipboard as the patch location and click Next Result: 4. The wizard freezes and can only be closed by 'x' button 5. After closing the wizard two exceptions are logged This failure was exposed by DNFs in compare tests in few recent N-builds. After some investigation I assume it's caused by recent changes in SWT. I mean build I20090818-0800 work fine, the same build with compare from HEAD works fine too. Adding SWT from HEAD to that configuration makes the problem appear. I'll attach log entries shortly. However they probably don't convey to much information. | resolved fixed | 2fb2715 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-31T18:49:10Z" | "2009-08-31T14:46:40Z" |
287,495 | Bug 287495 [Graphics] ArrayIndexOutOfBoundsException scaling PNG | null | resolved fixed | 16fd572 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/PNGFileFormat.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-31T15:47:57Z" | "2009-08-24T21:40:00Z" |
284,858 | Bug 284858 [Widgets] TableColumn.pack() results in a table that does not fit the header on SWT cocoa | null | resolved fixed | 51f2135 | ["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 | "2009-08-28T21:39:34Z" | "2009-07-28T14:06:40Z" |
287,665 | Bug 287665 [Widgets] SWT.SHEET and non responsive file and directory dialogs on Mac OS X | On Mac OS X, if an application is using MessageBox, created with style bit SWT.SHEET, and once such a MessageBox is created and displayed (and closed afterwards), any subsequently created FileDialog (or DirectoryDialog) becomes unresponsive in a sense, that it can not be closed by clicking on OK or Cancel Button, or by double-clicking on the file user wants to select. Steps to reproduce this bug: - create a Shell, - create and open a MessageBox with style SWT.SHEET, - close this MessageBox, - create and open a FileDialog or a DirectoryDialog (it doesn't matter if it is created with SWT.SHEET or not), - select a file (or directory) and press OK or Cancel button - the dialog won't close and selected file/directory can't be obtained from it. | resolved fixed | 926491b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-26T19:15:39Z" | "2009-08-26T09:46:40Z" |
287,694 | Bug 287694 [Widgets] Spinner.setIncrement() throwing ArithmeticException for divide by zeros | null | resolved fixed | 04535a9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-26T15:46:10Z" | "2009-08-26T12:33:20Z" |
218,562 | Bug 218562 NPE when dispose before shell is opened | - run the snippet below, and you'll get the error at the bottom public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setBounds(10,10,200,200); shell.addListener(SWT.FocusIn, new Listener() { public void handleEvent(Event event) { shell.dispose(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.widgets.Decorations.restoreFocus(Decorations.java:806) at org.eclipse.swt.widgets.Decorations.WM_SETFOCUS(Decorations.java:1706) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3844) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1555) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1891) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4460) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2328) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:456) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3866) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1555) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1891) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4460) at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method) at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:228) at org.eclipse.swt.widgets.Shell.open(Shell.java:1116) at win32.Main.main(Main.java:20) | resolved fixed | 15fe1ff | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-25T15:41:46Z" | "2008-02-11T22:46:40Z" |
278,886 | Bug 278886 [Widgets] setBackgroundMode not working on Text | Setting background to null on a text field does not result in transparency. I'll attach a screenshot to illustrate the problem. | resolved fixed | 65a280d | ["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/NSTextView.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/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/DateTime.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/Link.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/Scrollable.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/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 | "2009-08-24T20:44:42Z" | "2009-06-03T00:46:40Z" |
287,149 | Bug 287149 [Widgets] FileDialog can not open a directory correctly on linux gtk swt | Build ID: I20090611-1540 Steps To Reproduce: 1. write a swt example on linux platform with code like this FileDialog fileDialog=new FileDialog(Display.getDefault().getActiveShell(),SWT.OPEN); fileDialog.setFileName("/tmp"); fileDialog.open(); 2. run this example ,you will see File dialog opened and select "tmp" directory . BUT NOT GO INTO THE TMP directory. More information: checked windows , its ok. I am using gtk32 bit linux, gtk 64bit not checked, gtk 64 may have same problem. root cause is: line 534 of FileDialog.java always invoke OS.gtk_file_chooser_set_filename(..) and don't consider if it is a file or directory. Solution can be: replace line 534 with following if(fileName.isEmpty()){ OS.gtk_file_chooser_set_current_folder(..); }else{ OS.gtk_file_chooser_set_filename(..) ; } | resolved fixed | 188f7ad | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-24T16:34:45Z" | "2009-08-20T09:20:00Z" |
276,416 | Bug 276416 F16-F19 unusable as shortcut keys in General -> Keys | Build ID: I20090430-2300 Steps To Reproduce: Using an Apple keyboard with extra function keys: 1. Open Eclipse Preferences 2. Go to General -> Keys 3. Attempt to bind the F16-F19 keys to commands (I used the Show Perspective commands) More information: F16 displays as a space in the text field but doesn't perform the action when pressed. F17-F19 don't do anything when pressed in the text field. F13-F15 work as normal. This also happens on Eclipse 3.4.2. | resolved fixed | 06e1693 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/SWT.java", "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", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-24T16:25:06Z" | "2009-05-15T04:00:00Z" |
278,489 | Bug 278489 Text field fails to move caret if layout is updated after setting focus | To reproduce (in code): # create a composite with some things in it # later add a Text(SWT.SEARCH|SWT.CANCEL|SWT.BORDER) # call text.setFocus() # call composite.layout(true) # observe that the caret is in the wrong position reversing the order of text.setFocus() and composite.layout(true) causes the caret to be displayed in the correct location | resolved fixed | 3fc7a83 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-24T14:07:22Z" | "2009-05-29T23:33:20Z" |
274,532 | Bug 274532 Cannot scroll to bottom of virtual table | Build ID: 3.5M6 Run snippet below, then select the scrollbar slider and drag it to the bottom - you cannot see the last 5 items. This problem only happens when the table has a column and the items have images. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.RowData; import org.eclipse.swt.layout.RowLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; public class TestTableScroll { static final int COUNT = 170; public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new RowLayout(SWT.VERTICAL)); final Table table = new Table(shell, SWT.VIRTUAL | SWT.SINGLE | SWT.FULL_SELECTION); final Image icon = new Image(display, 16, 16); GC iconGc = new GC(icon); iconGc.setBackground(display.getSystemColor(SWT.COLOR_MAGENTA)); iconGc.fillOval(4, 4, 10, 10); iconGc.dispose(); table.setHeaderVisible(true); TableColumn col1 = new TableColumn(table, SWT.LEFT); col1.setText("Column 1"); col1.setWidth(100); table.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TableItem item = (TableItem) event.item; int index = table.indexOf(item); item.setImage(icon); item.setText("Item " + (index + 1)); } }); table.setLayoutData(new RowData(300, 404)); table.setItemCount(COUNT); shell.layout(); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | a93eff7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-24T14:02:37Z" | "2009-04-30T14:00:00Z" |
278,704 | Bug 278704 spinner widget on Mac always has native border | The Mylyn task editor embeds a spinner widget on a Forms UI with the following code: estimatedTime = new Spinner(composite, SWT.FLAT); estimatedTime.setDigits(0); estimatedTime.setMaximum(100); estimatedTime.setMinimum(0); estimatedTime.setIncrement(1); estimatedTime.setSelection(getTask().getEstimatedTimeHours()); estimatedTime.setData(FormToolkit.KEY_DRAW_BORDER, FormToolkit.TEXT_BORDER); On Carbon and Cocoa the spinner gets a double border whereas on other platforms the inner border around the text field is not present (see screenshot). | resolved fixed | a5f5392 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-21T18:47:52Z" | "2009-06-02T02:33:20Z" |
287,278 | Bug 287278 [Widgets] NPE while switching between compare modes in Java compare editor | I20090818-0800 Steps: 1. Open Java compare editor (compare two .java files) 2. Switch to Text Compare using the drop down button next to "Java Source Compare" label 3. Click anywhere java.lang.NullPointerException at org.eclipse.swt.widgets.Display.runPopups(Display.java:3523) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3130) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) 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:610) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:565) at org.eclipse.equinox.launcher.Main.run(Main.java:1362) at org.eclipse.equinox.launcher.Main.main(Main.java:1338) | resolved fixed | ff8b81f | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-21T18:02:15Z" | "2009-08-21T10:20:00Z" |
142,490 | Bug 142490 StyledText embedded controls can appear incorrectly | 3.2RC4 In snippet 217 change the Shell's size from 400x400 to 300x300, and note that the embedded Controls initially display at 0,0 in addition to their correct positions within the document. | resolved fixed | 0a2378e | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet217.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-20T14:45:49Z" | "2006-05-18T13:46:40Z" |
287,119 | Bug 287119 [StyledText] styled text widget content can be shifted left with out scroll bar when line wraps | Build ID: 3.4.2. v3452b-rcp20090814.1600 Steps To Reproduce: 1.with code example below text in the text box so that it need to scroll , some time it will get shifted to the left , if you back space to the beging of the test is will shift back, 2. 3. More information: import org.eclipse.swt.*; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class Snippet { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); StyledText text = new StyledText (shell, SWT.V_SCROLL | SWT.MULTI | SWT.WRAP); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | c3022d5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-20T13:26:19Z" | "2009-08-19T22:13:20Z" |
270,531 | Bug 270531 Cocoa - Font metrics | We are using 3.5M6 x64. We have a SWT terminal emulator that uses a Courier New Font. We are using GC.getAdvanceWidth('W') to figure out how much space each character takes up and GC.getFontMetrics().getHeight() to figure out how high each character is. This works fine in GTK,Windows and Carbon. With the Cocoa port it looks like for a 12 point font the width is 2 pixels too small and the height is 4 pixels too small. | resolved fixed | 976e430 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/CFRange.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/CGAffineTransform.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/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-19T21:39:16Z" | "2009-03-30T21:53:20Z" |
214,807 | Bug 214807 [browser] xulrunner 1.9 has changed invalid certificate behaviour | null | verified fixed | b72bc1d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptService2.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIBadCertListener2.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsICertOverrideService.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsICertificateDialogs.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsISSLStatus.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIX509Cert.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIX509CertValidity.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-19T20:18:49Z" | "2008-01-09T20:20:00Z" |
286,063 | Bug 286063 [Widgets] Vertical scroll bar appears on Text control if disabled then enabled | Build ID: I20090611-1540 Steps To Reproduce: Create a Text Control with V_SCROLL attribute. Disable it. Then enable it. The vertical scroll bar appears when not needed. Only way to get rid of it is to add text until the scroll bar acts properly and then delete the text. Cocoa only. More information: | resolved fixed | 077e8cf | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scrollable.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 | "2009-08-19T19:06:17Z" | "2009-08-09T09:26:40Z" |
271,765 | Bug 271765 toolitem enables on wrong status | A ToolItem t1, style PUSH, is being disabled with setEnabled(false) in the SelectionListener method, after being pushed and some code executed. When enabled, as consequence of another action, the status appears to be as if the mouse would be still over it, although it is not. I noticed the behavior occurs when disabled on the push (perhaps the status is not being updated and when enabled it is being repainted exactly how it was when disabled), but this is only good if the mouse would be over it on the moment of enabling. I use Ubuntu 8.10, GTK Thank you very much. This entire platform rocks. Best regards, | resolved fixed | 25a9ec6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-18T20:48:22Z" | "2009-04-09T12:26:40Z" |
286,687 | Bug 286687 [Graphics][GTK2.18] clipping broken when setting a transform with Gtk 2.17.7 | If I run the attached sample which draws a string on a canvas using a GC that has an identity Transform it looks like the clipping is relative to the origin of the parent shell and not relative to the canvas. | resolved fixed | 26ce37b | ["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 | "2009-08-17T21:16:22Z" | "2009-08-14T22:46:40Z" |
276,892 | Bug 276892 GC.setLineAttributes() uses caps const instead of join | null | resolved fixed | a984a6c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-17T18:33:18Z" | "2009-05-19T13:33:20Z" |
285,773 | Bug 285773 Combo toString missing detail. | getNameText() is missing from Combo. String getNameText () { return getText (); } | resolved fixed | e6a8277 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-17T14:54:39Z" | "2009-08-05T19:20:00Z" |
262,925 | Bug 262925 Can't paste into password field. | Version: 3.5.0 Build id: I20090129-0100 1) Copy some text (doesn't matter what it is) 2) Open the CVS Add Repository Location dialog 3) Attempt to paste the text into the password field Notice that no text is entered. (I suspect this may be platform behavior on Cocoa, but it used to work in Carbon.) | resolved fixed | bd82ef0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.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 | "2009-08-17T13:56:42Z" | "2009-01-29T17:26:40Z" |
251,270 | Bug 251270 Background color of Combo is always gray | Build ID: M20080911-1700 Steps To Reproduce: 1. create a Combo in a FormPage with style of SWT.READ_ONLY. 2. adapt the combo by FormToolKit, or setBackground to any color other than gray. 3. The combo's background color is always gray on Linux. It is okey on Windows. 4. If the style of the combo does not have SWT.READ_ONLY, the color is okey. More information: | resolved fixed | b0e22a8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-14T16:15:26Z" | "2008-10-17T19:00:00Z" |
279,441 | Bug 279441 Cocoa:Verify Listener not called on selecting items in Combo | Build ID: I20090528-2000 : 3.5RC3 Steps To Reproduce: 1. Launch the snippet 289. It uses a verify listener to verify that the selected item has numbers. 2. In the dropdown select "aaaa" 3. "aaaa" should not be selected. But, aaaa gets selected because the Verify Listener is not called on selecting the items in the Combo. Expected: Combo should send SWT.Verify event on selecting the items of the Combo. More information: Verify event is sent on typing new text in the Combo. Works fine on Carbon. | resolved fixed | 13fdd1d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableString.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/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2009-08-13T19:49:37Z" | "2009-06-08T11:20:00Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.