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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
43,011 | Bug 43011 "Alt+" key strokes not always received on "zh_CN.GB18030" | Key strokes including the "Alt+" modifier are not received as expected by SWT in the "zh_CN.GB18030". ENVIRONMENT: Eclipse-GTK (I20030910), GNOME/Metacity, RedHat 9.0, Sun JDK 1.4.2, locale="zh_CN.GB18030" STEPS TO REPRODUCE: 1.) Run snippet #25 from the SWT development homepage (key logger) 2.) Press and hold "Alt". 3.) Press and release "F" three times. 4.) Release "Alt". ACTUAL RESULTS: DOWN: stateMask=0x0, keyCode=0x10000, character=0x0 '\0' DOWN: stateMask=0x0, keyCode=0x0, character=0x66 'f' UP : stateMask=0x10000 ALT, keyCode=0x0, character=0x66 'f' DOWN: stateMask=0x0, keyCode=0x0, character=0x66 'f' UP : stateMask=0x10000 ALT, keyCode=0x0, character=0x66 'f' DOWN: stateMask=0x0, keyCode=0x0, character=0x66 'f' UP : stateMask=0x10000 ALT, keyCode=0x0, character=0x66 'f' UP : stateMask=0x10000 ALT, keyCode=0x10000, character=0x0 '\0' EXPECTED RESULTS: The DOWN key events should have the "ALT" state mask. | resolved fixed | 475110f | ["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 | "2003-09-12T18:25:27Z" | "2003-09-12T12:33:20Z" |
41,039 | Bug 41039 Hitting the Enter/Return key in the Find/Replace dialog doesn't do anything on Mac OS X | Eclipse 3.0 M2 Build id: 200307181617 Mac OS X 10.2.6 1) Open the Find/Replace dialog (Edit -> Find/Replace). 2) Type in a search term into the text box. 3) Hit the return key. Nothing happens. Hitting the Return key should do a "Find" operation (the same as clicking on the "Find" button, which is highlighted as the "default" button in the Find/Replace dialog). | resolved fixed | 6a42d58 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-12T18:12:02Z" | "2003-08-01T01:06:40Z" |
42,897 | Bug 42897 BIDI: CHECK style doesn't work with RTL Tree or Table | When set to mirrored, the checkbox appears grey | resolved fixed | 8d74a77 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-11T20:35:20Z" | "2003-09-10T18:53:20Z" |
42,882 | Bug 42882 remove platform code throwing ClassNotFound exception | Add a Platform class in a common platform specific folder with the Platform name. This change will benefit JavaWebStart apps using the lazy flag. from the newsgroup: I've run into an obstacle while deploying SWT through Java web start. The problem I'm experiencing is related to Library.getPlatform() in org.eclipse.swt.internal. The swt.jar is downloaded eagerly (ie. before the application starts) by the JNLP client, while other jars should be lazily downloaded (ie. after the application starts and when the jar is needed by the application). Here's a sample JNLP file: <jnlp> <resource> <jar href="AAA.jar" part="startup" download="eager"/> <jar href="BBB.jar" part="app" download="lazy"/> .... </resource> <resource os="Windows"> <nativelib href="win-swt/win-corelibs.jar" part="startup" download="eager"/> <jar href="win-swt/swt.jar" part="startup" download="eager"/> </resource> </jnlp> In an attempt to locate missing classes, Java Webstart will download all jars listed in the JNLP file when a particular class is not in the current classpath of the application, regardless of the download=lazy attribute. In my scenario, org.eclipse.swt.internal.motif.OS does not exist in the classpath (I'm using Windows SWT) and thus causes the download of every jar file. In Display.getPlatform(), the following piece of code exists: ----- String [] names = new String [] {"motif", "gtk", "win32", "photon", "carbon"}; for (int i = 0; i < names.length; i++) { try { Class.forName("org.eclipse.swt.internal."+names[i]+".OS"); return names[i]; } catch (ClassNotFoundException e) {} } return "unknown"; ----- The class org.eclipse.swt.internal.motif.OS will never exist in Windows SWT. Thus, Class.forName() will always trigger a ClassNotFoundException, causing webstart to download everything. I'm suggesting that the following be added to correct this problem. Other suggestions would be much appreciated. if (System.getProperty("swt.platform.type") != null) { return (System.getProperty("swt.platform.type")); } else { String [] names = new String [] {"motif", "gtk", "win32", "photon", "carbon"}; for (int i = 0; i < names.length; i++) { try { Class.forName("org.eclipse.swt.internal."+names[i]+".OS"); return names[i]; } catch (ClassNotFoundException e) {} } return ("unknown"); } | resolved fixed | cf8dd9a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2me/org/eclipse/swt/internal/Library.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2se/org/eclipse/swt/internal/Library.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/internal/Platform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/SWT.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/internal/Platform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/internal/Platform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/internal/Platform.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-10T18:23:51Z" | "2003-09-10T16:06:40Z" |
42,818 | Bug 42818 DirectoryDialog does not show its set message | The native selection dialog does not have a label for displaying text. It's easy to add one though, so we should consider doing so in order to appear consistent with other platforms. | resolved fixed | 21fbdc8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-09T20:52:02Z" | "2003-09-09T20:40:00Z" |
42,724 | Bug 42724 StyledText - selection rendered incorrectly on bidi platforms | build 20030903 The attached BidiUtil exposes a bug in the selection rendering code in DisplayRenderer.drawLineSelectionBackground Steps to reproduce: -using the attached BidiUtil type one english character followed by three or more Arabic/Hebrew characters -place the caret at the beginning of the line -select the next two characters, to include one bidi characters. ->The selection background includes unselected characters. When forcing a redraw of the entire client area the entire bidi segment is drawn with a selection background. The problem is that DisplayRenderer.drawLineSelectionBackground includes code to redraw the entire selection background and that code does not take bidi segments into account (direction runs). I don't believe we even need to redraw the entire selection background anymore because there is code in StyledTextRenderer.drawLine that creates a style range for the selection. The proper selection background is therefore drawn in StyledTextRenderer.drawStyledLine, taking bidi segments and tab stops into account. drawLineSelectionBackground should only be used to render the special line break selection. | resolved fixed | 1cb1a83 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/DisplayRenderer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/PrintRenderer.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 | "2003-09-09T14:54:42Z" | "2003-09-08T19:40:00Z" |
38,983 | Bug 38983 StyledText - ignore WRAP when SINGLE style is specified | build 20030611 The WRAP style should be ignored when both it and the SINGLE style bit is specified in the StyledText constructor. Also, setWordWrap should do nothing when SINGLE is specified. | resolved fixed | 6b9cfdc | ["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 | "2003-09-08T20:30:50Z" | "2003-06-16T21:46:40Z" |
41,748 | Bug 41748 [Keybindings] Keyboard Shortcuts not working | I just installed v. 2.1.1 under AIX v. 4 and most keyboard shortcuts are not working. Copy/Cut/Paste (CTRL+C,SHIFT+DELETE,CTRL+V) work but no others: Save, Undo, Find, etc. | resolved fixed | ccbcb4f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/XModifierKeymap.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-08T18:55:51Z" | "2003-08-20T17:20:00Z" |
42,259 | Bug 42259 StringIndexOutOfBoundsException in FontData.getLocale() | If the lang, country, and variant fields are all null in a FontData, the getLocale() method on win32 will throw a StringIndexOutOfBoundsException. The following program will generate the exception on my WinXP box: import org.eclipse.swt.widgets.*; import org.eclipse.swt.graphics.*; public class FontDataGetLocaleBug { public static void main(String[] args) { final Display display = new Display(); FontData[] fds = display.getFontList(null, true); for (int i=0; i<fds.length; ++i) fds[i].getLocale(); display.dispose(); }} | resolved fixed | be925d0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/FontData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/FontData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/FontData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/FontData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/FontData.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-05T21:21:39Z" | "2003-08-29T15:13:20Z" |
42,293 | Bug 42293 Menu item too large | null | resolved wontfix | 98d7b29 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-05T20:47:56Z" | "2003-08-30T16:13:20Z" |
35,589 | Bug 35589 StyledText - add getStyleRanges(start, offset) API | Currently you can get the style range at a particular offset and you can get all style ranges, but there is no API for getting the styles for a particular range of text. While getStyleRanges could be used to ascertain this information, this could be inefficient if your text has a lot of text (i.e., this method creates a copy of all style ranges). | resolved fixed | 09f6d18 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-05T16:04:50Z" | "2003-03-24T18:20:00Z" |
40,019 | Bug 40019 BIDI: StyledText has problem with drawing of selection in both ltr and rtl orientation of this widget in the bidi locale. | null | resolved fixed | 7f1555a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextBidi.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-04T14:35:32Z" | "2003-07-14T13:40:00Z" |
39,074 | Bug 39074 [CellEditors] [DBCS] canna input mode fires bogus event from Text Control | Steps: 1)Create simple file named foo.usr. 2)Open the propertysheet example editor on this file. 3)Select a department (or group or whatever) and go to edit the name of that object in the propertysheet 4) Shift+SPACE to enter canno input mode. 5) Type "nihongo" and press ENTER When you press ENTER, the propertysheet receives either a bogus widgetDefaultSelected event, or a bogus focusLost event. In either case, the entered canna text is lost. This affects anyone who displays a popup celleditor and is interested in the events mentioned above. This bug affects multiple GEF clients in WSAD | verified fixed | d498e16 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.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 | "2003-09-03T21:37:26Z" | "2003-06-18T15:26:40Z" |
40,800 | Bug 40800 org.eclipse.swt.widgets.Text, method append(), bottom focusing error | When appending a line (or multiple) to the text-widget with append(), the last lines do not get focused. Contrary to the win32 version, the GTK version always stays at the top of all lines instead of focusing the bottom when an append() has been done. | resolved fixed | 273510c | ["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 | "2003-09-03T21:15:44Z" | "2003-07-25T21:53:20Z" |
40,406 | Bug 40406 Clicking in tree does not bring window to the front. | 1) Start eclipse and make the Navigator visisble. 2) Bring some other application window in front of the Eclipse workbench (keeping the Navigator visible). 3) Click on an item in the Navigator 4) Notice that Eclipse is not brought to the front. | resolved fixed | 68db1ce | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-02T16:50:56Z" | "2003-07-17T16:40:00Z" |
40,693 | Bug 40693 Text - No Verify/Modify when a modifier key is down | Eclipse 3.0M2 It's not possible to create classpath variables with underscores. The dialog displays the error message "A variable name must be entered". When you remove the underscore and re-add it, the message has disappeared but the created classpath variable will not be created as specified. Sometimes the underscore is missing, sometimes characters at the end of the variable. | resolved fixed | 9b7228e | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-09-02T15:56:40Z" | "2003-07-24T07:00:00Z" |
39,781 | Bug 39781 Selection events not fired from Combo | null | resolved fixed | 2279139 | ["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 | "2003-08-28T20:34:42Z" | "2003-07-09T00:20:00Z" |
41,707 | Bug 41707 Exception causes Members view to become empty | Occasionaly when I switch between editors, I get an exception and the Members view no longer shows any contents even when different Java files are selected. Closing and opening the Members view fixes the problem. I am running Eclipse GTK I20030813 on Red Hat 9.0. I will attach the log file. | resolved fixed | 47778c3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-27T20:31:06Z" | "2003-08-19T19:06:40Z" |
40,560 | Bug 40560 Label with text and image set tries to display both | Clients can change the thing that a Label displays from a string to an image (or vice versa) with the setText() and setImage() APIs. On Mac, invoking both of these on a Label results in it trying to display both, so the image overwrites the text wherever they intersect. On other platforms only the last thing that was set into the Label (ie.- either the string or the image) is displayed. Snippet: public static void main (String [] args) { Display display = new Display(); Shell shell = new Shell(display); Image image = new Image (display, 16, 16); Color red = display.getSystemColor (SWT.COLOR_RED); GC gc = new GC (image); gc.setBackground(red); gc.fillRectangle(image.getBounds()); gc.dispose(); final Label label = new Label(shell,SWT.NONE); label.setText("abcdefg"); label.setBounds(10,10,200,200); label.setImage(image); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } image.dispose(); display.dispose(); } | resolved fixed | ce82c3c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-27T19:36:57Z" | "2003-07-21T15:06:40Z" |
41,619 | Bug 41619 SWT does not render Unicode glyphs > 255 | I20030813 - In MacOS X > System Preferences > Input Menu add the "Character Palette" to your input method menu - open the character palette and enter characters > 255 into the Eclipse text editor Observe: you only get empty boxes | resolved fixed | 76645e4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-27T16:34:22Z" | "2003-08-15T15:06:40Z" |
41,980 | Bug 41980 GP showing Workbench - Appearance preference page | null | resolved fixed | 9e166a9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-26T19:08:09Z" | "2003-08-26T15:00:00Z" |
41,362 | Bug 41362 GTK-BIDI: RTL support in Group | Text direction of label, which is used as title of SWT Group widget, should be set separately. | resolved fixed | 2bbd619 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Group.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-19T20:49:02Z" | "2003-08-10T12:53:20Z" |
41,201 | Bug 41201 GTK-BIDI: RTL support in Label | For some reason rtl-oriented wrapped Label need the opposite justification to be aligned correctly, when LEAD or TRAIL alignment are used. | resolved fixed | 8731946 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-19T20:31:16Z" | "2003-08-06T17:13:20Z" |
41,455 | Bug 41455 TableColumn#setWidth(int width) allow width=0 but GTK doesn't like it | build 20030806 Linux-GTK (GTK 2.2.2) from a chat on IRC: the call TableColumn#setWidth(0) generate a GTK error and doesn't hide the column in some case (I get the error on my computer, but the column is correctly resized). (<unknown>:6875): Gtk-CRITICAL **: file ../../gtk/gtktreeviewcolumn.c: line 1723 (gtk_tree_view_column_set_fixed_width): assertion `fixed_width > 0' failed | resolved fixed | 28ab2bb | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-18T20:36:55Z" | "2003-08-12T23:13:20Z" |
41,627 | Bug 41627 Editable Combo incorrect width | The editable Combo drop-down box appears to size its width incorrectly. When the longest item is selected, a small piece of its last letter is chopped off by the drop-down arrow. | resolved fixed | 4e33ab6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-18T14:48:15Z" | "2003-08-17T19:53:20Z" |
32,006 | Bug 32006 Save dialog doesn't remove '&' from title string | I tried to add JavaDoc documentation to a JAR in the build-path of a project, and was prompted with a dialog box to select the JavaDoc location. The title of the dialog box was " &Select JavaDoc Location:" I'm not sure if the & is an artifact of being on a Mac OS X or whether it's a glitch for other OSs as well. | verified fixed | 1ac7936 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-13T19:55:11Z" | "2003-02-17T13:53:20Z" |
40,899 | Bug 40899 Eclipse 2.1.1 does not come up on HP when remotely attaching from a linux box | null | resolved fixed | 56124a7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Font.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-08T20:06:36Z" | "2003-07-29T14:46:40Z" |
41,347 | Bug 41347 CCombo shouldn't fire defaultSelection on mouse list selection | If you drop down the combo list using the mouse and then select an entry using the mouse, the CCombo fires a defaultSelection. It shouldn't do this. It should fire a selection instead. Default selection means something was selected and you should go and do something. The typical reaction is to process the selection and dismiss the dialog. A combo shouldn't fire default selection from just selecting an entry in the dropdown. A typical user of a combobox would be vert surprised to have the dialog be dismissed just because the entry was selected. Standard Combos won't do this. Because of this you can't tell the difference between just selecting an entry using the mouse and hitting enter from the text field of the CCombo. Hitting enter from the text field should be treated as default selection. | resolved fixed | dd89921 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-08T20:06:14Z" | "2003-08-08T16:26:40Z" |
39,173 | Bug 39173 Thread processing is extremely slow on GTK. (BBAWT) | SWT Version: 3009 Linux Version: RH 8 SWT thread processing is much slower on GTK than on any other platform. This seems subtle but it is important because we do so much thread processing in our AWT code. The following code demonstrates this. It creates a shell with 100 buttons on the display thread, and then does the same thing by spawning a thread and syncExecing for every SWT call (mimicking our implementation). It then displays how long it took in both instances. On Windows 2000, Motif, and QNX, the ratio between the time while off the display thread and while on is always less than 7:1. But on GTK, the ratio is usually around 45:1. Here is the output for each platform: Windows 2000: Main UI thread time = 210 Secondary UI thread time = 681 Motif (RH 8): Main UI thread time = 258 Secondary UI thread time = 1715 QNX: Main UI thread time = 406 Secondary UI thread time = 1000 GTK (RH 8): Main UI thread time = 441 Secondary UI thread time = 20016 Here's the test case: import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTThreadTest extends Thread { long start; long end; Display display; Shell shell; Shell shell2; Button b; final int numIterations = 100; public void run() { display = new Display(); start = System.currentTimeMillis(); shell = new Shell(display, SWT.SHELL_TRIM); shell.setSize(900, 300); for (int i = 0; i < numIterations; i++) { b = new Button(shell, SWT.PUSH); b.setBounds(0, 0, 50 - (10 * i), 50 - (10 * i)); b.setText("d"); b.setVisible(true); } shell.setVisible(true); end = System.currentTimeMillis(); System.out.println("Main UI thread time = " + (end - start)); Thread thread2 = new Thread() { public void run() { while (display == null) { } createShell(); setupShell(); for (int i = 0; i < numIterations; i++) { createButton(); setButtonSize(i); setButtonText(); setButtonVisible(); } openShell(); end = System.currentTimeMillis(); System.out.println( "Secondary UI thread time = " + (end - start)); } public void setupShell() { display.syncExec(new Runnable() { public void run() { shell2.setSize(900, 300); } }); } public void openShell() { display.syncExec(new Runnable() { public void run() { shell2.setVisible(true); } }); } public void createShell() { display.syncExec(new Runnable() { public void run() { shell2 = new Shell(display, SWT.SHELL_TRIM); } }); } public void setButtonText() { display.syncExec(new Runnable() { public void run() { b.setText("d"); } }); } public void setButtonSize(final int i) { display.syncExec(new Runnable() { public void run() { b.setBounds(0, 0, 50 - (10 * i), 50 - (10 * i)); } }); } public void setButtonVisible() { display.syncExec(new Runnable() { public void run() { b.setVisible(true); } }); } public void createButton() { display.syncExec(new Runnable() { public void run() { b = new Button(shell2, SWT.PUSH); } }); } }; start = System.currentTimeMillis(); thread2.start(); while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); System.exit(1); } public static void main(String[] args) { new SWTThreadTest().run(); } } | resolved fixed | d0651c4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-08T16:03:58Z" | "2003-06-20T14:40:00Z" |
41,200 | Bug 41200 GTK- contents of check and radio buttons can't be aligned to center and to the trailing edge of widget. | GTK container, which contains label of check and radio button, always remains with it's default width. Therefore text of label visually is always aligned to leading edge of corresponding SWT Button. We propose to resize this container "manually". | resolved fixed | 9435fef | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-07T21:41:41Z" | "2003-08-06T14:26:40Z" |
40,884 | Bug 40884 Eclipse crashes with Sun jdk 1.4.2 | When we switch from jdk 1.4.1 to 1.4.2, Eclipse crashes at startup. To make it at least start, I tried with a blank workspace but Eclipses keeps crashing as soon as I try to open a perspective, a project or the configuration details, anything heavier than opening a menu. Eclipse 2.1.1 (Build id: 200306271545), Win2000 SP3, Sun JDK 1.4.2-b28. It happens on all the PCs (3) where we tried it. The regular .log contains nothing relevant. Here is the crash log: An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x78463C88 Function=RtlInitUnicodeString+0x1B Library=C:\WINNT\System32\ntdll.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.ExpandEnvironmentStringsW(Native Method) at org.eclipse.swt.internal.win32.OS.ExpandEnvironmentStrings(OS.java:1353) at org.eclipse.swt.program.Program.getKeyValue(Program.java:113) at org.eclipse.swt.program.Program.getProgram(Program.java:135) at org.eclipse.swt.program.Program.getPrograms(Program.java:165) at org.eclipse.ui.internal.registry.EditorDescriptor.findProgram(EditorDescriptor.java:76) at org.eclipse.ui.internal.registry.EditorDescriptor.loadValues(EditorDescriptor.java:212) at org.eclipse.ui.internal.registry.EditorRegistry.loadAssociations(EditorRegistry.java:521) at org.eclipse.ui.internal.registry.EditorRegistry.initializeFromStorage(EditorRegistry.java:453) at org.eclipse.ui.internal.registry.EditorRegistry.<init>(EditorRegistry.java:64) at org.eclipse.ui.internal.WorkbenchPlugin.getEditorRegistry(WorkbenchPlugin.java:234) at org.eclipse.ui.internal.EditorManager$7.run(EditorManager.java:908) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006) at org.eclipse.core.runtime.Platform.run(Platform.java:413) at org.eclipse.ui.internal.EditorManager.busyRestoreEditor(EditorManager.java:864) at org.eclipse.ui.internal.EditorManager$6.run(EditorManager.java:857) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.EditorManager.restoreEditor(EditorManager.java:853) at org.eclipse.ui.internal.EditorManager.restoreState(EditorManager.java:756) at org.eclipse.ui.internal.WorkbenchPage.restoreState(WorkbenchPage.java:2263) at org.eclipse.ui.internal.WorkbenchWindow.restoreState(WorkbenchWindow.java:1327) at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1263) at org.eclipse.ui.internal.Workbench.access$10(Workbench.java:1223) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:1141) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006) at org.eclipse.core.runtime.Platform.run(Platform.java:413) at org.eclipse.ui.internal.Workbench.openPreviousWorkbenchState(Workbench.java:1093) at org.eclipse.ui.internal.Workbench.init(Workbench.java:870) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1373) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Dynamic libraries: 0x00400000 - 0x00407000 C:\WINNT\system32\javaw.exe 0x78460000 - 0x784E1000 C:\WINNT\System32\ntdll.dll 0x77DA0000 - 0x77DFD000 C:\WINNT\system32\ADVAPI32.dll 0x77E70000 - 0x77F31000 C:\WINNT\system32\KERNEL32.DLL 0x770C0000 - 0x77131000 C:\WINNT\system32\RPCRT4.DLL 0x77E00000 - 0x77E65000 C:\WINNT\system32\USER32.dll 0x77F40000 - 0x77F7C000 C:\WINNT\system32\GDI32.DLL 0x78000000 - 0x78046000 C:\WINNT\system32\MSVCRT.dll 0x08000000 - 0x08136000 C:\Program Files\Java\j2re1.4.2\bin\client\jvm.dll 0x77540000 - 0x77571000 C:\WINNT\system32\WINMM.dll 0x10000000 - 0x10007000 C:\Program Files\Java\j2re1.4.2\bin\hpi.dll 0x007E0000 - 0x007EE000 C:\Program Files\Java\j2re1.4.2\bin\verify.dll 0x007F0000 - 0x00808000 C:\Program Files\Java\j2re1.4.2\bin\java.dll 0x00810000 - 0x0081D000 C:\Program Files\Java\j2re1.4.2\bin\zip.dll 0x24950000 - 0x24958000 C:\dev\eclipse\plugins\org.eclipse.core.resources.win32_2.1.0\os\win32\x86\core_2_1_0a.dll 0x24A70000 - 0x24AB7000 C:\dev\eclipse\plugins\org.eclipse.swt.win32_2.1.1\os\win32\x86\swt-win32-2135.dll 0x77A40000 - 0x77B35000 C:\WINNT\system32\ole32.dll 0x71710000 - 0x71794000 C:\WINNT\system32\COMCTL32.dll 0x76B00000 - 0x76B3D000 C:\WINNT\system32\comdlg32.dll 0x70BD0000 - 0x70C35000 C:\WINNT\system32\SHLWAPI.DLL 0x77580000 - 0x777CD000 C:\WINNT\system32\SHELL32.DLL 0x779A0000 - 0x77A3B000 C:\WINNT\system32\OLEAUT32.dll 0x75E00000 - 0x75E1A000 C:\WINNT\system32\IMM32.dll 0x66000000 - 0x6607D000 D:\Program Files\desktop\WindowBlinds\WBlind.dll 0x6B0E0000 - 0x6B0E5000 C:\WINNT\system32\msimg32.dll 0x62000000 - 0x62017000 D:\Program Files\desktop\WindowBlinds\wbhelp.dll 0x69440000 - 0x6945F000 C:\WINNT\system32\oleacc.dll 0x77910000 - 0x77933000 C:\WINNT\system32\imagehlp.dll 0x72970000 - 0x7299D000 C:\WINNT\system32\DBGHELP.dll 0x68EA0000 - 0x68EAB000 C:\WINNT\system32\PSAPI.DLL Heap at VM Abort: Heap def new generation total 4544K, used 1508K [0x10010000, 0x104f0000, 0x113c0000) eden space 4096K, 33% used [0x10010000, 0x10167168, 0x10410000) from space 448K, 30% used [0x10480000, 0x104a1ff0, 0x104f0000) to space 448K, 0% used [0x10410000, 0x10410000, 0x10480000) tenured generation total 60544K, used 4535K [0x113c0000, 0x14ee0000, 0x20010000) the space 60544K, 7% used [0x113c0000, 0x1182ddf8, 0x1182de00, 0x14ee0000) compacting perm gen total 7424K, used 7203K [0x20010000, 0x20750000, 0x24010000) the space 7424K, 97% used [0x20010000, 0x20718fd0, 0x20719000, 0x20750000) Local Time = Tue Jul 29 10:41:24 2003 Elapsed Time = 6 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode) # | resolved fixed | ab9d66a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OLE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/win32/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-07T19:04:35Z" | "2003-07-29T09:13:20Z" |
40,102 | Bug 40102 [Viewers] ITreeViewerListener.treeExpanded() is called twice | I am using TreeViewer, and my ContentProvider class also listens to tree collapse and tree expansions in the viewer by registering itself as a ITreeViewerListener with the TreeViewer. It has the required methods to implement: public void treeExpanded(TreeExpansionEvent event), and public void treeCollapsed(TreeExpansionEvent event). The problem is that when an item in the tree is expanded for the first time only, treeExpanded(TreeExpansionEvent) is called twice. treeCollapsed is only called once, as expected, and treeExpanded is only called one upon subsequent expansions of tree items. | resolved fixed | 2c6e6ca | ["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/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-06T20:36:27Z" | "2003-07-15T14:40:00Z" |
41,067 | Bug 41067 OLE ref count problem when opening file for read | This chunk of code from OleClientSite constructors: OleFile oleFile = new OleFile(file, contentStream, OleFile.READ); IStorage storage = oleFile.getRootStorage(); storage.AddRef(); // Open a temporary storage object tempStorage = createTempStorage(); // Copy over contents of file int result = storage.CopyTo(0, null, null, tempStorage.getAddress()); storage.Release(); if (result != COM.S_OK) OLE.error(OLE.ERROR_CANNOT_OPEN_FILE, result); oleFile.dispose(); | resolved fixed | 21af898 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleFile.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-06T17:24:34Z" | "2003-08-01T23:20:00Z" |
38,415 | Bug 38415 remove() function in combo behaves inconsistently (BBAWT) | On Linux (GTK AND Motif), if you remove() the last item in a combo, the text field of the combo still shows that item. But on Windows and QNX, it does not. The following test case demonstrates this, as there are no items remaining in the combo, but it still shows 'Item 2' in the textfield. import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTChoiceTest { Display display; Shell shell; Combo combo; public void run(){ display = new Display(); shell = new Shell(display,SWT.SHELL_TRIM); combo = new Combo(shell,SWT.DROP_DOWN | SWT.READ_ONLY | SWT.CLIP_CHILDREN | SWT.CLIP_SIBLINGS); shell.setLayout(new FillLayout()); shell.setSize(400,400); combo.add("Item 1"); combo.add("Item 2"); combo.select(0); shell.open(); combo.remove(0); combo.remove(0); while(!shell.isDisposed()){ display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String [] args){ new SWTChoiceTest().run(); } } | resolved fixed | da194ab | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-08-06T15:44:00Z" | "2003-06-04T15:20:00Z" |
40,156 | Bug 40156 CTabFolder's client area is off by a few pixels when there are no tabs | build I20030715 - create a CTabFolder - create a child control, and set its bounds to be the tab folder's client area - it's off by a few pixels in x and y - getClientArea assumes that the extra borders shown when there are tabs are always there | resolved fixed | 41401bd | ["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 | "2003-08-05T19:42:28Z" | "2003-07-15T20:13:20Z" |
37,095 | Bug 37095 BIDI - When starting Eclipse from Arabic locale it is always RTL oriented | When starting an Eclipse instance from an Arabic Locale, the workbench and its components are RTL-oriented without giving the user the choice for otherwise. | resolved fixed | dd1cc8d | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-31T15:47:05Z" | "2003-04-30T16:26:40Z" |
35,826 | Bug 35826 GPs on exit | Start eclipse (platform only) with a new workspace 1) open all perspectives 2) open preference pages exit eclipse An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x4CAB791A Function=_XmDSIGetChildPosition+0x1A2 Library=./libXm.so.2 Current Java thread: at org.eclipse.swt.internal.motif.OS.XtDestroyWidget(Native Method) - locked <0x48554350> (a java.lang.Class) at org.eclipse.swt.widgets.Widget.destroyWidget(Widget.java:296) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:331) at org.eclipse.ui.internal.PartPane.dispose(PartPane.java:205) at org.eclipse.ui.internal.EditorPresentation.closeAllEditors(EditorPresentation.java:51) at org.eclipse.ui.internal.EditorManager.closeAll(EditorManager.java:81) at org.eclipse.ui.internal.WorkbenchPage.closeAllEditors(WorkbenchPage.java:760) at org.eclipse.ui.internal.WorkbenchPage.dispose(WorkbenchPage.java:1038) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:513) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1127) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:384) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:367) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:479) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:477) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$6.run(Workbench.java:339) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:889) at org.eclipse.core.runtime.Platform.run(Platform.java:413) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:336) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:292) at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:455) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:453) at org.eclipse.ui.internal.Workbench.close(Workbench.java:445) at org.eclipse.ui.internal.Workbench.close(Workbench.java:439) at org.eclipse.ui.internal.QuitAction.run(QuitAction.java:37) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:456) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:403) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:397) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:72) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:809) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1958) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1724) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:845) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Dynamic libraries: 08048000-0804e000 r-xp 00000000 00:0a 1420831 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/bin/java 0804e000-0804f000 rw-p 00005000 00:0a 1420831 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/bin/java 40000000-40012000 r-xp 00000000 03:01 17286 /lib/ld-2.2.5.so 40012000-40013000 rw-p 00011000 03:01 17286 /lib/ld-2.2.5.so 40014000-4001d000 r-xp 00000000 00:0a 69610740 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so 4001d000-4001e000 rw-p 00008000 00:0a 69610740 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/native_threads/libhpi.so 4001f000-40022000 r--s 00000000 00:0a 170922548 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/ext/dnsns.jar 40022000-40023000 r--s 00000000 00:0a 486955263 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui_2.1.0/ui.jar 40023000-40024000 r--p 00000000 03:01 131705 /usr/lib/locale/en_US/LC_IDENTIFICATION 40024000-40032000 r-xp 00000000 03:01 17308 /lib/libpthread.so.0 40032000-40039000 rw-p 0000e000 03:01 17308 /lib/libpthread.so.0 40039000-4003b000 r-xp 00000000 03:01 17296 /lib/libdl.so.2 4003b000-4003c000 rw-p 00001000 03:01 17296 /lib/libdl.so.2 4003c000-40150000 r-xp 00000000 03:01 17292 /lib/libc.so.6 40150000-40156000 rw-p 00113000 03:01 17292 /lib/libc.so.6 4015a000-40472000 r-xp 00000000 00:0a 101602500 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/client/libjvm.so 40472000-40626000 rw-p 00317000 00:0a 101602500 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/client/libjvm.so 40636000-40648000 r-xp 00000000 03:01 17299 /lib/libnsl.so.1 40648000-40649000 rw-p 00011000 03:01 17299 /lib/libnsl.so.1 4064b000-4066d000 r-xp 00000000 03:01 17297 /lib/libm.so.6 4066d000-4066e000 rw-p 00021000 03:01 17297 /lib/libm.so.6 4066e000-4067e000 r-xp 00000000 00:0a 50913488 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libverify.so 4067e000-40680000 rw-p 0000f000 00:0a 50913488 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libverify.so 40680000-406a1000 r-xp 00000000 00:0a 50913489 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libjava.so 406a1000-406a3000 rw-p 00020000 00:0a 50913489 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libjava.so 406a3000-406b8000 r-xp 00000000 00:0a 50913491 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libzip.so 406b8000-406ba000 rw-p 00014000 00:0a 50913491 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/i386/libzip.so 406ba000-41d88000 r--s 00000000 00:0a 19261675 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/rt.jar 41dcb000-41de2000 r--s 00000000 00:0a 19261909 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/sunrsasign.jar 41de2000-41e53000 r--s 00000000 00:0a 19261911 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/jsse.jar 41e53000-41e66000 r--s 00000000 00:0a 19261910 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/jce.jar 41e66000-42122000 r--s 00000000 00:0a 19261671 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/charsets.jar 441ca000-441cf000 r--s 00000000 00:0a 470508942 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/startup.jar 441cf000-441d0000 r--p 00000000 03:01 131745 /usr/lib/locale/en_US/LC_MEASUREMENT 4c250000-4c27b000 r--p 00000000 03:01 131859 /usr/lib/locale/en_US/LC_CTYPE 4c27b000-4c298000 r--s 00000000 00:0a 170922547 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/ext/sunjce_provider.jar 4c298000-4c337000 r--s 00000000 00:0a 170922549 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/ext/localedata.jar 4c337000-4c345000 r--s 00000000 00:0a 170922550 /bluebird/teamswt/fheidric/Eclipse/motif/jdk1.4.1_01/jre/lib/ext/ldapsec.jar 4c345000-4c35d000 r--s 00000000 00:0a 503636557 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.core.boot_2.1.0/boot.jar 4c35d000-4c392000 r--s 00000000 00:0a 538257284 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.core.runtime_2.1.0/runtime.jar 4c392000-4c3e1000 r--s 00000000 00:0a 455161444 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui.views_2.1.0/views.jar 4c3e1000-4c5f8000 r--s 00000000 00:0a 319236461 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui.workbench_2.1.0/workbench.jar 4c5f8000-4c664000 r--s 00000000 00:0a 645821 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.jface_2.1.0/jface.jar 4c664000-4c73f000 r--s 00000000 00:0a 134612820 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.swt.motif_2.1.0/ws/motif/swt.jar 4c73f000-4c7cc000 r--s 00000000 00:0a 640975273 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.core.resources_2.1.0/resources.jar 4c7cc000-4c7e2000 r--s 00000000 00:0a 521328588 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.apache.xerces_4.0.7/xmlParserAPIs.jar 4c7e2000-4c901000 r--s 00000000 00:0a 521328590 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.apache.xerces_4.0.7/xercesImpl.jar 4c901000-4c917000 r--s 00000000 00:0a 19183721 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.help.ui_2.1.0/helpworkbench.jar 4c917000-4c97e000 r--s 00000000 00:0a 184798629 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.team.cvs.core_2.1.0/cvs.jar 4c97e000-4c9df000 r--s 00000000 00:0a 201334527 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.compare_2.1.0/compare.jar 4c9df000-4ca12000 r--s 00000000 00:0a 438269573 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.search_2.1.0/search.jar 4ca12000-4ca54000 r-xp 00000000 00:0a 184798670 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.swt.motif_2.1.0/os/linux/x86/libswt-motif-2133.so 4ca54000-4ca57000 rw-p 00042000 00:0a 184798670 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.swt.motif_2.1.0/os/linux/x86/libswt-motif-2133.so 4ca57000-4cbdb000 r-xp 00000000 00:0a 470478350 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/libXm.so.2.1 4cbdb000-4cbee000 rw-p 00183000 00:0a 470478350 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/libXm.so.2.1 4cbef000-4cbf0000 r--p 00000000 03:01 312256 /usr/lib/locale/en_US/LC_TELEPHONE 4cbf0000-4cbf1000 r--p 00000000 03:01 312251 /usr/lib/locale/en_US/LC_ADDRESS 4cbf1000-4cbf2000 r--p 00000000 03:01 312255 /usr/lib/locale/en_US/LC_NAME 4cbf2000-4cbf3000 r--p 00000000 03:01 410815 /usr/lib/locale/en_US/LC_PAPER 4cbf3000-4cbf4000 r--p 00000000 03:01 180665 /usr/lib/locale/en_US/LC_MESSAGES/SYS_LC_MESSAGES 4cbf4000-4cbf5000 r--p 00000000 03:01 131746 /usr/lib/locale/en_US/LC_MONETARY 4cbf5000-4cbf6000 r--p 00000000 03:01 131706 /usr/lib/locale/en_US/LC_TIME 4cbf6000-4cbf7000 r--p 00000000 03:01 131863 /usr/lib/locale/en_US/LC_NUMERIC 4cbf7000-4cbf9000 r-xp 00000000 03:01 411078 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 4cbf9000-4cbfa000 rw-p 00001000 03:01 411078 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 4cbfb000-4cbfd000 r-xp 00000000 03:01 279707 /usr/lib/gconv/ISO8859-1.so 4cbfd000-4cbfe000 rw-p 00001000 03:01 279707 /usr/lib/gconv/ISO8859-1.so 4cbff000-4ccf3000 r-xp 00000000 03:01 443403 /usr/X11R6/lib/libX11.so.6.2 4ccf3000-4ccf7000 rw-p 000f4000 03:01 443403 /usr/X11R6/lib/libX11.so.6.2 4ccf7000-4cd04000 r-xp 00000000 03:01 443411 /usr/X11R6/lib/libXext.so.6.4 4cd04000-4cd05000 rw-p 0000c000 03:01 443411 /usr/X11R6/lib/libXext.so.6.4 4cd05000-4cd53000 r-xp 00000000 03:01 443431 /usr/X11R6/lib/libXt.so.6.0 4cd53000-4cd57000 rw-p 0004d000 03:01 443431 /usr/X11R6/lib/libXt.so.6.0 4cd57000-4cd5e000 r-xp 00000000 03:01 443423 /usr/X11R6/lib/libXp.so.6.2 4cd5e000-4cd5f000 rw-p 00006000 03:01 443423 /usr/X11R6/lib/libXp.so.6.2 4cd5f000-4cd67000 r-xp 00000000 03:01 443401 /usr/X11R6/lib/libSM.so.6.0 4cd67000-4cd68000 rw-p 00007000 03:01 443401 /usr/X11R6/lib/libSM.so.6.0 4cd68000-4cd7c000 r-xp 00000000 03:01 443399 /usr/X11R6/lib/libICE.so.6.3 4cd7c000-4cd7d000 rw-p 00013000 03:01 443399 /usr/X11R6/lib/libICE.so.6.3 4cd7f000-4cd9b000 r-xp 00000000 03:01 411077 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 4cd9b000-4cd9d000 rw-p 0001b000 03:01 411077 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 4cd9d000-4cda2000 r--s 00000000 03:01 279753 /usr/lib/gconv/gconv-modules.cache 4cda2000-4cdf4000 r--s 00000000 00:0a 554074816 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.update.core_2.1.0/updatecore.jar 4cdf4000-4ce21000 r--s 00000000 00:0a 19117447 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.help_2.1.0/help.jar 4ce21000-4ce77000 r--s 00000000 00:0a 169348776 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.jface.text_2.1.0/jfacetext.jar 4ce77000-4ce89000 r--s 00000000 00:0a 705780714 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.text_2.1.0/text.jar 4ce89000-4cf03000 r--s 00000000 00:0a 755867905 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.debug.ui_2.1.0/dtui.jar 4cf03000-4cfd1000 r--s 00000000 00:0a 622176762 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.team.cvs.ui_2.1.0/teamcvsui.jar 4cfd1000-4d06d000 r--s 00000000 00:0a 50853065 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.update.ui_2.1.0/updateui.jar 4d06d000-4d139000 r--s 00000000 00:0a 369982754 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui.externaltools_2.1.0/externaltools.jar 4d139000-4d157000 r--s 00000000 00:0a 152107940 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.debug.core_2.1.0/dtcore.jar 4d157000-4d171000 r--s 00000000 00:0a 470483805 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui.editors_2.1.0/editors.jar 4d171000-4d1b8000 r--s 00000000 00:0a 640981652 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.team.ui_2.1.0/teamui.jar 4d1b8000-4d1f0000 r--s 00000000 00:0a 353223126 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ui.workbench.texteditor_2.1.0/texteditor.jar 4d1f0000-4d1f9000 r-xp 00000000 03:01 411082 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 4d1f9000-4d1fa000 rw-p 00008000 03:01 411082 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 4d1fa000-4d211000 r--s 00000000 00:0a 772310921 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.team.core_2.1.0/team.jar 4d211000-4d214000 r--s 00000000 00:0a 673327024 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.help.appserver_2.1.0/appserver.jar 4d214000-4d23a000 r--s 00000000 00:0a 420296549 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.update.ui.forms_2.1.0/forms.jar 4d23a000-4d2ed000 r--s 00000000 00:0a 722016088 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.apache.ant_1.5.2/ant.jar 4d2ed000-4d391000 r--s 00000000 00:0a 722016090 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.apache.ant_1.5.2/optional.jar 4d391000-4d398000 r--s 00000000 00:0a 604308102 /bluebird/teamswt/fheidric/Eclipse/motif/eclipse/plugins/org.eclipse.ant.core_2.1.0/antsupport.jar Local Time = Fri Mar 28 12:17:43 2003 Elapsed Time = 1392 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode) # # An error report file has been saved as hs_err_pid4636.log. # Please refer to the file for further information. # | resolved fixed | b067e67 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-25T15:24:02Z" | "2003-03-28T16:46:40Z" |
33,370 | Bug 33370 event firing differences (win32/motif) | RC1 This is marked as a linux-motif problem since win32 is generally "right". I noticed these differences by watching the events console in the ControlExample while running on different platforms. Drop down a Combo: - motif does not fire a MouseUp after the triggering MouseDown - win32 does Select a combo item that is already selected (ie.- the previous selection) - motif fires Selection - win32 fires Modify + Selection. The following all seem like the same thing (Selection events are fired early by the emulated Table and Tree); Select a Table item - motif fires Selection + MouseDown + MouseUp - win32 fires MouseDown + Selection + MouseUp Select a TreeItem - motif fires Selection + MouseDown + MouseUp - win32 fires MouseDown + Selection + MouseUp Expand a TreeItem - motif fires Selection + MouseDown + MouseUp - win32 fires MouseDown + Selection + MouseUp Collapse a TreeItem - motif fires Selection + Collapse + MouseDown - win32 fires Collapse + MouseDown + Selection | resolved fixed | e677292 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/SelectableItemWidget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-25T14:04:32Z" | "2003-02-26T22:53:20Z" |
38,712 | Bug 38712 'Gtk CRITICAL' error being roported by SWT in Linux-GTK. (BBAWT) | I'm running RH9, and whenever I run a JUnit test with SWT on top of GTK, I get the following error: (<unknown>:2895): Gtk-CRITICAL **: file gtkwidget.c: line 4814 (gtk_widget_set_size_request): assertion `height >= -1' failed This comes up in today's (6/10/03) head version of SWT, as well as 3008, 3007, and every other one that I've tested back through 2134. Unfortunately, I can't seem to come up with a test case because I can't seem to get this error apart from using JUnit, and I don't have the source for that. | resolved fixed | 02814ae | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-24T16:07:43Z" | "2003-06-10T15:46:40Z" |
39,730 | Bug 39730 code assist popup does not take focus | 20030703 on windows, when the code assist window comes up, the first item is selected on GTK, this does not happen until i press arraw_down which is very frustrating major for me (dunno if it's text or swt though) | resolved fixed | 2f9872f | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-23T16:53:54Z" | "2003-07-08T10:26:40Z" |
35,761 | Bug 35761 ControlExample - Label - Image labels issue with SWT.WRAP | I20030326 Run ControlExample Switch to Label tab Select SWT.WRAP The image labels go away. They don't on Windows. | resolved fixed | 5f841a6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-21T14:11:11Z" | "2003-03-27T15:46:40Z" |
35,861 | Bug 35861 crash in gtk_editable_delete_selection on GTK 2.2.1/Redhat 7.1 | After compiling, running eclipse and looking around in the environment I got a crash: An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x4D1DD704 Function=gtk_editable_get_selection_bounds+0x44 Library=/usr/local/lib/libgtk-x11-2.0.so.0 Current Java thread: at org.eclipse.swt.internal.gtk.OS.gtk_editable_delete_selection(Native Method) - locked <0x48578df8> (a java.lang.Class) at org.eclipse.swt.widgets.Combo.clearSelection(Combo.java:279) at org.eclipse.ui.internal.commands.KeyPreferencePage.setActiveKeyConfig urationId(KeyPreferencePage.java:1600) at org.eclipse.ui.internal.commands.KeyPreferencePage.copyToUI(KeyPrefer encePage.java:498) at org.eclipse.ui.internal.commands.KeyPreferencePage.setVisible(KeyPref erencePage.java:409) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDial og.java:1063) at org.eclipse.jface.preference.PreferenceDialog$9.run(PreferenceDialog. java:495) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.jface.preference.PreferenceDialog$8.widgetSelected(Prefer enceDialog.java:489) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrate gy.java:198) at org.eclipse.jface.util.OpenStrategy.access$800(OpenStrategy.java:33) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:333) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.ja va:98) - locked <0x44bedb08> (a org.eclipse.swt.widgets.RunnableLock) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1614) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1432) at org.eclipse.jface.window.Window.runEventLoop(Window.java:583) at org.eclipse.jface.window.Window.open(Window.java:563) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesActi on.java:53) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:456) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(Act ionContributionItem.java:403) at org.eclipse.jface.action.ActionContributionItem.access$000(ActionCont ributionItem.java:44) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handle Event(ActionContributionItem.java:72) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:913) ..... | resolved fixed | 6fac09a | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.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 | "2003-07-18T21:33:36Z" | "2003-03-31T08:40:00Z" |
40,216 | Bug 40216 Right CTRL+SHIFT right justifies text and reverses scroll bars | Opening a text editor and then pressing and holding right CTRL and then pressing SHIFT will flip the scroll bars to the right side and right justify the text. STEPS: 1.) Open a text editor 2.) Press and hold right CTRL 3.) Press right SHIFT They maybe other steps to get into this state. | resolved fixed | 8862e90 | ["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/StyledTextBidi.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/bidi/org/eclipse/swt/internal/BidiUtil.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/internal/BidiUtil.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-16T18:33:31Z" | "2003-07-16T15:40:00Z" |
38,777 | Bug 38777 Out of bound exception in ColorDialog | I was 'playing' with the ControlExample on Linux Motif. Tab 'text'. Changing the background color many times. Got the following stack trace at one point. Can't reproduce :-( Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 8 at org.eclipse.swt.widgets.ColorDialog.mouseDown(ColorDialog.java:324) at org.eclipse.swt.widgets.ColorDialog.handleEvents(ColorDialog.java:213) at org.eclipse.swt.widgets.ColorDialog$1.handleEvent(ColorDialog.java:314) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2078) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1864) at org.eclipse.swt.widgets.ColorDialog.openModal(ColorDialog.java:412) at org.eclipse.swt.widgets.ColorDialog.open(ColorDialog.java:356) at org.eclipse.swt.examples.controlexample.Tab$2.widgetSelected(Tab.java:162) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2078) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1864) at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:310) | resolved fixed | 93a1334 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ColorDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-16T14:30:01Z" | "2003-06-11T14:00:00Z" |
40,159 | Bug 40159 Combo throws exception in junit test | 4) test_removeII (org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo) java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2351) at org.eclipse.swt.SWT.error(SWT.java:2295) at org.eclipse.swt.widgets.Widget.error(Widget.java:375) at org.eclipse.swt.widgets.Combo.remove(Combo.java:938) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.test_removeII (Test_org_eclipse_swt_widgets_Combo.java:397) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.runTest (Test_org_eclipse_swt_widgets_Combo.java:688) at org.eclipse.swt.tests.junit.AllTests.main(AllTests.java:25) 5) test_setItemILjava_lang_String (org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo) java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.widgets.Combo.setItem(Combo.java:1103) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.test_setItemILja va_lang_String(Test_org_eclipse_swt_widgets_Combo.java:503) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.runTest (Test_org_eclipse_swt_widgets_Combo.java:695) at org.eclipse.swt.tests.junit.AllTests.main(AllTests.java:25) | resolved fixed | b3451b0 | ["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 | "2003-07-15T21:22:34Z" | "2003-07-15T20:13:20Z" |
40,155 | Bug 40155 Font.dispose() throws NPE | null | resolved fixed | 0174410 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Font.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-15T20:44:15Z" | "2003-07-15T20:13:20Z" |
40,130 | Bug 40130 StyledText - add accessibility support to StyledText | build 20030611 Opening bug to track changes Grant submitted for making StyledText accessible (adding AccessibleControlListener). | resolved fixed | 09d4604 | ["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 | "2003-07-15T17:57:44Z" | "2003-07-15T17:26:40Z" |
38,855 | Bug 38855 regression - Table.getImageBounds returns incorrect value | Take the propertysheet as an example. If you select a project and try to click on the +/- next to the "Info" category entry, it won't expand/collapse. In this particular case if you click just on the upper-left corner of the box around the +/- you may be able to get it to work. But if you click anywhere else it won't work. In this particular case, TableTreeItem.getImageBounds() was returning a box that was lower than where you were clicking such that the event location only overlapped the image bounds at the upperleft corner. However, there is also a problem in that getImageBounds() doesn't return a rectangle with any dimensions many times. With the standard properties for things like project, there are no expandable properties other than the "info" category. But in our editor (Java Visual Editor) we have many such properties. And during testing, even though there were some entries that showed a +/-, the getImageBounds() returned a zero-sized rectangle for all of them. Though it wasn't consistent. It would return zero-sized most of the time, but not all of the time. This makes the property sheet unusable for expanded properties and categories. | resolved fixed | 0e2e57b | ["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/TableItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-15T15:04:08Z" | "2003-06-12T20:33:20Z" |
39,032 | Bug 39032 Bidi: StyledText - exception in autoscroll in bidi | build 20030611 -Enter a blank line in a StyledText widget running in bidi mode -Enter a long line of text immediately after the blank line -Size the widget so that you can autoscroll horizontally -Place the cursor at the beginning of the second line -Mouse select to the right to activate auto scrolling and then select up one line (to the blank line) ->An ArrayIndexOutOfBoundsException is thrown in StyledTextBidi.getVisualOffset java.lang.ArrayIndexOutOfBoundsException: -1 at org.eclipse.swt.custom.StyledTextBidi.getVisualOffset (StyledTextBidi.java:807) at org.eclipse.swt.custom.StyledText.doVisualNext(StyledText.java:3351) at org.eclipse.swt.custom.StyledText$4.run(StyledText.java:2442) at org.eclipse.swt.widgets.Display.runTimer(Display.java:2083) at org.eclipse.swt.widgets.Display.messageProc(Display.java:1633) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Inlined Compiled Code)) at org.eclipse.swt.examples.exampleframework.SwtExample.run (SwtExample.java(Compiled Code)) at org.eclipse.swt.examples.tests.SwtStyledTextUseCase.main (SwtStyledTextUseCase.java:767) Exception in thread "main" | resolved fixed | 4987194 | ["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 | "2003-07-14T15:52:27Z" | "2003-06-17T17:13:20Z" |
37,428 | Bug 37428 Extra pop up menu on text widget with setMenu | Eclipse 2.1 Run the following code. Right click in the text widget and you will see a native pop up menu as well as the one I have added. Also happens with Shift+F10. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); final Text t = new Text(shell, SWT.READ_ONLY | SWT.BORDER |SWT.V_SCROLL | SWT.H_SCROLL | SWT.MULTI); t.setBounds(10, 10, 250, 250); Menu menu = new Menu (shell, SWT.POP_UP); MenuItem item = new MenuItem (menu, SWT.PUSH); item.setText ("Clear"); item.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { t.setText(""); } }); t.setMenu(menu); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 5ee66b4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-11T21:27:19Z" | "2003-05-09T14:20:00Z" |
39,236 | Bug 39236 Completely different behaviour for creating a shell with a parent versus calling setParent | Launch the folowing example. Note that the shell in red is located at (10,10) relative to the display rather than to its parent shell. Click in the red shell which will trigger the setParent call (to the same parent as it already had). Suddenly the red shell becomes an MDI shell (rather than a dialog) and it moves with the parent shell and is positioned relative to the parent shell. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Shell s = new Shell(shell); s.setBackground(display.getSystemColor(SWT.COLOR_RED)); s.addMouseListener(new MouseAdapter() { public void mouseDown(org.eclipse.swt.events.MouseEvent e) { s.setParent(shell); } }); shell.open(); s.setBounds(10, 10, 100, 100); s.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | a397adb | ["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 | "2003-07-11T13:32:16Z" | "2003-06-23T17:40:00Z" |
39,013 | Bug 39013 scrolling down in editor corrupts contents | When using the arrow keys to scroll up/down in an editor view the view contents become corrupted. Using the mouse to scroll doesn't have this problem. Using build N20030617 | resolved fixed | 8079286 | ["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/Canvas.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 | "2003-07-08T23:08:40Z" | "2003-06-17T14:26:40Z" |
38,809 | Bug 38809 DCR - need Display.getSystemCursor() | I20030605 Red Hat 9 Eclipse - open the SWT GTK file OS.java The method outliner takes a long time. This seems to be caused by the new animated wait cursor used by Gnome in RH9. OptimizeIt reports ~40% spent in Cursor.init, from BusyIndicator.showWhile (itself from AbstractTreeViewer probably calling us for each method/variable found in the java file. Measures ('real', without OptimizeIt): regular code: about 20s to 40s to open OS.java (create ~ 900 Wait Cursors) code which reuses the Wait cursor in busyIndicator.showwhile: 4s to 7s | resolved fixed | bae8b23 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/BusyIndicator.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-08T21:14:05Z" | "2003-06-11T22:20:00Z" |
37,490 | Bug 37490 BIDI: text in the rtl-oriented Text control can't be aligned to the trailing edge of this control. | SWT, as usually, uses for creating of it's Text control CreateWindowEx() native call with WS_EX_LAYOUTRTL extended window's style. In spite of this, corresponding native Edit control is created as not mirrored window with WS_EX_RIGHT, WS_EX_LEFTSCROLLBAR and WS_EX_RTLREADING extended styles and ES_RIGHT alignment style. Therefore contents of rtl-oriented Text control can't be aligned to it's trailing edge. We suggest to use WS_EX_RTLREADING and WS_EX_LEFTSCROLLBAR instead of WS_EX_LAYOUTRTL extended style. Using of alignment styles will depend on current orientation of Text control. | resolved fixed | b40aaea | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-07-08T19:16:31Z" | "2003-05-12T09:00:00Z" |
21,212 | Bug 21212 GTK:Selecting a Checkbox from within the selection callback causes infinite loop(BBAWT) | The following example works on Windows but does not work on GTK. This emulates the way our AWT works with the Button. This test has two classes, but the second class should be run(TestSWTRadiobutton). ----------- CheckboxGroup class starts here ------------------ import java.io.Serializable; import org.eclipse.swt.widgets.Button; public class CheckboxGroup { Button selectedCheckbox; public CheckboxGroup() { } public Button getCurrent() { return getSelectedCheckbox(); } public Button getSelectedCheckbox() { return selectedCheckbox; } public void setCurrent(Button checkbox) { setSelectedCheckbox(checkbox); } public void setSelectedCheckbox(Button checkbox) { if (selectedCheckbox == checkbox) { return; } if ((checkbox != null) ) { return; } if (selectedCheckbox != null) selectedCheckbox.setSelection(false); selectedCheckbox = checkbox; if (selectedCheckbox != null) selectedCheckbox.setSelection(true); } void updateSelectedCheckbox(Button checkbox, boolean state) { if (state) { setSelectedCheckbox(checkbox); } else { if (checkbox == selectedCheckbox) { selectedCheckbox = null; } } } } -------------------CheckboxGroup class ends here ---------------------- --------------TestRadioButton class starts here --------------- import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class TestSwtRadiobutton { public static void main(String[] args) { final Display disp = Display.getDefault(); final Shell shell = new Shell(disp); shell.setLayout(new FillLayout()); final CheckboxGroup group = new CheckboxGroup(); final String names[] = { "button1", "button2", "button3", "button4", "button5" }; for (int i = 0; i < names.length; i++) { final Button box = new Button(shell, SWT.RADIO); box.setText(names[i]); box.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { boolean state = box.getSelection(); if (!state) { box.setSelection(true); group.updateSelectedCheckbox(box, true); return; } group.updateSelectedCheckbox(box, state); } }); } shell.setSize(800, 400); shell.open(); while (!shell.isDisposed()) { if (!disp.readAndDispatch()) { disp.sleep(); } } } } ---------------TestSWTRadiobutton class ends here --------------- | resolved fixed | 463a1f2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Composite.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 | "2003-07-07T19:51:48Z" | "2002-07-03T18:13:20Z" |
39,119 | Bug 39119 Text.ComputeSize(0) returning 0 on GTK (BBAWT) | Linux - RH8 SWT 3009 The following test case creates a Text and then calls computeSize(0,0). On Motif, Windows 2000, and QNX, a positive value is returned {(14,15), (13,7), and (5,5), respectively}. But GTK returns (0,0). It looks like computeSize(x,y) on GTK always returns (x,y), while all other platforms tested seem to add the noted values to x and y. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; public class SWTTextFieldTest { Display display; Shell shell; Text text; Point insetSize; public void run() { display = new Display(); shell = new Shell(display); text = new Text( shell, SWT.SINGLE | SWT.BORDER | SWT.NULL | SWT.CLIP_CHILDREN | SWT.CLIP_SIBLINGS); shell.setSize(300, 300); shell.open(); insetSize = text.computeSize(0, 0); System.out.println("InsetSize = " + insetSize); while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTTextFieldTest().run(); } } | resolved fixed | 3be5b3e | ["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 | "2003-07-04T17:18:40Z" | "2003-06-19T13:40:00Z" |
39,443 | Bug 39443 GTK Error calling TreeItem.getExpanded() on a tree item being disposed. | Here's a simple test case that works just fine on Motif, Windows and OS X, but crashes on GTK. We do something similar in GEF and it crashes the entire workbench -- I couldn't find anything in the log or console that even showed an error occured. This test case here shows the following error message in the console: Gtk-ERROR **: file gtktreestore.c: line 576 (gtk_tree_store_get_path): assertion failed: (G_NODE (iter->user_data)->parent != NULL) import org.eclipse.swt.SWT; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.widgets.*; public class TreeTest { public static void main(String[] args) { Shell shell = new Shell(); Tree tree = new Tree(shell, SWT.NONE); final TreeItem item1 = new TreeItem(tree, SWT.NONE); item1.setText("Item 1"); item1.addDisposeListener(new DisposeListener() { public void widgetDisposed(DisposeEvent e) { boolean expanded = item1.getExpanded(); } }); tree.removeAll(); shell.open(); Display display = Display.getDefault(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); display.dispose(); } } | resolved fixed | 9b0630f | ["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 | "2003-07-04T16:49:30Z" | "2003-06-27T18:53:20Z" |
36,997 | Bug 36997 DCR: Accessibility on GTK | Implement Accessibility on GTK. | resolved fixed | adaa848 | ["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 | "2003-07-02T21:41:50Z" | "2003-04-28T14:26:40Z" |
39,107 | Bug 39107 Up and Down keys not always work for Combo | It occurs only on GTK. After creating a read only combo, and add to it several values, by pressing the up / down keys, the value of the combo changes. This works almost fine with two problems, the first value of the combo and the last value of the combo. When i reach to the first value and press the up key, the focus is lost, and pressing either up or down key won't release me from this state, only using the mouse will do the work here. Same for the last value, but with pressing the down key. | resolved fixed | d8f94e0 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-27T22:41:10Z" | "2003-06-19T08:06:40Z" |
12,220 | Bug 12220 SWT Mouse Enter comes before Mouse Exit [portability] | If I have two controls, A and B, and move the mouse from one to the other, control B will get entered, and then control A exited. These events are out of order. The exit should happen first, followed by the enter. import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.events.MouseEvent; import org.eclipse.swt.events.MouseMoveListener; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.widgets.*; public class ExitEnterTest { public static void main(String args[]){ Display display = new Display(); final Shell shell = new Shell(display); shell.setSize(600, 600); shell.setLocation(100,100); Canvas canvas2 = new Canvas(shell, 0); Canvas canvas1 = new Canvas(shell, 0); canvas1.setBackground(new Color(null, 20,200,100)); canvas1.setBounds(50, 50, 200, 200); canvas1.addMouseTrackListener(new MouseTrackAdapter() { public void mouseExit(MouseEvent e) { System.out.println("canvas1 exited"); } }); canvas2.setBounds(100, 100, 200, 200); canvas2.setBackground(new Color(null,200,20,200)); canvas2.addMouseTrackListener(new MouseTrackAdapter() { public void mouseEnter(MouseEvent e) { System.out.println("canvas2 entered"); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 53ae165 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-26T21:11:22Z" | "2002-03-25T15:26:40Z" |
39,140 | Bug 39140 SWT.VERTICAL ignored in ToolBar | If you create a ToolBar with the SWT.VERTICAL flga it is ignored unless you slam the size of the widget to only fit one entry. | resolved fixed | 85174ac | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-26T17:15:55Z" | "2003-06-19T19:13:20Z" |
19,153 | Bug 19153 Combo fires too many SelectionEvents in GTK2 | Build F2 (20020602) Redhat 7.2, GTK2 KDE 2.2-10 (GTK2 only) If you add a SelectionListener to a Combo, then your widgetSelected() will be called many more times than would be expected. For example, If you click and hold the arrow then move on one of the elements in the drop down list (still holding button), then it continually fires events even though you're not moving. Also, every element you move your mouse over causes multiple selection events. Another problem is that as soon as you click the arrow then move your mouse one pixel, the first element is selected. This can be bad if you don't remember what it was on before and just want to see the options. This example demonstrates this.. it just prints "X" everytime widgetSelected() is called. ----------------------------------------------- public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); shell.setSize(200, 200); Combo combo = new Combo(shell, SWT.DEFAULT); combo.add("a"); combo.add("bbb"); combo.add("cccccc"); combo.select(0); combo.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { System.out.print("X"); } }); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); display.dispose(); } ----------------------------------------------- | resolved fixed | cd1cc03 | ["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 | "2003-06-26T15:27:16Z" | "2002-06-04T17:00:00Z" |
38,606 | Bug 38606 List constructor with SWT.SIMPLE | SWT.MULTI style parameters behaves incorrectly (BBAWT) | If you create a list using the List(Shell, SWT.MUlTI|SWT.SIMPLE) constructor, it will not correctly handle events in Motif. In the following example, events on the list are reported to the terminal by GTK but NOT by Motif. import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.List; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; public class SWTListTest { Display display; Shell shell; List list; public void run() { display = new Display(); shell = new Shell(display, SWT.SHELL_TRIM); shell.setSize(400,400); shell.setLayout(new FillLayout()); list = new List(shell, SWT.MULTI | SWT.SIMPLE); list.add("item 1"); list.add("item 2"); list.add("item 3"); Listener l = new Listener(){ public void handleEvent(Event event) { if(event.type == SWT.Selection){ int selected = (list.getSelectionIndices()).length; System.out.println("selected = " + selected); } } }; list.addListener(SWT.Selection, l); list.addListener(SWT.DefaultSelection, l); shell.open(); while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTListTest().run(); } } | resolved fixed | fb772df | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-24T20:37:20Z" | "2003-06-06T20:06:40Z" |
20,083 | Bug 20083 CCombo method redraw() does not work | Build 20020611 Win2k Calling the redraw() method on a CCombo does not redraw the CCombo. It will, however, draw a CCombo's border if one is present. Using the redraw(int, int, int, int, boolean) method does work though. The redraw(int, int, int, int, boolean) is overridden in CCombo to deal with the fact that it is implemented using a Text and a Button as children. However, redraw() is not overridden, so it will only draw the underlying composite, and not the children (which is what you see). Here's an example to see this: ---------------------- public static void main (String[] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setLayout (new GridLayout ()); final Combo combo = new Combo (shell, SWT.NONE); final CCombo ccombo = new CCombo (shell, SWT.NONE); shell.pack (); shell.open (); shell.forceFocus (); GC gc = new GC (display); gc.fillRectangle (shell.getBounds ()); gc.dispose (); shell.redraw (); combo.redraw (); ccombo.redraw (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } ---------------------- | resolved fixed | 00fdc21 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-24T13:48:10Z" | "2002-06-12T22:13:20Z" |
38,626 | Bug 38626 DirectoryDialog getFilterPath() always returns null | OS: Red Hat 8, Gnome Eclipse 2.1 M1 (Thu, 5 Jun 2003 -- 17:37 (-0400)) I am using the DirectoryDialog getFilterPath() method to get the directory the user selected after open() returns. It works fine on Windows XP but on the version of Linux I am using it always returns null. I am selecting a directory in the dropdown and then selecting a subdirectory in the list. | resolved fixed | 6b7d469 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/DirectoryDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-19T17:06:01Z" | "2003-06-07T21:06:40Z" |
39,078 | Bug 39078 FormData throws "Widget is disposed" when it's widget is dispose()d | FormData.getXXXAttachment() throws SWTException "Widget is disposed" because it doesn't do any isDisposed() checks. I originally thought hiding the component first and forcing a layout(true) would fix it, but that must have been some other problem. I am attaching a snippit. | resolved fixed | 24489ec | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/FormData.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-19T16:53:32Z" | "2003-06-18T18:13:20Z" |
38,987 | Bug 38987 PocketPC: MULTI Text control ES_WANTRETURN/_TAB_NEXT problem | PocketPC: MULTI Text control ES_WANTRETURN/_TAB_NEXT problem On PocketPC, when having a MULTI Text control with or without scrollbars, with or without wrap, etc. -- you cannot make it accept plain [Enter] key to break lines. Only Ctrl+Enter (Ctrl+M, Ctrl+J) would work. What helps is an internal OS hack: int oldBits = OS.GetWindowLong (text.handle, OS.GWL_STYLE); int newBits = oldBits | 0x1000; // ES_WANTRETURN OS.SetWindowLong (text.handle, OS.GWL_STYLE, newBits); Similar situation with the TAB key: we want it act regularly by inserting a TAB character into the text. But there is no "WANTTAB" flag. There is this Traverse functionality by adding a listener and in the handler to set the doit field for the event. However, in PocketPC, neither 'false' or 'true' has any effect on reviving the TAB (or ENTER). So the only solution for TAB is in the same Traverse handler to Text.insert() the character manually. This is a workaround and it behaves differently on the Desktop, however it should be consistent. These problems with NOT getting either LF or TAB character do not appear on desktop SWT. So this may be just a bug in PocketPC. | resolved fixed | e08f800 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-17T22:03:58Z" | "2003-06-16T21:46:40Z" |
38,412 | Bug 38412 [Actions] Navigator tree cell editors too small | I20030528 MacOS X 10.2.6 - start Eclipse - in the Navigator select any resource - from the context menu select "Rename" Observe: the cell editor field is too small and leaves only the upper half of the text visible. | verified fixed | dae1c91 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-17T21:31:40Z" | "2003-06-04T15:20:00Z" |
34,330 | Bug 34330 Problem with TreeEditor when expanding tree item | null | resolved fixed | 94a6308 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ControlEditor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TreeEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-17T20:25:29Z" | "2003-03-10T15:26:40Z" |
38,344 | Bug 38344 StyledText - exception when selecting lines in WRAP mode | null | resolved fixed | b87ca47 | ["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 | "2003-06-16T20:53:06Z" | "2003-06-02T18:53:20Z" |
37,782 | Bug 37782 Shell setMinimized(true) doesn't deactivate Shell | Calling setMinimized(true) on a shell doesn't behave in the same way as clicking on the minimize button of the title bar. Specifically, calling setMinimized doesn't cause the shell to become deactivated. The following code snipped illustrates the problem: public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setLayout(new FillLayout(SWT.HORIZONTAL)); final Button current = new Button(shell, SWT.PUSH); current.setText("Minimize (Current)"); final Button proposed = new Button(shell, SWT.PUSH); proposed.setText("Minimize (Proposed)"); Listener l = new Listener() { public void handleEvent(Event e) { System.out.print("Minimize "); if(e.widget == current) { System.out.println(" (Current)"); shell.setMinimized(true); } else if (e.widget == proposed) { System.out.println(" (Proposed)"); OS.SendMessage(shell.handle, OS.WM_SYSCOMMAND, OS.SC_MINIMIZE, 0); } System.out.println("Active Shell: " + display.getActiveShell()); } }; current.addListener(SWT.Selection, l); proposed.addListener(SWT.Selection, l); shell.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event e) { System.out.println("Shell Deactivated"); } }); shell.pack(); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } Clicking the "Minimize (Current)" button causes the shell to be minimized but it remains active. Hence, no deactivate event is fired (but one is fire when you click on the shell in the taskbar to restore it!), and the application under the shell (if there is one) doesn't become active. Clicking on the "Minimize (Proposed)" button minimizes the shell and does cause it to be become deactivated. Hence, the above issues are resolved. My proposal is that the setMinimized method in Decorations be changed from: public void setMinimized (boolean minimized) { checkWidget (); if (OS.IsWinCE) return; swFlags = OS.SW_RESTORE; if (minimized) swFlags = OS.SW_SHOWMINNOACTIVE; if (!OS.IsWindowVisible (handle)) return; if (minimized == OS.IsIconic (handle)) return; OS.ShowWindow (handle, swFlags); OS.UpdateWindow (handle); } to public void setMinimized (boolean minimized) { checkWidget (); if (OS.IsWinCE) return; swFlags = OS.SW_RESTORE; if (minimized) swFlags = OS.SW_SHOWMINNOACTIVE; if (!OS.IsWindowVisible (handle)) return; if (minimized == OS.IsIconic (handle)) return; int flag = (minimized) ? OS.SC_MINIMIZE : OS.SC_RESTORE; OS.SendMessage(handle, OS.WM_SYSCOMMAND, flag, 0); } | resolved fixed | b308d21 | ["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 | "2003-06-16T17:27:19Z" | "2003-05-16T18:33:20Z" |
38,912 | Bug 38912 DBCS: input special symbol breaks input method on ja_JP | Trying to input special symbols using kinput2 (default linux input method for ja_JP on Linux) breaks the input method on the widget. Steps 1) Focus a Text widget 2) Start input method (Shift+Space) 3) Open Auxiliary Control Window (Insert) 4) Choose a symbol and press enter 5) Close the input method (Shift+Space) Bug: - The symbol is insert on the widget twice - Warning on the console: (<unknown>:22311): GLib-GObject-WARNING **: gsignal.c:1972: handler `69' of instance `0x81321b8' is not blocked - From now on any input (SBCS or DBCS) that goes thru the commit won't be insert on the widget. For the StyledText inserting symbols does not work but attemping to do so does not cause the input method to stop work. Works on Motif. | resolved fixed | 66ce2b4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.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 | "2003-06-13T21:52:48Z" | "2003-06-13T21:33:20Z" |
38,353 | Bug 38353 crash in OS.gtk_main_iteration() when double-click disabled text widget | using linux redhat 8.0 gtk eclipse base build wswb-2.1.1-M200305211757 I have a view that contains a disabled styled text widget (i call setEnabled (false) on the widget). I notice that if the view does not have focus, then i double-click (or sometimes triple click, or just keep clicking till crash) into the view, my workbench crashes! If the view already has focus, and I triple-click the text widget, a cursor appears and i can type in the widget like it is enabled. this problem does not occur in linux motif/windows Here is what i get: Unhandled exception Type=GPF vmState=0xffffffff Target=20030502 (Linux 2.4.18-27.8.0 x86) eax: 0x00000005 ebx: 0x4213820c ecx: 0x00000000 edx: 0x00000000 esi: 0x0000000d edi: 0x00000000 ebp: 0xbfffdfe0 esp: 0xbfffdfc8 es: 0x0000002b ds: 0x0000002b eip: 0x42075a29 eflags: 0x00010202 cs: 0x00000023 ss: 0x0000002b Thread: main (priority 5) (LOCATION OF ERROR) 008f org/eclipse/swt/internal/gtk/OS.gtk_main_iteration()I (@40903c17) 002f org/eclipse/swt/widgets/Display.readAndDispatch()Z (@4091c713) 000d org/eclipse/ui/internal/Workbench.runEventLoop (Lorg/eclipse/jface/window/Window$IExceptionHandler;)V 00c9 org/eclipse/ui/internal/Workbench.run(Ljava/lang/Object;) Ljava/lang/Object; 0039 org/eclipse/core/internal/boot/InternalBootLoader.run (Ljava/lang/String;Ljava/net/URL;Ljava/lang/String; [Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object; 0006 org/eclipse/core/boot/BootLoader.run (Ljava/lang/String;Ljava/net/URL;Ljava/lang/String; [Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object; 0007 java/lang/reflect/AccessibleObject.invokeL(Ljava/lang/Object; [Ljava/lang/Object;)Ljava/lang/Object; 0171 java/lang/reflect/Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;) Ljava/lang/Object; 00f6 org/eclipse/core/launcher/Main.basicRun([Ljava/lang/String;) Ljava/lang/Object; 000e org/eclipse/core/launcher/Main.run([Ljava/lang/String;)Ljava/lang/Object; 0026 org/eclipse/core/launcher/Main.main([Ljava/lang/String;)V | resolved fixed | 6bf6f7f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-13T15:51:41Z" | "2003-06-03T00:26:40Z" |
38,841 | Bug 38841 NPE in Widget.filters | build I20030610 Noticed the following in my log after shutdown. Sorry, no idea how it was triggered. !ENTRY org.eclipse.ui 4 4 Jun 11, 2003 16:25:50.284 !MESSAGE Unhandled exception caught in event loop. !ENTRY org.eclipse.ui 4 0 Jun 11, 2003 16:25:50.284 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at java.lang.NullPointerException.<init>(NullPointerException.java:63) at org.eclipse.swt.widgets.Widget.filters(Widget.java) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:986) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1633) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:2936) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:1533) at org.eclipse.swt.widgets.Control.windowProc(Control.java) at org.eclipse.swt.widgets.Display.windowProc(Display.java) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1399) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1382) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at java.lang.reflect.AccessibleObject.invokeImpl(Native Method) at java.lang.reflect.AccessibleObject.invokeL(AccessibleObject.java:207) at java.lang.reflect.Method.invoke(Method.java:271) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) | resolved fixed | 916a77e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-13T14:34:32Z" | "2003-06-12T15:00:00Z" |
35,183 | Bug 35183 DBCS: Set text generates Index of Bounds exception using 2.0 NLS language pack | Driver: RC2 Java : Sun Java 1.3.1_07 OS: Solaris Language: ja_JP I got errors in the .log file during launching the WB with NLS language package, and WB did not launch. Steps 1. Extract the eclipse-SDK.zip 2. Extract the NLS Language package (eclipse-nls-SDK-2.0.x.zip) under the same directory 3. Launch the eclipse (./eclipse -vm /......) Then I got the error dialog and got errors in the .log file. WB startup failed. | closed fixed | 228bb4e | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/internal/Converter.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-10T21:13:13Z" | "2003-03-18T04:00:00Z" |
38,385 | Bug 38385 Japanese Input (IME) not doesn't come up | build 2.1.1 (20030602) Changes to fix a GP and focus trouble on Motif work in Linux but broke the Japanese Input on AIX, Solaris and possibly HP (we can't test this). SSQ and SN are working on a fix. We should do this for 2.1.1. | resolved fixed | aa4a6db | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Caret.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Label.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-09T20:41:35Z" | "2003-06-03T19:53:20Z" |
29,534 | Bug 29534 Override default behavior of 'F10' key | I'm writing a terminal emulation application that emulates terminals where the functions keys are valid key strokes, including 'F10'. I need to be able to override the default behavior of the 'F10' key to have terminal applications run properly. As for the special key sequences (Ctrl + Esc), the default behavior does not need to be overridden because they are not valid user inputs on a terminal. Attached is a previous discussion with Steve Northover: I agree you have the case where you need to see F10. Please enter a bugzilla report describing your case to avoid me telling you later that you don't really need to do this. The problem I see is that there are all kinds of special key sequences on the various platforms that do magic things. We might be able to work around F10 on Windows but what about Ctrl+Esc? The list goes on, can change between operating system releases and is not well documented. Let's continue the discussion in the bug report. Please paste in this text. Thanks. | resolved fixed | 123ea21 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-05T18:48:41Z" | "2003-01-15T14:13:20Z" |
38,433 | Bug 38433 Editor titlebars are not painted | Build 20030604 The editor titlebar is not correctly painted. Only some of the editors actually appear. Also, the bottom 1/4 of viewpart titlebars are not painted. | resolved fixed | 87ab568 | ["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 | "2003-06-05T18:03:13Z" | "2003-06-04T20:53:20Z" |
35,493 | Bug 35493 OleClientSite hang | I20030317 Calling SHOW on Word after shell is open causes a hang. public static void main(String[] args) { Display disp = new Display(); Shell mainWnd = new Shell(disp); mainWnd.setText("OleTest"); mainWnd.setLayout(new FillLayout()); OleFrame frame = new OleFrame(mainWnd, SWT.BORDER); String progID = "Word.Document"; OleClientSite fSite = new OleClientSite(frame, SWT.NONE, progID); // fSite.doVerb(OLE.OLEIVERB_SHOW); // call doVerb before shell is open and OK mainWnd.open(); fSite.doVerb(OLE.OLEIVERB_SHOW); //call doVerb after shell is open and GP while (!mainWnd.isDisposed()) { if (!disp.readAndDispatch()) { disp.sleep(); } } } | resolved fixed | a2121a3 | ["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 | "2003-06-05T13:05:32Z" | "2003-03-21T18:06:40Z" |
21,191 | Bug 21191 Decorations.setImage() could do a better job with masked images | The current win32 code for setImage in the SWT.BITMAP case does a crude job of synthesising an icon from the bitmap, when in many cases it could do much better if it made use of the mask from the bitmap. The current code uses a blank mask, genererated like: int hMask = OS.CreateBitmap (bm.bmWidth, bm.bmHeight, 1, 1, lpvBits); But a simple, higher level transformation can yield a nice icon from a .gif (which I think is the most image common case), like this sample: ImageData id = new ImageData("icons/lock-doc-16x16.gif"); shell.setImage(new Image(display, id, id.getTransparencyMask())); I would suggest that Decorations.setImage() simply make use of the Image's ability to generate an icon using its mask, when available. | resolved fixed | 0ea92b6 | ["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 | "2003-06-02T22:05:10Z" | "2002-07-02T22:46:40Z" |
38,331 | Bug 38331 [portability] Inconsistent handling of Image on different platforms | Setting a MenuItem with an Image with transparency on GTK always works. On win32, it only works if you jump through hoops and completely guess at how SWT maps the various Image constructors into win32 resources. The inconsistency is bad, but so is the subtlety of the necessary workaround. Here is a snippet, where "transparent.gif" is a GIF with some transparency in it: public class IconVsImage { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display); Menu menu = new Menu(shell, SWT.BAR); shell.setMenuBar(menu); MenuItem file = new MenuItem(menu, SWT.CASCADE); file.setText("File"); Menu fileMenu = new Menu(file); file.setMenu(fileMenu); MenuItem item1 = new MenuItem(fileMenu, 0); item1.setText("item 1"); MenuItem item2 = new MenuItem(fileMenu, 0); item2.setText("item 2"); Image image1 = new Image(null, IconVsImage.class.getResourceAsStream ("transparent.gif")); //How does the client know that this is necessary on win32?? Image image2 = new Image(null, image1.getImageData(), image1.getImageData().getTransparencyMask()); item1.setImage(image1); item2.setImage(image2); shell.setSize(600, 500); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); } } | resolved wontfix | aa14e77 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-06-02T21:43:43Z" | "2003-06-02T16:06:40Z" |
38,337 | Bug 38337 GC.drawRoundedRectangle(...) method doesn't include the right and bottom edge | The GC.drawRoundedRectangle(...) method doesn't include the right and bottom edge. I'm using WinXP and swt-win32-2133.dll. This behavior is inconsistent with the other APIs such as drawRectangle, drawOval, etc..., that include the bottom and right edge, and on GTK the rounded rectangle is drawn correctly with all 4 edges included. For the fill API GC.fillRoundRectangle(...) that should exclude the edges, it actually doubles up and excludes two pixels of theright and bottom edges. | resolved fixed | 45f9103 | ["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 | "2003-06-02T19:46:41Z" | "2003-06-02T16:06:40Z" |
38,242 | Bug 38242 Border width on Table incorrect - creates unwanted scrollbars | It appears that on Windows the Table class always allocates a small border, with a width equal to the value of OS.GetSystemMetrics (OS.SM_CXEDGE), whether you explicitly set a border or not. If you don't set a border then the actual physical border is equal to this value. If you set a border then this value has to be added to the reported value. The current implementation of getBorderWidth(), inherited from the Control class, doesn't take this into account. This results id that the preferred size of the Table is being slightly underestimated, which causes unwanted scrollbars. Here's a test case that shows the problem: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Broken Table Border?"); Table table = null; String mode = args[0]; if("current".equals(mode)) { // this will have an unwanted vertical scrollbar table = new Table(shell, SWT.NONE); } else if("proposed_noborder".equals(mode)) { table = new ProposedFixTable(shell, SWT.NONE); } else if("proposed_border".equals(mode)) { table = new ProposedFixTable(shell, SWT.BORDER); } new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem1"); new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem2"); new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem3"); table.setSize(table.computeSize(100, SWT.DEFAULT)); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } static public class ProposedFixTable extends Table { public ProposedFixTable(Composite parent, int style) { super(parent, style); } protected void checkSubclass () {} public int getBorderWidth () { int borderWidth = super.getBorderWidth(); borderWidth += OS.GetSystemMetrics (OS.SM_CXEDGE)/2; return borderWidth; } } | resolved fixed | 3269f2b | ["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 | "2003-06-02T16:29:06Z" | "2003-05-29T17:40:00Z" |
36,636 | Bug 36636 StyledText - Printing could end pages twice | build R2.1 In StyledText.Printing.print() we have a test to see if we need to call endPage on a partially printed page when printing is done. We also close pages while printing lines when a full page has been printed. The test to close a partial page could theoretically close the page again when it was already closed based on completing a full page. The test is off by two lines. In practice this is unlikely to happen since the page size would have to fall right between these two lines. The effect would be a blank page inserted after every printed page. | resolved fixed | d97d105 | ["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 | "2003-05-30T15:55:42Z" | "2003-04-17T17:20:00Z" |
38,221 | Bug 38221 Index out of bounds from Combo.select() | The Javadoc for the org.eclipse.swt.widgets.Combo.select() methods says that indecies that are out of range are ignored by on the Mac platform I get the following exception: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2318) at org.eclipse.swt.SWT.error(SWT.java:2262) at org.eclipse.swt.widgets.Widget.error(Widget.java:506) at org.eclipse.swt.widgets.Combo.select(Combo.java:1155) I found the following line in the source code, which I assume is where the exception is being thrown: if (0 > index || index >= count) error (SWT.ERROR_INVALID_RANGE); This causes the Mac platform to behave differently then other platforms and from the way the document says it should work. | resolved fixed | 03027a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-29T17:42:31Z" | "2003-05-29T03:46:40Z" |
38,076 | Bug 38076 Combo doesn't calculate its size properly when only text is set. | Debian Linux, GTK 2.2.1-6. See attached screenshots. The pulldown arrow seems too big and the width is too small for its content when expanded. | resolved fixed | f1d57a4 | ["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 | "2003-05-29T17:16:40Z" | "2003-05-24T12:40:00Z" |
23,787 | Bug 23787 [Properties dialog] Project Properties -> Info page should not use text fields | Integration build 09/17. Looks bad on all motif platforms. - select a Project, right-click -> Properties - on the subsequent Info page the read-only fields (the values for Path, Type, etc.) are created as read-only Text fields instead of Labels. I guess this is so that their values can be selected and copied by the user (?) - this looks fine on windows, but on motif these text fields all get automatic borders, which identify them as user input targets. Additionally, on Solaris/AIX/HP-UX these fields have different coloured backgrounds which make them stand out much worse | resolved fixed | 26b2de3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-28T21:24:47Z" | "2002-09-18T20:13:20Z" |
33,359 | Bug 33359 [JUNIT] Scrollbar tests fail | I20030221 Scrollbar JUnit tests failing: 1)Test_org_eclipse_swt_widgets_ScrollBar.test_setThumbI line 817 junit.framework.AssertionFailedError: expected:<0> but was:<10> 2) Test_org_eclipse_swt_widgets_ScrollBar.test_setSelectionI line 801 junit.framework.AssertionFailedError: expected:<0> but was:<10> 3) Test_org_eclipse_swt_widgets_ScrollBar.test_setMinimumI line 767 junit.framework.AssertionFailedError: expected:<0> but was:<10> 4) Test_org_eclipse_swt_widgets_ScrollBar.test_setMaximumI line 751 junit.framework.AssertionFailedError: expected:<0> but was:<10> | resolved fixed | 6772285 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ScrollBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Slider.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-27T17:57:25Z" | "2003-02-26T20:06:40Z" |
38,161 | Bug 38161 MessageDialog does not accept null shell | 2.1 The Javadoc for MessageDialog's constructors states: Note: Currently, null can be passed in for the parent. ... However, this is no longer the case. In 2.1, trying this results in an NPE. I actually wanted this since I need to bring up a dialog on startup to notify the user of a workspace version incompatibility. There are no other shells around at this point (or even a display). Now I have to create a bogus shell just to avoid the NPE. | resolved wontfix | d173a32 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/widgets/Dialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ColorDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FontDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MessageBox.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-27T16:59:39Z" | "2003-05-27T15:40:00Z" |
33,164 | Bug 33164 [JUNIT] Scale setMinimum and setMaximum fail | I20030221 1) Test_org_eclipse_swt_widgets_Scale.test_setMinimumI junit.framework.AssertionFailedError: expected:<100> but was:<10> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at junit.framework.Assert.assertEquals(Assert.java:207) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.check(Test_org_eclipse _swt_widgets_Scale.java:60) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.report(Test_org_eclipse _swt_widgets_Scale.java:55) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.test_setMinimumI(Test_ org_eclipse_swt_widgets_Scale.java:605) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.runTest(Test_org_eclips e_swt_widgets_Scale.java:668) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67) 2) Test_org_eclipse_swt_widgets_Scale.test_setMaximumI junit.framework.AssertionFailedError: expected:<10> but was:<100> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at junit.framework.Assert.assertEquals(Assert.java:207) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.check(Test_org_eclipse _swt_widgets_Scale.java:59) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.report(Test_org_eclipse _swt_widgets_Scale.java:55) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.test_setMaximumI(Test_ org_eclipse_swt_widgets_Scale.java:586) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.runTest(Test_org_eclips e_swt_widgets_Scale.java:667) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67) | resolved fixed | 47e220c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ProgressBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scale.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-26T21:06:03Z" | "2003-02-25T21:53:20Z" |
38,055 | Bug 38055 Shell Title bar displayed when only SWT.REZISE. | When I create a shell with only SWT-RESIZE and on other styles I get a menu/title bar at the top. But if I resize the window the menu/title bar disappears. If seem sthe bar should not appear in the first place. public static void main(String[] args) { Shell shell = new Shell(SWT.RESIZE); shell.open(); Display display = shell.getDisplay(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } | resolved fixed | 90b0c81 | ["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 | "2003-05-26T14:29:26Z" | "2003-05-23T17:13:20Z" |
24,700 | Bug 24700 Text: Compute Size error | Eclipse 20021009 Open the properties dialog for any package in linux-GTK, note the size of the text fields. (Path, type, location, last modified). Last modified is my favourite, nice wrapping. Compare with eclipse R2.0.1 (20020829) if you don't see the problem. | resolved fixed | edb7cab | ["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 | "2003-05-23T21:07:13Z" | "2002-10-11T15:26:40Z" |
34,634 | Bug 34634 "Select a type" hierarchy view message cut off | build RC2 The message displayed in the hierarchy view when no type is selected is not fully visible. It is cut off vertically on the right side. | resolved fixed | ac1e421 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-22T21:08:24Z" | "2003-03-11T16:26:40Z" |
37,941 | Bug 37941 Coolbar setMinimumSize introduces chevrons on Linux | Build 20030516 Run the attached test case. Press the Set Size button. Notice that the size of the coolitems is changed and chevrons are introduced. Doing the same on Windows properly maintains the coolbar layout. | resolved fixed | 785983f | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-22T18:24:55Z" | "2003-05-21T20:46:40Z" |
33,080 | Bug 33080 [JUNIT]Shell.isMinimized() returns false after shell.setMinized(true) | I20030221 Test_org_eclipse_swt_widgets_Decorations.test_setMinimizedZ Shell.isMinimized returns false after shell.setMinimized(true). junit.framework.AssertionFailedError: :2: at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Decorations.test_setMinimized Z(Test_org_eclipse_swt_widgets_Decorations.java:158) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Decorations.runTest(Test_org _eclipse_swt_widgets_Decorations.java:243) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Shell.runTest(Test_org_eclips e_swt_widgets_Shell.java:425) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67) | resolved fixed | 0178d9b | ["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 | "2003-05-22T01:27:37Z" | "2003-02-25T19:06:40Z" |
28,535 | Bug 28535 rectangles with pensize > 1 draw at wrong position | Run the following snippet and observe that some rectangles are antialiased (but shouldn't): import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class StrokeRectTest { public static void main(String[] args) { Display display= new Display(); Shell shell= new Shell(display); shell.setLayout(new FillLayout()); final Canvas canvas= new Canvas(shell, SWT.NULL); canvas.addPaintListener( new PaintListener() { public void paintControl(PaintEvent event) { GC g= event.gc; for (int y= 1; y <= 10; y++) { for (int x= 1; x <= 10; x++) { g.setLineWidth(Math.min(x, y)); g.drawRectangle(x*50, y*50, 40, 40); } } } } ); shell.setSize(600, 600); shell.open(); while (! shell.isDisposed()) { if (! display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | f55f8c2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-22T01:08:42Z" | "2002-12-17T15:46:40Z" |
33,166 | Bug 33166 [JUNIT]Combo setLocation fails | I20030221 Test_org_eclipse_swt_widgets_Control.test_setLocationII junit.framework.AssertionFailedError: expected:<Point {8, 19}> but was:<Point {11, 22}> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:71) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Control.test_setLocationII(Test _org_eclipse_swt_widgets_Control.java:526) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Control.runTest(Test_org_ecli pse_swt_widgets_Control.java:810) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scrollable.runTest(Test_org_e clipse_swt_widgets_Scrollable.java:70) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Composite.runTest(Test_org_ eclipse_swt_widgets_Composite.java:156) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.runTest(Test_org_ecli pse_swt_widgets_Combo.java:681) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67) | resolved fixed | a74352a | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.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 | "2003-05-22T00:26:14Z" | "2003-02-25T21:53:20Z" |
30,854 | Bug 30854 [Encoding] DBCS: Encoding change at the Preferences cause core dump in motif | Language: Japanese Build driver: eclipse-SDK-I20030129-linux-motif OS: RedHat 8 JDK Ver.: IBM JDK1.3.1 + SR3 Summary: DBCS: Encoding change at the Preferences cause core dump in motif Steps to recreate problem: 1. Launch workbench with motif build on RedHat 8 JP 2. Create a Simple project 3. Import build.xml file 4. Open Preferences (Window -> Preferences) 5. Select Workbench -> Editors 6. Select "Others" of test file encoding and select "UTF-8" 7. Click OK 8. Open buildjp.xml and edit it 9. Save and Close the file 10. Open Preferences 11. Change the encoding to Default(EUC_JP) at the Workbench -> Editors , then click "OK" <<Error>> After step 11, the workbench core dump. <<Expected Result>> It should reset the encoding successfully without core dump. | closed fixed | b56f97c | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-21T21:21:11Z" | "2003-02-04T09:13:20Z" |
37,858 | Bug 37858 Some SWT Labels draw text in white | I20030516 (or SWT HEAD) MacOS 10.2.6 - start Eclipse on new workspace - open New wizard - select Java / New Project - press Next Observe: two labels on wizard page are not readable since they draw the text in white. | resolved fixed | 6d97422 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-21T20:24:15Z" | "2003-05-20T11:26:40Z" |
37,874 | Bug 37874 "Jumping" layout | I20030516 MacOS 10.2.6 Lots of relayout operations appear to be "jumpy" because an intermediate layout becomes visible. One good example is: - open preference dialog - select first node "Workbench" - use the arrow down key to move selection to next node Observe: on some layout changes the whole window contents (including the tree) first moves downward and immediately jumps back to the correct position. Sometimes even screen cheese remains in the top left corner (probably an interaction between tree selection rectangle and a tree repositioning) | resolved fixed | 4118bf6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-05-20T23:49:35Z" | "2003-05-20T17:00: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.