id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
161
388,574
Bug 388574 [Mac OS X 10.8] Text control loses focus upon its movement
null
2012-08-31 14:36:50
1,346,440,000
verified fixed
29deb6d
1,349,390,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
162
390,734
Bug 390734 Need "Full Keyboard Access" in order to traverse into Tree
Version: 4.3.0 Build id: I20120920-1300 I can no longer traverse into a Tree using the keyboard, unless I enable Full Keyboard Access for "All Controls" in the OSX System Preferences. I should be able to traverse into a Tree even if this setting is set to "Text Boxes and Lists Only".
2012-09-28 17:05:14
1,348,870,000
resolved fixed
6adfd78
1,348,870,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
163
390,735
Bug 390735 Fix places where NSObject id was int in 64-bit code
Searched the code for the string "int id" because I suspected that there might be places in the 32-bit code where id should have been defined as int /*long*/ Found several places that need to be fixed.
2012-09-28 17:27:42
1,348,870,000
resolved fixed
1563c7f
1,348,870,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTApplicationDelegate.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTCanvasView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTDragSourceDelegate.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTPanelDelegate.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTPrintPanelDelegate.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTScrollView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTTabView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTTextView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/SWTWindowDelegate.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
SWT
164
390,713
Bug 390713 Tab traversal broken in 64-bit ToolBar
After switching the SWT code to 64-bit by default, a missing int /*long*/ in ToolBar.hasKeyboardFocus(int inId) causes the method not to be called by any of the keyboard methods in Control. This breaks tab traversal in toolbars. The correct code should be: hasKeyboardFocus(long /*int*/ inId).
2012-09-28 12:56:34
1,348,850,000
verified fixed
c7591f1
1,348,850,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
SWT
165
385,253
Bug 385253 SWT does not send SWT.KeyDown event when pressing down key in combo control
Build Identifier: 3.7.2 SWT does not send SWT.KeyDown event when pressing down key in combo control Reproducible: Always Steps to Reproduce: 1. Run the Test.java in the attached test case 2. Press down key in the combo control 3. You will find selection event is triggered in cocoa, but in carbon it was key down event.
2012-07-17 01:19:28
1,342,500,000
verified fixed
e902496
1,348,840,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
166
383,392
Bug 383392 StyledText throws exception "Index out of bounds" when calling setText() after Chinese character input
Build Identifier: 3.7.2.v3740f-RCP20120529-1500 I attempt to input some Chinese characters in a StyledText widget. I use "PinYin" input method which is the default Chinese IME on Mac. I typed some keys and the IME showed me a candidate list. I didn't confirm my choice and let the candidate list panel floating. This means I didn't really input the text to the widget. After that, I clicked other part of the screen so the widget lost the focus and the IME candidate list disappeared. In my code, I called StyledText.setText("") to clean up the widget. However, this call eventually threw out lots of "Index out of bounds" exception and the application hung. The stack is like this: Unhandled event loop exception java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:4263) at org.eclipse.swt.SWT.error(SWT.java:4197) at org.eclipse.swt.SWT.error(SWT.java:4168) at org.eclipse.swt.graphics.TextLayout.getStyle(TextLayout.java:1456) at org.eclipse.swt.custom.StyledTextRenderer.getTextLayout(StyledTextRenderer.java:944) at org.eclipse.swt.custom.StyledTextRenderer.getTextLayout(StyledTextRenderer.java:720) at org.eclipse.swt.custom.StyledTextRenderer.calculate(StyledTextRenderer.java:211) at org.eclipse.swt.custom.StyledTextRenderer.calculateClientArea(StyledTextRenderer.java:229) at org.eclipse.swt.custom.StyledText.resetCache(StyledText.java:7791) at org.eclipse.swt.custom.StyledText.reset(StyledText.java:7784) at org.eclipse.swt.custom.StyledText.handleTextSet(StyledText.java:6271) at org.eclipse.swt.custom.StyledText$6.textSet(StyledText.java:5618) at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:79) at org.eclipse.swt.custom.DefaultContent.sendTextEvent(DefaultContent.java:795) at org.eclipse.swt.custom.DefaultContent.setText(DefaultContent.java:814) at org.eclipse.swt.custom.StyledText.setText(StyledText.java:9874) This is my code snippet in my Eclipse view: public void createPartControl(Composite parent) { final StyledText st = new StyledText(parent, SWT.NONE); st.addFocusListener(new FocusListener() { @Override public void focusGained(FocusEvent arg0) { st.setText(""); } @Override public void focusLost(FocusEvent arg0) { // TODO Auto-generated method stub }}); } Reproducible: Always Steps to Reproduce: The steps should be clearly described in upper section.
2012-06-25 02:26:18
1,340,610,000
resolved fixed
ee0ffc0
1,348,770,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
167
389,250
Bug 389250 Lots of stuff leaked when closing and reopening views
M20120909-2000. Lots of objects are leaked in a simple close/open part scenario. Simple test case: 1. prepare a perspective with only the Navigator view open 2. reset the instance counter of your profiler 3. close the Navigator 4. reopen the Navigator ==> see many instance being leaked, e.g. 3 ToolItem(s) and 2 ToolBar(s)
2012-09-11 08:59:06
1,347,370,000
verified fixed
c9fe93d
1,348,600,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
SWT
168
387,641
Bug 387641 Use Cairo instead of Gdk deprecated methods in Sash widget drawBand()
Sash widget's drawBand() method needs Cairo implementation instead of existing Gdk methods, as most of them are deprecated.
2012-08-20 15:52:05
1,345,490,000
resolved fixed
b544cc1
1,348,520,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java
SWT
169
389,773
Bug 389773 [Performance] Improve CTabRendering drawing time
This is a bug to track the optimization work being done for CTabFolder drawing.
2012-09-17 17:22:59
1,347,920,000
resolved fixed
c68f62c
1,348,520,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
SWT
170
388,419
Bug 388419 Loss of focus during typing
null
2012-08-30 07:27:58
1,346,330,000
verified fixed
a754695
1,348,060,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
SWT
171
324,435
Bug 324435 JVM crashes when press a button
null
2010-09-03 11:25:26
1,283,530,000
resolved fixed
26a9399
1,347,910,000
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
SWT
172
383,890
Bug 383890 JVM (Eclipse) crash with SIGSEGV in ld-linux-x86-64.so.2
null
2012-06-29 08:27:21
1,340,970,000
verified fixed
2c1e3b3
1,347,370,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java
SWT
173
386,893
Bug 386893 Omit use of deprecated GTK_ACCEL_LABEL_SET_ACCEL_STRING and GTK_ACCEL_LABEL_GET_ACCEL_STRING
null
2012-08-08 17:25:24
1,344,460,000
resolved fixed
1e698e4
1,347,030,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java
SWT
174
378,383
Bug 378383 Request for a notification of full-screen changes
null
2012-05-03 11:21:02
1,336,060,000
verified fixed
f29e60c
1,347,010,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
175
388,990
Bug 388990 JUnit test failures on Linux in I20120904-0800
StyledText getLineIndex and getLinePixel tests have been failing for a couple of weeks.
2012-09-06 15:28:38
1,346,960,000
resolved fixed
b9729f2
1,346,960,000
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/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
SWT
176
387,338
Bug 387338 Cocoa: [New SWT style required]single click only bring a window to the top but do not take effective for the click object
There is a different system behaviors against Mac Cocoa and Mac Carbon/Windows/Linux. IF there are two windows on the screen, window 1 has focus(on top), window 2 not, click a control on window 2: 1. On Mac Carbon/Windows/Linux, window 2 will get focus(move to top) and the clicked control will take effective. It means single click do two things: (1) Windows got focus (2)Control is clicked 2. On Mac Cocoa, partial controls has same behaviors, but most of other controls difference. Single click only make window get focus, if we want to the control work, another click is necessary. In the SWT's Control class, if the style is STW.ON_TOP, the acceptsFirstMouse will return true, then the control will be focused only a single click. But STW.ON_TOP will be used in other scenario, can we provide a new style to control whether accept the first mouse? boolean acceptsFirstMouse (int /*long*/ id, int /*long*/ sel, int /*long*/ theEvent) { Shell shell = getShell (); if ((shell.style & SWT.ON_TOP) != 0) return true; return super.acceptsFirstMouse (id, sel, theEvent); }
2012-08-15 22:33:23
1,345,080,000
verified fixed
904726b
1,346,940,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
177
382,175
Bug 382175 [Cairo] Images created with external GdkPixmap* can't be drawn using GC.drawImage()
In WindowBuilder project I have to create an Image instance using external GdkPixmap* value. I used Image.gtk_new() method to create such Image. Then I need to draw this image on some GC. This works fine with Cairo disabled. When Cairo is enabled, the image is not drawn. The workaround is to invoke Image.getImageData() method. After this invocation it works fine. Sample code: Image image = Image.gtk_new(null, SWT.BITMAP, pixmapHandle, 0); Image mainImage = new Image(null, 240, 160); GC gc = new GC(mainImage); // image.getImageData(); // uncomment to get it working gc.drawImage(image, 0, 0); gc.dispose(); // save mainImage using ImageLoader
2012-06-09 16:54:20
1,339,280,000
resolved fixed
572d213
1,346,910,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java
SWT
178
384,315
Bug 384315 virtual table accessibility slow on GTK (was: Open Type is very slow: causes UI lockup with high CPU utilization)
Build Identifier: Version: Juno Release Build id: 20120614-1722 Open Type is incredibly slow on my new Asus G55V laptop (2.3GHz quad core i7 with 12GB ram, 2Gb Nvidia graphics, SSD). Performance of Open Type varies depending how many characters are entered (quickly before it locks up!). For example: Using a brand new workspace with a single empty project it takes about 20 seconds for Open Type to unlock itself with the string: java.lang I've tried various vm parameters, but have settled on the following in order to demonstrate the problem eclipse.ini (-XX:PermSize=256m -XX:MaxPermSize=256m -Xms512m -Xmx512m). Otherwise performance of the machine generally is generally excellent. Eclipse loads in a few seconds and navigation is otherwise not bad (find/search can be a bit slow to appear). Reproducible: Always Steps to Reproduce: 1. Open new or existing java workspace (create a new empty project if necessary) 2. Ctrl-Shift-T or click Open Type 3. type: java.lang. or similar 4. wait 20-30 seconds Ubuntu 12.04 x64 (3.2.0-26-generic) Sun JDK 1.7.0_06 (x64) Eclipse and workspace are installed on an SSD ext4 partition. I've tried moving each to a regular hdd with no effect.
2012-07-04 18:47:16
1,341,440,000
resolved fixed
9539c1d
1,346,910,000
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
179
383,189
Bug 383189 Warnings and Errors in the SWT Combo when running on Linux
null
2012-06-21 04:30:23
1,340,270,000
resolved fixed
8a770fa
1,346,400,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
180
372,560
Bug 372560 Glib error when disposing a Combo
null
2012-02-25 03:11:13
1,330,160,000
resolved fixed
1996909
1,346,390,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
181
379,792
Bug 379792 Tree widgets leaked due to TreeColumn's modelhandle reference in Display.widgetTable
Build Identifier: Version: 3.7.1.v3738a issue is only on Linux platforms (Linux,Solaris, ..etc) not seen in windows platform Tree keep 5 reference for each handle in Display. out of which modelhandle reference is not released when Tree disposed. 1. modehandle add Tree reference to Display.widgetTable through Display.addWidget() 2. when TreeColumn is created in Tree. modelHandle is replaced. 3. Tree reference in Display.widgetTable is not released is causing disposed Tree widgets never garbage collected. 640 if (modelIndex == modelLength) { 641 int /*long*/ oldModel = modelHandle; 642 int /*long*/[] types = getColumnTypes (columnCount + 4); // grow by 4 rows at a time 643 int /*long*/ newModel = OS.gtk_tree_store_newv (types.length, types); 644 if (newModel == 0) error (SWT.ERROR_NO_HANDLES); 645 copyModel (oldModel, FIRST_COLUMN, newModel, FIRST_COLUMN, types, (int /*long*/)0, (int /*long*/)0, modelLength); 646 OS.gtk_tree_view_set_model (handle, newModel); 647 OS.g_object_unref (oldModel); 648 modelHandle = newModel; } Reproducible: Always Steps to Reproduce: 1. Create Tree with 2 or more TreeColumn 2. dispose Tree / recreate Tree 3. check heap dump. disposed Tree is referenced in Display.widgetTable
2012-05-17 06:02:55
1,337,250,000
verified fixed
a3a1752
1,346,070,000
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
182
387,980
Bug 387980 Negative zoom factor reported from magnification gesture on Mac OS X
null
2012-08-24 08:35:07
1,345,810,000
verified fixed
d76702a
1,346,070,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
183
387,518
Bug 387518 Extremely wide combo box causes X11 crash
null
2012-08-17 18:40:54
1,345,240,000
verified fixed
ddd37d8
1,345,840,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
184
386,220
Bug 386220 [Mac Cocoa] org.eclipse.swt.accessibility.Accessible.getChildrenAttribute may throw java.lang.ArrayIndexOutOfBoundsException
The Cocoa getChildrenAttribute implementation firstly retrieves the child count via AccessibleControlListener.getChildCount, then retrieves the children via AccessibleControlListener.getChildren. Then it loops over the children (i.e. event.children) with the bound returned by AccessibleControlListener.getChildCount (i.e. event.detail), refer line 2058. The problem is that certain controls may return different count from getChildCount & getChildren. Thus the loop will throw java.lang.ArrayIndexOutOfBoundsException. This is a Cocoa specific issue since it's not a problem with Carbon & other platforms. The fix is to use the actual array length of event.children, instead of event.detail. i.e.: from: for (int i = 0; i < childCount; i++) to: for (int i = 0; i < children.length; i++)
2012-07-30 04:16:25
1,343,640,000
resolved fixed
04f381a
1,345,490,000
bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java
SWT
185
387,245
Bug 387245 Widget.RESIZING value same as Widget.WEBKIT_EVENTS_FIX value
null
2012-08-14 16:52:12
1,344,980,000
verified fixed
a104ef0
1,344,980,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
186
387,144
Bug 387144 Make gdk_pixbuf_render_to_drawable() dynamic
null
2012-08-13 15:37:08
1,344,890,000
resolved fixed
603ae92
1,344,950,000
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
SWT
187
387,133
Bug 387133 Omit use of deprecated method gdk_drawable_get_size() for newer GTK+ and make it dynamic
null
2012-08-13 13:10:48
1,344,880,000
resolved fixed
e946812
1,344,940,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java
SWT
188
386,177
Bug 386177 [OpenGL] Closing RCP editor with GLCanvas breaks all remaining open GLCanvas
null
2012-07-27 19:17:48
1,343,430,000
verified fixed
b5ab9fc
1,344,520,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
189
378,168
Bug 378168 Group client Area is wrong
null
2012-05-01 11:50:06
1,335,890,000
verified fixed
3b3d098
1,344,510,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java
SWT
190
386,778
Bug 386778 Omit use of deprecated GTK_WIDGET_SET_X and GTK_WIDGET_SET_Y for newer GTK+
null
2012-08-07 15:31:24
1,344,370,000
resolved fixed
6207053
1,344,510,000
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
191
386,260
Bug 386260 NPE in org.eclipse.swt.program.Program.gnome_getProgram
Version: 4.2.0 (actually from 4.3-I-builds) Build id: I20120725-1800 The last line of GTK's Program#gnome_getProgram(Display,String) needs to check that "program != null" static Program gnome_getProgram(Display display, String mimeType) { Program program = null; byte[] mimeTypeBuffer = Converter.wcsToMbcs(null, mimeType, true); int /*long*/ ptr = GNOME.gnome_vfs_mime_get_default_application(mimeTypeBuffer); if (ptr != 0) { [...] } return program.command != null ? program : null; } Unfortunately since JDT's label providers sometimes delegates to Program#findProgram(), this can kill the IDE. !ENTRY org.eclipse.jface 4 2 2012-07-30 12:46:24.775 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.NullPointerException at org.eclipse.swt.program.Program.gnome_getProgram(Program.java:568) at org.eclipse.swt.program.Program.findProgram(Program.java:636) at org.eclipse.swt.program.Program.findProgram(Program.java:612) at org.eclipse.ui.internal.registry.EditorRegistry.getSystemExternalEditorImageDescriptor(EditorRegistry.java:1272) at org.eclipse.ui.internal.registry.EditorRegistry.getImageDescriptor(EditorRegistry.java:1480) at org.eclipse.ui.internal.ide.model.WorkbenchFile.getBaseImage(WorkbenchFile.java:63) at org.eclipse.ui.internal.ide.model.WorkbenchResource.getImageDescriptor(WorkbenchResource.java:42) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getWorkbenchImageDescriptor(JavaElementImageProvider.java:182) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.computeDescriptor(JavaElementImageProvider.java:122) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getImageLabel(JavaElementImageProvider.java:97) at org.eclipse.jdt.internal.ui.viewsupport.JavaUILabelProvider.getImage(JavaUILabelProvider.java:144) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerLabelProvider.getImage(PackageExplorerLabelProvider.java:140) at org.eclipse.jdt.internal.ui.navigator.JavaNavigatorLabelProvider.getImage(JavaNavigatorLabelProvider.java:128) at org.eclipse.ui.internal.navigator.NavigatorContentServiceLabelProvider.findImage(NavigatorContentServiceLabelProvider.java:197) at org.eclipse.ui.internal.navigator.NavigatorContentServiceLabelProvider.getColumnImage(NavigatorContentServiceLabelProvider.java:105) at org.eclipse.ui.internal.navigator.NavigatorContentServiceLabelProvider.getImage(NavigatorContentServiceLabelProvider.java:98) at org.eclipse.ui.internal.navigator.NavigatorDecoratingLabelProvider$StyledLabelProviderAdapter.getImage(NavigatorDecoratingLabelProvider.java:60) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.getImage(DelegatingStyledCellLabelProvider.java:184) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.getImage(DecoratingStyledCellLabelProvider.java:167) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.update(DelegatingStyledCellLabelProvider.java:118) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.update(DecoratingStyledCellLabelProvider.java:134) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:152) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:953) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:113) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:1033) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:485) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2167) at org.eclipse.jface.viewers.AbstractTreeViewer.updateChildren(AbstractTreeViewer.java:2753) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefreshStruct(AbstractTreeViewer.java:1923) at org.eclipse.jface.viewers.TreeViewer.internalRefreshStruct(TreeViewer.java:721) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefreshStruct(AbstractTreeViewer.java:1930) at org.eclipse.jface.viewers.TreeViewer.internalRefreshStruct(TreeViewer.java:721) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1898) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh(AbstractTreeViewer.java:1855) at org.eclipse.ui.navigator.CommonViewer.internalRefresh(CommonViewer.java:561) at org.eclipse.jface.viewers.StructuredViewer$8.run(StructuredViewer.java:1535) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1443) at org.eclipse.jface.viewers.TreeViewer.preservingSelection(TreeViewer.java:403) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1404) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1533) at org.eclipse.jface.viewers.ColumnViewer.refresh(ColumnViewer.java:548) at org.eclipse.ui.navigator.CommonViewer.refresh(CommonViewer.java:353) at org.eclipse.ui.navigator.CommonViewer.refresh(CommonViewer.java:510) at org.eclipse.ui.internal.navigator.resources.workbench.ResourceExtensionContentProvider$3.run(ResourceExtensionContentProvider.java:294) at org.eclipse.ui.internal.navigator.resources.workbench.ResourceExtensionContentProvider.runUpdates(ResourceExtensionContentProvider.java:306) at org.eclipse.ui.internal.navigator.resources.workbench.ResourceExtensionContentProvider.access$1(ResourceExtensionContentProvider.java:303) at org.eclipse.ui.internal.navigator.resources.workbench.ResourceExtensionContentProvider$1.run(ResourceExtensionContentProvider.java:129) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3529) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3182)
2012-07-30 13:54:19
1,343,670,000
resolved fixed
e5048f5
1,344,440,000
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
SWT
192
385,070
Bug 385070 Use gtk_widget_has_focus instead of deprecated GTK_WIDGET_HAS_FOCUS
null
2012-07-13 11:57:09
1,342,200,000
resolved fixed
2c810dc
1,344,240,000
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/ExpandItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.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/Text.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/Widget.java
SWT
193
386,594
Bug 386594 Use gtk_widget_get_visible instead of GTK_WIDGET_VISIBLE for newer GTK+
null
2012-08-03 15:11:50
1,344,020,000
resolved fixed
6a88076
1,344,040,000
bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.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/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java
SWT
194
385,939
Bug 385939 Omit use of deprecated GTK_TOOLTIPS_TIP_WINDOW and gtk_tooltips_new
null
2012-07-25 09:21:04
1,343,220,000
resolved fixed
88dc3a4
1,344,040,000
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/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java
SWT
195
345,296
Bug 345296 Remove qt from org.eclipse.swt
null
2011-05-10 12:23:30
1,305,040,000
resolved fixed
3728914
1,343,920,000
bundles/org.eclipse.swt/Eclipse SWT Browser/qt/org/eclipse/swt/browser/QtWebkit.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/ByteArrayTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/Clipboard.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/DropTarget.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/FileTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/HTMLTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/ImageTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/RTFTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TableDragSourceEffect.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TableDropTargetEffect.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TextTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/Transfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TransferData.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TreeDragSourceEffect.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/TreeDropTargetEffect.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/qt/org/eclipse/swt/dnd/URLTransfer.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/DeviceData.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/FontMetrics.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/GCData.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/DragNDropListener.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/FontConverter.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/KeyUtil.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/QtSWTConverter.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/QtSupplementaryFontData.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/SWQT.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/SignalConnector.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/StylableScrollArea.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/internal/qt/ToString.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Caret.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ColorDialog.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/DateTime.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Decorations.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/FileDialog.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Label.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/MessageBox.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ProgressBar.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Slider.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TabItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TrayItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TreeColumn.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Widget.java
SWT
196
245,388
Bug 245388 [consistency] Combo.pack() does not consider item lengths
- run the snippet below - on platforms != gtk the Combo is pack()ed to a size that is able to fit its longest item -> but on gtk the Combo's preferred size is not influenced by its items public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,1000,100); Combo combo = new Combo(shell, SWT.NONE); combo.setLocation(10,10); combo.setItems(new String[] {"asdf","asdfasdfasdf","asdfasdfasdfasdfasdfasdf"}); // combo.add("asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdf"); // even longer System.out.println(combo.computeSize(-1, -1)); combo.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
2008-08-27 10:54:24
1,219,850,000
resolved fixed
c8dd5b3
1,343,860,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
197
368,543
Bug 368543 Odd Display of WindowBuilder in Eclipse 3.8/4.2 on Linux
null
2012-01-13 08:24:35
1,326,460,000
resolved fixed
091e36b
1,343,860,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
SWT
198
377,961
Bug 377961 A combo in a toolbar gets shrunk
The combo boxes placed in the editor toolbar for the ecorediag editor get set to 1 pixel wide. Walked through it with Bogdan, but a SWT.SEPARATOR toolitem called with toolItem.setWidth(223) seems to get its width reset on the parent (ToolBar) relayout(). The ToolItem.getBounds() returns a width of 1. Something similar to this can be seen in Snippet58 if the combo/toolitem code sets the control first and the width second. combo.select(1); combo.pack (); sep.setControl (combo); sep.setWidth (combo.getSize ().x); PW
2012-04-27 14:46:26
1,335,550,000
resolved fixed
411d5c8
1,343,860,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
SWT
199
377,600
Bug 377600 SWT Cocoa Shell class doesn't implement SWT.NO_FOCUS style
Build Identifier: SWT 3.7.2 SWT Cocoa Shell class doesn't implement SWT.NO_FOCUS style. A shell created with this style will take focus when clicked, this is unexpected behavior and breaks existing code than depends on SWT.NO_FOCUS. Reproducible: Always Steps to Reproduce: 1. Create a Shell with SWT.NO_FOCUS style and display it (setVisible); 2. Click the shell; 3. The shell now takes focus!
2012-04-25 04:17:50
1,335,340,000
verified fixed
b454bc1
1,343,860,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
200
384,381
Bug 384381 HTMLTransfer uses UTF-16 to copy to clipboard (should use UTF-8 to be compatible with paste)
null
2012-07-05 11:31:03
1,341,500,000
verified fixed
de6fbaa
1,343,160,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/HTMLTransfer.java
SWT
201
385,570
Bug 385570 [DBCS4.2] wrong selection by using a mouse toward a character of Unicode surrogate pair at end of line
Build Identifier: Version: 4.2.0 Build id: I20120608-1400 (I20120713 x86_64) OS: Windows 7 SP1 Professional Japanese Edition (64bit) JDK: java full version JRE 1.7.0 IBM Windows AMD 64 build pwa6470sr1-20120405_01(SR1) Locale:Japanese When inputting Unicode surrogate pair character at end of line on Text Editor, this character cannot be selected by using a mouse while it is possible to select whole line by double-click on the line or to select it by using keyboard arrow buttons. Reproducible: Always Steps to Reproduce: 1. start eclipse 2. go to Window->Preferences 3. expand General-> Workspace and set default text encoding to UTF-8. 4. import the file which will be attached in this bug report later 5. open the file using Text Editor 6. select the character at end of the last line by using a mouse (code is U+2A6D6) Actual: The character at end of the last line cannot be selected by mouse. Expected: The character at end of the last line is selected by mouse.
2012-07-20 04:57:26
1,342,770,000
verified fixed
2768072
1,343,140,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
SWT
202
384,725
Bug 384725 linux accessibility broken
Build Identifier: Hello. I think linux accessibility is broken after transition to at-spi2/gnome3. Reasons: First, toolbars are not presented properly in the eclipse IDE, and buttons are not labelled while they are labelled properly on windows. Second, help\install software window is not fully accessible: the tree view displaying items properly reacts to keyboard but screenreaders on both windows and linux don't present it properly, the problem on linux is worse because the orca's flat review mode does not track the tree view and arrow keys do not tell where I am while on windows they tell that i'm in a different place than I really am. Also, on linux, it is not possible to check if the plugin is checked or not checked for installation. third thing, for the same window: pressing arrow keys on the update site selection combo box changes it properly, but screenreaders don't reflect the change. Problems with this window have existed in at-spi1 too. Reproducible: Always
2012-07-10 09:06:45
1,341,930,000
resolved fixed
9e301b8
1,342,550,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
SWT
203
380,533
Bug 380533 NPE in Program#hashCode() on GTK
null
2012-05-24 08:57:24
1,337,860,000
verified fixed
477aa9e
1,342,470,000
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
SWT
204
381,006
Bug 381006 [browser] browser can not get focus when current focus is on some SWT control.
null
2012-05-30 05:59:18
1,338,370,000
verified fixed
f9a08db
1,342,470,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/cocoa/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
SWT
205
339,344
Bug 339344 CTabFolder with a disposed top right control cannot be rendered
When a composite's child gets disposed there aren't any layout problems. Shouldn't the same apply to CTabFolder? Display display = new Display(); Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setLayout(new FillLayout()); CTabFolder folder = new CTabFolder(shell, SWT.CLOSE); Composite c = new Composite(folder, SWT.NONE); folder.setTopRight(c); c.dispose(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); Exception in thread "main" org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4270) at org.eclipse.swt.SWT.error(SWT.java:4185) at org.eclipse.swt.SWT.error(SWT.java:4156) at org.eclipse.swt.widgets.Widget.error(Widget.java:468) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) at org.eclipse.swt.widgets.Composite.computeSize(Composite.java:226) at org.eclipse.swt.custom.CTabFolder.setButtonBounds(CTabFolder.java:2169) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3348) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3281) at org.eclipse.swt.custom.CTabFolder.onResize(CTabFolder.java:1744) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:263) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at org.eclipse.swt.widgets.Control.WM_SIZE(Control.java:5156) at org.eclipse.swt.widgets.Scrollable.WM_SIZE(Scrollable.java:291) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1662) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4586) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4957) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2520) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:80) at org.eclipse.swt.widgets.Control.WM_WINDOWPOSCHANGED(Control.java:5391) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4599) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4957) at org.eclipse.swt.internal.win32.OS.SetWindowPos(Native Method) at org.eclipse.swt.widgets.Widget.SetWindowPos(Widget.java:1457) at org.eclipse.swt.widgets.Control.setBounds(Control.java:3111) at org.eclipse.swt.widgets.Composite.setBounds(Composite.java:1019) at org.eclipse.swt.widgets.Control.setBounds(Control.java:3072) at org.eclipse.swt.widgets.Control.setBounds(Control.java:3068) at org.eclipse.swt.layout.FillLayout.layout(FillLayout.java:201) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1263) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1673) at org.eclipse.swt.widgets.Canvas.WM_SIZE(Canvas.java:454) at org.eclipse.swt.widgets.Decorations.WM_SIZE(Decorations.java:1790) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4586) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1610) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2061) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4957) at org.eclipse.swt.internal.win32.OS.ShowWindow(Native Method) at org.eclipse.swt.widgets.Decorations.setVisible(Decorations.java:1390) at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1888) at org.eclipse.swt.widgets.Shell.open(Shell.java:1229)
2011-03-09 07:43:36
1,299,670,000
resolved fixed
d2bbe0a
1,340,650,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderLayout.java
SWT
206
322,638
Bug 322638 [Image loading] ImageLoader and Image from stream fail with certain animated gifs
Attached you'll find a project which demonstrates an SWT for an image which opens perfectly in other image programs but fails on SWT. There's only one image loading implementation which allows to load the image which is the purely native one new Image(Display,String) but because I need to show an animated give this doesn't help me a lot. You'll have to adjust the path to the image for to make new Image(Display,String) work for you
2010-08-13 06:52:55
1,281,700,000
resolved fixed
ff9c159
1,340,650,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/GIFFileFormat.java
SWT
207
383,328
Bug 383328 Multiple MoseHover events without moving the mouse
null
2012-06-22 12:11:30
1,340,380,000
resolved fixed
066de63
1,340,380,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
208
383,074
Bug 383074 Tracker cannot draw rectangle on main menu bar or dock
Build Identifier: 3.7.2.v3740f-RCP20120529-1500 I use Tracker in a screen shot application to draw the hinting rectangle. The lines are only visible on regular screen area, but not main menu bar nor dock. It looks like lines are covered by these special windows. I checked the source code of cocoa version Tracker. I found it creates a NSWindow and draws rectangle on it. This should be window level related. A normal level Tracker window is not sufficient in this case. In comparison, carbon version Tracker has no such issue. Reproducible: Always Steps to Reproduce: The steps are described in details.
2012-06-20 05:51:15
1,340,190,000
resolved fixed
bc1f2a9
1,340,310,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java
SWT
209
381,333
Bug 381333 MouseExit event is not received in shell with style SWT.ON_TOP
Build Identifier: 3.7.2 See the steps Reproducible: Always Steps to Reproduce: 1.Run the test case with Cocoa SWT 2.Hover "Hover me" button and another shell does pop up. Don't move mouse! 3.Use CMD+Tab to switch to another app and then move the mouse out of the popped shell. The issue is that we didn't receive mouseExit event while in Carbon does.
2012-06-01 05:24:19
1,338,540,000
resolved fixed
486cb9d
1,340,300,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
210
113,342
Bug 113342 Disposing a font still in use by a GC causes crashes
Snippet to reproduce exception: public void paintFigure(Graphics g) { FontData[] fd = g.getFont().getFontData(); for (int i=0 ; i < fd.length ; i++) { fd[i].setStyle(SWT.BOLD | SWT.ITALIC); } Font font = new Font(null, fd); g.setFont(font); super.paintFigure(g); // Here, some text is drawn font.dispose(); // This is were the trouble comes from g.setForegroundColor(ColorConstants.black); g.setAntialias(SWT.ON); // Here it crashes g.drawOval(getBounds().getCopy().shrink(1, 1)); g.setAntialias(SWT.OFF); } The problem is the font being disposed before g.setAntialias(SWT.ON) is called. Postponing disposing the font to the end of the method fixes the problem. However it is not clear from the javadoc that setAntialias() needs some font being set - and even if,... it shouldn't crash this way ;) Tested SWT versions: 3.1 -> CVS Thanks a lot! An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0xAA63B019 Function=Java_org_eclipse_swt_internal_gtk_OS_strlen+0xF Library=/home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-pi-gtk-3210.so Current Java thread: at org.eclipse.swt.internal.gtk.OS.strlen(Native Method) at org.eclipse.swt.graphics.GC.setCairoFont(GC.java:2689) at org.eclipse.swt.graphics.GC.initCairo(GC.java:2469) at org.eclipse.swt.graphics.GC.setAntialias(GC.java:2631) at org.eclipse.draw2d.SWTGraphics.reconcileHints(SWTGraphics.java:795) at org.eclipse.draw2d.SWTGraphics.checkGC(SWTGraphics.java:282) at org.eclipse.draw2d.SWTGraphics.checkPaint(SWTGraphics.java:292) at org.eclipse.draw2d.SWTGraphics.drawOval(SWTGraphics.java:393) at org.eclipse.draw2d.Graphics.drawOval(Graphics.java:193) at de.dd.ferkel.gef.figure.custom.systemprofil.AufgabeFigure.paintFigure(AufgabeFigure.java:123) at org.eclipse.draw2d.Figure.paint(Figure.java:1053) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1118) at org.eclipse.draw2d.Viewport.paintClientArea(Viewport.java:156) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1118) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.ScalableFreeformLayeredPane.paintClientArea(ScalableFreeformLayeredPane.java:61) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1118) at org.eclipse.draw2d.Viewport.paintClientArea(Viewport.java:156) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.Figure.paintChildren(Figure.java:1091) at org.eclipse.draw2d.Figure.paintClientArea(Figure.java:1123) at org.eclipse.draw2d.Figure.paint(Figure.java:1055) at org.eclipse.draw2d.DeferredUpdateManager.repairDamage(DeferredUpdateManager.java:225) at org.eclipse.draw2d.DeferredUpdateManager.performUpdate(DeferredUpdateManager.java:145) - locked <0xac19b808> (a org.eclipse.draw2d.DeferredUpdateManager) at de.dd.ferkel.gef.part.DiagramPart$1.commandStackChanged(DiagramPart.java:79) at org.eclipse.gef.commands.CommandStack.notifyListeners(CommandStack.java:254) at org.eclipse.gef.commands.CommandStack.execute(CommandStack.java:142) at org.eclipse.gef.tools.AbstractTool.executeCommand(AbstractTool.java:388) at org.eclipse.gef.tools.AbstractTool.executeCurrentCommand(AbstractTool.java:400) at org.eclipse.gef.tools.CreationTool.performCreation(CreationTool.java:254) at org.eclipse.gef.tools.CreationTool.handleButtonUp(CreationTool.java:178) at org.eclipse.gef.tools.AbstractTool.mouseUp(AbstractTool.java:1053) at org.eclipse.gef.EditDomain.mouseUp(EditDomain.java:259) at org.eclipse.gef.ui.parts.DomainEventDispatcher.dispatchMouseReleased(DomainEventDispatcher.java:374) at org.eclipse.draw2d.LightweightSystem$EventHandler.mouseUp(LightweightSystem.java:547) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:137) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1051) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2946) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2634) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1734) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1698) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at de.dd.ferkel.FerkelApplication.run(FerkelApplication.java:64) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163) 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.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Dynamic libraries: 08048000-08056000 r-xp 00000000 03:07 760637 /opt/sun-jdk-1.4.2.08/jre/bin/java 08056000-08059000 rwxp 0000d000 03:07 760637 /opt/sun-jdk-1.4.2.08/jre/bin/java 08059000-08cab000 rwxp 08059000 00:00 0 [heap] a96ca000-a96da000 r-xp 00000000 03:07 3346261 /usr/share/fonts/TTF/VeraBI.ttf a96db000-a96ea000 r-xp 00000000 03:07 725500 /usr/share/icons/hicolor/icon-theme.cache a96ea000-a96f3000 r-xp 00000000 03:07 3589421 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-cairo-gtk-3210.so a96f3000-a96f4000 rwxp 00008000 03:07 3589421 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-cairo-gtk-3210.so a96f4000-a97ae000 r-xp 00000000 03:07 761102 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libfontmanager.so a97ae000-a97c9000 rwxp 000b9000 03:07 761102 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libfontmanager.so a97ca000-a97df000 r-xp 00000000 03:07 3339624 /usr/lib/libICE.so.6.3 a97df000-a97e0000 rwxp 00014000 03:07 3339624 /usr/lib/libICE.so.6.3 a97e2000-a97ea000 r-xp 00000000 03:07 3339592 /usr/lib/libSM.so.6.0 a97ea000-a97eb000 rwxp 00007000 03:07 3339592 /usr/lib/libSM.so.6.0 a97eb000-a9837000 r-xp 00000000 03:07 3339634 /usr/lib/libXt.so.6.0 a9837000-a983a000 rwxp 0004c000 03:07 3339634 /usr/lib/libXt.so.6.0 a983b000-a9842000 r-xp 00000000 03:07 3339422 /usr/lib/libXp.so.6.2 a9842000-a9843000 rwxp 00006000 03:07 3339422 /usr/lib/libXp.so.6.2 a9843000-a9896000 r-xp 00000000 03:07 761111 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libmlib_image.so a9896000-a9897000 rwxp 00052000 03:07 761111 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libmlib_image.so a9897000-a9b68000 r-xp 00000000 03:07 761130 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libawt.so a9b68000-a9b7e000 rwxp 002d0000 03:07 761130 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libawt.so a9ba3000-a9ba7000 r-xs 00000000 03:07 2677745 /usr/lib/eclipse-3.2/plugins/org.eclipse.gef.nl1_3.1.0/nl1.jar a9ba7000-a9bbd000 r-xs 00000000 03:07 2673269 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.resources.nl1_3.0.1/nl1.jar a9bbd000-a9bcc000 r-xp 00000000 03:07 3346262 /usr/share/fonts/TTF/VeraBd.ttf a9bcc000-a9bd2000 r-xp 00000000 03:07 3589419 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-atk-gtk-3210.so a9bd2000-a9bd3000 rwxp 00005000 03:07 3589419 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-atk-gtk-3210.so a9bd3000-a9be4000 r-xp 00000000 03:07 3346260 /usr/share/fonts/TTF/Vera.ttf a9be4000-a9be6000 r-xp 00000000 03:07 3394891 /usr/lib/pango/1.4.0/modules/pango-basic-fc.so a9be6000-a9be7000 rwxp 00001000 03:07 3394891 /usr/lib/pango/1.4.0/modules/pango-basic-fc.so a9be7000-a9c47000 rwxs 00000000 00:07 1179659 /SYSV00000000 (deleted) a9c47000-a9cc9000 r-xs 00000000 03:07 937807 /home/fabian/workspace/de.dd.ferkel/jars/xseu.jar a9cc9000-a9d79000 r-xs 00000000 03:07 976958 /home/fabian/workspace/de.dd.ferkel/jars/jython.jar a9d79000-a9dd9000 rwxs 00000000 00:07 1114118 /SYSV00000000 (deleted) a9dd9000-a9dff000 r-xp 00000000 03:07 3589424 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-gtk-3210.so a9dff000-a9e01000 rwxp 00025000 03:07 3589424 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-gtk-3210.so a9e02000-a9e03000 r-xp 00000000 03:07 3339322 /usr/lib/X11/locale/lib/common/xlcUTF8Load.so.2 a9e03000-a9e04000 rwxp 00000000 03:07 3339322 /usr/lib/X11/locale/lib/common/xlcUTF8Load.so.2 a9e04000-a9edc000 r-xp 00000000 03:07 3382446 /usr/lib/locale/en_US.utf8/LC_COLLATE a9edc000-a9f00000 r-xp 00000000 03:07 182654 /usr/lib/libexpat.so.0.5.0 a9f00000-a9f02000 rwxp 00023000 03:07 182654 /usr/lib/libexpat.so.0.5.0 a9f02000-a9f24000 r-xp 00000000 03:07 2204843 /usr/lib/libglitz.so.1.0.0 a9f24000-a9f25000 rwxp 00022000 03:07 2204843 /usr/lib/libglitz.so.1.0.0 a9f25000-a9f48000 r-xp 00000000 03:07 2204903 /usr/lib/libpng12.so.0.1.2.8 a9f48000-a9f49000 rwxp 00022000 03:07 2204903 /usr/lib/libpng12.so.0.1.2.8 a9f49000-a9f5b000 r-xp 00000000 03:07 375407 /lib/libz.so.1.2.3 a9f5b000-a9f5c000 rwxp 00011000 03:07 375407 /lib/libz.so.1.2.3 a9f5c000-a9f5e000 r-xs 00000000 03:07 3389415 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.views.nl1_3.0.0/nl1.jar a9f5e000-a9f61000 rwxs 00000000 00:07 1146890 /SYSV00000000 (deleted) a9f61000-a9f6a000 r-xs 00000000 03:07 2676877 /usr/lib/eclipse-3.2/plugins/org.eclipse.jface.nl1_3.0.0/nl1.jar a9f6a000-a9f6b000 r-xp 00000000 03:07 3379958 /usr/lib/gconv/ISO8859-1.so a9f6b000-a9f6d000 rwxp 00001000 03:07 3379958 /usr/lib/gconv/ISO8859-1.so a9f6d000-a9f6e000 r-xp 00000000 03:07 3382440 /usr/lib/locale/en_US.utf8/LC_NUMERIC a9f6e000-a9f6f000 r-xp 00000000 03:07 3382445 /usr/lib/locale/en_US.utf8/LC_TIME a9f6f000-a9f70000 r-xp 00000000 03:07 3382449 /usr/lib/locale/en_US.utf8/LC_MONETARY a9f70000-a9f71000 r-xp 00000000 03:07 3382474 /usr/lib/locale/en_US.utf8/LC_MESSAGES/SYS_LC_MESSAGES a9f71000-a9f72000 r-xp 00000000 03:07 3382476 /usr/lib/locale/en_US.utf8/LC_PAPER a9f72000-a9f73000 r-xp 00000000 03:07 3382478 /usr/lib/locale/en_US.utf8/LC_NAME a9f73000-a9f74000 r-xp 00000000 03:07 3382492 /usr/lib/locale/en_US.utf8/LC_ADDRESS a9f74000-a9f75000 r-xp 00000000 03:07 3382494 /usr/lib/locale/en_US.utf8/LC_TELEPHONE a9f75000-a9f76000 r-xp 00000000 03:07 3382495 /usr/lib/locale/en_US.utf8/LC_MEASUREMENT a9f76000-a9fdd000 r-xp 00000000 03:07 2203565 /usr/lib/libfreetype.so.6.3.8 a9fdd000-a9fe0000 rwxp 00067000 03:07 2203565 /usr/lib/libfreetype.so.6.3.8 a9fe0000-aa003000 r-xp 00000000 03:07 3394638 /usr/lib/libpangoft2-1.0.so.0.1001.0 aa003000-aa004000 rwxp 00023000 03:07 3394638 /usr/lib/libpangoft2-1.0.so.0.1001.0 aa004000-aa008000 r-xp 00000000 03:07 3339347 /usr/lib/libXfixes.so.3.0 aa008000-aa009000 rwxp 00003000 03:07 3339347 /usr/lib/libXfixes.so.3.0 aa009000-aa010000 r-xp 00000000 03:07 3339628 /usr/lib/libXrender.so.1.2.2 aa010000-aa011000 rwxp 00006000 03:07 3339628 /usr/lib/libXrender.so.1.2.2 aa011000-aa019000 r-xp 00000000 03:07 3339668 /usr/lib/libXcursor.so.1.0.2 aa019000-aa01a000 rwxp 00007000 03:07 3339668 /usr/lib/libXcursor.so.1.0.2 aa01a000-aa047000 r-xp 00000000 03:07 790106 /usr/lib/libfontconfig.so.1.0.4 aa047000-aa04c000 rwxp 0002c000 03:07 790106 /usr/lib/libfontconfig.so.1.0.4 aa04d000-aa04f000 r-xp 00000000 03:07 3339612 /usr/lib/libXinerama.so.1.0 aa04f000-aa050000 rwxp 00001000 03:07 3339612 /usr/lib/libXinerama.so.1.0 aa050000-aa057000 r-xp 00000000 03:07 3339596 /usr/lib/libXi.so.6.0 aa057000-aa058000 rwxp 00006000 03:07 3339596 /usr/lib/libXi.so.6.0 aa058000-aa05a000 r-xp 00000000 03:07 3339428 /usr/lib/libXrandr.so.2.0 aa05a000-aa05b000 rwxp 00002000 03:07 3339428 /usr/lib/libXrandr.so.2.0 aa05b000-aa068000 r-xp 00000000 03:07 3339650 /usr/lib/libXext.so.6.4 aa068000-aa069000 rwxp 0000c000 03:07 3339650 /usr/lib/libXext.so.6.4 aa069000-aa0b1000 r-xp 00000000 03:07 3395363 /usr/lib/libcairo.so.2.2.3 aa0b1000-aa0b2000 rwxp 00048000 03:07 3395363 /usr/lib/libcairo.so.2.2.3 aa0b2000-aa131000 r-xp 00000000 03:07 3394741 /usr/lib/libglib-2.0.so.0.800.2 aa131000-aa132000 rwxp 0007f000 03:07 3394741 /usr/lib/libglib-2.0.so.0.800.2 aa132000-aa134000 r-xp 00000000 03:07 3394500 /usr/lib/libgmodule-2.0.so.0.800.2 aa134000-aa135000 rwxp 00002000 03:07 3394500 /usr/lib/libgmodule-2.0.so.0.800.2 aa135000-aa16b000 r-xp 00000000 03:07 3394768 /usr/lib/libgobject-2.0.so.0.800.2 aa16b000-aa16c000 rwxp 00036000 03:07 3394768 /usr/lib/libgobject-2.0.so.0.800.2 aa16c000-aa183000 r-xp 00000000 03:07 2205008 /usr/lib/libatk-1.0.so.0.1010.3 aa183000-aa185000 rwxp 00016000 03:07 2205008 /usr/lib/libatk-1.0.so.0.1010.3 aa185000-aa1b9000 r-xp 00000000 03:07 3395439 /usr/lib/libpango-1.0.so.0.1001.0 aa1b9000-aa1bb000 rwxp 00034000 03:07 3395439 /usr/lib/libpango-1.0.so.0.1001.0 aa1bb000-aa1c1000 r-xp 00000000 03:07 3395632 /usr/lib/libpangocairo-1.0.so.0.1001.0 aa1c1000-aa1c2000 rwxp 00005000 03:07 3395632 /usr/lib/libpangocairo-1.0.so.0.1001.0 aa1c2000-aa286000 r-xp 00000000 03:07 3339339 /usr/lib/libX11.so.6.2 aa286000-aa28a000 rwxp 000c4000 03:07 3339339 /usr/lib/libX11.so.6.2 aa28a000-aa304000 r-xp 00000000 03:07 3400871 /usr/lib/libgdk-x11-2.0.so.0.800.6 aa304000-aa307000 rwxp 00079000 03:07 3400871 /usr/lib/libgdk-x11-2.0.so.0.800.6 aa307000-aa31b000 r-xp 00000000 03:07 3400915 /usr/lib/libgdk_pixbuf-2.0.so.0.800.6 aa31b000-aa31c000 rwxp 00013000 03:07 3400915 /usr/lib/libgdk_pixbuf-2.0.so.0.800.6 aa31c000-aa320000 r-xp 00000000 03:07 3339350 /usr/lib/libXtst.so.6.1 aa320000-aa321000 rwxp 00003000 03:07 3339350 /usr/lib/libXtst.so.6.1 aa321000-aa324000 r-xp 00000000 03:07 3394674 /usr/lib/libgthread-2.0.so.0.800.2 aa324000-aa325000 rwxp 00003000 03:07 3394674 /usr/lib/libgthread-2.0.so.0.800.2 aa325000-aa5f8000 r-xp 00000000 03:07 3400846 /usr/lib/libgtk-x11-2.0.so.0.800.6 aa5f8000-aa600000 rwxp 002d3000 03:07 3400846 /usr/lib/libgtk-x11-2.0.so.0.800.6 aa603000-aa647000 r-xp 00000000 03:07 3589426 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-pi-gtk-3210.so aa647000-aa649000 rwxp 00044000 03:07 3589426 /home/fabian/workspace/org.eclipse.swt.gtk.linux.x86/libswt-pi-gtk-3210.so aa649000-aa674000 r-xs 00000000 03:07 2672359 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.workbench.nl1_3.0.1/nl1.jar aa776000-aa7e2000 r-xs 00000000 03:07 2673365 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.workbench.texteditor_3.1.0.jar aa7e2000-aa7f2000 r-xs 00000000 03:07 2677179 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.views_3.2.0.jar aa7f2000-aa825000 r-xs 00000000 03:07 2673410 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.forms_3.1.0.jar aa825000-aa84d000 r-xs 00000000 03:07 2673585 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.cheatsheets_3.1.0.jar aa84d000-aa86b000 r-xs 00000000 03:07 2675521 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui_3.2.0.jar aa86b000-aa898000 r-xs 00000000 03:07 3389361 /usr/lib/eclipse-3.2/plugins/org.eclipse.text_3.1.0.jar aa898000-aa93c000 r-xs 00000000 03:07 2673108 /usr/lib/eclipse-3.2/plugins/org.eclipse.jface.text_3.1.0.jar aa93c000-aa9e0000 r-xs 00000000 03:07 2673767 /usr/lib/eclipse-3.2/plugins/org.eclipse.jface_3.2.0.jar aa9e0000-aaa3a000 r-xs 00000000 03:07 2676800 /usr/lib/eclipse-3.2/plugins/org.eclipse.help.ui_3.1.0.jar aaa3a000-aaa6f000 r-xs 00000000 03:07 3389545 /usr/lib/eclipse-3.2/plugins/org.eclipse.help.base_3.1.0.jar aaa6f000-aaa80000 r-xs 00000000 03:07 2676141 /usr/lib/eclipse-3.2/plugins/org.eclipse.help_3.1.0.jar aaa80000-aab36000 r-xs 00000000 03:07 2676140 /usr/lib/eclipse-3.2/plugins/org.eclipse.gef_3.2.0.jar aab36000-aaba8000 r-xs 00000000 03:07 2673679 /usr/lib/eclipse-3.2/plugins/org.eclipse.draw2d_3.2.0.jar aaba8000-aabaf000 r-xs 00000000 03:07 2677678 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.variables_3.1.0.jar aabaf000-aabc4000 r-xs 00000000 03:07 2678133 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.runtime.compatibility_3.1.0.jar aabc4000-aabcb000 r-xs 00000000 03:07 2677839 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.resources.linux_3.1.0.jar aabcb000-aabe7000 r-xs 00000000 03:07 2676856 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.resources.compatibility_3.1.0.jar aabe7000-aac7d000 r-xs 00000000 03:07 2677349 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.resources_3.1.0.jar aac7d000-aac93000 r-xs 00000000 03:07 2673153 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.filebuffers_3.1.0.jar aac93000-aaca0000 r-xs 00000000 03:07 2677683 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.expressions_3.1.0.jar aaca0000-aacb1000 r-xs 00000000 03:07 3389552 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.commands_3.2.0.jar aacb1000-aacc7000 r-xs 00000000 03:07 2673109 /usr/lib/eclipse-3.2/plugins/org.eclipse.ant.core_3.1.0.jar aad48000-aad5f000 r-xs 00000000 03:07 2673149 /usr/lib/eclipse-3.2/plugins/org.eclipse.update.configurator_3.1.0.jar aade0000-aae4f000 r-xs 00000000 03:07 2676815 /usr/lib/eclipse-3.2/plugins/org.eclipse.core.runtime_3.1.0.jar aaed0000-aaee0000 r-xp 00000000 03:07 760660 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libnet.so aaee0000-aaee1000 rwxp 0000f000 03:07 760660 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libnet.so aaee1000-aaf98000 r-xs 00000000 03:07 2676137 /usr/lib/eclipse-3.2/plugins/org.eclipse.osgi_3.1.0.jar aaf98000-aafa0000 r-xs 00000000 03:07 262058 /usr/lib/eclipse-3.2/startup.jar aafa0000-ab05c000 r-xs 00000000 03:07 761093 /opt/sun-jdk-1.4.2.08/jre/lib/ext/localedata.jar ab05c000-ab069000 r-xs 00000000 03:07 761092 /opt/sun-jdk-1.4.2.08/jre/lib/ext/ldapsec.jar ab069000-ab085000 r-xs 00000000 03:07 761091 /opt/sun-jdk-1.4.2.08/jre/lib/ext/sunjce_provider.jar ab40c000-ab437000 r-xp 00000000 03:07 761119 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libjdwp.so ab437000-ab439000 rwxp 0002a000 03:07 761119 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libjdwp.so ab43c000-ab442000 r-xs 00000000 03:07 1400447 /usr/lib/gconv/gconv-modules.cache ab442000-ab475000 r-xp 00000000 03:07 3382437 /usr/lib/locale/en_US.utf8/LC_CTYPE ab475000-ab59d000 r-xp 00000000 03:07 1434541 /usr/lib/locale/locale-archive b37a0000-b37a1000 r-xp 00000000 03:07 3382496 /usr/lib/locale/en_US.utf8/LC_IDENTIFICATION b37a1000-b37a2000 r-xs 00000000 03:07 3389622 /usr/lib/eclipse-3.2/plugins/org.eclipse.ui.workbench.compatibility_3.2.0/compatibility.jar b37a2000-b37a8000 r-xp 00000000 03:07 761096 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libnio.so b37a8000-b37a9000 rwxp 00005000 03:07 761096 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libnio.so b5851000-b5df1000 r-xs 00000000 03:07 761229 /opt/sun-jdk-1.4.2.08/jre/lib/charsets.jar b5df1000-b5e02000 r-xs 00000000 03:07 761239 /opt/sun-jdk-1.4.2.08/jre/lib/jce.jar b5e02000-b5edf000 r-xs 00000000 03:07 761163 /opt/sun-jdk-1.4.2.08/jre/lib/jsse.jar b5edf000-b5ef5000 r-xs 00000000 03:07 761190 /opt/sun-jdk-1.4.2.08/jre/lib/sunrsasign.jar b5f3f000-b78ea000 r-xs 00000000 03:07 761231 /opt/sun-jdk-1.4.2.08/jre/lib/rt.jar b78ea000-b78fe000 r-xp 00000000 03:07 761104 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libzip.so b78fe000-b7901000 rwxp 00013000 03:07 761104 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libzip.so b7901000-b7921000 r-xp 00000000 03:07 761115 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libjava.so b7921000-b7923000 rwxp 0001f000 03:07 761115 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libjava.so b7923000-b792b000 r-xp 00000000 03:07 3378753 /lib/libnss_files-2.3.5.so b792b000-b792d000 rwxp 00007000 03:07 3378753 /lib/libnss_files-2.3.5.so b792d000-b7933000 r-xp 00000000 03:07 3379268 /lib/libnss_compat-2.3.5.so b7933000-b7935000 rwxp 00006000 03:07 3379268 /lib/libnss_compat-2.3.5.so b7935000-b7939000 r-xs 00000000 03:07 2673151 /usr/lib/eclipse-3.2/plugins/org.eclipse.help.appserver_3.1.0.jar b7939000-b793c000 r-xp 00000000 03:07 761125 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libdt_socket.so b793c000-b793d000 rwxp 00002000 03:07 761125 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libdt_socket.so b793d000-b794d000 r-xp 00000000 03:07 761098 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libverify.so b794d000-b794f000 rwxp 0000f000 03:07 761098 /opt/sun-jdk-1.4.2.08/jre/lib/i386/libverify.so b794f000-b796f000 r-xp 00000000 03:07 3376861 /lib/tls/libm-2.3.5.so b796f000-b7971000 rwxp 00020000 03:07 3376861 /lib/tls/libm-2.3.5.so b7971000-b7982000 r-xp 00000000 03:07 3379272 /lib/libnsl-2.3.5.so b7982000-b7984000 rwxp 00010000 03:07 3379272 /lib/libnsl-2.3.5.so b7986000-b7d8c000 r-xp 00000000 03:07 761109 /opt/sun-jdk-1.4.2.08/jre/lib/i386/client/libjvm.so b7d8c000-b7da7000 rwxp 00405000 03:07 761109 /opt/sun-jdk-1.4.2.08/jre/lib/i386/client/libjvm.so b7dbb000-b7ec9000 r-xp 00000000 03:07 3377111 /lib/tls/libc-2.3.5.so b7ec9000-b7eca000 r-xp 0010e000 03:07 3377111 /lib/tls/libc-2.3.5.so b7eca000-b7ecd000 rwxp 0010f000 03:07 3377111 /lib/tls/libc-2.3.5.so b7ecf000-b7ed1000 r-xp 00000000 03:07 3379269 /lib/libdl-2.3.5.so b7ed1000-b7ed3000 rwxp 00001000 03:07 3379269 /lib/libdl-2.3.5.so b7ed3000-b7ee1000 r-xp 00000000 03:07 3382259 /lib/tls/libpthread-2.3.5.so b7ee1000-b7ee2000 r-xp 0000d000 03:07 3382259 /lib/tls/libpthread-2.3.5.so b7ee2000-b7ee3000 rwxp 0000e000 03:07 3382259 /lib/tls/libpthread-2.3.5.so b7ee6000-b7ee9000 r-xs 00000000 03:07 761090 /opt/sun-jdk-1.4.2.08/jre/lib/ext/dnsns.jar b7ee9000-b7eed000 rwxs 00000000 03:07 3494985 /tmp/hsperfdata_fabian/29386 b7eed000-b7ef5000 r-xp 00000000 03:07 3378826 /lib/libnss_nis-2.3.5.so b7ef5000-b7ef7000 rwxp 00007000 03:07 3378826 /lib/libnss_nis-2.3.5.so b7ef7000-b7eff000 r-xp 00000000 03:07 761105 /opt/sun-jdk-1.4.2.08/jre/lib/i386/native_threads/libhpi.so b7eff000-b7f00000 rwxp 00007000 03:07 761105 /opt/sun-jdk-1.4.2.08/jre/lib/i386/native_threads/libhpi.so b7f00000-b7f15000 r-xp 00000000 03:07 3381978 /lib/ld-2.3.5.so b7f15000-b7f16000 r-xp 00014000 03:07 3381978 /lib/ld-2.3.5.so b7f16000-b7f17000 rwxp 00015000 03:07 3381978 /lib/ld-2.3.5.so bf7f9000-bf815000 rwxp bf7f9000 00:00 0 [stack] ffffe000-fffff000 ---p 00000000 00:00 0 [vdso] Heap at VM Abort: Heap def new generation total 896K, used 220K [0xab7a0000, 0xab890000, 0xabc80000) eden space 832K, 25% used [0xab7a0000, 0xab7d53a0, 0xab870000) from space 64K, 12% used [0xab870000, 0xab871fc0, 0xab880000) to space 64K, 0% used [0xab880000, 0xab880000, 0xab890000) tenured generation total 10760K, used 5280K [0xabc80000, 0xac702000, 0xaf7a0000) the space 10760K, 49% used [0xabc80000, 0xac1a81b8, 0xac1a8200, 0xac702000) compacting perm gen total 15616K, used 15468K [0xaf7a0000, 0xb06e0000, 0xb37a0000) the space 15616K, 99% used [0xaf7a0000, 0xb06bb2e0, 0xb06bb400, 0xb06e0000) Local Time = Wed Oct 19 23:27:42 2005 Elapsed Time = 457 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode) # # An error report file has been saved as hs_err_pid29386.log. # Please refer to the file for further information.
2005-10-21 07:14:39
1,129,890,000
resolved fixed
9f0158b
1,340,210,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
SWT
211
383,069
Bug 383069 SWT Cocoa's URLTransfer does not return correct file url on Mac OS X
null
2012-06-20 05:27:42
1,340,180,000
resolved fixed
151ef65
1,340,200,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/URLTransfer.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSString.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
SWT
212
376,448
Bug 376448 [DBCS4.2] AIX 7, DirectoryDialog returns 'null' if selected path contains DBCS characters
Build Identifier: I20120321 OS: AIX 7 64 bit Java: JRE 1.7.0 IBM AIX build pap3270-20110827_01 Locale: Japanese, SJIS Description: Cannot import projects or files containing DBCS on the file path. Reproducible: Always Steps to Reproduce: 1. Create a new project with DBCS name. eg. 2. Export the project to your home folder. 3. Restart eclipse and go to a different workspace. 4. Go File->Import->Existing projects into workspace. 5. Point to the previously exported DBCS project and click OK. Expected result: The project path should appear on the dialog box. Actual result: The field that should contain the project path stays blank. Note: This does not happen if you use ASCII.
2012-04-10 22:31:16
1,334,110,000
verified fixed
6cfe3d1
1,340,050,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/FileTransfer.java 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/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
SWT
213
339,342
Bug 339342 CTabFolder should throw IllegalArgumentException when a disposed control is set as its top right control
The setDefaultButton(Button) method from Decorations will throw an IllegalArgumentException when a disposed button is set, why doesn't CTabFolder's setTopRight(Control) method do the same? Display display = new Display(); Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setLayout(new FillLayout()); CTabFolder folder = new CTabFolder(shell, SWT.CLOSE); Composite c = new Composite(folder, SWT.NONE); c.dispose(); folder.setTopRight(c); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose();
2011-03-09 07:41:01
1,299,670,000
resolved fixed
f5471f1
1,340,040,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
SWT
214
382,887
Bug 382887 CustomControlExample CTabFolder should have setTopRight
CTabFolder tab in CustomControlExample should have a means of testing setTopRight (to a toolbar, for example). Also, allow the top right style (SWT.RIGHT, SWT.FILL, and SWT.RIGHT | SWT.WRAP) to be selected when calling setTopRight().
2012-06-18 13:55:53
1,340,040,000
resolved fixed
43782d4
1,340,040,000
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CTabFolderTab.java
SWT
215
382,840
Bug 382840 Table#setSelection(int) should specify that it shows the selection
Table#setSelection(int) calls showSelection(). This should be specified so that clients can remove redundant calls to showSelection().
2012-06-18 06:55:07
1,340,020,000
resolved fixed
0f3c1bc
1,340,040,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java 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 bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
216
378,264
Bug 378264 Update CTabFolder JavaDoc
The 4.2 CTabFolder javadoc needs to be updated to reflect changes in behavior wrt. top right control wrapping etc.
2012-05-02 10:53:47
1,335,970,000
resolved fixed
f037ccf
1,338,920,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
SWT
217
380,730
Bug 380730 GraphicsExample Image Transformation tab needs to be more interesting
The image transformation tab in the graphicsExample should allow negative numbers and numbers greater than 360 for degrees of rotation, and it should have x, y translation capability.
2012-05-25 16:29:21
1,337,980,000
resolved fixed
a85d43e
1,337,980,000
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ImageTransformTab.java
SWT
218
379,998
Bug 379998 Plugin list not showing up in Run configuration dialog
null
2012-05-18 12:16:31
1,337,360,000
verified fixed
0456c81
1,337,750,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java
SWT
219
379,791
Bug 379791 SWTException: Graphic is disposed for PlaceholderImpl
In Version: 4.2.0 Build id: I20120515-2200 I get frequent exceptions like the one below when closing the workbench. Ids mentioned: elementId: org.eclipse.jdt.ui.JavadocView & elementId: org.eclipse.jdt.ui.SourceView !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-05-17 11:39:53.855 !MESSAGE Exception occurred while unrendering: org.eclipse.e4.ui.model.application.ui.advanced.impl.PlaceholderImpl@4dc6bbd3 (elementId: org.eclipse.jdt.ui.SourceView, tags: [], contributorURI: null) (widget: null, renderer: null, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (closeable: false) !STACK 0 org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:4361) at org.eclipse.swt.SWT.error(SWT.java:4276) at org.eclipse.swt.SWT.error(SWT.java:4247) at org.eclipse.swt.graphics.Image.getBounds(Image.java:666) at org.eclipse.swt.custom.CTabFolderRenderer.computeSize(CTabFolderRenderer.java:246) at org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering.computeSize(CTabRendering.java:149) at org.eclipse.swt.custom.CTabFolder.setItemSize(CTabFolder.java:2668) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3637) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3574) at org.eclipse.swt.custom.CTabFolder.destroyItem(CTabFolder.java:737) at org.eclipse.swt.custom.CTabItem.dispose(CTabItem.java:126) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.hideChild(StackRenderer.java:799) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:774) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.stop(PartRenderingEngine.java:1069) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1115) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:995) at org.eclipse.ui.internal.Workbench$16.run(Workbench.java:1176) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1174) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1147) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1155) at org.eclipse.ui.internal.WorkbenchWindow.access$16(WorkbenchWindow.java:1135) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1184) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1182) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1194) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:441) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$10.shellClosed(WBWRenderer.java:562) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4130) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:599) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2284) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5467) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2101) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2280) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5533) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4978) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5127) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3612) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1017) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:911) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:582) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:537) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
2012-05-17 05:47:08
1,337,250,000
verified fixed
f11fc9b
1,337,360,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java
SWT
220
379,005
Bug 379005 NullPointerException in Clipboard
Build Identifier: Version: 3.738 Happens rarely on our clients' computers. It looks like types is null on the marked line: public TransferData[] getAvailableTypes(int clipboards) { checkWidget(); if ((clipboards & DND.CLIPBOARD) == 0) return new TransferData[0]; NSPasteboard pasteboard = NSPasteboard.generalPasteboard(); if (pasteboard == null) return new TransferData[0]; NSArray types = pasteboard.types(); int count = (int)/*64*/types.count(); <-------- NPE happens here TransferData[] result = new TransferData[count]; for (int i = 0; i < count; i++) { result[i] = new TransferData(); result[i].type = Transfer.registerType(new NSString(types.objectAtIndex(i)).getString()); } return result; } The stack trace: java.lang.NullPointerException at org.eclipse.swt.dnd.Clipboard.getAvailableTypes(Clipboard.java:522) at org.eclipse.swt.dnd.Clipboard.getAvailableTypes(Clipboard.java:490) at com.wuala.facade.browser.actions.edit.EditPasteAction.checkEnabled(Z:218) at com.wuala.facade.browser.actions.ActionFacade.isEnabled(Z:225) at com.wuala.facade.browser.actions.DynamicActionFacade.notifyListener(Z:41) at com.wuala.facade.browser.actions.DynamicActionFacade.notifySelectionStatusUpdated(Z:70) at com.wuala.facade.browser.facades.content.SelectionProvider.internalSelection(Z:104) at com.wuala.facade.browser.facades.content.SelectionProvider.setActive(Z:174) at com.wuala.presentation.browser.detailsview.DetailsView$12.focusGained(Z:1247) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:139) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4128) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1461) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:3276) at org.eclipse.swt.widgets.Display.checkFocus(Display.java:646) at org.eclipse.swt.widgets.Shell.becomeKeyWindow(Shell.java:534) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5343) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4989) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5138) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3610) at com.wuala.presentation.WualaApplication.runGui(Z:545) at com.wuala.presentation.WualaApplication.doLaunch(Z:316) at com.wuala.presentation.WualaApplication.launch(Z:194) at com.wuala.platform.Wuala.launch(Z:23) at com.wuala.loader3.Loader3.startInstance(Loader3.java:143) at com.wuala.loader3.Loader3.start(Loader3.java:104) at com.wuala.loader3.Loader3.main(Loader3.java:322) Reproducible: Couldn't Reproduce
2012-05-09 11:32:16
1,336,580,000
resolved fixed
bcc37fa
1,337,180,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java
SWT
221
368,629
Bug 368629 IE Browser widget should always encode LocationEvent#location, also for file:///
null
2012-01-15 18:45:53
1,326,670,000
resolved fixed
3b7e043
1,337,100,000
bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
SWT
222
377,472
Bug 377472 [DBCS4.2] The backslash followed by DBCS character is not same as one followed by sbcs
Build Identifier: I20120321 Java: IBM JRE 7 OS: Windows 7 Japanese, SJIS, AIX 7.1 Japanese SJIS Reproducible: Always Steps to Reproduce: 1. Create a new Java class. 2. Create a String variable, eg. String example=""; 3. Copy the following text into the quotes, c:\\program Expected results, The result should look like the one in correctbackslash37.png (Eclipse 3.7) Actual result, The result looks like incorrectbackslash42.png (Notice the backslash and the yen sign, both should either be yen sign or backslash as they are equivalent characters) This is a regression bug as it does not happen in previous eclipse version.
2012-04-24 04:08:53
1,335,250,000
resolved fixed
9b9af04
1,336,760,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
SWT
223
378,482
Bug 378482 g_object_get() emits console warnings in ToolItem#gtk_create_menu_proxy
Build Identifier: I20120502-1800 Need to fix the console warnings being emitted by g_object_get() while trying to retrieve the value of property setting "gtk-menu-images" in ToolItem#gtk_create_menu_proxy(). The warning message that appears is: (SWT:17023): GLib-GObject-WARNING **: g_object_get_valist: object class `GtkSettings' has no property named `gtk-menu-images' Reproducible: Always
2012-05-04 07:50:20
1,336,130,000
resolved fixed
947d452
1,336,760,000
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/ToolItem.java
SWT
224
372,790
Bug 372790 WinICOFileFormat cannot handle 256x256 icons
null
2012-02-28 13:59:23
1,330,460,000
resolved fixed
68e0347
1,336,670,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/FileFormat.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/WinICOFileFormat.java
SWT
225
378,081
Bug 378081 Combo should not send ModifyEvent on #select(int) if item unchanged
null
2012-04-30 09:48:46
1,335,790,000
resolved fixed
afaa39b
1,336,660,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
226
379,042
Bug 379042 SWT.DragDetect should not be sent when left clicking with Ctrl down
Run eclipse and open a perspective with a stack of views. 1) Press and hold the control key. 2) Press left mouse button on a tab and move mouse. The contextual menu shows. 3) Dismiss the contextual menu (press ESC). 4) Move the mouse. The view drag effects (green rectangles) show up.
2012-05-09 15:00:19
1,336,590,000
resolved fixed
9edcb6f
1,336,590,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
SWT
227
378,060
Bug 378060 Tooltips not appearing properly
null
2012-04-30 07:24:20
1,335,790,000
resolved fixed
3435c84
1,336,570,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
SWT
228
340,054
Bug 340054 SWT Painting problems in Cocoa
See the attached screenshot. When the editor was revealed, I think from closing some other editor, it did not paint properly. This is "forms" editor, like some of the PDE editors in eclipse. It does not use GEF.
2011-03-15 12:25:48
1,300,210,000
resolved fixed
642c17d
1,336,420,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
SWT
229
378,344
Bug 378344 API Tools report bad @since tag on SegmentListener
API Tools report a bad @since tag on SegmentListener. The @since 3.8 should be on the interface, not on the method.
2012-05-03 06:52:40
1,336,040,000
verified fixed
6f3ef9e
1,336,150,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SegmentListener.java
SWT
230
99,718
Bug 99718 [CCombo] Very long text in CCombo causes vertical scroll bar to disappear
If there are very long text in the CCombo, the vertical scrollbar of dropdown listbox disappears beyond the edge of the screen. I have seen defects 37329 and 7946, but this is different, as it is not related to Properties view.
2005-06-13 12:24:40
1,118,680,000
resolved fixed
76d8745
1,335,810,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
SWT
231
377,155
Bug 377155 CCombo dropdown list can go off the top screen bound
null
2012-04-19 04:50:57
1,334,830,000
resolved fixed
7d3ba93
1,335,770,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
SWT
232
377,385
Bug 377385 [10.7]Shell.setFullScreen not working on child window
null
2012-04-23 05:42:16
1,335,170,000
resolved fixed
9cc72cd
1,335,380,000
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
233
377,074
Bug 377074 Cocoa TabItem.getBounds doesn't not return a correct y position
Build Identifier: SWT 3.7.2 GM TabItem.getBounds in Cocoa doesn't return a correct y position. A sample attached. In the sample, click the button will print out all the bounds of TabItem in TabFolder. Expected result: y position is a correct number such as 2. Actually result: y position is not correct such as -553. Reproducible: Always
2012-04-18 06:12:24
1,334,740,000
resolved fixed
8b75565
1,334,920,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java
SWT
234
376,589
Bug 376589 clipboard.getContents(HTMLTransfer.getInstance()) returns gibberish on gtk
null
2012-04-12 08:52:16
1,334,240,000
resolved fixed
c5308d7
1,334,680,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/HTMLTransfer.java
SWT
235
376,826
Bug 376826 Text#removeSegmentListener inconsitent with other code
99% of SWT code does null checks like this: if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); the removeSegmentListener uses another one: if (listener == null) SWT.error (SWT.ERROR_NULL_ARGUMENT); In the end the first call ends up in SWT.error() but I think it would be more consitent
2012-04-15 11:53:41
1,334,510,000
resolved fixed
73e2afa
1,334,600,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Caret.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/widgets/Decorations.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/Link.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.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/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/Display.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/Menu.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/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.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/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.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/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
SWT
236
375,721
Bug 375721 Context menu position in StyledText should be below caret
The context menu in StyledText should be opened below the caret. The current solution overlaps the text after the caret in most cases (when the menu opens downwards). org.eclipse.ui.actions.QuickMenuCreator#computeMenuLocation(StyledText) fixes this via: result.y += text.getLineHeight(text.getCaretOffset());
2012-03-30 09:34:38
1,333,110,000
resolved fixed
c544b70
1,334,590,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
237
365,961
Bug 365961 StyledText computes wrong control size when wrapping
null
2011-12-07 15:53:55
1,323,290,000
resolved fixed
63bb510
1,334,270,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
238
353,305
Bug 353305 [Browser][WebKit] Javadoc tooltip cannot be closed with Esc
Build Identifier: 20110615-0604 Tooltips opened with F2 ("Show Tooltip Description") can be closed by pressing Esc, except Javadoc tooltips. This worked fine in Eclipse-3.4, it ceased to work in 3.7. Reproducible: Always Steps to Reproduce: 1. Enter the following into a new Java class with an arbitrary name: public static void test() { final String s = new String(); } 2. Place the cursor over String and press F2. A javadoc tooltip appears. Press Esc, nothing happens, the tooltip remains on the screen. Place the cursor over s, which is underlined in yellow, and press F2. The warning appears in a tooltip. Press Esc, and the tooltip disappears.
2011-07-28 07:21:02
1,311,850,000
resolved fixed
a7026b1
1,334,260,000
bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/browser/WebKit.java
SWT
239
373,467
Bug 373467 Default Mac OS X Search feature in Help Menu not working correctly
The native search feature in Mac OS X, to search menus only works when SWT creates the menu based in the application Shell, otherwise, if you get the Menu from "Display.getCurrent().getMenuBar()" or "Display.getDefault().getMenuBar()" it doesn't seem to work at all. - Here is a code sample for missing-search.png (search doesn't work): ========================================================== public static Menu getMenu() { if(menu == null) { menu = getDisplay().getMenuBar(); if(menu == null) { Shell shell = getShell(); menu = new Menu(shell, SWT.BAR); shell.setMenuBar(menu); } } return menu; } ========================================================== - Here is a code sample for working-search.png (search does work): ========================================================== public static Menu getMenu() { if(menu == null) { //menu = getDisplay().getMenuBar(); if(menu == null) { Shell shell = getShell(); menu = new Menu(shell, SWT.BAR); shell.setMenuBar(menu); } } return menu; } ==========================================================
2012-03-07 00:28:23
1,331,100,000
resolved fixed
8614680
1,334,210,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
240
376,183
Bug 376183 [Browser] tabbing does not work in XULRunner 10 (Windows only)
In XULRunner 10, sending WM_GETDLGCODE to a WM_KEYDOWN's MSG hwnd answers 0 instead of the expected DLGC_WANTTAB or DLGC_WANTALLKEYS. As a result, Tab presses always default to traversals out of the browser.
2012-04-05 09:47:22
1,333,630,000
resolved fixed
2584484
1,333,630,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java
SWT
241
375,830
Bug 375830 Webkit on windows can fail with newer Safari versions
With new Safari (tried with 5.1.4) on Windows, Apple Application Support directory can be under \Program Files\Safari instead of \Program Files\Common Files\Apple. Hence, launching SWT Browser with SWT.WEBKIT style can fail. Workaround: Add the Apple Application Support directory to the Windows PATH.
2012-04-02 07:16:50
1,333,370,000
resolved fixed
07d15cb
1,333,390,000
bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/browser/WebKit.java
SWT
242
373,036
Bug 373036 SWT Cocoa should not change Cocoa cell classes permanently
Build Identifier: SWT Cocoa 3.7.1 In its org.eclipse.swt.widgets.Display.initClasses method, SWT Cocoa registers various cell subclasses (e.g. SWTAccessibleNSTextFieldCell) and replaces Cocoa cell classes (NSTextField.setCellClass) permanently. This is fine if all the UI controls are created and managed by SWT. However, it will impact all native code that create these Cocoa controls at run time and can cause unexpected behaviors like repainting issues. For example, if we run below code: id o = [[NSTextField alloc] init]; Within SWT, [[o cell] class] will be SWTAccessibleNSTextFieldCell rather than NSTextFieldCell (the default). There are two possible fixes: 1. Instead of calling setCellClass, provide an override of the cellClass method for the control subclass, i.e. (pseudo code): class SWTTextField { int cellClass() { return <SWTAccessibleNSTextFieldCell class>; } }; 2. Only change the control cell class before creating the control and restore back after the control is created, i.e. (pseudo code): int cls = NSTextField.cellClass(); NSTextField.setCellClass(<SWTAccessibleNSTextFieldCell class>); NSTextField textWidget = (NSTextField)new SWTTextField().alloc(); NSTextField.setCellClass(cls); Reproducible: Always
2012-03-02 00:06:06
1,330,660,000
resolved fixed
a4dbc7c
1,333,060,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
SWT
243
373,253
Bug 373253 BrowserFunction not working with XULRunner 10
null
2012-03-05 09:50:18
1,330,960,000
resolved fixed
24fd6f2
1,333,030,000
bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WebBrowser.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/External.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsISecurityCheckedComponent.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIVariant.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIXPCScriptable.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIXPConnect.java
SWT
244
375,619
Bug 375619 Toolbar with only separator(s) should not be in tab order
Eclipse 4.2 M6 Eclipse 4.2 creates toolbars with only 1 separator tool in them to separate the toolbars. (This simulates the old coolbar). On Windows, tab traversal ignores the separator-only-toolbars (which is good). On Mac, tab traverses to the separator-only-toolbar, and this is not good. To see this, traverse in the forward direction with ctrl+tab until you reach the toolbar. Then keep tabbing forward, and notice that there are too many tab keys required to tab from toolbar to toolbar.
2012-03-29 08:12:24
1,333,020,000
resolved fixed
5b43633
1,333,030,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
SWT
245
353,084
Bug 353084 Layout problem with Shell-toolbar
Build Identifier: 3.7.0.v3735b Please launch the attached sample. Though I only have one control added (the multi-line text), the used FillLayout tries to also layout the shell-toolbar which fails. Reproducible: Always
2011-07-26 04:31:42
1,311,670,000
resolved fixed
33615ef
1,332,840,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java
SWT
246
374,948
Bug 374948 [Browser] mozilla is given invalid profile directory in some circumstances
null
2012-03-21 12:38:25
1,332,350,000
resolved fixed
689db4b
1,332,350,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java
SWT
247
374,628
Bug 374628 gc.setBackgroundPattern does not draw correctly in Cocoa
null
2012-03-19 05:49:41
1,332,150,000
resolved fixed
9d1fbc7
1,332,180,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java
SWT
248
364,116
Bug 364116 [10.7]Crash when opening two FileDialogs in a row
Build Identifier: Build id: 20110916-0149 When I'm trying to open two file dialogs in a row, jvm crashes with "Invalid memory access of location ... eip=...". I've detected this in Eclipse RCP Application, but it reproduces in plain SWT app too. I'm using Mac OS X 10.7.2 with latest Apple Java update (Java for Mac OS X 10.7 update 1). Bug not reproduces on Oracle's Java 7 for Mac OS X preview Reproducible: Always Steps to Reproduce: 1. Create one file dialog, call .open() for it 2. Create another file dialog, call .open() for it 3. Enjoy jvm crash
2011-11-18 03:19:21
1,321,600,000
resolved fixed
1c16a64
1,331,330,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java
SWT
249
373,794
Bug 373794 Malformed Javadoc comments
null
2012-03-09 09:08:00
1,331,300,000
resolved fixed
4d842d1
1,331,310,000
bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/BrowserFunction.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/Printer.java bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java bundles/org.eclipse.swt/Eclipse SWT/emulated/tooltip/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.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/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
SWT
250
333,972
Bug 333972 Installed BrowserFunctions are available to remote content loaded in iFrames.
Build Identifier: When a BrowserFunction is installed on a page, it is also made available to remote content loaded in Frames and iFrames. From looking at the code this behavior was intended. This behavior is differs between platforms. For IE and Safari browsers, iFrames do not have access to the installed BrowserFunction but they do have access to the "window.external.callJava" function. For Mozilla browsers, iFrames have access to the installed BrowserFunctions and the "window.external.callJava" function. We have use cases where we need to restrict access to the installed BrowserFunction and "window.external.callJava". We think there are two things that need to be done. 1) Enhancement to the BrowserFunction/Browser API to allow scoping the installed BrowserFunctions to specific window/frame/iframes. 2) Secure access to the "window.external.callJava" function. Reproducible: Always Steps to Reproduce: Steps to reproduce 1. Start with the Browser widget snippet 2. Change the HTML to include an iFrame with remote content 3. Add script to the remote content that attempts to access the installed BrowserFunction Bug: If the browser is SWT.MOZILLA the remote script will successfully access the installed BrowserFunction
2011-01-11 08:41:57
1,294,750,000
resolved fixed
65025a7
1,331,240,000
bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/BrowserFunction.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WebBrowser.java
SWT
251
372,138
Bug 372138 JS evaluating asynchronously with XULRunner 10
The default code path in Mozilla.execute() is failing with XULRunner 10, which is causing it to fall back to the "pre-1.9" approach. For some JS evaluations this is fine but not for all, so getting the main part of Mozilla.execute() to work with XULRunner 10 is important. I believe it's caused by native interfaces that have changed between XULRunner 3.6.x and 10.0. Note that SWT includes two header files, nsIScriptContext.h and nsIScriptGlobalObject.h, that make it possible to compile the natives that are used here with XULRunner 1.8.x. It's possible that these hacked header files may need to change if these natives have changed in XULRunner 10.
2012-02-21 11:57:43
1,329,840,000
resolved fixed
a44261e
1,331,070,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java
SWT
252
372,760
Bug 372760 segments offset should be more flexible
null
2012-02-28 11:28:06
1,330,450,000
resolved fixed
d3c0efa
1,330,450,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentEvent.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SegmentEvent.java
SWT
253
372,729
Bug 372729 Javadoc warning in official build
N20120227-2000. /builds/N201202272000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java:342: warning - Tag @link: can't find SegmentEvent in org.eclipse.swt.widgets.Text 1 warning
2012-02-28 08:25:23
1,330,440,000
verified fixed
db8003c
1,330,450,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
SWT
254
372,599
Bug 372599 Wrong drawing behaviour using SWT and Cairo drawing a TextLayout and then an oval
null
2012-02-26 09:51:12
1,330,270,000
resolved fixed
cbabfb5
1,330,380,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
SWT
255
337,979
Bug 337979 [ui] max/restore the editor area and viewstack tabs disappear
null
2011-02-23 10:05:18
1,298,470,000
resolved fixed
3844648
1,330,120,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
SWT
256
355,341
Bug 355341 [10.7] TabFolder doesn't look native (selected item's text not inverted)
null
2011-08-22 03:15:18
1,314,000,000
resolved fixed
ffbb45e
1,330,090,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java
SWT
257
362,133
Bug 362133 tray item show highlight image not working
Build Identifier: tray item image doesn't change back Reproducible: Always Steps to Reproduce: 1. run code snippet 2. click on tray item 3. click on tay item again, original image doesn't show
2011-10-26 16:58:29
1,319,660,000
resolved fixed
cfd758f
1,328,210,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java
SWT
258
370,355
Bug 370355 Combo does not show focus ring in some cases
steps to reproduce the problem on Eclipse: "when hovering over a Java problem, you can enrich the hover and then click on the 'Configure Problem Severity' icon. This opens the preference page and sets the focus on the correct preference" The focus control is not decorated with focus ring, even when the ALT key is pressed. Thus, it can't be identified in the UI. Here is snippet that shows the same problem: public class Snippet { public static void main(final String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new RowLayout()); Label label = new Label(shell, SWT.SINGLE); label.setText("text:"); final Combo combo = new Combo(shell, SWT.DROP_DOWN | SWT.READ_ONLY); combo.setItems(new String[] {"hello", "hi"}); combo.select(0); Button button = new Button(shell, SWT.PUSH); button.setText("button"); display.addFilter(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { if (event.keyCode == SWT.F1) { combo.redraw(); System.out.println("redrawing"); } } }); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
2012-02-01 12:16:20
1,328,120,000
verified fixed
2637cc7
1,328,120,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
259
338,975
Bug 338975 [SWT OS X Cocoa] Eclipse causes WindowServer to consume memory
I've only started noticing this recently (possible 3.6 but definitely 3.7). I'm running the latest version of SL. I only use the 64bit Cocoa version, so I'm not sure if the 32 bit version has a similar issue. During general Java development (refactoring, editing, building, etc.) the Mac OS X WindowServer memory usage increases until it consumes large amounts of real memory. Prior to launching Eclipse, it uses about 90MB. After an hour or so, it has consumed over 1GB of real memory at which point my system is pretty much unusable (I only have 3GB). The Quartz Debug Window List shows in excess of 150 windows have been created by Eclipse. Most of these appear to be tooltip popups and context menus (some are just blank rectangles) that were displayed at some point. Since WindowServer is responsible for handling the interaction with the graphics hardware, it appears that the UI is creating Cocoa objects that are not getting released, or something similar. Please let me know if there is any other debugging information I can provide.
2011-03-04 16:33:25
1,299,270,000
resolved fixed
3ef72dc
1,328,120,000
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
SWT
260
368,710
Bug 368710 ProgressBar created with SWT.INDETERMINATE does not pause on Windows XP
Build Identifier: Version 3.7 SR 1 Build ID: 20110916-0149 I have created a ProgressBar of type SWT.INDETERMINATE. If I execute progBar.setState(SWT.PAUSED) on Windows XP it does not stop. On Windows 7 it works correctly and the ProgressBar stops. Reproducible: Always Steps to Reproduce: 1. Create a ProgressBar Control: final ProgressBar progressBar = new ProgressBar(shell, SWT.INDETERMINATE); 2. Try to stop it with progressBar.setState(SWT.NORMAL); 3. Does not work on XP, but on Windows 7
2012-01-16 08:41:22
1,326,720,000
resolved fixed
4b2aecb
1,328,110,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java
SWT