issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
updated_files
stringlengths
29
34.1k
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
unknown
report_datetime
unknown
307,681
Bug 307681 StyledText: Incorrect style.length in paintObject events
Build Identifier: M20100211-1343 After setting a StyleRange with a length of 1 and a non null glyph metrics on a StyledText, the paint events received by paint listeners have an event such that event.style.length = 0. This seems to come from the way int array ranges are computed and interpreted in StyledTextRenderer vs TextLayout: - in TextLayout.getRanges() the int[] array is said (javadoc) to contain the "start and end of each text style", and for a style with a length of 1 the array contains [..., <start>,<start>, ...]. Also the setStyle implementation shows that those offsets are inclusive. - however in StyledTextRenderer.drawLine (end of the method when styles[i].metrics != null) the int[] array obtained from the layout is assumed to contain <start>,<start+1> since the style length is computed as int length = ranges[(i << 1) + 1] - ranges[i << 1]; Reproducible: Always Steps to Reproduce: 1. StyledText styledText = new StyledText(parent, SWT.MULTI); StyleRange range = new StyleRange(10, 1, fg, bg); range.metrics = new GlyphMetrics(ascent, descent,25 ); styledText.setStylesRanges(new StyleRange[] { range }; 2. Observe that event.style.length == 0 when the listener is invoked
resolved fixed
aca4917
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-04-06T12:59:21Z"
"2010-03-31T10:06:40Z"
307,947
Bug 307947 VoiceOver broken when an Accessible object is set
If you turn on VoiceOver in 10.6 and move the mouse over a widget with an Accessible object set for it, VoiceOver can't see the control and therefore can't read its contents. To reproduce: 1. In Eclipse 3.6m6, run org.eclipse.swt.examples.accessibility.ControlsWithAccessibleNamesExample 2. Turn on VoiceOver (cmd-F5) 3. Move the mouse over the controls in the window. ---> Nothing happens. The VoiceOver focus is on the close button of the window.
resolved fixed
849aa1b
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-04-02T00:35:50Z"
"2010-04-02T01:00:00Z"
305,795
Bug 305795 unexpected quit of Eclipse using eclipse-SDK-3.6M6-macosx-cocoa-x86_64
null
resolved fixed
c362fc0
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-04-01T21:34:44Z"
"2010-03-14T18:06:40Z"
305,096
Bug 305096 Fullscreen mode doesn't cover the windows taskbar on Windows 7
Build Identifier: version 3.631 When a shell is set to Fullscreen on Windows 7, it doesn't cover the Windows 7 taskbar. Here's a snippet to reproduce : import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestFS { public static void main(String[] args) { Display display = new Display(); Shell s = new Shell(); s.open(); s.setFullScreen(true); while(!s.isDisposed()) { if(!display.readAndDispatch()) { display.sleep(); } } } } Reproducible: Always Steps to Reproduce: 1. run the snippet from above, or bring any shell to fullscreen
resolved fixed
e0bfce0
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-04-01T19:03:36Z"
"2010-03-09T04:46:40Z"
212,594
Bug 212594 [Printer] Printer.dispose() after cancelJob() yields lifetime supply of GLib-CRITICAL
null
resolved fixed
45dccff
["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/gtk/org/eclipse/swt/printing/Printer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-04-01T13:21:41Z"
"2007-12-11T16:20:00Z"
213,050
Bug 213050 Mouse cursor disappears when Combo.setListVisible(true) is called
When I call Combo.setListVisible(true), the mouse disappears. This makes it difficult to select something in the drop down list. STEPS: - run attached code - select the text area in the Combo and type - the mouse disappears when the drop down list is visible Expect: The mouse to be visible so that we select the items in the drop down. I use the code below to show the difference in behaviour between Combo and CCombo. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.*; public class CComboDropDownTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); GridData data = new GridData(SWT.FILL, SWT.FILL, true, true); shell.setLayoutData(data); final CCombo cCombo = new CCombo(shell, SWT.DROP_DOWN | SWT.BORDER); for (int i = 0; i < 10; i++) { cCombo.add("CCombo " + i); } cCombo.select(0); cCombo.addListener (SWT.Modify, new Listener () { public void handleEvent (Event e) { cCombo.setListVisible(true); } }); final Combo combo = new Combo(shell, SWT.DROP_DOWN | SWT.BORDER); for (int i = 0; i < 10; i++) { combo.add("Combo " + i); } combo.select(0); combo.addListener (SWT.Modify, new Listener () { public void handleEvent (Event e) { combo.setListVisible(true); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
resolved fixed
d8ada86
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Combo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-31T13:19:13Z"
"2007-12-14T19:20:00Z"
307,403
Bug 307403 [Accessibility] NPE creating FilteredList on Linux
Build Identifier: 3.6M6 TwoPaneElementSelector is no longer usable in 3.6M6. Reproducible: Always Steps to Reproduce: The attached project works fine in 3.6M5. It is OK in 3.6M6 on Windows, but fails on Linux (and I suspect it will fail on Solaris as well). Thread [main] (Suspended (exception NullPointerException)) FilteredList.getAccessible() line: 777 Label.addRelation(Control) line: 112 FilteredList(Control).setRelations() line: 1034 FilteredList(Control).createWidget(int) line: 549 FilteredList(Scrollable).createWidget(int) line: 152 FilteredList(Control).<init>(Composite, int) line: 96 FilteredList(Scrollable).<init>(Composite, int) line: 74 FilteredList(Composite).<init>(Composite, int) line: 95 FilteredList.<init>(Composite, int, ILabelProvider, boolean, boolean, boolean) line: 236 TwoPaneElementSelector(AbstractElementListSelectionDialog).createFilteredList(Composite) line: 334 TwoPaneElementSelector.createDialogArea(Composite) line: 138 TwoPaneElementSelector(Dialog).createContents(Composite) line: 760 TwoPaneElementSelector(Window).create() line: 431 TwoPaneElementSelector(Dialog).create() line: 1089 TwoPaneElementSelector(SelectionStatusDialog).create() line: 153 TwoPaneElementSelector(AbstractElementListSelectionDialog).access$superCreate() line: 427 AbstractElementListSelectionDialog.access$2(AbstractElementListSelectionDialog) line: 426 AbstractElementListSelectionDialog$4.run() line: 438 BusyIndicator.showWhile(Display, Runnable) line: 70 TwoPaneElementSelector(AbstractElementListSelectionDialog).create() line: 436 TwoPaneElementSelector(Window).open() line: 790 TwoPaneElementSelector(AbstractElementListSelectionDialog).open() line: 422 TwoPaneElementSelectorBug.twoPainTest(Shell) line: 30 TwoPaneElementSelectorBug.run(IAction) line: 44 ...
resolved fixed
8c5510a
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-30T15:48:00Z"
"2010-03-29T13:40:00Z"
295,482
Bug 295482 [Widgets] file search history and regexp code assistance scroll BOTH using cursor up/down keys (page up/down resp.)
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.1.3) Gecko/20090909 SUSE/3.5.3-1.2 Firefox/3.5.3 Build Identifier: I20080617-2000 The file search provides a search history. Using the cursor up/down keys you can scroll through the history. After activating the "Regular expression" checkbox, you can use the "Content Assist", e.g. by pressing <ctrl>-<space>. Now, using the the cursor up/down keys, you can scroll through the completion proposals. But, this also scrolls through the search history. Your new search query gets messed up ... Same happens with page up/down, but not with the <end> or <pos1> keys or with the mouse. Reproducible: Always Steps to Reproduce: 1. fill the file search history with some (different) search strings 2. activate the "Regular Expression" checkbox 3. activate the "code assist" using <ctrl>-<space> 4. use the cursor up or down key to scroll through the different proposals
resolved fixed
0efd209
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-30T04:56:26Z"
"2009-11-18T16:00:00Z"
305,224
Bug 305224 Browser Widget is always showing scrollbars
I20100307-2000 The Select Scope and New Scope dialogs are showing scrollbars. This only happens with the built in help browser, when opened in an external browser the scrollbars are not there.
verified fixed
f248d27
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-29T19:20:18Z"
"2010-03-09T18:40:00Z"
303,263
Bug 303263 Need to expose CFRunLoopRunInMode and CFRunLoopStop for Adobe
Adobe Flash Catalyst will eventually be adopting Cocoa, but to do so they need to do run loop manipulation. Specifically, the methods CFRunLoopRunInMode and CFRunLoopStop were defined in the Carbon SWT but are not defined in the Cocoa SWT. These should be exposed so they can use them without having to rebuild the Cocoa SWT themselves.
resolved fixed
7e632fe
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-29T16:14:12Z"
"2010-02-19T00:40:00Z"
294,737
Bug 294737 FileDialog setFilterExtensions() does not work with extensions containing more than one point in the extension name
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9 Build Identifier: SWT 3.4.0v3448f and SWT.3.5.1v3555a * it is not possible to select files with extensions that contain more than one point, if this extension is set via setFilterExtensions() for the FileDialog - therefore files of the desired type cannot be opened * works fine on windows * see attached screenshot - the .profile.xml files are not selectable Reproducible: Always
resolved fixed
27f7331
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/FileDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-19T16:38:33Z"
"2009-11-10T13:33:20Z"
297,480
Bug 297480 [Widgets] Cocoa:Lines not visible in Table/Tree
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Build Identifier: I20091207-1800 When we set the lines in Table/tree using setLinesVisible(true), lines are not visible in the background. Verified that it works fine in 3.6M1 Reproducible: Always Steps to Reproduce: 1.Run a snippet which has setLinesVisible(true) for table/tree. Eg: run Snippet110. 2.Table doesn't show the alternating lines in the background. Same with Tree.
resolved fixed
4b15396
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-19T16:06:57Z"
"2009-12-10T13:00:00Z"
36,806
Bug 36806 Eclipse on AIX 4.3.3 hangs
There is no repsonse to user events like clicks or closing the application. I am running the 2.1 version of Eclipse on AIX 4.3.3 with APAR IY27694 applied. I have X11.motif.lib at service level 4.3.3.80, so the release notes says not to install IY41939. The Eclipse application installed well. The splash screen comes out funny -- the two lower GIFs are switched. When the application finally displays (seemingly correctly) then nothing happens if I click anywhere in the window. I am also using this with ViewNow X -- a Windows X windows Server. This works well with other X11 and java applications on AIX, so I have no reason to believe it would be the cause of the problems.
resolved fixed
ce45876
["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-18T14:56:08Z"
"2003-04-23T17:46:40Z"
305,095
Bug 305095 Shell in fullscreen has incorrect client area
Build Identifier: version 3.631 If you put a shell in fullscreen mode on OSX, a portion of the screen (a band towards the bottom) is actually not part of the client area (but it does cover the screen with the shell background). You can see it in action by simply adding a FillLayout to your Shell, adding 1 composite to the shell, and setting the background color to a non standard color. You'll see that in fullscreen mode, the composite doesn't scale to the entire shell. OSX 10.6.2 Here's a snippet : package org.eclipse.swt.snippets; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestFS { public static void main(String[] args) { Display display = new Display(); Shell s = new Shell(); s.setFullScreen(true); s.setLayout(new FillLayout()); Composite composite = new Composite(s,SWT.NONE); composite.setBackground(display.getSystemColor(SWT.COLOR_BLACK)); s.open(); while(!s.isDisposed()) { if(!display.readAndDispatch()) { display.sleep(); } } } } Reproducible: Always Steps to Reproduce: 1. run the snippet above on 10.6.2
resolved fixed
149e29d
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-18T07:21:47Z"
"2010-03-09T04:46:40Z"
305,186
Bug 305186 [Browser] Child shell with browser doesn't close on Esc
null
verified fixed
60838e2
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-16T17:57:33Z"
"2010-03-09T15:53:20Z"
305,230
Bug 305230 Browser should specify encoding of LocationEvent#location and align implementations
I20100309-0100 Cocoa Links to other types in Javadoc hovers don't work any more on Cocoa. That's because I get a URISyntaxException in: org.eclipse.jdt.internal.ui.viewsupport.JavaElementLinks$1.changing(JavaElementLinks.java:199) On other platforms (IE on WinXP, Mozilla on GTK), the URI in LocationEvent#location is URI-encoded, but on Cocoa/Safari, the location is coming in its raw (unencoded) form. LocationEvent#location should specify that the string is an encoded URI. If you don't have the encoded form of the URI, you can encode the raw location like this: new URI(null, null, rawLocation).toASCIIString()
verified fixed
48d9677
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T17:40:31Z"
"2010-03-09T18:40:00Z"
305,332
Bug 305332 taskitem resets image to null
public static void main335(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setImage(new Image(display, "/Users/Felipe/Desktop/workspaceCocoa/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Eclipse.icns")); TaskItem item = display.getSystemTaskBar().getItem(null); item.setOverlayText("hi"); item.setOverlayText(""); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } result app shows the default icon (console) expect app shows Eclipse.icns icon fix ### Eclipse Workspace Patch 1.0 #P org.eclipse.swt Index: Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java,v retrieving revision 1.2 diff -u -r1.2 TaskItem.java --- Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java 2 Mar 2010 21:30:16 -0000 1.2 +++ Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java 10 Mar 2010 15:09:27 -0000 @@ -210,7 +210,7 @@ NSDockTile dock = app.dockTile (); boolean drawImage = overlayImage != null && dock.badgeLabel () == null; if (!drawImage && !drawProgress && !drawIntermidiate) { - app.setApplicationIconImage (null); + app.setApplicationIconImage (defaultImage); return; }
resolved fixed
c065ad0
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T15:09:23Z"
"2010-03-10T14:06:40Z"
305,294
Bug 305294 Control.print(GC) causes side effects in Windows 7 Aero
Build Identifier: 3.5.1 M20090917-0800 I have a composite with a "StackLayout" and two controls to flip between. When I perform Control.print(GC) on the two controls, the bottom control can nolonger be seen on the screen. This doesn't effect the code when run on Windows XP or when Windows 7 is switched to Classic mode. Reproducible: Always Steps to Reproduce: 1. Create a new java project 2. Copy the following code and create a class SWTImagePrintTest: ----START------------------------------ ----END-------------------------------- 3. You will need to have SWT libraries available for this project (project properties->Java Build Path->Libraries 4. Run the application 5. Click flip/flop button. You can see that the composite changes 6. Click "Print" 7. Click the flip/flop button, notice that the other composite is now blank/not being redrawn 8. Show the blank composite 9. Click Print again 10. Note that the top is now blank for both composites.
resolved fixed
4412c19
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Group.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T14:56:49Z"
"2010-03-10T08:33:20Z"
305,335
Bug 305335 taskitem doesnt work before shell.open()
public static void main335(String[] args) { Display display = new Display(); Shell shell = new Shell(display); TaskItem item = display.getSystemTaskBar().getItem(shell); item.setOverlayText("hi"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } expected: overlay text "hi" to show over the application icon result: "hi" is not shown note: it all works if shell.open() is called before item.setOverlayText("hi")
resolved fixed
1797728
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TaskItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T14:53:46Z"
"2010-03-10T16:53:20Z"
305,704
Bug 305704 (Mac) FontDialog does not return color
null
resolved fixed
14d8180
["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/FontDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T14:40:35Z"
"2010-03-12T16:06:40Z"
304,093
Bug 304093 Mac/Carbon DnD: DragSourceListener.dragSetData fired when File drag started.
Build Identifier: SWT v3635 This is a performance problem in DragSource class in SWT Carbon only. The problem is SWT Carbon fires DragSourceListener.dragSetData when drag started, as a result, the application code starts to create DnD files when drag started. If the file is big, this causes DnD performanuce issue. According to the Eclipse CVS history, Rev1.29, 1.30 change for DragSource.java caused this issue. Reproducible: Always
resolved fixed
eba5e32
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/DragSource.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-15T14:13:35Z"
"2010-02-26T21:33:20Z"
305,553
Bug 305553 Left border of CTabFolder tab is off by one
null
resolved fixed
51c8499
["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/CTabFolderRenderer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-11T21:08:15Z"
"2010-03-11T17:53:20Z"
305,444
Bug 305444 View name in tabs truncated in RTL mode
I20100307-2000 Start Eclipse with the -dir rtl argument and a clean workbench Notice the intro part shows truncation of the tab. Go to the workbench, maximize the package explorer, similar result.
resolved fixed
f5f393d
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-11T19:13:30Z"
"2010-03-11T01:13:20Z"
305,537
Bug 305537 CTabFolder Gradient background on unselected tabs draws incorrectly
Using the new CTabFolder API for setting a gradient on unselected tabs results in a box being drawn when the mouse exits a tab. The box is filled with a gradient that is not aligned with the gradient on the tab.
resolved fixed
cd2233a
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-11T16:56:37Z"
"2010-03-11T17:53:20Z"
305,536
Bug 305536 CTabFolder in single mode shows no text
With the new CTabFolder refactoring, the single mode no longer shows any text.
resolved fixed
4f82af2
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-11T16:51:34Z"
"2010-03-11T17:53:20Z"
305,070
Bug 305070 CCombo should not throw away event.doit of forwarded events
One example if this is: CCombo forwards key events from its drop down list to key listeners on the combo, but creates a new event object for this. If a listener sets event.doit on this new event object to false, CCombo should set event.doit to false on the original event too. I'll attach a snippet.
resolved fixed
9dd9bf7
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-08T22:55:12Z"
"2010-03-08T23:13:20Z"
302,972
Bug 302972 GIF with origin geometry wrongly render transparency on windows 7
Eclipse 3.5.1 Sorry if this is a dup, I didn't find anything similar. Some GIF images produce wrong transparency rendering on Windows 7. Apparently, the problematic images specify an "Origin geometry" to offset the real image contents from the top-left corner. For the affected images, ImageMagick::identify -verbose says something like the following: Geometry: 13x14+0+0 ... Page geometry: 16x16+0+2 Origin geometry: +0+2 For normal (working) images, the output is: Geometry: 16x16+0+0 ... Page geometry: 16x16+0+0 The images were created using GIMP. When used as icons in a label provider, the problematic images have their transparent pixels filled with another palette color. I will attach screenshots and example images.
resolved fixed
d9fe69e
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-05T21:06:11Z"
"2010-02-16T17:06:40Z"
303,487
Bug 303487 NPE in Program.getProgram(..)
Build Identifier: 3.6M5 I20100129-1300 I am getting errors in the error log from jface with the following stacktrace but I am not sure what exactly is causing it, i.e. what set of steps is required: null Error Mon Feb 22 14:37:37 GMT 2010 Problems occurred when invoking code from plug-in: "org.eclipse.jface". java.lang.NullPointerException at org.eclipse.swt.program.Program.getProgram(Program.java:150) at org.eclipse.swt.program.Program.findProgram(Program.java:76) at org.eclipse.ui.internal.registry.EditorRegistry.getSystemExternalEditorImageDescriptor(EditorRegistry.java:1249) at org.eclipse.ui.internal.registry.EditorRegistry.getImageDescriptor(EditorRegistry.java:1457) 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:181) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.computeDescriptor(JavaElementImageProvider.java:121) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getImageLabel(JavaElementImageProvider.java:96) at org.eclipse.jdt.internal.ui.viewsupport.JavaUILabelProvider.getImage(JavaUILabelProvider.java:144) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerLabelProvider.getImage(PackageExplorerLabelProvider.java:137) 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:931) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:102) 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:1011) at org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer.doUpdateItem(ProblemTreeViewer.java:73) at org.eclipse.jdt.internal.ui.viewsupport.ResourceToItemsMapper.updateItem(ResourceToItemsMapper.java:74) at org.eclipse.jdt.internal.ui.viewsupport.ResourceToItemsMapper.resourceChanged(ResourceToItemsMapper.java:63) at org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer.handleLabelProviderChanged(ProblemTreeViewer.java:200) at org.eclipse.jface.viewers.ContentViewer$1.labelProviderChanged(ContentViewer.java:97) at org.eclipse.jface.viewers.BaseLabelProvider$1.run(BaseLabelProvider.java:74) 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.BaseLabelProvider.fireLabelProviderChanged(BaseLabelProvider.java:72) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider$1.labelProviderChanged(DecoratingStyledCellLabelProvider.java:77) at org.eclipse.ui.internal.decorators.DecoratorManager$1.run(DecoratorManager.java:430) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.DecoratorManager.fireListener(DecoratorManager.java:428) at org.eclipse.ui.internal.decorators.DecorationScheduler$3.runInUIThread(DecorationScheduler.java:530) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3530) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3226) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) Reproducible: Always Steps to Reproduce: Not sure but happens a few times per session.
resolved fixed
a183c89
["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/cocoa/org/eclipse/swt/program/Program.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-05T20:32:16Z"
"2010-02-22T14:46:40Z"
304,606
Bug 304606 Table - EraseItem listener produces cheese when scrolling
To reproduce: 1. Launch attached snippet 2. Scroll horizontally to the right as much as possible 3. Scroll horizontally to the left (very slowly) The selected line has cheese coming in from the left (see screenshot). I observed this on Vista SP2, Eclipse Build Id I20100129-1300. What I found interesting is that this only happens when an SWT.EraseItem listener is attached to the table. However the listener itself does nothing (empty).
verified fixed
2596dc6
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-05T17:51:21Z"
"2010-03-03T23:46:40Z"
304,802
Bug 304802 Useless default size for Text on Cocoa
Build Identifier: M20090917-0800 Text.computeSize(SWT.DEFAULT, SWT.DEFAULT) doesn't return a reasonable value on Cocoa. On Windows and Linux I get a width of 64+ pixels. On Cocoa I get 4 pixels. I'm on a MacBook4,1 with Mac OS X 10.5.8. Same behavior with current 3.6 HEAD Reproducible: Always Steps to Reproduce: 1. run test case 2. text field is only a few pixels wide
resolved fixed
805981b
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Text.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-05T14:13:59Z"
"2010-03-05T11:53:20Z"
304,750
Bug 304750 IAE when setting menu on TaskItem with only a SWT.Cascade MenuItem
null
resolved fixed
2333840
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TaskBar.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-04T22:46:11Z"
"2010-03-04T22:00:00Z"
304,677
Bug 304677 Javadoc warnings in N201003032000
null
closed fixed
6694f7a
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/common/org/eclipse/swt/accessibility/ACC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-04T17:02:07Z"
"2010-03-04T13:40:00Z"
303,499
Bug 303499 Editors can't display EUDC mapped to single font
null
resolved fixed
70cd7ae
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-03-04T15:13:54Z"
"2010-02-22T14:46:40Z"
302,950
Bug 302950 CDDS_POSTPAINT event in org.eclipse.swt.widgets.Tree hangs Eclipse because of a loop inside.
Build Identifier: M20100120-0800 Test case is very specific. It's reproducible under next configuration: 1) WinXP 64, Windows Server 64. 2) eclipse.buildId=M20100120-0800 eclipse.commands=-os win32 -ws win32 -arch x86 3) dtp-1.7.2RC2-201001290500 4) emf-runtime-2.5.0 5) GEF-runtime-3.5.2RC1 6) wtp-sdk-M-3.1.2-20100128184250 7) xsd-runtime-2.5.0 Reproducible: Always Steps to Reproduce: 1. Run Eclipse with configuration described in details. 2. Extract attach archive and import 4 plug-ins from there to Eclipse workspace 3. Run new Eclipse configuration 4. Create web project and open jsp, html, xhtml page with "Visual Editor" ("Visual Editor" is editor from attached plug-ins. It's only initialize SWT Mozilla Browser with xulrunner specified in org.mozilla.xulrunner.win32.win32.x86) 5. Open properties view 6. Select any file file from Project Explorer but do not open it. 7. Select any property of this file in properties view 8. Set focus to source/visual part of opened editor P. S. See attached flash video for clarification.
resolved fixed
cdad4a6
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-25T14:09:46Z"
"2010-02-16T14:20:00Z"
301,911
Bug 301911 Quit from "Mac dock Icon" does not detect dirty and save workspace
Summary says it all: it is possible to exit Eclipse 3.6 M5 64 bit Cocoa from the dock by selecting "Quit" and thereby bypassing the normal checks on exit - the IDE is simply killed without checking for dirty files, or saving the workspace. Repeatable: always
resolved fixed
57996e9
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-24T13:00:35Z"
"2010-02-05T03:20:00Z"
300,995
Bug 300995 Cocoa: Leak messages while running the FileViewer example
Build: I20100126-0800 Running the SWT FileViewer example prints the following messages in the console. 2010-01-27 19:44:08.654 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x19bc70 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:14.262 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x14c0b0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:24.246 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x1a2f70 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:24.446 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x192ca0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07)
resolved fixed
4152cdd
["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/cocoa/org/eclipse/swt/program/Program.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-18T18:15:24Z"
"2010-01-27T13:46:40Z"
260,533
Bug 260533 [Contributions] menuAboutToShow is inadvertently(?) called when using a shortcut while a Browser has focus
null
resolved fixed
9e4aa4f
["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-18T14:59:54Z"
"2009-01-09T11:20:00Z"
285,223
Bug 285223 [Browser] authentication listener not called when navigating directly to site
null
resolved fixed
41bdae3
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-17T21:28:49Z"
"2009-07-30T18:53:20Z"
298,435
Bug 298435 Problem with Fullscreen in SWT.
On MacOS the fullscreen mode (shell.setFullScreen(true)) only works on the primary monitor, on all the other monitors the window doesn't go fullscreen. I tested this on Windows XP too but there it didn't go fullscreen on any monitor.
resolved fixed
1d43a2b
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-17T11:13:36Z"
"2009-12-22T19:26:40Z"
302,861
Bug 302861 [Program] JVM crash in gio_getPrograms()
Hi, I think since Helios M5 (I20100129-1300) I have the problem that (too) often my eclipse instance crashes. The error is always the same which you can find in the attached dump. bye Mich;
closed fixed
953ca18
["bundles/org.eclipse.swt/Eclipse", "SWT", "Program/gtk/org/eclipse/swt/program/Program.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-16T18:37:50Z"
"2010-02-15T13:20:00Z"
225,401
Bug 225401 [SWT_AWT] Removing the AWT Canvas generates a Gtk-CRITICAL message
null
resolved fixed
5229bea
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-16T15:54:27Z"
"2008-04-02T18:13:20Z"
271,298
Bug 271298 [64] Label.setBackground(..) & Label.setForeground(..) doesn't work if parent is Splashscreen on Windows XP 64bit ( win32.win32.x86_64 )
It seems that the Label.setBackground(..) & Label.setForeground(..) doesn't work if parent is a Splashscreen on a Windows XP 64bit ( win32.win32.x86_64 ) Assuming we have following small SplashHandler with two Labels: ------------- public class SpashHandler extends AbstractSplashHandler { @Override public void init(Shell splash) { Display display = splash.getDisplay(); Label testBackgroundLabel = new Label(splash, SWT.NONE); testBackgroundLabel.setBackground(display.getSystemColor(SWT.COLOR_RED)); testBackgroundLabel.setText("Background color shall be RED"); testBackgroundLabel.setLocation(0, 0); testBackgroundLabel.pack(); Label testForegroundLabel = new Label(splash, SWT.NONE); testForegroundLabel.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); testForegroundLabel.setText("Foreground color shall be BLUE"); testForegroundLabel.setLocation(0, 20); testForegroundLabel.pack(); } } --------------- registered by: -------------- <extension point="org.eclipse.ui.splashHandlers"> <splashHandler class="com.versant.tools.rcp.handlers.SpashHandler" id="com.versant.tools.rcp.handlers.splashHandler"> </splashHandler> <splashHandlerProductBinding productId="com.versant.tools.rcp.product" splashId="com.versant.tools.rcp.handlers.splashHandler"> </splashHandlerProductBinding> </extension> ----------------- than both Label's are always painted in the default Colors like black on grey. This works fine with Windows 32bit (win32.win32.x86), Linux 32bit (linux.gtk.x86) and Linux 64bit ( linux.gtk.x86_64 ) only on a Windows 64bit like Windows XP 64 ( win32.win32.x86_64 ) it seems to be broken. ( Other platforms we haven't tested )
resolved fixed
810eb25
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-12T14:59:10Z"
"2009-04-06T12:13:20Z"
301,212
Bug 301212 on Mac OS only: RTFTransfer does not support german umlaut
German umlauts () are not properly encoded when copied to the clipboard as RTF-text (from StyledText): Clipboard rtf: {\rtf1\ansi\uc1\deff0{\fonttbl{\f0\fnil Lucida Grande;}} {\colortbl\red0\green0\blue0;\red255\green255\blue255;} {\f0\fs26 \fi3\ql }}
resolved fixed
ffcfa7d
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-10T15:40:52Z"
"2010-01-29T07:26:40Z"
69,814
Bug 69814 [StyledText] Surrogate -- cannot delete a complete surrogate character in java editor using backspace
Reporter: Huang Xing Jiang Language: Simplfied Chinese Build driver: eclipse-sourceBuild-srcIncluded-3.0M9 JDK Version: IBM JDK 1.41 Steps to recreate problem: 1. Open a text file in the text editor 2. Input a surrogate character \ud840\udc00 in the text file 2.Try to delete character \ud840\udc00 using backspace <<Error>> Only half of the character was deleted. Another half appears as blank in the text editor, you can select the character using keyboard or mouse, but cannot see it <<Expected Result>> The whole surrogate character \ud840\udc00 should be deleted <<Cause>> The text editor supposes that "Backspace" action will only delete "char" (16bit) in the editor, while surrogate character uses "two chars" (32 bit). <<Solution>> Modify "plugins\org.eclipse.swt\Eclipse SWT Custom Widgets\common\org\eclipse\swt\custom\StyledText.java" to take Backspace as a string cluster delete action
resolved fixed
ef60ea2
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-09T20:37:52Z"
"2004-07-12T08:13:20Z"
302,053
Bug 302053 CLabel onDispose not called
Build Identifier: M20090917-0800 It appears from the source code that in CLabel, onDispose() is never called. It appears that the intention is to do so during the disposal of the control, because disposeListener is initialized to do so, but it does not seem that the listener is actually used. Reproducible: Always Steps to Reproduce: 1. Examine source code for CLabel 2. note that disposeListener is initialized, but not used 3.
resolved fixed
ba7db5f
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-09T20:31:55Z"
"2010-02-07T05:20:00Z"
301,684
Bug 301684 Fatal crash when creating Cursor
null
resolved fixed
e4cdd0c
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-04T19:57:27Z"
"2010-02-03T12:26:40Z"
301,863
Bug 301863 NPE in PrintDialog
Windows has code in setPrinterData to ensure that the printerData instanceVariable is never null. This code is missing on every other platform. missing line is in setPrinterData -> if (data == null) data = new PrinterData(); example of NPE from trying to print on Cocoa. java.lang.NullPointerException at org.eclipse.swt.printing.PrintDialog.open(PrintDialog.java:157) at org.eclipse.jface.text.TextViewer.print(TextViewer.java:4516) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor$11.run(AbstractDecoratedTextEditor.java:1334) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:185) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.execute(LegacyHandlerWrapper.java:109) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:470) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:824) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:510) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:125) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1026) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3705) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1314) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1337) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1322) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1351) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1347) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:440) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:914) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4929) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSResponder.interpretKeyEvents(NSResponder.java:56) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:515) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4839) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:209) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1890) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:1983) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4901) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4467) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4544) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:105) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3221) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363)
resolved fixed
be703a4
["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/carbon/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/emulated/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/gtk/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/motif/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/photon/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/wpf/org/eclipse/swt/printing/PrintDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-04T17:28:56Z"
"2010-02-04T16:13:20Z"
294,986
Bug 294986 [Image Loading] What about wrong colours while saving IMAGE_BMP images via ImageLoader?
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 Build Identifier: There are some really old bug reports according the ImageLoader for different platforms (Linux/GTK, OS X) - and their status is still NEW: <a name="b6172" href="show_bug.cgi?id=6172">6172</a> <a name="b37494" href="show_bug.cgi?id=37494">37494</a> <a name="b228831" href="show_bug.cgi?id=228831">228831</a> BTW: this one is also still open for Win2K: <a name="b134663" href="show_bug.cgi?id=134663">134663</a> Reproducible: Always Steps to Reproduce: Display display = Display.getDefault(); GC gc = new GC(display); Image snapshot = new Image(display, display.getBounds()); gc.copyArea(snapshot, 0, 0); ImageLoader loader = new ImageLoader(); loader.data = new ImageData[]{snapshot.getImageData()}; loader.save("snapshot.bmp", SWT.IMAGE_BMP); gc.dispose(); image.dispose(); //display.dispose();
resolved fixed
cfa228c
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/WinBMPFileFormat.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-03T10:41:51Z"
"2009-11-12T15:33:20Z"
185,934
Bug 185934 TRAVERSAL-Events not delivered to InteractiveSplashHandler
i have extended the extensionpoint org.eclipse.ui.splashHandlers to provide a custom splashscreen for my rcp application. it works right now on mac os x, but when i start it on a linux machine it seems that no one of the traversal-events, e.g. SWT.TRAVERSAL_TAB_NEXT and SWT.TRAVERSAL_TAB_PREVIOUS are delivered. to reproduce you can simply try the 'simulated login session', the TAB-key is not working to change the focus to the password-field. i have tried to add an TraverseListener and it was never triggered. -Eclipse 3.3M7 -Linux Ubuntu Feisty Fawn (latest Release) -Java 1.5 (Sun JDK) this bug seems linux/gtk specific because it works without problems on mac os x using eclipse 3.3M7 too.
resolved fixed
4a237f8
["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/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-02T10:56:40Z"
"2007-05-08T10:26:40Z"
279,454
Bug 279454 Javadoc of CTabItem#setToolTipText(String) should tell that & is stripped
I20090605-1444 Javadoc of CTabItem#setToolTipText(String) should tell that the mnemonic indicator (&) is not rendered. Cf. blurb in Control#setToolTipText(..) and TabItem#setToolTipText(..): * <p> * The mnemonic indicator (character '&amp;') is not displayed in a tool tip. * To display a single '&amp;' in the tool tip, the character '&amp;' can be * escaped by doubling it in the string. * </p>
resolved fixed
5ada77d
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-02-01T16:23:43Z"
"2009-06-08T11:20:00Z"
298,942
Bug 298942 XPCOM error after refreshing Browser widget
Build Identifier: 20090920-1017 My mozilla version: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.6) Gecko/20091216 Fedora/3.5.6-1.fc12 Firefox/3.5.6 Reproducible: Always Steps to Reproduce: 1. Open some URI, which contains web form 2. Fill and submit the form with some values, to get errors by web page 3. Click refresh 4. Browser should ask you 'To display this page, application must send information that will repeat any action (such as a search or order information) that was performed earlier' 5. Select 'Cancel'
resolved fixed
448b24b
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-29T16:42:58Z"
"2010-01-06T12:13:20Z"
301,018
Bug 301018 [browser] Mozilla browser instances held in memory forever due to dispose listener on display
Build Identifier: M20090917-0800 After you create an org.eclipse.swt.browser.Mozilla it will never be garbage collected since it adds a dispose listener to the Display and never removes it. The listener is added as shown below... 1186: display.addListener (SWT.Dispose, new Listener () { ...etc This seems like an obvious memory leak and caused me some confusion whilst debugging. AFAICT the org.eclipse.swt.browser.IE browser doesn't hang around like this. Reproducible: Always
resolved fixed
a7e4b97
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-29T16:41:03Z"
"2010-01-27T16:33:20Z"
301,091
Bug 301091 Compile warnings in official build I20100127-1800
I20100127-1800. 1. WARNING in _64/temp.folder/@dot.src/org/eclipse/swt/accessibility/Accessible.java (at line 2685) Object [] siblings = event.children; The local variable siblings is never read Note that you can set the project specific settings for the SWT projects so that those things are flagged in the developer workspace. Maybe they are already set to 'Warning' but the developers tend to ignore them? If so, you can boost the severity to 'Error' so that those things get noticed easily in the workspace.
resolved fixed
2394d38
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-28T14:25:53Z"
"2010-01-28T06:26:40Z"
300,641
Bug 300641 Compile warnings in official build I20100124-0800
I20100124-0800. 1. WARNING in /temp.folder/@dot.src/org/eclipse/swt/accessibility/Accessible.java (at line 14) import org.eclipse.swt.SWT; The import org.eclipse.swt.SWT is never used
verified fixed
ed928c7
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/emulated/org/eclipse/swt/accessibility/Accessible.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-26T22:58:28Z"
"2010-01-25T09:00:00Z"
252,390
Bug 252390 Check boxes are movable when Tree/Table has movable columns
Create a Tree or Table with check boxes and movable columns. Move one of the columns to the far left. The check boxes move right.
resolved fixed
76da615
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotificationCenter.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-21T11:07:27Z"
"2008-10-28T16:06:40Z"
293,931
Bug 293931 Javadoc of PrinterData.startPage/endPage is wrong
3.6 M3. The Javadoc for PrinterData.startPage says: * the start page of a page range, used when scope is PAGE_RANGE. * This value can be from 1 to the maximum number of pages for the platform. However, the default value is '0'. Either the default needs to be changed to '1' or the Javadoc has to mention '0'. Same applies to endPage.
verified fixed
7c0b266
["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/common/org/eclipse/swt/printing/PrinterData.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-20T13:43:49Z"
"2009-11-02T16:40:00Z"
295,483
Bug 295483 3.5.x regression: UI randomly freezes
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Build Identifier: 3555 Creating an ApplicationWindow which is updated by many threads can cause a stall within the display main loop. All UI events will freeze until a Windows event occurs (keyboard/mouse/window activity). The test code (see below) works fine on 3.4.x but not on 3.5.x. Using a modified version of 3.5.x with the Display.foregroundIdleProc method from 3.4.x works. This appears to be an SWT problem - my test case uses a JFace ApplicationWindow as I couldn't get a vanilla Shell to fail in a simple test. Reproducible: Always Steps to Reproduce: Run the code below against 3.5.x SWT/JFace Leave the keyboard and mouse alone, and the application will (usually v. quickly) freeze. Moving the mouse over the window brings the application back to life. Test Code: import org.eclipse.jface.window.ApplicationWindow; import org.eclipse.swt.SWT; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; /** * @author jchown */ public class TestUIThread { private static final int NUM_THREADS = 4; public static void main(String[] args) { final Display display = new Display(); final Label[] labels = new Label[NUM_THREADS]; ApplicationWindow window = new ApplicationWindow(null) { @Override public Control createContents(Composite parent) { Shell shell = getShell(); shell.setText("UI Thread Test"); Composite contents = new Composite(parent, SWT.NONE); contents.setLayout(new GridLayout(1, false)); contents.setLayoutData(new GridData(GridData.FILL_VERTICAL | GridData.GRAB_VERTICAL)); for (int i = 0; i < labels.length; i++) { labels[i] = new Label(contents, 0); labels[i].setText("-----------------------------"); labels[i].setLayoutData(new GridData(GridData.FILL_VERTICAL | GridData.GRAB_VERTICAL)); } shell.addDisposeListener(new DisposeListener() { @Override public void widgetDisposed(DisposeEvent arg0) { display.dispose(); } }); return contents; } }; window.open(); for (int i = 0; i < labels.length; i++) { final Label label = labels[i]; final String id = "Thread " + (i + 1); Thread thread = new Thread() { int tick = 0; @Override public void run() { while (!label.isDisposed()) { try { sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } display.syncExec(new Runnable() { @Override public void run() { if (!label.isDisposed()) label.setText(id + ":" + tick); } }); tick++; } } }; thread.setDaemon(true); thread.setPriority(Thread.MIN_PRIORITY); thread.start(); } while (!display.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } }
resolved fixed
8a5371c
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-19T18:59:45Z"
"2009-11-18T16:00:00Z"
300,070
Bug 300070 Compiler warning in I20100119-0800
1. WARNING in _64/temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read 1. WARNING in /temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read 1. WARNING in _ppc.arm/temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read
resolved fixed
fc99761
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-19T17:04:48Z"
"2010-01-19T16:53:20Z"
299,241
Bug 299241 [OLE] Menus dissapear when opening/closing a RAC view with embedded MS Word 2007 (using OleControlSite)
Build Identifier: I20090611-1540 (Version: 3.5.0) Try creating a new RAC View with embedded MS Word 2007. Using the OleControlSite object in order to do that. In the application, when opening this view, the application menus dissapear. If trying to set the application menus on the OleFrame object, then when opening the view the menus are there. But when closing the view, the menus in the application dissapear as well. Problem: opening and closing the view, shouldn't dispose of the whole application menus. (example code in the attachments) Reproducible: Always Steps to Reproduce: 1. Create new View extending ViewPart 2. In createPartControl method, create the OleFrame object and the OleControlSite object with embedded word document. 3. Run the RAC application, open this view -> notice that the application menus have dissapeared. 4. Instead of step 3. -> set the application menus from the workbench on the OleFrame object. 5. Run the RAC application, open this view -> notice that the application menus are there and working. 6. Close the view -> notice that the application menus have dissapeared.
resolved fixed
5401cd6
["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-19T16:30:56Z"
"2010-01-11T08:53:20Z"
300,056
Bug 300056 N20100117-2000 and up has screwed up layouts
null
resolved fixed
ea1d575
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StackLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-19T16:29:10Z"
"2010-01-19T14:06:40Z"
299,094
Bug 299094 [Program] org.eclipse.swt.program.Program.launch() will add prefix "file://" before fileName
null
resolved fixed
c75fa2a
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/carbon/org/eclipse/swt/program/Program.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/cocoa/org/eclipse/swt/program/Program.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-18T20:56:13Z"
"2010-01-08T05:53:20Z"
298,612
Bug 298612 'gio_getMimeInfo' seems to leak a file descriptor to "/usr/share/mime/globs" on every call
When running under CDT, I can use eclipse for a while. Eventually, (within 12-14 hours), I can no longer save modified files. I also cannot save the workspace state upon exiting. When looking at the "Details" area of the error box, the system complains that too many files are open. Indeed, when I do an 'ls -al' of /proc/<PID>/fd (where PID is the process ID associated with java/Eclipse), the system reports '/usr/share/mime/globs' is opened 878 times. I am running Fedora 11 on x86_64 and Sun's jre 1.6.0_16. I was able to reproduce this with a few different projects. -- Configuration Details -- Product: Eclipse 1.3.0.20091112-2040 (org.eclipse.epp.package.cpp.product) Installed Features: org.eclipse.platform 3.6.0.v20091109-9gF72GDmFufcs2XNpLRoGQ7j_VEb2CRgdc
resolved fixed
b6666a5
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/gtk/org/eclipse/swt/program/Program.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-18T17:35:42Z"
"2009-12-29T15:20:00Z"
299,686
Bug 299686 Control.print results in "unlockFocus called too many time"
Hi, I'm not sure whether this is an SWT bug, or a Coca problem, or simply a bug in my code. I've attached a simple test case that should hopefully enable you to reproduce the problem. I'm writing a visual designer that renders a series of widgets onto a Canvas. Some widgets are fully owner-drawn, while others should reflect native controls (buttons, check boxes, etc). For these "native-control-look-alike" widgets, my approach is to dynamically create SWT controls on demand, capture them into an SWT image by means of the Control.print() API, and use the captured image for rendering the widget's visual representation onto a canvas. Now, as soon as a widget uses the Control.print() approach, I start getting "unlockFocus called too many time" errors on Eclipse's console, and the images fail to render. The attached test case exhibits the same behavior. OS: MacOS 10.6.2 Eclipse version: eclipse-rcp-galileo-SR1-macosx-cocoa-x86_64, Build id: 20090920-1017 Java: java version "1.6.0_17" Java(TM) SE Runtime Environment (build 1.6.0_17-b04-248-10M3025) Java HotSpot(TM) 64-Bit Server VM (build 14.3-b01-101, mixed mode) thanks for your time, Karl
resolved fixed
16bac3e
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-18T15:50:51Z"
"2010-01-14T20:13:20Z"
298,473
Bug 298473 Safari and WebKit should navigate to about:blank in setText()
I think the current implementation of setText() results in the current page being overwritten, so it doesn't get an entry in the history.
resolved fixed
9837bb6
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/cocoa/org/eclipse/swt/browser/Safari.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-15T17:54:25Z"
"2009-12-23T14:53:20Z"
298,805
Bug 298805 [widgets] gtk2.18 - Blank pages in the install wizard
Using I20091230-0802 (the latest build from the API branch), there are pages missing from the Install Wizard. In particular, after I select something to install, hit next, the - Install Details - Review Licenses are blank. (Note: Finish is not enabled either because I cannot accept the license).
resolved fixed
a3eda06
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-15T17:27:36Z"
"2010-01-05T00:06:40Z"
295,959
Bug 295959 [Widgets] Embedded native view can not receive Enter key event on Mac.
null
resolved fixed
b6a9973
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-15T15:27:58Z"
"2009-11-24T05:20:00Z"
119,192
Bug 119192 [CCombo] CCombo Mouse problem (listeners not fired)
The CCombo does not responde to MouseMove or MouseTrack listener. Also, does not respond as Control throught Display (Gets Text and Button).
resolved fixed
49d8ee9
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-15T06:28:43Z"
"2005-12-04T18:13:20Z"
280,005
Bug 280005 Crash due to call in SWT code for RHEL 4
Build ID: Eclipse 3.4.2 Steps To Reproduce: Our product, based on Eclipse 342 is crashing on RHEL 4 only for a particular scenario. The core dump below indicates the crash point is in the SWT code. 1XHEXCPMODULE Module: /usr/lib/libgtk-x11-2.0.so.0 1XHEXCPMODULE Module_base_address: 021C7000 The crash point is in swt code: 3XMTHREADINFO "main" TID:0x0983A000, j9thread_t:0x0981F464, state:R, prio=6 3XMTHREADINFO1 (native thread ID:0x4956, native priority:0x6, native policy:UNKNOWN) 4XESTACKTRACE at org/eclipse/swt/internal/gtk/OS._g_main_context_iteration(Native Method) 4XESTACKTRACE at org/eclipse/swt/internal/gtk/OS.g_main_context_iteration(Bytecode PC:9(Compiled Code)) 4XESTACKTRACE at org/eclipse/swt/widgets/Display.readAndDispatch(Bytecode PC:23(Compiled Code)) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.runEventLoop(Bytecode PC:9) More information: Contact me if you require more information.
resolved fixed
1ad1350
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "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/gtk/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-14T23:37:26Z"
"2009-06-11T19:53:20Z"
299,302
Bug 299302 Cannot Uppercase text CCombo in VerifyListener
Build Identifier: 20090920-1017 When a user types characters in a CCombo, I would like those characters to be forced into upper case. In a Text field this is accomplished by adding a VerifyListener. The event handling code for CCombo does not allow the listener to override the text in the verify event. This is a simple fix, the method "CCombo.textEvents()" needed to be modified for the VerifiedEvent to add "event.text = e.text" after the listeners have been notified as follows: case SWT.Verify: { Event e = new Event (); e.text = event.text; e.start = event.start; e.end = event.end; e.character = event.character; e.keyCode = event.keyCode; e.stateMask = event.stateMask; notifyListeners (SWT.Verify, e); event.doit = e.doit; event.text = e.text; break; } Reproducible: Always Steps to Reproduce: 1. Add a VerifyListener to a CCombo that is editable. 2. Uppercase the event text in the verify Listener. 3. Text in the Combo box is not uppercased.
resolved fixed
c90d774
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-14T19:45:39Z"
"2010-01-11T17:13:20Z"
299,436
Bug 299436 org.eclipse.swt.dnd.DragSourceListener javadoc references bogus "operation" field
null
resolved fixed
fc04bd7
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/common/org/eclipse/swt/dnd/DropTargetListener.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-14T19:11:36Z"
"2010-01-12T21:00:00Z"
294,542
Bug 294542 Wrapping issue when looking at the search history
null
resolved fixed
b44b23b
["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/MenuItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-14T16:30:04Z"
"2009-11-08T03:13:20Z"
246,505
Bug 246505 If install key listener to CCombo, it can not traverse out using combo.traverse(SWT.TRAVERSE_TAB_NEXT).
Build ID: I20080617-2000 Steps To Reproduce: Try the sample code below, it will reproduce this problem, combo can not traverse out when key event happened.But this code works on org.eclipse.swt.Combo. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.events.KeyAdapter; import org.eclipse.swt.events.KeyEvent; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class Main { public static void main(String[] args) throws Exception { Display display = Display.getDefault(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(new Point(800, 500)); Composite composite = new Composite(shell, SWT.NONE); final CCombo combo = new CCombo(composite, SWT.BORDER); combo.setBounds(30, 60, 100, 20); combo.addKeyListener(new KeyAdapter(){ @Override public void keyPressed(KeyEvent e) { combo.traverse(SWT.TRAVERSE_TAB_NEXT); } @Override public void keyReleased(KeyEvent e) { } }); Button btn = new Button(composite, SWT.NONE); btn.setBounds(30, 150, 80, 40); btn.setText("abc"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } More information:
resolved fixed
459c1af
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-14T16:03:05Z"
"2008-09-08T02:13:20Z"
296,284
Bug 296284 [browser] xulrunner 1.9.2 changes
Using the beta 4 xulrunner release: ---------------- Mozilla.execute(): scriptGlobalObjectNSID = new nsID ("6afecd40-0b9a-4cfd-8c42-0f645cd91829"); has become... scriptGlobalObjectNSID = new nsID ("e9f3f2c1-2d94-4722-bbd4-2bf6fdf42f48"); scriptContextNSID = new nsID ("e7b9871d-3adc-4bf7-850d-7fb9554886bf"); has become... scriptContextNSID = new nsID ("87482b5e-e019-4df5-9bc2-b2a51b1f2d28"); ---------------- PromptService2.alert(): add: "sec_error_ca_cert_invalid" ---------------- Snippet327 is now failing ---------------- possibly more to come...
resolved fixed
5b5b768
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-12T21:19:18Z"
"2009-11-26T18:26:40Z"
297,477
Bug 297477 Shell#setDefaultButton() does not save the default button under certain circumstances
When a button is focused, it is set to the default button temporarily (at least in Windows, Decorations#setDefaultButton( Button, boolean ) is called from Button#WM_SETFOCUS with the second parameter set to false). When this very same button is then set as the default button, this new default button is not saved. As an effect, the previous default button is reinstalled when the focus changes. The reason for this is that the statement "saveDefault = defaultButton" is never reached if "button == defaultButton" is true in Decorations#setDefaultButton( Button, boolean ).
resolved fixed
a7cb766
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-04T20:13:10Z"
"2009-12-10T13:00:00Z"
297,605
Bug 297605 [Browser] No Invalid Certificate dialog prompt when sec_error_ca_cert_invalid
null
resolved fixed
20e0dff
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptService2.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-04T19:28:33Z"
"2009-12-11T16:46:40Z"
298,424
Bug 298424 Shell.computeTrim() returns a wrong result.
During the developement of e4 workbench designer in Mac Cocoa, I have noticed a bug of this method. 1. Create a Shell with Trim 2. Call Shell.computeTrim(0, 0, 0, 0) You will get a Rectangle (0, 0, 0, 22). The expected result is Rectangle (0, -22, 0, 22)
resolved fixed
dbe4ba2
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2010-01-04T17:20:43Z"
"2009-12-22T16:40:00Z"
297,911
Bug 297911 [Browser] String "View Certificate" ha not been externalized
Build Identifier: Eclipse 3.5.1 The string "View Certificate" in invalidCert() of promptdialog.java is not externalized. Reproducible: Always Steps to Reproduce: Can't find "View Certificate" from SWT properties file. viewCertButton.setText(Compatibility.getMessage("View Certificate")); //$NON-NLS-1$
resolved fixed
9aaaad1
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/PromptDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-16T18:37:48Z"
"2009-12-15T23:33:20Z"
297,823
Bug 297823 TextTransfer should specify more clearly that it does not translate \n into platform line delimiter
3.6 M4. In Java strings '\n' normally means to introduce a line break. This is what happens with most SWT APIs, e.g. Text.setText(...) or StyledText.setText(...) where a line break appears in the UI. However, when using TextTransfer and pasting outside Eclipse, a line break is not happening because '\n' is not translated to "\r\n" on Windows. I suspect this is intentional and specified by saying "converting plain text represented as a java <code>String</code>" but it would help to clarify this even more.
verified fixed
875a6af
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TextTransfer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-15T21:13:47Z"
"2009-12-15T12:26:40Z"
297,507
Bug 297507 Table/Tree should show vertical grid lines when showing setLinesVisible(true)
null
resolved fixed
c31e128
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-15T17:35:40Z"
"2009-12-10T15:46:40Z"
295,185
Bug 295185 [Browser] Refresh of PDF in SWT browser leads to jvm crash
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.32 Safari/532.0 Build Identifier: I20080207-1530 Its a customer defect raised on lotus Expeditor 6.2 which would be IES 3.4 . Steps to recreation is repeated refresh/loading of a pdf in SWT browser. Epeditor JVM crashes after the refresh/reload hit exceed 40 with a java dump as following: (native thread ID:0x220C, native priority:0x6, native policy:UNKNOWN) 4XESTACKTRACE at org/eclipse/swt/internal/win32/OS.DestroyWindow(Native Method) 4XESTACKTRACE at org/eclipse/swt/widgets/Control.destroyWidget(Control.java:663) 4XESTACKTRACE at org/eclipse/swt/widgets/Shell.destroyWidget(Shell.java:657) 4XESTACKTRACE at org/eclipse/swt/widgets/Widget.release(Widget.java:814) 4XESTACKTRACE at org/eclipse/swt/widgets/Widget.dispose(Widget.java:441) 4XESTACKTRACE at org/eclipse/swt/widgets/Decorations.dispose(Decorations.java:446) 4XESTACKTRACE at org/eclipse/swt/widgets/Shell.dispose(Shell.java:674) 4XESTACKTRACE at org/eclipse/jface/window/Window.close(Window.java:335) 4XESTACKTRACE at org/eclipse/jface/window/ApplicationWindow.close(ApplicationWindow.java:306) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.hardClose(WorkbenchWindow.java:1665) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.busyClose(WorkbenchWindow.java:725) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.access$1(WorkbenchWindow.java:701) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow$3.run(WorkbenchWindow.java:817) 4XESTACKTRACE at org/eclipse/swt/custom/BusyIndicator.showWhile(BusyIndicator.java:70) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.close(WorkbenchWindow.java:815) 4XESTACKTRACE at org/eclipse/jface/window/WindowManager.close(WindowManager.java:109) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench$16.run(Workbench.java:912) 4XESTACKTRACE at org/eclipse/core/runtime/SafeRunner.run(SafeRunner.java:37) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.busyClose(Workbench.java:909) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.access$15(Workbench.java:838) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench$23.run(Workbench.java:1082) 4XESTACKTRACE at org/eclipse/swt/custom/BusyIndicator.showWhile(BusyIndicator.java:70) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.close(Workbench.java:1080) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.close(Workbench.java:1052) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.busyClose(WorkbenchWindow.java:722) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.access$1(WorkbenchWindow.java:701) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow$3.run(WorkbenchWindow.java:817) 4XESTACKTRACE at org/eclipse/swt/custom/BusyIndicator.showWhile(BusyIndicator.java:70) 4XESTACKTRACE at org/eclipse/ui/internal/WorkbenchWindow.close(WorkbenchWindow.java:815) 4XESTACKTRACE at org/eclipse/jface/window/Window.handleShellCloseEvent(Window.java:741) 4XESTACKTRACE at org/eclipse/jface/window/Window$3.shellClosed(Window.java:687) 4XESTACKTRACE at org/eclipse/swt/widgets/TypedListener.handleEvent(TypedListener.java:92) 4XESTACKTRACE at org/eclipse/swt/widgets/EventTable.sendEvent(EventTable.java:84(Compiled Code)) 4XESTACKTRACE at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1003) 4XESTACKTRACE at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1027) 4XESTACKTRACE at org/eclipse/swt/widgets/Widget.sendEvent(Widget.java:1012) 4XESTACKTRACE at org/eclipse/swt/widgets/Decorations.closeWidget(Decorations.java:307 Reproducible: Always Steps to Reproduce: Steps to recreate is as following : 1. Create a RCP application with a view inside with one button and a SWT BRowser. 2. ON button double mouse click,call browser.setURL() where URL point to a PDF doc. 3. 40-60 refresh/reload in browser leads to crash in Eclipse when eclipse is closed.
resolved fixed
89e14c9
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/Clipboard.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/OleEnumFORMATETC.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/ole/win32/COM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/ole/win32/IOleObject.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-15T17:32:25Z"
"2009-11-15T15:46:40Z"
188,372
Bug 188372 Table/Tree background image doesn't work
The background image is not shown on Tables and Trees (unless custom draw is on)
resolved fixed
26f6b2a
["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
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-03T18:35:21Z"
"2007-05-22T16:06:40Z"
291,128
Bug 291128 [Widgets] eclipse >= 3.5 crash when closing a first level modal window (Install, Run Configurations)
null
resolved fixed
43247e6
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-02T23:45:25Z"
"2009-10-01T23:33:20Z"
290,395
Bug 290395 [Widgets] [GTK2.18] Update problem in the Eclipse's "Install new software" dialog.
null
resolved fixed
c3df8a4
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-01T22:24:42Z"
"2009-09-24T11:00:00Z"
188,440
Bug 188440 unsetting background image inheritance does not update
3.3RC1 - run the ControlExample, stay on the Button tab - check the Background Image checkbox - use the combo above this checkbox to change the Background Mode on Parent to SWT.INHERIT_FORCE -> the buttons and their parent composite now inheirit the parent's background image - change the combo back to its original SWT.INHERIT_NONE value -> the buttons and their parent composite still appear to show the parent's background image - uncheck the Background Image checkbox -> the background image disappears from the top-level composite, but still appears on the buttons and their parent - damage and re-expose the area with the example buttons -> now the background image goes away from the damaged region
resolved fixed
148b84f
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-01T19:01:46Z"
"2007-05-22T18:53:20Z"
185,202
Bug 185202 [CTabFolder] antialias should preserve colors
CTabFolder.antialias allocs colors which it then disposes. org.eclipse.swt.custom.CTabFolder.antialias(CTabFolder.java:505) org.eclipse.swt.custom.CTabFolder.drawTabArea(CTabFolder.java:1130) org.eclipse.swt.custom.CTabFolder.onPaint(CTabFolder.java:2257) It would be a better design to preserve (cache) them.
resolved fixed
9277d8d
["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
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-12-01T15:58:15Z"
"2007-05-02T18:20:00Z"
295,774
Bug 295774 Control-P crashes Eclipse if Print Spooler not running
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Build Identifier: M20090917-0800 If the Windows Print Spooler service is not running and the user invokes the Print command the Eclipse executable will shut down suddenly and instantly without offering to save any unsaved work. This crash can be triggered either by choosing Print from the File menu or just by accidentally pressing Control-P. Reproducible: Always Steps to Reproduce: 1. Stop the Print Spooler service 2. In Eclipse, press Control-P
resolved fixed
9e2e284
["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/win32/org/eclipse/swt/printing/PrintDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-23T21:54:12Z"
"2009-11-21T02:20:00Z"
295,856
Bug 295856 ProgressBar selection and state are not shown correctly
User-Agent: Opera/9.80 (Windows NT 6.1; U; de) Presto/2.2.15 Version/10.01 Build Identifier: I20090611-1540 The update of the ProgressBar (including state and selection) is not working properly. If you set the state of the ProgressBar to SWT.ERROR, the selection is not displayed correctly. If the state is SWT.NORMAL, everthing seems to work fine. Reproducible: Always Steps to Reproduce: 1. Run the attached snippet, everthing should work fine 2. Replace the initial state SWT.NORMAL by SWT.ERROR and run the snippet again => The error state is sometimes not displayed immediately and finally the selection is not shown corretly, the last segment is still not shown as selected. public class TestClass { public static void main(String[] args) throws Exception { final int MAX = 10; final Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10, 10, 500, 200); shell.setLayout(new GridLayout()); final ProgressBar bar = new ProgressBar(shell, SWT.NONE); bar.setMaximum(MAX); bar.setState(SWT.NORMAL); shell.open(); for (int i=1; i<=MAX; i++) { bar.setSelection(i); Thread.sleep(500); } while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
resolved fixed
78c5915
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ProgressBar.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-23T20:27:05Z"
"2009-11-23T12:40:00Z"
274,963
Bug 274963 Can't restore column widths
Build id: I20090430-2300 There is a problem with resizing columns, consider the steps: 1. Select a shared file 2. Team > History Show 3. Going from "Revision" to "Author" set widths to be zero Result: 4. The only column visible is "Comment" 5. You can show the "Revision" column by grabbing the border 5. There is no way to show columns between "Revision" and "Comment"
verified fixed
d5f017a
["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/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-20T22:23:58Z"
"2009-05-05T10:40:00Z"
295,681
Bug 295681 Spinner widget can't enter the number from IME of the japanese-language input setting.
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729) Build Identifier: I20091030-1201 The Spinner widget can't enter the number from IME of the japanese-language input setting. Spinner widget refuses the normal-width figure input from IME. Reproducible: Always Steps to Reproduce: 1.Open the preferences. 2.It selects [General] > [Startup and Shutdown] > [Workspaces] from a left menu. 3.[Number of recent workspaces to remember] is selected, IME is started, and the normal-width figure is input.
resolved fixed
12bc1b0
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Spinner.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-20T15:05:08Z"
"2009-11-20T06:53:20Z"
295,513
Bug 295513 AIOBE in TextLayout
null
resolved fixed
1294a7f
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-18T21:47:06Z"
"2009-11-18T21:33:20Z"
295,368
Bug 295368 I20091117-0800 crashes on startup with widget disposed exception
Run the build, select your workspace, workbench comes up, then goes away. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4068) at org.eclipse.swt.SWT.error(SWT.java:3983) at org.eclipse.swt.SWT.error(SWT.java:3954) at org.eclipse.swt.widgets.Widget.error(Widget.java:458) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:395) at org.eclipse.swt.custom.CTabFolder.setSelectionForeground(CTabFolder.java:3536) at org.eclipse.ui.internal.presentations.PaneFolder.setSelectionForeground(PaneFolder.java:757) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.updateColors(DefaultTabFolder.java:453) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.shellActive(DefaultTabFolder.java:469) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder$2.shellActivated(PresentablePartFolder.java:66) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:82) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1218) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1242) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1223) at org.eclipse.swt.widgets.Shell.filterProc(Shell.java:728) at org.eclipse.swt.widgets.Display.filterProc(Display.java:1516) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:2132) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3129) at org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803) at org.eclipse.ui.internal.Workbench$28.runWithException(Workbench.java:1384) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2315) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363)
resolved fixed
b7a949c
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-17T19:15:26Z"
"2009-11-17T17:46:40Z"
295,232
Bug 295232 addSelectionListener(SelectionListener) of Button, MenuItem, and ToolItem should tell about RADIO
HEAD The Javadoc of the addSelectionListener(SelectionListener) method in Button, MenuItem, and ToolItem should tell about the special behavior when the widget has the SWT.RADIO style. In that case, widgetSelected(..) is not only called when the control is selected by the user, but also when the radio control loses selection. There are already a number of WONTFIX and WORKSFORME bugs about this problem, but the right fix is to document the current behavior.
resolved fixed
1d37ff5
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-16T20:29:39Z"
"2009-11-16T11:13:20Z"
294,368
Bug 294368 Mozilla SWT Browser AppFileLocProvider has caching issues
The AppFileLocProvider changes it's answer for the location of "ProfD" part way through the initialization and this is really messing with the caching done in the nsDirectoryService. It looks like what's happening is the nsDirectoryService is remembering the <empty> value and not going back to the provider to check for it again. We need to signal the need to refresh the cache by perhaps re-registering the provider or else explicitly set the property (or else come up with something even better).
resolved fixed
d088047
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java", "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/AppFileLocProvider.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-12T20:13:57Z"
"2009-11-05T19:40:00Z"
260,407
Bug 260407 e4 CSS: css attribute storage and notification
The CSS support needs to associate CSS class, CSS ID and style sheet with a given widget. It currently does so by using Widget.setData(). This has the advantage that callers do not need to create a dependency on CSS packages, but has the problem that setData() lacks notification of value change: if any of CSS class/id/stylesheet of a widget change, style information must be reapplied. We either need custom API for setting these values (e.g. Widget.setCSSID(String), Widget.setCSSClass(String),...), or we need notification of Widget.setData() change. An issue with the latter approach is blanket broadcast notification of everyone who happens to store values on a widget and wants notification (i.e. the values tend to be orthogonal extensions of the widget data so listeners will only be interested in a specific subset of the keys). Thus a notification mechanism based on key set would be best.
resolved fixed
f15ff0b
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tracker.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scrollable.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/TabFolder.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/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tracker.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", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/SWT.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/widgets/Tray.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/expand/org/eclipse/swt/widgets/ExpandBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/tabfolder/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/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/ExpandBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/MenuItem.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/TabFolder.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/ToolBar.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/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Tracker.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Tracker.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.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/CoolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.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/ExpandBar.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/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.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/ToolBar.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/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Canvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/CoolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/ExpandBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Tracker.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-12T19:24:24Z"
"2009-01-08T15:53:20Z"
294,308
Bug 294308 [Viewers] Bug201002TableViewerTest in nightly N20091104-2000 on Mac OSX
null
resolved fixed
6b08ed4
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-05T19:50:47Z"
"2009-11-05T11:20:00Z"
294,335
Bug 294335 Performance improvement for textlayout
null
resolved fixed
f80151b
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-05T15:58:00Z"
"2009-11-05T16:53:20Z"
292,227
Bug 292227 plug window lost focus when create a NO_FOCUS shell from socket
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14 Build Identifier: 3.4.0 Code Comments in detail 1. Java -- Create a socket and add listeners to detect keyboard events, will pop up a NO_FOCUS shell when event detected. 2. C++ -- Create a gtk plug window, and reparent it to java socke via gtk_plug_new(), there is a button in the plug. Reproducible: Always Steps to Reproduce: 1. Launch the Java process, you could get the socket id from console 2. Launch c++ process, input the socket id you get from java console 3. Mouse click button to give plug's button the focus 4. Press "Enter" on the button. 5. Expected -- Focus should not lost from Plug's button, because we new a NO_FOCUS shell from Java, but actually focus moved to the 2ed control of Java.
resolved fixed
647db4b
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-04T15:24:12Z"
"2009-10-14T08:46:40Z"
294,171
Bug 294171 Scrolling causes flush of all paint events.
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: I have following problem. Within a resize listener's handleEvent() method, i'm calling twice Canvas.scroll(). The areas scrolled are distincted. So what i would expect is that calling scroll() the second time do not trigger a paint event since there is nothing to be repainted. But that's not the case. The Javadoc of the method says: "In addition, outstanding paint events are flushed before the source area is copied to ensure that the contents of the canvas are drawn correctly. ". This is somewhat misleading since it does not really say that all events are flushed. Even those that does not intersect the area to scroll. I would suggest to precise the javadoc or better only trigger paint events that intersect the area to scroll. Reproducible: Always Steps to Reproduce: import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; public class CanvasScrollReproducer { public static void main(final String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(640, 480); final Canvas canvas = new Canvas(shell, SWT.NO_BACKGROUND | SWT.NO_REDRAW_RESIZE | SWT.DOUBLE_BUFFERED); canvas.addListener(SWT.Paint, new Listener() { public void handleEvent(final Event event) { System.out.println(event.gc.getClipping()); final Color color = new Color(display, (int) (Math.random() * 255), (int) (Math.random() * 255), (int) (Math.random() * 255)); try { event.gc.setBackground(color); event.gc.fillRectangle(canvas.getClientArea()); } finally { color.dispose(); } } }); canvas.addListener(SWT.Resize, new Listener() { private Rectangle oldArea = null; public void handleEvent(final Event event) { if (this.oldArea != null) { final Rectangle newClientArea = canvas.getClientArea(); final int xDiff = newClientArea.width - this.oldArea.width; final int destX = xDiff; final int x = 0; int width = this.oldArea.width; width = newClientArea.width; int height = this.oldArea.height; height = newClientArea.height; System.out.println("scroll 1"); canvas.scroll(destX, 19, x, 19, width, height - 19, true); System.out.println("scroll 1 done"); System.out.println("scroll 2"); canvas.scroll(destX, 0, x, 0, width, 18, true); System.out.println("scroll 2 done"); } this.oldArea = canvas.getClientArea(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
resolved fixed
28f5634
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Canvas.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-04T14:46:26Z"
"2009-11-04T10:20:00Z"
294,053
Bug 294053 Scrollables incorrectly redrawn within non rectangular shaped shell.
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: 20090920-1017 I have an application with an irregular shaped window created by setting a Region on the shell. I found that an embedded CheckboxTreeViewer does not draw properly when scrolled. It seems to incorrectly inherit the region of the shell which then gets scrolled around with the contents of the scrolled tree, preventing areas outside the region from being redrawn properly. I have modified Snippet285, adding a scrollable List which demonstrates this problem. I am running 64 bit cocoa, eclipse build id: 20090920-1017. I have also tried an earlier version of 32 bit cocoa which does the same. It draws fine on carbon. Is this a bug or am I missing something? Thanks. Reproducible: Always Steps to Reproduce: 1. Run code snippet which I will attach.
resolved fixed
ca6d7bb
["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/Canvas.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/ScrollBar.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/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-03T20:37:15Z"
"2009-11-03T12:06:40Z"
288,468
Bug 288468 [Widgets] Setup of event.detail argument incorrect in Tree paintItem event under Cocoa
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 Build Identifier: 3.5 Line 1140 of the SWT cocoa source file org/eclipse/swt/widgets/Tree.java sets up the SWT.SELECTED bit incorrectly for the event parameter for the PaintItem event of the Tree. Currently the line reads: if (drawSelection) event.detail |= SWT.SELECTED; The drawSelection variable however is the result of a previous EraseItem event. According to the spec (and the behavior under Windows) the SWT.SELECTED bit should be set in event.detail when the respective tree cell is actually selected, even when a precious call to EraseItem prevented the drawing of a selection background for the cell by clearing the bit. Reproducible: Always Can be easily fixed by changing line 1140 of the SWT cocoa source file org/eclipse/swt/widgets/Tree.java from if (drawSelection) event.detail |= SWT.SELECTED; to if (isSelected) event.detail |= SWT.SELECTED;
resolved fixed
60cb995
["bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cocoa/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2009-11-02T20:41:42Z"
"2009-09-03T12:13:20Z"