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 timestamp[us, tz=UTC] | report_datetime timestamp[us, tz=UTC] |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
118,378 | Bug 118378 StyledText#computeSize imposes artificial limit on return value | null | resolved fixed | 97bce29 | ["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 | 2005-11-29T21:08:05Z | 2005-11-29T07:40:00Z |
118,241 | Bug 118241 StyledText: getLineHeight(int) and getBaseline(int): code do not match spec | N20051127-0010 The Javadoc says: * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_RANGE when the offset is outside the valid range (< 0 or > getCharCount())</li> While the code tests: if (!(0 <= offset && offset < content.getCharCount())) { SWT.error(SWT.ERROR_INVALID_RANGE); Which one is correct? | verified fixed | e43ea7f | ["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 | 2005-11-28T18:56:14Z | 2005-11-28T15:00:00Z |
118,240 | Bug 118240 StyledText.getBaseline(StyledText.getCharCount()-1)) causes IAE | N20051127-0010 When having something like: 'xxx xxx ' calling StyledText.getBaseline(StyledText.getCharCount()-1)) causes an IAE: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3246) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at... | verified fixed | 72acb45 | ["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 | 2005-11-28T18:35:52Z | 2005-11-28T15:00:00Z |
117,928 | Bug 117928 JDT Text test don't run anymore (out of handles) - works with SWT 3.2 M1 | I20051123-1200 I have the following setup: 1. install I20051123-1200 2. start fresh workspace 3. load org.eclipse.jdt.text.tests checked out from HEAD 4. load all its required test projects from HEAD 5. load org.eclipse.jface.text from HEAD 6. *** only needed to run against SWT from 3.2 M1 - see later step *** - replac... | verified fixed | 40c0440 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-25T20:24:33Z | 2005-11-24T16:33:20Z |
117,816 | Bug 117816 Crash while running JFace test suite | I20051123-1200, UI and SWT from HEAD, GTK+ 2.6.10, KDE 3.4.1, X.org 6.8.2, Linux 2.6.13 It starts with the following failure.... junit.framework.AssertionFailedError: first2 is visible at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNot... | resolved fixed | 66037f9 | ["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 | 2005-11-25T17:59:53Z | 2005-11-24T02:40:00Z |
99,381 | Bug 99381 [PerspectiveBar] Alignment of items in perspective switcher when switcher docked to the left is incorrect | Steps to reproduce: 1. Launch Eclipse 3.0.2 SDK 2. From perspective switcher, select Dock On > Left 3. Open a few perspectives - PDE, Java, CVS, etc... 3. On Windows, all the perspectives are left-aligned. However, on linux the perspectives are center-aligned. This looks pretty ugly. Behaviour of perspective switcher o... | resolved fixed | a1e1381 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-25T05:31:28Z | 2005-06-10T16:13:20Z |
117,990 | Bug 117990 Reduce matching complexity of the SWT flat toolbar RC style | The documentation for GtkRC indicates that "*" characters in GTK+ RC files slow down widget creation. Currently we match against: "*swt-toolbar-flat*" This can be reduced to: "*.swt-toolbar-flat" and still work, but with reduced complexity. | resolved fixed | 3be2fdd | ["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 | 2005-11-25T03:37:57Z | 2005-11-25T03:40:00Z |
99,461 | Bug 99461 resizing Table can have draw problems | 3.1RC2 noon build, gtk 2.4.13 - run the snippet below, it opens a small window - grab the window's bottom-right corner and make it bigger - this will leave lots of cheese, as shown in the next screenshot - this problem does not happen if the table has no columns public static void main(String[] args) { final Display di... | resolved fixed | 53c5711 | ["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 | 2005-11-24T22:13:51Z | 2005-06-10T19:00:00Z |
117,807 | Bug 117807 possible bug in TableItem.setImage (int index, Image image) | This function appears as though it would have a bug in it - basically there appears to be an underlying assumption that the setImage function is used to change an image from one to another. If you use this function to turn on or off an image, it won't redraw correctly. This line of code is the last in the function: red... | resolved fixed | 1153c53 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-24T21:20:00Z | 2005-11-23T23:53:20Z |
117,879 | Bug 117879 NullPointerException from mouse move | Version: 3.2.0 Build id: I20051123-1200 I found this error in my console. No idea what i was doing and nothing bad seemed to happen. java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.wmMouseMove(Widget.java:1919) at org.eclipse.swt.widgets.Control.WM_MOUSEMOVE(Control.java:3637) at org.eclipse.swt.widget... | resolved fixed | ee86615 | ["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 | 2005-11-24T18:59:14Z | 2005-11-24T11:00:00Z |
117,757 | Bug 117757 Is TreeItem (.. int hParent, ..) supposed to be public? | I20051122-1300 Is the constructor public TreeItem (Tree parent, int style, int hParent, int hInsertAfter, int hItem) supposed to be public? I guess it should be package-private. | resolved fixed | 4176736 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-24T18:48:39Z | 2005-11-23T18:20:00Z |
74,482 | Bug 74482 Background colour not propagated inside group or tabfolder | null | resolved fixed | 2818ff5 | ["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/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/wi... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-22T21:56:57Z | 2004-09-21T20:53:20Z |
117,195 | Bug 117195 Regression: Shell ignores first mouse-click after dialog closed | SWT-win32, N20051119-0010 - Run the snippet below - Double-click the list - Close the dialog that pops up - Try to click the button or one of the minimize/maximize/close buttons - Note that the first mouse-click is ignored, it does not do anything --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import or... | resolved fixed | 9747fcc | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Wi... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-21T20:59:45Z | 2005-11-19T19:53:20Z |
11,714 | Bug 11714 Non error messages are logged. | After running help and browsring documents, the platform log contains entries with messages from web browser like "No running window found.", or "xmlencoding detect- ISO-8859-1". These are normal , and it would be better if they were not logged to the platform log. | verified fixed | bf221f6 | ["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 | 2005-11-21T18:27:37Z | 2002-03-19T20:33:20Z |
117,125 | Bug 117125 Tree with columns shows horizontal scroll bar when it shouldn't | SWT-win32, v3214 The testcase below contains a tree with a single column. When the parent shell is resized, the width of the column is set to exactly fill the available space. It works, but a horizontal scroll bar will appear even though none is needed. For some reason the widget thinks that there is one additional pix... | resolved fixed | 8e38846 | ["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 | 2005-11-18T22:21:00Z | 2005-11-18T18:53:20Z |
104,284 | Bug 104284 GTK warnings when setting item count on VIRTUAL Table before its open | 3.1 - run the snippet below, which sets the item count to 500 - the SetData callback is not invoked for the items that should be initially visible, so the Table appears blank - scroll down and note that it works for item indices > 14 *** if the Table item count is set after the Shell has been opened then the initial 14... | resolved fixed | 8a9f511 | ["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 | 2005-11-18T18:01:33Z | 2005-07-18T20:53:20Z |
116,110 | Bug 116110 FileDialog hangs SWT Application | null | resolved fixed | 937e40a | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-18T15:08:34Z | 2005-11-12T12:53:20Z |
113,005 | Bug 113005 Table Header stays depressed. | Create an SWT application with a Table and a push Button, the Table must have a column header. 1. Make the push Button receive keyboard focus. This can be achieved by pressing the mouse button inside of the push Button, dragging it outside of the push Button and then releasing the mouse button. 2. Press the mouse butto... | resolved fixed | 83d76c7 | ["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 | 2005-11-17T19:49:35Z | 2005-10-18T21:13:20Z |
116,720 | Bug 116720 GLCanvas doesn't set hint for merging mouse motion events | At least on GTK, the GLCanvas doesn't merge multiple mouse motion events that might happen to be in the event queue. Instead, it floods the listener with lists of old events. Other widgets like Canvas do not show this behaviour. Test case exhibiting this bug is appended. It uses a waiting event handler to facilitate qu... | resolved fixed | 0cb2304 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-17T05:23:33Z | 2005-11-16T19:40:00Z |
116,688 | Bug 116688 editor cheese after code completion | Build id: I20051115-0800 I am occasionally getting cheese in the editor after inserting code using content assist and organize imports in this build. For example, if I type a class name, and then hit Ctrl+Shift+M to import it, I get some parts of the text pushed down by a line while other parts stay put. I will attach ... | resolved fixed | 414c5f5 | ["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 | 2005-11-16T23:16:09Z | 2005-11-16T16:53:20Z |
115,675 | Bug 115675 disappearing checkbox with Windows XP look and feel | null | resolved fixed | fc9934e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ImageList.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-14T17:42:22Z | 2005-11-09T18:13:20Z |
79,894 | Bug 79894 Control.update() method is too expensive | Our product intensively uses SWT to represent results to user. It may create hundred widgets. Sometimes it uses Control.update() method with "all" set to false. This method takes about 20% of entire time taken by SWT. I profiled the use case and noticed that Display.checkIfEvent() is called about 8 200 times however Co... | resolved fixed | 4c759d3 | ["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 | 2005-11-13T01:00:11Z | 2004-12-01T16:53:20Z |
100,659 | Bug 100659 Dialog displays small sometimes in GTK | null | resolved fixed | 49869f2 | ["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 | 2005-11-12T20:53:59Z | 2005-06-17T20:26:40Z |
116,005 | Bug 116005 Cannot type in Text widget in an ON_TOP Shell | null | resolved fixed | f8dfb27 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-11T16:33:26Z | 2005-11-11T14:40:00Z |
115,230 | Bug 115230 Font smooth does not work in Eclipse Forms | null | resolved fixed | ff167b1 | ["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 | 2005-11-10T22:53:52Z | 2005-11-06T09:40:00Z |
112,358 | Bug 112358 Need a way to create a new Color based on an existing color | We need a way to create a new color from an existing color by varying the hue, saturation or brightness. | resolved fixed | 2503053 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/RGB.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-10T14:19:30Z | 2005-10-12T15:13:20Z |
107,219 | Bug 107219 Redraw problems on resizing Tree column | Tree cell contents are not redrawing properly in 3.2M1 where: - the tree has visible column headers, and column resizing is enabled - only one column exists When the right hand edge of the column is dragged leftwards, it draws over the cell contents, but the cell is not redrawn. Some content is still visible outside th... | resolved fixed | db37a37 | ["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 | 2005-11-09T23:35:17Z | 2005-08-17T14:46:40Z |
112,454 | Bug 112454 ColorSelector button does not display correctly when first visible | Version: 3.1.0 Build id: I20051012-1200 When the ColorSelector control is appears to show the background of the control behind it. Pressing the alt key or hovering over the button makes it display its correct colour. This can be seen on the ant preference page as well as a few others. See attached screenshot. This was ... | resolved fixed | 004c286 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-09T22:59:01Z | 2005-10-13T10:40:00Z |
115,667 | Bug 115667 Handle leak in TextLayout | 3.2 M3 I am not entirely sure of how handles get managed in SWT, but I think I found a leak in TextLayout.draw(TextLayout.java:324). I noticed that I get frequent "No more handles" SWTErrors in the last couple of weeks. Running Sleak reveals that after a while of editing, there are thousands of Region objects with the ... | resolved fixed | f68d04f | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-09T19:47:07Z | 2005-11-09T18:13:20Z |
113,105 | Bug 113105 Table widget does not return table item when #getItem(Point) is called | I have a table that is created with SWT.FULL_SELECTION turned off. I have added a mouse track listener for providing hover support in my view. When the listener gets the event, I tried to locate the table item at which the hover event is fired. I used the method, Table.getItem(Point) to locate the item. My table has mu... | resolved fixed | a3fbb62 | ["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 | 2005-11-08T16:31:45Z | 2005-10-19T16:40:00Z |
115,292 | Bug 115292 NullPE in Tree#_getItem(TreeItem parentItem, int index) | I just released a new version of my reader using latest SWT 3.2 M3 and now I am getting a lot logfiles, looking like this one: java.lang.NullPointerException at org.eclipse.swt.widgets.Tree._getItem(Tree.java:203) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1422) at org.eclipse.swt.widgets.Tree.getItems(Tree.jav... | resolved fixed | 041ec3d | ["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 | 2005-11-07T21:06:38Z | 2005-11-07T10:40:00Z |
115,092 | Bug 115092 Snippet 203 doesn't use all texts | I'd guess that the line layout.setText(texts[0]); in SWT snippet 203 should be layout.setText(texts[i]); | resolved fixed | 33051ac | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet203.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-05T01:44:12Z | 2005-11-04T16:00:00Z |
115,176 | Bug 115176 Regression: Disabling tool bar makes separator items disappear | SWT-win32, 3.2M3 When calling setEnabled(false) on a tool bar, items with SWT.SEPARATOR style disappear. This did not happen in 3.2M2 and earlier versions. Snippet to reproduce: === import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public cla... | resolved fixed | ab1753c | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-05T00:27:50Z | 2005-11-05T00:20:00Z |
113,244 | Bug 113244 Accessibilty...When using JAWS on a StyledText widget the label is not recognized | Accessibilty...When using JAWS on a StyledText widget the label is not recognized like it is with a regular Text widget. | resolved fixed | 3a71e3f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", ... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-04T20:47:24Z | 2005-10-20T14:53:20Z |
93,380 | Bug 93380 [DnD] 100% CPU usage when dragging files in the navigator or package explorer | Version: 3.1.0 Build id: I20050419-1200 When i drag and drop a file inside the package explorer or navigator views the CPU says at 100% (or 50% when hyperthreading is enabled). Since the CPU usage doesn't go above 50% my guess is that all of the processing time is spent in the event thread (windows doesn't seem to let ... | resolved fixed | 32dee67 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-03T16:59:13Z | 2005-05-02T02:13:20Z |
112,463 | Bug 112463 Tree.showColumn doesn't scroll column from left of viewport into view | - run the snippet below - note that the second column begins within the viewport but is too wide to be fully shown - press the button, which invokes Tree.showColumn(col2) -> this brings the second column fully into the viewport; good - now scroll to the right end of the tree and note that the second column now begins t... | resolved fixed | 862ee59 | ["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 | 2005-11-03T16:47:58Z | 2005-10-13T13:26:40Z |
112,345 | Bug 112345 [LayoutExample] Toolbar replacing another widget causes cheese | Version: 3.1.0 Build id: I20050920-0010 - Download SWT examples. - Run LayoutExample as an SWT application. - On the 'control' column, click on one of the of the controls, a drop down list should appear. Choose 'ToolBar' from the list and press 'enter'. Note that the button that was there before is still there and the ... | resolved fixed | f7eb58f | ["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 | 2005-11-03T15:41:53Z | 2005-10-12T15:13:20Z |
113,802 | Bug 113802 Dialogs block the execution of (a)syncExecs | Hello.. I surprisingly noticed that opening PrintDialog, FileDialog and DirectoryDialog block the execution of Runnables posted by syncExec() and asyncExec(). On the other hand, the ones posted by timerExec() are still executed! SWT(3138).. what's wrong? best regards Saibel PS: I haven't found any similar postings/bugs... | resolved fixed | 473d126 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/win32/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-02T22:14:45Z | 2005-10-26T12:33:20Z |
114,533 | Bug 114533 Editor popup has wrong size | Build: 20051101-0010 All of the [editor/view/perspective] selection popups in this build are sized incorrectly, requiring a vertical scroll-bar no matter how many entries are in the popup. This only started happening with today's build. I will attach a screen shot showing the same editor selection popup with I20051101-... | resolved fixed | 7bf31dc | ["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 | 2005-11-01T21:41:45Z | 2005-11-01T15:46:40Z |
114,498 | Bug 114498 Table doesn't send selection change events anymore when selecting elements with the mouse | Version: 3.2.0 Build id: I20051031-2000 In Open Type dialog when Show Status Line is enabled then the status line entry does change if one goes through the entries by pressing up/down key but not if an entry is selected with the mouse. | resolved fixed | 2617b7e | ["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 | 2005-11-01T15:40:09Z | 2005-11-01T10:13:20Z |
112,390 | Bug 112390 [Viewers] JUnit error in JFacePerformanceSuite | null | resolved fixed | c57ed90 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-11-01T00:19:51Z | 2005-10-12T20:46:40Z |
111,798 | Bug 111798 Text#getCaretLocation() replaces selected text by " " iff caret is after last character | I20051004-0800 - select the last few characters of a Text such that the caret is at the very end - call Text#getCaretLocation() => Selection is replaced by a space. => Neither selection nor text should be changed. This can easily be reproduced in Eclipse: - have: void m() { new java.util.ArrayList(); } - select "new ja... | resolved fixed | da903d0 | ["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 | 2005-10-31T19:55:03Z | 2005-10-06T14:46:40Z |
110,951 | Bug 110951 Combo.setItem(int, String) does not preserve the selection index | Assume you have a combo with two items, "A" and "B", where "B" is currently selected (i.e. getSelectionIndex() returns 1). If you then call combo.setItem(1,"C"), the combo will be empty and getSelectionIndex will return -1. Why does it not preserve the "selection index"? | resolved fixed | df5cf3f | ["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 | 2005-10-31T19:24:25Z | 2005-09-28T15:06:40Z |
114,039 | Bug 114039 Table.computeSize returns bogus Point.y values under Win32 for large tables | Under win32, for tables with lots of rows (>20000), Table.computeSize seems to overrun a native short variable. Test snippet: public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new RowLayout (SWT.VERTICAL)); final Table table = new Table ... | resolved fixed | 4e3d6fc | ["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 | 2005-10-28T23:02:51Z | 2005-10-27T21:53:20Z |
98,511 | Bug 98511 Treeviewer doesn't de-select child when parent is closed | This bugs appears in Windows XP. It doesn't seem to occur in Linux. In the following sample code, do the following: 1) Open 'parent2' for example. 2) Click on 'child2'. It becomes selected (also reflected in the window on the right 3) Close 'parent2'. There is currently no selection. 4) Re-open 'parent2'. There is stil... | resolved fixed | 448e367 | ["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 | 2005-10-28T20:58:59Z | 2005-06-06T15:00:00Z |
111,303 | Bug 111303 Cannot middle-button paste to rxvt from Eclipse | Some applications can only deal with XA_STRING when reading from the primary clipboard. Currently, Eclipse only privides UTF8_STRING and COMPOUND_TEXT results. A notable broken example is rxvt, another is xclip, and yet another is eterm. All of these applications only handle the STRING type for middle-button paste. The... | resolved fixed | 31c97db | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-28T20:03:59Z | 2005-10-02T16:20:00Z |
88,724 | Bug 88724 Provide 'since' javadoc in snippets | It would be a useful additional information in some snippets if there were an @since javadoc tag that tells from which version on the snippet will work. For instance, snippet 175 works only from Eclipse 3.1 on, since it uses the GridData.exclude field which was introduced in 3.1 | resolved fixed | 8e56b85 | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet10.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet118.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet119.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet120... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-26T22:15:05Z | 2005-03-22T11:13:20Z |
113,895 | Bug 113895 pango_layout_context_changed called too often | StyledTextRenderer often updates the tab size of the layouts cached by DisplayRenderer, even though they usually don't change. Each time this is called, it now triggers a call to pango_layout_context_changed() which invalidates pango's line cache. This causes pango to do a lot of work. A possible fix is to only update ... | resolved fixed | cea50da | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-26T20:51:34Z | 2005-10-26T20:53:20Z |
113,172 | Bug 113172 SWT Label widget trancates the text if it contains a long word | null | resolved fixed | a456d1e | ["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/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-26T16:52:00Z | 2005-10-19T22:13:20Z |
87,883 | Bug 87883 Remove title bar buttons from application-modal dialogs on Mac | null | resolved fixed | 1f2cbbd | ["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 | 2005-10-25T17:08:47Z | 2005-03-13T18:53:20Z |
101,331 | Bug 101331 GC.drawFocus not implemented on the Mac | We need to somehow use DrawThemeFocusRect() or find the equivalent Core Graphics call. | resolved fixed | 8f7aad6 | ["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 | 2005-10-24T22:19:20Z | 2005-06-22T19:53:20Z |
100,035 | Bug 100035 Eclipse loses its dock icon when dock restarted | 3.1RC2 The MacOS X dock crashed or restarted for some reason on my Mac laptop. When it reappeared, the icon for Eclipse in the dock and alt-tab list changed to being a boring black "exec" window. | resolved fixed | 44de4d9 | ["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 | 2005-10-24T21:15:48Z | 2005-06-14T17:26:40Z |
34,612 | Bug 34612 scroll problem in tree, table, and list | RC2 - open a Java Editor on some non-empty Java file - use Ctrl+O (Show Outline) -> even if the tree is so small that it fits into the widget it has vertical and horizontal scroll bars -> you can scroll the tree completely out of the visible area Closing the outline with ESC makes it reproducible. | resolved fixed | 25da20b | ["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 | 2005-10-24T19:01:51Z | 2003-03-11T16:26:40Z |
76,804 | Bug 76804 Improve SWT performance over GTK window system | There are several places in SWT over GTK that may be improved w.r.t performance. I am going to attach a document describing such places and suggested improvements for them. I would like community to review the rpoposal, comment on it and add other problems that relate to the subject if any. Once modification proposals ... | resolved fixed | 365d9e3 | ["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/Button.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... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-24T15:27:23Z | 2004-10-22T13:00:00Z |
113,485 | Bug 113485 Don't flush X exposes for a SMOOTH Sash | For a Sash that uses SWT.SMOOTH, we don't need to flush the Expose events from the X server since we do no XOR drawing. This will also make view resizing smoother since we won't keep waiting for the X server. I tried this change and I like the effects, however it may show some temporary artifacts during resizing that m... | resolved fixed | 342e38d | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-23T20:38:55Z | 2005-10-23T20:40:00Z |
41,466 | Bug 41466 Panther: Check and Radio ToolItems don't use correct look | I20030806 Panther (10.3, 7B28) see attached screenshot | resolved fixed | a33b627 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-21T17:48:00Z | 2003-08-13T10:20:00Z |
68,657 | Bug 68657 JUnit test fails for Image.setBackground | In 3.0 RC4: test_setBackgroundLorg_eclipse_swt_graphics_Color(org.eclipse.swt.tests.junit.Test_org_eclipse_swt_gr aphics_Image) junit.framework.AssertionFailedError: background color should have been set to green expected:<Color {0, 255, 0}> but was:<null> at junit.framework.Assert.fail(Assert.java:47) at junit.framewo... | resolved fixed | 7f9dc81 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-20T19:38:11Z | 2004-06-25T19:00:00Z |
113,100 | Bug 113100 Button size test failures in org.eclipse.ui.tests | Test failures have appeared in org.eclipse.ui.tests on MacOS X. The test failures all seem to deal with button sizing issues. These failures started appearing in I20051018-0800, and have continued into N20051019-0010. Note that several builds worth of MacOS X tests leading up I20051018-0800 didn't run. There were netwo... | resolved fixed | 4d7280c | ["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 | 2005-10-20T16:12:55Z | 2005-10-19T16:40:00Z |
51,736 | Bug 51736 [JUnit] TreeItem test cases failing | I20040210 - candidate for M7 - on Panther The following test cases are failing: setSelection(int) setTopItem(TreeItem) | resolved fixed | a5a369c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/jun... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-20T14:47:06Z | 2004-02-11T20:06:40Z |
112,116 | Bug 112116 Antialiasing causes incorrect drawing | Using Cairo 1.0 and SWT 3.2M2, antialiasing causes incorrect drawing in some situations. It appears things are drawn when moving the raster when it should not actually be in a draw operation. The attached image and code describe this better than I could here in words. | resolved fixed | 4d9fbf0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-20T02:57:11Z | 2005-10-10T16:00:00Z |
100,696 | Bug 100696 Keyboard fails on MacOS X | Sometimes the keyboard input just stops working in eclipse. It has happened at least three times. The mouse still works, and the keyboard works in other applications. Usually quiting and restarting fixes the problem, but not always. | resolved fixed | 8254e52 | ["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 | 2005-10-19T19:56:11Z | 2005-06-18T02:00:00Z |
109,951 | Bug 109951 Mac: Menu Highlight Cheese | null | resolved fixed | b735777 | ["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 | 2005-10-19T16:21:41Z | 2005-09-20T01:33:20Z |
112,403 | Bug 112403 window dimensions are tiny | jdk 1.5 (64-bit) I20051011 gtk (64-bit) linux-amd64 when trying to start eclipse, all windows that come up are only a few pixels wide/high, regardless of what the size the window was when closing. this is a blocker because the 'select workspace' dialog is not resizable. since you can't select a workspace, eclipse won't... | resolved fixed | 8684eb7 | ["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 | 2005-10-19T16:14:17Z | 2005-10-12T20:46:40Z |
109,952 | Bug 109952 Mac: Menu Cleared After Shell Restored From Dock | null | resolved fixed | 8188a5d | ["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 | 2005-10-19T16:07:55Z | 2005-09-20T04:20:00Z |
102,088 | Bug 102088 Text with CENTER has too much logical space | 3.1 - run the snippet below - the Text shows a horizontal scrollbar that's scrolled to the end, even though the string does not exceed the width of the Text widget - there's also a small strip of cheese near the left edge of the horizontal scrollbar public static void main (String[] args) { String string = "The quick b... | resolved fixed | 85f1fc5 | ["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 | 2005-10-18T18:48:10Z | 2005-06-28T20:20:00Z |
94,370 | Bug 94370 SWT crashes with KERN_PROTECTION_FAILURE on mac | I wrote a small SWT stand alone program which crashes every time on MacOS X. The same program work flawlessly on Microsoft Windows platforms. To recreate, run the test program, resize the window that appears, wait a few seconds and then you will get the fatal exception. | resolved fixed | 60a9b02 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GCData.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 | 2005-10-18T16:50:08Z | 2005-05-10T15:46:40Z |
109,215 | Bug 109215 Moveable table column and DND feedback clash on MacOS X | null | resolved fixed | 7afad41 | ["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 | 2005-10-18T15:53:36Z | 2005-09-09T23:53:20Z |
89,687 | Bug 89687 computeSize(-1, -1) wrong for Text with SWT.Wrap. | Eclipse 3.1 M6 Run the ControlExample and go to the Text tab. Make the size 50 by 50. Now make the size Preferred. The preferred size of the text seems to be based on its current size. The preferred default size should just be one line. | resolved fixed | 45c66a5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-17T22:12:58Z | 2005-03-30T22:00:00Z |
111,910 | Bug 111910 Regression: Empty unusable dialogs on Redhat 8+9 / gtk-2.0.6-8 | On Redhat Linux 8 with the default GTK version (gtk2-2.0.6-8 and gtk+-1.2.10-22), most dialogs that directly derive from org.eclipse.jface.Dialog remain empty (gray on gray). For instance, this affects the "Filter Markers" dialog which is available from the Problems or Tasks view when pressing the filter button and als... | resolved fixed | 66bca6c | ["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 | 2005-10-14T16:02:02Z | 2005-10-07T15:46:40Z |
57,723 | Bug 57723 BIDI: StyledText bug when changing the color of bold text | In the Text Editor example included in the SWT examples, write the Arabic word UNEi. Double click the word to select it. Make it bold, then change its color. The last letter appears unshaped. | resolved fixed | 8e45647 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-13T21:21:00Z | 2004-04-07T12:13:20Z |
102,525 | Bug 102525 Button in a toolbar not sized correctly | null | resolved fixed | c897ae2 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-12T20:38:25Z | 2005-07-01T20:33:20Z |
112,336 | Bug 112336 StyledText is still misbehaving | As followup to the breakage in yesterdays I-build, StyledText is still doing the jitterbug but it's no longer resulting in crashes. The cursor will occasionally dance around, particularly when backspacing. Despite being visibly placed in one spot, the deletion occurs at what I expect to be the correct position. Hitting... | resolved fixed | f873a5e | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-12T20:36:10Z | 2005-10-12T15:13:20Z |
104,041 | Bug 104041 [browser]browser.execute() fails when Acrobat Reader v7 is displayed in browser | I have a pdf document which I am displaying in the browser. Then, to print the contents of the browser I do browser.execute("window.print()"); The above works fine for Acrobat Reader v5, but throws a NullPointerException for Acrobat Reader v7. After debugging, I found that it cannot find the value of "parentWindow" for... | resolved fixed | 1fcac31 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-12T13:41:33Z | 2005-07-15T17:53:20Z |
111,762 | Bug 111762 JVM dump in SWT native method | I had eclipse-SDK-N20051006-0010-linux-gtk.tar.gz running on gtk2-2.4.13-14 in gnome-desktop-2.8.0-3 I had done some compiles and cleans, fixed some errors, closed all editors in the java perspective, and then I did CTRL+SHIFT+T and it cored. I'll attached the stack trace. PW | resolved fixed | c99d8d5 | ["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 | 2005-10-06T14:58:57Z | 2005-10-06T12:00:00Z |
93,763 | Bug 93763 Clicking on the button frame does not activate toolitem's drop down | For toolitems created with SWT.DROP_DOWN, the menu appears if the click occurs within the bounds of the arrow itself. However, these bounds do not include the right hand side of the button frame. I hit this a lot in eclipse, where I'd like to open the menu for the Run toolitem, but I end up launching the last applicati... | resolved fixed | 9aa71ec | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-05T22:22:34Z | 2005-05-05T02:26:40Z |
71,348 | Bug 71348 Can't listen Excel events | use the following code,I can't listen Excel events.But The same way use to "word.document",it's successful. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); OleFrame frame = new OleFrame(shell,SWT.NONE); shell.setLayout(new GridLayout()); frame.setLayoutData(ne... | resolved fixed | 1ca19e7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-05T18:32:15Z | 2004-08-04T06:13:20Z |
110,346 | Bug 110346 Text widget does not trigger SWT.DefaultSelection events on Return or Enter | M2 Text widget does not trigger SWT.DefaultSelection events on Return or Enter To reproduce: use ControlExample | resolved fixed | 9690379 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/sw... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-05T17:31:10Z | 2005-09-22T17:26:40Z |
111,322 | Bug 111322 Tab Folder Style TOP does not work | Since release 3.1 incl 3.1.1 the style TOP does not work any longer. Easy to reproduce w "new TabFolder(parent, SWT.TOP)" | resolved fixed | 5489602 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-05T02:20:37Z | 2005-10-03T11:46:40Z |
110,923 | Bug 110923 TableItem.setImage does not redraw the item | In a Table with multiple columns I'm trying to display some images. When setting an image to null in a table column other than the first, the item is not redrawn, ie the image that has been visible before will not be cleared. The changes to the item is visible only after covering the application with another window and... | resolved fixed | 9146e79 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-05T01:05:04Z | 2005-09-28T12:20:00Z |
51,480 | Bug 51480 JUnit tests for Browser are printing to console | null | resolved fixed | 619e55d | ["tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Image.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser1.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser2.java", "tests/org.e... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-04T21:05:50Z | 2004-02-10T16:20:00Z |
110,342 | Bug 110342 SWT Example Launcher: Double-click on "Standalone" folder produces a "Could not instantiate the class to run" log | Build: Eclipse 3.1 I20050627-1435 Platform: Solaris GTK Steps: - Install Eclipse 3.1 with SWT Examples - From Eclipse workbench, go to Window -> Show View -> Other ... - Expand SWT Examples and select SWT Example Launcher. Click OK. - From the SWT Example Launcher view, double-click the "Standalone" folder (under Examp... | resolved fixed | 5f1d51a | ["examples/org.eclipse.swt.examples.launcher/src/org/eclipse/swt/examples/launcher/LauncherView.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-10-03T20:28:03Z | 2005-09-22T17:26:40Z |
109,341 | Bug 109341 Update the desc doc process | Update the description document process document ("Writing description documents") to reflect that the RG needs a description but not a sizing, and that the AG requires the sizing. | closed fixed | 0577307 | ["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 | 2005-10-03T18:41:01Z | 2005-09-12T21:20:00Z |
111,157 | Bug 111157 TreeItem.setBackground doesn't work | SWT Win32 - 3206 (3.2M2) 1. Setting a treeItem's background only sets column 0, unlike a tableItem which sets all columns. (setBackground(Color)) 2. Setting a treeItem's column background (setBackground(int,Color)) doesn't seem to do anything. public static void main(String[] a) { Display display = new Display(); Shell... | resolved fixed | bb4ebb4 | ["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 | 2005-10-03T18:00:51Z | 2005-09-29T21:40:00Z |
111,284 | Bug 111284 Crash in TreeSelection - Event | null | resolved fixed | 9d77c02 | ["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 | 2005-10-01T15:09:29Z | 2005-10-01T12:33:20Z |
88,958 | Bug 88958 DirectoryDialog and FileDialog bring CPU utilization to 100% | It seems that this fix for 76195 creates problems is Eclipse 3.1. When I open DierectoryDialog and there are pending asyncExecs the dialog keeps receiving WM_ENTERIDLE events and that brings the CPU utilization to 100%. That makes the DiarctoryDialog node expanding extremely slow, almost impossible to use. | resolved fixed | 7498f88 | ["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/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/or... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-30T16:47:53Z | 2005-03-23T23:20:00Z |
103,894 | Bug 103894 browser fail to hyper link to another page | null | resolved fixed | 66b5bac | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-30T15:31:39Z | 2005-07-14T19:40:00Z |
110,949 | Bug 110949 link error in GC.setClipping(x, y, w, h) on pocket pc | Calling GC.setClipping(x, y, w, h) on pocket pc, using dll 3206, throws a link error. This seriously hobbles one of our custom widgets. | resolved fixed | f06b65a | ["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 | 2005-09-29T20:28:52Z | 2005-09-28T15:06:40Z |
98,296 | Bug 98296 Browser in BrowserExample opens too small | 3.1RC1 - run the BrowserExample and the Browser opens as a pinhead - resize the parent shell and the Browser grows to its correct size | resolved fixed | 7858358 | ["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 | 2005-09-29T20:19:52Z | 2005-06-03T14:46:40Z |
110,824 | Bug 110824 Trying to create launch config results in StackOverflowError | I was working with last night's build on Linux-GTK, and trying to create a launch configuration causes a StackOverflowError. Steps: 1. I checked out the platform-ui and platform-ui-tests modules 2. Go to the Run icon triangle and select "Run..." from the dropdown it goes away, and then pops up an error saying you bette... | resolved fixed | 10f885d | ["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 | 2005-09-28T18:06:38Z | 2005-09-27T16:53:20Z |
33,979 | Bug 33979 visitor pattern | It would be nice to have a visitor pattern implementation to be able to traverse a given schema. As in most Abstract Syntax Trees it is very useful to be able to traverse them without the need for "instanceof". | verified fixed | 06c0901 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java", "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 | 2005-09-27T19:33:05Z | 2003-03-06T14:13:20Z |
110,767 | Bug 110767 java.lang.NoSuchMethodError: XErrorProc when setting Display into debug mode on Linux/GTK x86-64-bit | The code: DeviceData data = new DeviceData(); data.debug = true; Display display = new Display(data); Generates: Exception in thread "main" java.lang.NoSuchMethodError: XErrorProc at org.eclipse.swt.internal.Callback.bind(Native Method) at org.eclipse.swt.internal.Callback.<init>(Callback.java:123) at org.eclipse.swt.i... | resolved fixed | eecf444 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Device.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-27T16:50:45Z | 2005-09-27T08:33:20Z |
110,753 | Bug 110753 gdk_region_get_rectangles leaks | gdk_region_get_rectangles() requires that the returned array be freed with g_free(). This was missed in GC.setTransform() and GC.drawImageXRender(). | resolved fixed | 3e9b199 | ["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 | 2005-09-27T02:35:57Z | 2005-09-27T03:00:00Z |
108,949 | Bug 108949 [browser] javascript alerts are not shown | null | resolved fixed | ed0168a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/PromptService.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/mozilla/org/eclipse/swt/browser/PromptService.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-23T18:50:35Z | 2005-09-07T16:20:00Z |
110,432 | Bug 110432 atk_object_factory_create_accessible errors | Running Eclipse with SWT from HEAD I get these errors all over the place. I am using atk 1.9.1 and GTK+ 2.6.7. I also saw the same errors at home with atk 1.10.1 and GTK+ 2.6.10. ** (Gecko:18693): CRITICAL **: atk_object_factory_create_accessible: assertion `ATK_IS_OBJECT_FACTORY (factory)' failed | resolved fixed | ee3df50 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-23T14:44:09Z | 2005-09-23T12:53:20Z |
104,407 | Bug 104407 Right click on Tree does not honor the SWT.FULL_SELECTION style | null | resolved fixed | 9468047 | ["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 | 2005-09-22T23:57:03Z | 2005-07-19T21:53:20Z |
100,363 | Bug 100363 Spinner: getSelection() during modify event should return new value (enable dynamic behaviour) | null | resolved fixed | 0168d04 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-22T22:39:57Z | 2005-06-16T11:06:40Z |
50,646 | Bug 50646 CTabFolder tooltips are not read out | M6 gnopernicus is not reading out CTabFolder tooltips properly because they're faked. It simply says "Hide/Restore window". Tried: - adding accessible listeners to the tip shell and its contained label - removing ON_TOP from tip shell creation - giving focus to contained label when shown | resolved fixed | da6d7c2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/Acc... | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | 2005-09-22T20:08:18Z | 2004-01-26T23:33:20Z |
108,921 | Bug 108921 Tree with lines visible not painted correctly | Background: I used the TableTree in my application up to now. Since it is marked as deprecated in Eclipse 3.1, I tried to replace it with the tree widget using columns. When using columns in the Tree widget with setLinesVisible(true), not all lines are painted as in the old TableTree. Only the lines of rows with conten... | resolved fixed | 397136f | ["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 | 2005-09-21T21:10:21Z | 2005-09-07T13:33:20Z |
110,057 | Bug 110057 [browser] crash whenever a Browser is disposed | 3.2M2 test build (does not happen on linux-gtk) - run eclipse - open the javadoc view - close it by pressing the 'X' on its tab, and eclipse will shut down with the error message below - this problem has appeared as a side effect of M2 work that changed the order of things that are done at dispose time (in an effort to... | resolved fixed | d5acf87 | ["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 | 2005-09-21T20:14:20Z | 2005-09-20T15:26:40Z |
110,073 | Bug 110073 perspective button goes blank after closing perspective | 3.2M2 observed on linux-motif and hpux, but not on gtk, so appears to be swt problem - drag the CBanner's separator to ~ the 50% mark - press its "Open Perspective" button, switch to the Debug perspective - after the perspective switch is done, right-click the Debug button in the CBanner and select Close - this returns... | resolved fixed | dfa24e6 | ["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 | 2005-09-21T18:16:24Z | 2005-09-20T18:13:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.