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
118,378
Bug 118378 StyledText#computeSize imposes artificial limit on return value
null
resolved fixed
97bce29
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-29T21:08:05Z"
"2005-11-29T07:40:00Z"
118,241
Bug 118241 StyledText: getLineHeight(int) and getBaseline(int): code do not match spec
N20051127-0010 The Javadoc says: * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_RANGE when the offset is outside the valid range (< 0 or > getCharCount())</li> While the code tests: if (!(0 <= offset && offset < content.getCharCount())) { SWT.error(SWT.ERROR_INVALID_RANGE); Which one is correct?
verified fixed
e43ea7f
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-28T18:56:14Z"
"2005-11-28T15:00:00Z"
118,240
Bug 118240 StyledText.getBaseline(StyledText.getCharCount()-1)) causes IAE
N20051127-0010 When having something like: 'xxx xxx ' calling StyledText.getBaseline(StyledText.getCharCount()-1)) causes an IAE: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3246) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at org.eclipse.swt.graphics.TextLayout.getLineIndex(TextLayout.java:1010) at org.eclipse.swt.custom.StyledText.getBaseline(StyledText.java:3003)
verified fixed
72acb45
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-28T18:35:52Z"
"2005-11-28T15:00:00Z"
117,928
Bug 117928 JDT Text test don't run anymore (out of handles) - works with SWT 3.2 M1
I20051123-1200 I have the following setup: 1. install I20051123-1200 2. start fresh workspace 3. load org.eclipse.jdt.text.tests checked out from HEAD 4. load all its required test projects from HEAD 5. load org.eclipse.jface.text from HEAD 6. *** only needed to run against SWT from 3.2 M1 - see later step *** - replace "gc.getDevice()" with "" in all *.java files - in AnnotationPainter.java replace "getLineHeight(offset)" with "getLineHeight()" 7. run JdtTextTestSuite as JUnit Plug-in Test (ignore the error in jdt.ui.tests) ==> no more handles occurrs (at different places on each run) ==> several tests fail as consequence Works on Linux and also on releng WinXP machine but fails on several of our machines here in the lab. Integrated SWT's sleak tool code into the test runner to dump object info for each test. Before the error the figures are about the following: 221 Color(s) 8 Cursor(s) 10 Font(s) 154 Image(s) The interesting part comes now: - use the PDE importer to import SWT from 3.2 M1 and repeat step 7. ==> no SWTError - use the PDE importer to import SWT from 3.2 M2 (or newer) and repeat step 7. ==> SWTError is back Here's one such stack trace: Error while informing user about event loop exception: org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:3277) at org.eclipse.swt.SWT.error(SWT.java:3174) at org.eclipse.swt.SWT.error(SWT.java:3145) at org.eclipse.swt.widgets.Widget.error(Widget.java:407) at org.eclipse.swt.widgets.Control.createHandle(Control.java:482) at org.eclipse.swt.widgets.Label.createHandle(Label.java:170) at org.eclipse.swt.widgets.Control.createWidget(Control.java:497) at org.eclipse.swt.widgets.Control.<init>(Control.java:97) at org.eclipse.swt.widgets.Label.<init>(Label.java:89) at org.eclipse.ui.internal.progress.NewProgressViewer$JobItem.<init>(NewProgressViewer.java:524) at org.eclipse.ui.internal.progress.NewProgressViewer.createItem(NewProgressViewer.java:1344) at org.eclipse.ui.internal.progress.NewProgressViewer.refresh(NewProgressViewer.java:1652) at org.eclipse.ui.internal.progress.NewProgressViewer.setInput(NewProgressViewer.java:1886) at org.eclipse.ui.internal.progress.BlockedJobsDialog.showJobDetails(BlockedJobsDialog.java:317) at org.eclipse.ui.internal.progress.BlockedJobsDialog.createDialogArea(BlockedJobsDialog.java:287) at org.eclipse.jface.dialogs.IconAndMessageDialog.createDialogAndButtonArea(IconAndMessageDialog.java:199) at org.eclipse.jface.dialogs.IconAndMessageDialog.createContents(IconAndMessageDialog.java:188) at org.eclipse.jface.window.Window.create(Window.java:417) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1051) at org.eclipse.jface.window.Window.open(Window.java:775) at org.eclipse.ui.internal.progress.BlockedJobsDialog$1.runInUIThread(BlockedJobsDialog.java:224) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:93) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3171) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2826) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:126) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:161) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:87) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:217) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1659) at org.eclipse.core.internal.resources.File.create(File.java:107) at org.eclipse.jdt.internal.core.JavaProject.setSharedProperty(JavaProject.java:2952) at org.eclipse.jdt.internal.core.JavaProject.saveClasspath(JavaProject.java:2722) at org.eclipse.jdt.internal.core.SetClasspathOperation.saveClasspathIfNecessary(SetClasspathOperation.java:610) at org.eclipse.jdt.internal.core.SetClasspathOperation.executeOperation(SetClasspathOperation.java:257) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:724) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1704) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:788) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2892) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2908) at org.eclipse.jdt.testplugin.JavaProjectHelper.createJavaProject(JavaProjectHelper.java:141) at org.eclipse.jdt.text.tests.contentassist.JavadocCompletionTest.setUp(JavadocCompletionTest.java:113) at junit.framework.TestCase.runBare(TestCase.java:125) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22) at junit.extensions.TestSetup$1.protect(TestSetup.java:19) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.extensions.TestSetup.run(TestSetup.java:23) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3171) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2826) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1794) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:381) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
verified fixed
40c0440
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Menu.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-25T20:24:33Z"
"2005-11-24T16:33:20Z"
117,816
Bug 117816 Crash while running JFace test suite
I20051123-1200, UI and SWT from HEAD, GTK+ 2.6.10, KDE 3.4.1, X.org 6.8.2, Linux 2.6.13 It starts with the following failure.... junit.framework.AssertionFailedError: first2 is visible at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:220) at org.eclipse.jface.tests.viewers.AbstractTreeViewerTest.testExpandToLevel(AbstractTreeViewerTest.java:110) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at junit.framework.TestCase.runTest(TestCase.java:154) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3038) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2746) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1722) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:391) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
resolved fixed
66037f9
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-25T17:59:53Z"
"2005-11-24T02:40:00Z"
99,381
Bug 99381 [PerspectiveBar] Alignment of items in perspective switcher when switcher docked to the left is incorrect
Steps to reproduce: 1. Launch Eclipse 3.0.2 SDK 2. From perspective switcher, select Dock On > Left 3. Open a few perspectives - PDE, Java, CVS, etc... 3. On Windows, all the perspectives are left-aligned. However, on linux the perspectives are center-aligned. This looks pretty ugly. Behaviour of perspective switcher on linux should match the behaviour on Windows. To give you some background on why Im making this request - In the WebSphere Everyplace Deployment runtime, I've morphed the perspective switcher (org/eclipse/ui/internal/PerspectiveSwitcher) to a launcher which allows users to navigate between and run various applications deployed to the runtime. I'd like for the application (our perspectives) icons to be stacked one on top of the other and be left-aligned. For reference, this launcher is similar to what is used in Lotus Workplace Client. I am using the default style used by the workbench for the perspective switcher - SWT.FLAT | SWT.WRAP | SWT.RIGHT | SWT.HORIZONTAL. I tried various permutations and combinations of these style bits but I cant get the perspectives to left-align on Linux GTK.
resolved fixed
a1e1381
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-25T05:31:28Z"
"2005-06-10T16:13:20Z"
117,990
Bug 117990 Reduce matching complexity of the SWT flat toolbar RC style
The documentation for GtkRC indicates that "*" characters in GTK+ RC files slow down widget creation. Currently we match against: "*swt-toolbar-flat*" This can be reduced to: "*.swt-toolbar-flat" and still work, but with reduced complexity.
resolved fixed
3be2fdd
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-25T03:37:57Z"
"2005-11-25T03:40:00Z"
99,461
Bug 99461 resizing Table can have draw problems
3.1RC2 noon build, gtk 2.4.13 - run the snippet below, it opens a small window - grab the window's bottom-right corner and make it bigger - this will leave lots of cheese, as shown in the next screenshot - this problem does not happen if the table has no columns public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Table table = new Table(shell, SWT.NONE); new TableColumn(table, SWT.NONE); // <--- shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
53c5711
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-24T22:13:51Z"
"2005-06-10T19:00:00Z"
117,807
Bug 117807 possible bug in TableItem.setImage (int index, Image image)
This function appears as though it would have a bug in it - basically there appears to be an underlying assumption that the setImage function is used to change an image from one to another. If you use this function to turn on or off an image, it won't redraw correctly. This line of code is the last in the function: redraw (index, false, true); I think it should be: redraw (index, true, true); So that the text will be redrawn. The text needs to be redrawn in (at least) 2 cases: 1. When the image was previously null and is change to be non-null 2. The converse.
resolved fixed
1153c53
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-24T21:20:00Z"
"2005-11-23T23:53:20Z"
117,879
Bug 117879 NullPointerException from mouse move
Version: 3.2.0 Build id: I20051123-1200 I found this error in my console. No idea what i was doing and nothing bad seemed to happen. java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.wmMouseMove(Widget.java:1919) at org.eclipse.swt.widgets.Control.WM_MOUSEMOVE(Control.java:3637) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3187) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3919) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1705) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2859) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1794) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.jav a:381) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:10 6) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformAct ivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runAppli cation(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ec lipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
resolved fixed
ee86615
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-24T18:59:14Z"
"2005-11-24T11:00:00Z"
117,757
Bug 117757 Is TreeItem (.. int hParent, ..) supposed to be public?
I20051122-1300 Is the constructor public TreeItem (Tree parent, int style, int hParent, int hInsertAfter, int hItem) supposed to be public? I guess it should be package-private.
resolved fixed
4176736
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-24T18:48:39Z"
"2005-11-23T18:20:00Z"
74,482
Bug 74482 Background colour not propagated inside group or tabfolder
null
resolved fixed
2818ff5
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Link.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"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-22T21:56:57Z"
"2004-09-21T20:53:20Z"
117,195
Bug 117195 Regression: Shell ignores first mouse-click after dialog closed
SWT-win32, N20051119-0010 - Run the snippet below - Double-click the list - Close the dialog that pops up - Try to click the button or one of the minimize/maximize/close buttons - Note that the first mouse-click is ignored, it does not do anything --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class DialogMouseTest { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); List list = new List(shell, SWT.NONE); list.add("Double-click me"); list.addListener(SWT.MouseDoubleClick, new Listener() { public void handleEvent(Event e) { Shell dlg = new Shell(shell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL); dlg.setText("Close me"); dlg.pack(); dlg.open(); while (!dlg.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } }); Button btn = new Button(shell, SWT.PUSH); btn.setText("I'm a button"); shell.setSize(300, 100); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
resolved fixed
9747fcc
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-21T20:59:45Z"
"2005-11-19T19:53:20Z"
11,714
Bug 11714 Non error messages are logged.
After running help and browsring documents, the platform log contains entries with messages from web browser like "No running window found.", or "xmlencoding detect- ISO-8859-1". These are normal , and it would be better if they were not logged to the platform log.
verified fixed
bf221f6
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-21T18:27:37Z"
"2002-03-19T20:33:20Z"
117,125
Bug 117125 Tree with columns shows horizontal scroll bar when it shouldn't
SWT-win32, v3214 The testcase below contains a tree with a single column. When the parent shell is resized, the width of the column is set to exactly fill the available space. It works, but a horizontal scroll bar will appear even though none is needed. For some reason the widget thinks that there is one additional pixel to the right. If you replace the tree with a table (and the tree column with a table column), you don't get a horizontal scroll bar. Note: To keep the snippet simple, it does not contain code for the case where a vertical scroll bar is visible. --- import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; public class TreeColumnTest { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); final Tree tree = new Tree(shell, SWT.NONE); tree.setHeaderVisible(true); final TreeColumn column = new TreeColumn(tree, SWT.LEFT); shell.addControlListener(new ControlAdapter() { public void controlResized(ControlEvent e) { Rectangle area = shell.getClientArea(); int width = area.width - 2 * tree.getBorderWidth(); if (width < column.getWidth()) { column.setWidth(width); tree.setSize(area.width, area.height); } else { tree.setSize(area.width, area.height); column.setWidth(width); } } }); shell.setSize(300, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
resolved fixed
8e38846
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-18T22:21:00Z"
"2005-11-18T18:53:20Z"
104,284
Bug 104284 GTK warnings when setting item count on VIRTUAL Table before its open
3.1 - run the snippet below, which sets the item count to 500 - the SetData callback is not invoked for the items that should be initially visible, so the Table appears blank - scroll down and note that it works for item indices > 14 *** if the Table item count is set after the Shell has been opened then the initial 14 items are queried and shown fine public static void main (String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,400,300); final Table table = new Table(shell, SWT.VIRTUAL); table.setBounds(10,10,300,200); table.setItemCount(500); shell.open(); //table.setItemCount(500); // this works table.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TableItem item = (TableItem)event.item; int index = table.indexOf(item); item.setText("virtual item " + index); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
8a9f511
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-18T18:01:33Z"
"2005-07-18T20:53:20Z"
116,110
Bug 116110 FileDialog hangs SWT Application
null
resolved fixed
937e40a
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-18T15:08:34Z"
"2005-11-12T12:53:20Z"
113,005
Bug 113005 Table Header stays depressed.
Create an SWT application with a Table and a push Button, the Table must have a column header. 1. Make the push Button receive keyboard focus. This can be achieved by pressing the mouse button inside of the push Button, dragging it outside of the push Button and then releasing the mouse button. 2. Press the mouse button over the Table header. Do not release the mouse button. 3. Press and hold the space bar. This will cause the push Button to depress. 4. Move the mouse outside of the Table header and release the mouse button. This causes the Table header to remain depressed. 5. Release the space bar. This is repeatable for the headers of all the Table's Columns.
resolved fixed
83d76c7
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-17T19:49:35Z"
"2005-10-18T21:13:20Z"
116,720
Bug 116720 GLCanvas doesn't set hint for merging mouse motion events
At least on GTK, the GLCanvas doesn't merge multiple mouse motion events that might happen to be in the event queue. Instead, it floods the listener with lists of old events. Other widgets like Canvas do not show this behaviour. Test case exhibiting this bug is appended. It uses a waiting event handler to facilitate queuing of mouse motion events. You can see in the program output that the output keeps coming long after the mouse is resting again.
resolved fixed
0cb2304
["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-17T05:23:33Z"
"2005-11-16T19:40:00Z"
116,688
Bug 116688 editor cheese after code completion
Build id: I20051115-0800 I am occasionally getting cheese in the editor after inserting code using content assist and organize imports in this build. For example, if I type a class name, and then hit Ctrl+Shift+M to import it, I get some parts of the text pushed down by a line while other parts stay put. I will attach a screen shot as an example. In the screen shot, there is an invisible line about an inch from the left hand side - everything to the left of the line is fine, and everything to the right of the line has been pushed down so the two pieces don't line up.
resolved fixed
414c5f5
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-16T23:16:09Z"
"2005-11-16T16:53:20Z"
115,675
Bug 115675 disappearing checkbox with Windows XP look and feel
null
resolved fixed
fc9934e
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ImageList.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-14T17:42:22Z"
"2005-11-09T18:13:20Z"
79,894
Bug 79894 Control.update() method is too expensive
Our product intensively uses SWT to represent results to user. It may create hundred widgets. Sometimes it uses Control.update() method with "all" set to false. This method takes about 20% of entire time taken by SWT. I profiled the use case and noticed that Display.checkIfEvent() is called about 8 200 times however Control.update() was called only 16 times. I also noticed that Display.checkIfEvent() modifies event in the queue (Do not know whether this is a good practice). This is due to each event in the X queue is checked each time Control.update() is called. As far as I understand the goal of this function is to collect all pending Expose events for given widget and optionally for all its children and then process all updates at once. I tried to modify Control.update() method to use XCheckWindowEvent() and got good results. This method is slightly faster if "all" argument is true and takes almost no time if "all" is false. VisibilityNotify events are removed from the queue so they are not processed again by GTK. Could you please review the patch and give your opinion. Is it possible to replace current SWT implementation with proposed one?
resolved fixed
4c759d3
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-13T01:00:11Z"
"2004-12-01T16:53:20Z"
100,659
Bug 100659 Dialog displays small sometimes in GTK
null
resolved fixed
49869f2
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-12T20:53:59Z"
"2005-06-17T20:26:40Z"
116,005
Bug 116005 Cannot type in Text widget in an ON_TOP Shell
null
resolved fixed
f8dfb27
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-11T16:33:26Z"
"2005-11-11T14:40:00Z"
115,230
Bug 115230 Font smooth does not work in Eclipse Forms
null
resolved fixed
ff167b1
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-10T22:53:52Z"
"2005-11-06T09:40:00Z"
112,358
Bug 112358 Need a way to create a new Color based on an existing color
We need a way to create a new color from an existing color by varying the hue, saturation or brightness.
resolved fixed
2503053
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/RGB.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-10T14:19:30Z"
"2005-10-12T15:13:20Z"
107,219
Bug 107219 Redraw problems on resizing Tree column
Tree cell contents are not redrawing properly in 3.2M1 where: - the tree has visible column headers, and column resizing is enabled - only one column exists When the right hand edge of the column is dragged leftwards, it draws over the cell contents, but the cell is not redrawn. Some content is still visible outside the cell. This is a new bug which does not occur in v3.1. Illustrative screenshots to follow.
resolved fixed
db37a37
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-09T23:35:17Z"
"2005-08-17T14:46:40Z"
112,454
Bug 112454 ColorSelector button does not display correctly when first visible
Version: 3.1.0 Build id: I20051012-1200 When the ColorSelector control is appears to show the background of the control behind it. Pressing the alt key or hovering over the button makes it display its correct colour. This can be seen on the ant preference page as well as a few others. See attached screenshot. This was working in I20050816-1235
resolved fixed
004c286
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-09T22:59:01Z"
"2005-10-13T10:40:00Z"
115,667
Bug 115667 Handle leak in TextLayout
3.2 M3 I am not entirely sure of how handles get managed in SWT, but I think I found a leak in TextLayout.draw(TextLayout.java:324). I noticed that I get frequent "No more handles" SWTErrors in the last couple of weeks. Running Sleak reveals that after a while of editing, there are thousands of Region objects with the following allocation path: at org.eclipse.swt.graphics.Device.new_Object(Device.java:658) at org.eclipse.swt.graphics.Region.<init>(Region.java:76) at org.eclipse.swt.graphics.Region.<init>(Region.java:48) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:324) at org.eclipse.swt.custom.StyledTextRenderer.drawLine(StyledTextRenderer.java:147) at org.eclipse.swt.custom.StyledText.performPaint(StyledText.java:5927) at org.eclipse.swt.custom.StyledText.handlePaint(StyledText.java:5242) Looking at the code in TextLayout, it seems that the clipping Region is allocated but never disposed of.
resolved fixed
f68d04f
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-09T19:47:07Z"
"2005-11-09T18:13:20Z"
113,105
Bug 113105 Table widget does not return table item when #getItem(Point) is called
I have a table that is created with SWT.FULL_SELECTION turned off. I have added a mouse track listener for providing hover support in my view. When the listener gets the event, I tried to locate the table item at which the hover event is fired. I used the method, Table.getItem(Point) to locate the item. My table has multiple columns. If the hover happens at column 0, #getItem(Point) is able to return the correct item. However, if the hover happens at any other column, #getItem(Point) always returns null which is not expected. If the table is created with the SWT.FULL_SELECTION flag on, then the table is always able to return the correct item. Expected behaviour: The table should be able to return the correct item at any column no matter if SWT.FULL_SELECTION is on or not. Actual behaviour: SWT.FULL_SELECTION off: Table is only able to return an item when the hover happens at column 0 when #getItem(Point) is called. SWT.FULL_SELECTION on: Table is able to return an item no matter where the hover happens. Testcase: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); // #getItem(point) returns null for any column other than column 0 // if FULL_SELECTION is off final Table table = new Table(shell, SWT.BORDER | SWT.MULTI); // #geItem(point) returns the correct item if FULL_SELECTION is on // final Table table = new Table(shell, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION); table.addMouseTrackListener(new MouseTrackAdapter() { public void mouseHover(MouseEvent e) { Point point = new Point(e.x, e.y); TableItem item = table.getItem(point); System.out.println(item); super.mouseHover(e); }}); table.setLayoutData(new GridData(GridData.FILL_BOTH)); TableColumn column1 = new TableColumn(table, SWT.NONE); TableColumn column2 = new TableColumn(table, SWT.NONE); TableColumn column3 = new TableColumn(table, SWT.NONE); for (int i = 0; i < 500; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] { "cell "+i+" 0", "cell "+i+" 1", "cell "+i+" 2"}); } column1.pack(); column2.pack(); column3.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
a3fbb62
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-08T16:31:45Z"
"2005-10-19T16:40:00Z"
115,292
Bug 115292 NullPE in Tree#_getItem(TreeItem parentItem, int index)
I just released a new version of my reader using latest SWT 3.2 M3 and now I am getting a lot logfiles, looking like this one: java.lang.NullPointerException at org.eclipse.swt.widgets.Tree._getItem(Tree.java:203) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1422) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1414) at net.sourceforge.rssowl.controller.FavoritesTree.getTreePath(Unknown Source) at net.sourceforge.rssowl.controller.FavoritesTree.onSelection(Unknown Source) at net.sourceforge.rssowl.controller.FavoritesTree$7.widgetSelected(Unknown Source) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1546) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1555) at org.eclipse.swt.widgets.Tree.itemNotificationProc(Tree.java:2025) at org.eclipse.swt.widgets.Display.itemNotificationProc(Display.java:2220) at org.eclipse.swt.internal.carbon.OS.RemoveDataBrowserItems(Native Method) at org.eclipse.swt.widgets.Tree.removeAll(Tree.java:2261) at net.sourceforge.rssowl.controller.FavoritesTree.buildFavoritesTree(Unknown Source) at net.sourceforge.rssowl.controller.EventManager.actionNewCategory(Unknown Source) at net.sourceforge.rssowl.controller.EventManager.actionNewCategory(Unknown Source) at net.sourceforge.rssowl.controller.popup.FavoritePopup$6.widgetSelected(Unknown Source) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1546) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1555) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1332) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3248) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2899) at net.sourceforge.rssowl.controller.GUI.runEventLoop(Unknown Source) at net.sourceforge.rssowl.controller.GUI.showGui(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader.<init>(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader.main(Unknown Source) Comparing Tree in CVS, there was a recent change on 28.10. which might be the reason? This exception looks quite new to me, I was not reported to me using a SWT version of 3 weeks ago. Ben
resolved fixed
041ec3d
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-07T21:06:38Z"
"2005-11-07T10:40:00Z"
115,092
Bug 115092 Snippet 203 doesn't use all texts
I'd guess that the line layout.setText(texts[0]); in SWT snippet 203 should be layout.setText(texts[i]);
resolved fixed
33051ac
["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet203.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-05T01:44:12Z"
"2005-11-04T16:00:00Z"
115,176
Bug 115176 Regression: Disabling tool bar makes separator items disappear
SWT-win32, 3.2M3 When calling setEnabled(false) on a tool bar, items with SWT.SEPARATOR style disappear. This did not happen in 3.2M2 and earlier versions. Snippet to reproduce: === import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class ToolBarTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout(SWT.VERTICAL)); Image icon = new Image(display, 16, 16); GC gc = new GC(icon); gc.drawRectangle(0, 0, 15, 15); gc.dispose(); final ToolBar bar = new ToolBar(shell, SWT.HORIZONTAL | SWT.FLAT); new ToolItem(bar, SWT.PUSH).setImage(icon); new ToolItem(bar, SWT.SEPARATOR); new ToolItem(bar, SWT.PUSH).setImage(icon); new ToolItem(bar, SWT.SEPARATOR); new ToolItem(bar, SWT.PUSH).setImage(icon); Button btn = new Button(shell, SWT.PUSH); btn.setText("Click me"); btn.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { bar.setEnabled(!bar.getEnabled()); } }); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } icon.dispose(); display.dispose(); } }
resolved fixed
ab1753c
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-05T00:27:50Z"
"2005-11-05T00:20:00Z"
113,244
Bug 113244 Accessibilty...When using JAWS on a StyledText widget the label is not recognized
Accessibilty...When using JAWS on a StyledText widget the label is not recognized like it is with a regular Text widget.
resolved fixed
3a71e3f
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-04T20:47:24Z"
"2005-10-20T14:53:20Z"
93,380
Bug 93380 [DnD] 100% CPU usage when dragging files in the navigator or package explorer
Version: 3.1.0 Build id: I20050419-1200 When i drag and drop a file inside the package explorer or navigator views the CPU says at 100% (or 50% when hyperthreading is enabled). Since the CPU usage doesn't go above 50% my guess is that all of the processing time is spent in the event thread (windows doesn't seem to let the virtual CPU on the event thread, hence the 50% number). I do not see this massive use of CPU when dragging an external file into the navigator or when dragging a file out of the navigator. Dragging views/editor is also ok. I will try to get some thread dumps either tonight or tomorrow.
resolved fixed
32dee67
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-03T16:59:13Z"
"2005-05-02T02:13:20Z"
112,463
Bug 112463 Tree.showColumn doesn't scroll column from left of viewport into view
- run the snippet below - note that the second column begins within the viewport but is too wide to be fully shown - press the button, which invokes Tree.showColumn(col2) -> this brings the second column fully into the viewport; good - now scroll to the right end of the tree and note that the second column now begins to the left of the viewport, but its right edge is visible - press the button, which invokes Tree.showColumn(col2), but this fails to bring the whole column into view public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell (display); shell.setBounds(10,10,200,200); final Tree tree = new Tree(shell, SWT.NONE); tree.setBounds(10,10,100,100); tree.setHeaderVisible(true); TreeColumn column1 = new TreeColumn(tree, SWT.NONE); column1.setWidth(75); column1.setText("col 1"); final TreeColumn column2 = new TreeColumn(tree, SWT.NONE); column2.setWidth(75); column2.setText("col 2"); TreeColumn column3 = new TreeColumn(tree, SWT.NONE); column3.setWidth(75); column3.setText("col 3"); Button button = new Button(shell, SWT.PUSH); button.setBounds(120,10,70,30); button.setText("Push"); button.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { tree.showColumn(column2); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
862ee59
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-03T16:47:58Z"
"2005-10-13T13:26:40Z"
112,345
Bug 112345 [LayoutExample] Toolbar replacing another widget causes cheese
Version: 3.1.0 Build id: I20050920-0010 - Download SWT examples. - Run LayoutExample as an SWT application. - On the 'control' column, click on one of the of the controls, a drop down list should appear. Choose 'ToolBar' from the list and press 'enter'. Note that the button that was there before is still there and the toolbar items show on top. - Minimize the application and maximize. Note that only on that Toolbar area the background is reflected from the screen before.
resolved fixed
f7eb58f
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-03T15:41:53Z"
"2005-10-12T15:13:20Z"
113,802
Bug 113802 Dialogs block the execution of (a)syncExecs
Hello.. I surprisingly noticed that opening PrintDialog, FileDialog and DirectoryDialog block the execution of Runnables posted by syncExec() and asyncExec(). On the other hand, the ones posted by timerExec() are still executed! SWT(3138).. what's wrong? best regards Saibel PS: I haven't found any similar postings/bugs, so I think this one is new.
resolved fixed
473d126
["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/win32/org/eclipse/swt/printing/PrintDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-02T22:14:45Z"
"2005-10-26T12:33:20Z"
114,533
Bug 114533 Editor popup has wrong size
Build: 20051101-0010 All of the [editor/view/perspective] selection popups in this build are sized incorrectly, requiring a vertical scroll-bar no matter how many entries are in the popup. This only started happening with today's build. I will attach a screen shot showing the same editor selection popup with I20051101-0010 versus I20051031-0800 (which did not exhibit the problem).
resolved fixed
7bf31dc
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-01T21:41:45Z"
"2005-11-01T15:46:40Z"
114,498
Bug 114498 Table doesn't send selection change events anymore when selecting elements with the mouse
Version: 3.2.0 Build id: I20051031-2000 In Open Type dialog when Show Status Line is enabled then the status line entry does change if one goes through the entries by pressing up/down key but not if an entry is selected with the mouse.
resolved fixed
2617b7e
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-01T15:40:09Z"
"2005-11-01T10:13:20Z"
112,390
Bug 112390 [Viewers] JUnit error in JFacePerformanceSuite
null
resolved fixed
c57ed90
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-11-01T00:19:51Z"
"2005-10-12T20:46:40Z"
111,798
Bug 111798 Text#getCaretLocation() replaces selected text by " " iff caret is after last character
I20051004-0800 - select the last few characters of a Text such that the caret is at the very end - call Text#getCaretLocation() => Selection is replaced by a space. => Neither selection nor text should be changed. This can easily be reproduced in Eclipse: - have: void m() { new java.util.ArrayList(); } - select "new java.util.ArrayList()" - Refactor > Extract Local Variable - press Ctrl+Space
resolved fixed
da903d0
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-31T19:55:03Z"
"2005-10-06T14:46:40Z"
110,951
Bug 110951 Combo.setItem(int, String) does not preserve the selection index
Assume you have a combo with two items, "A" and "B", where "B" is currently selected (i.e. getSelectionIndex() returns 1). If you then call combo.setItem(1,"C"), the combo will be empty and getSelectionIndex will return -1. Why does it not preserve the "selection index"?
resolved fixed
df5cf3f
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Combo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-31T19:24:25Z"
"2005-09-28T15:06:40Z"
114,039
Bug 114039 Table.computeSize returns bogus Point.y values under Win32 for large tables
Under win32, for tables with lots of rows (>20000), Table.computeSize seems to overrun a native short variable. Test snippet: public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new RowLayout (SWT.VERTICAL)); final Table table = new Table (shell, SWT.VIRTUAL | SWT.BORDER); table.addListener (SWT.SetData, new Listener () { public void handleEvent (Event event) { TableItem item = (TableItem) event.item; int index = table.indexOf (item); item.setText ("Item " + index); } }); shell.pack (); shell.open (); display.syncExec(new Runnable() { public void run() { for (int i=0; i<100000; i+=1000) { System.out.println(table.computeSize(SWT.DEFAULT, SWT.DEFAULT)); table.setItemCount(i); } } }); shell.dispose(); display.dispose (); } Output: Point {31, 23} Point {31, 23} Point {31, 15023} Point {31, 30023} Point {31, -20513} Point {31, -5513} Point {31, 9487} Point {31, 24487} Point {31, -26049} Point {31, -11049} Point {31, 3951} Point {31, 18951} Point {31, -31585} Point {31, -16585} Point {31, -1585} Point {31, 13415} Point {31, 28415} Point {31, -22121} Point {31, -7121} Point {31, 7879}
resolved fixed
4e3d6fc
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-28T23:02:51Z"
"2005-10-27T21:53:20Z"
98,511
Bug 98511 Treeviewer doesn't de-select child when parent is closed
This bugs appears in Windows XP. It doesn't seem to occur in Linux. In the following sample code, do the following: 1) Open 'parent2' for example. 2) Click on 'child2'. It becomes selected (also reflected in the window on the right 3) Close 'parent2'. There is currently no selection. 4) Re-open 'parent2'. There is still no selection Repeat for 'parent3' When you close 'parent3', 'child3' remains selected. Re-open 'parent3' and 'child3' is still selected. The problem always happens with the last item in the tree. -------- Sample code follows ---------- import java.util.Arrays; import java.util.List; import org.eclipse.jface.viewers.ISelectionChangedListener; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.SelectionChangedEvent; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.window.ApplicationWindow; import org.eclipse.jface.window.Window; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.SashForm; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; public class TreeBug extends ApplicationWindow { /** * @param parentShell */ public TreeBug(final Shell parentShell) { super(parentShell); } @Override protected Control createContents(final Composite parent) { final SashForm sash = new SashForm(parent, SWT.HORIZONTAL | SWT.BORDER); final TreeViewer myViewer = new TreeViewer(sash); myViewer.setContentProvider(new TreeContentProvider()); final Composite main = new Composite(sash, 0); main.setLayout(new FillLayout()); sash.setWeights(new int[]{1, 2}); final Label label = new Label(main, SWT.CENTER); myViewer.addSelectionChangedListener(new ISelectionChangedListener(){ public void selectionChanged(SelectionChangedEvent event) { IStructuredSelection selection = (IStructuredSelection) event.getSelection(); Object newSelection = selection.getFirstElement(); label.setText(newSelection == null ? "" : newSelection.toString()); } }); myViewer.setInput(Arrays.asList(new String[]{"parent1", "parent2", "parent3"})); return sash; } /** * @param args */ public static void main(String[] args) { Window gui = new TreeBug(null); gui.setBlockOnOpen(true); System.out.printf("Return code from open is %d\n", gui.open()); } public class TreeContentProvider implements ITreeContentProvider { public Object[] getChildren(Object parentElement) { String s = (String) parentElement; char lastChar = s.charAt(s.length()-1); return new String[]{"child"+lastChar}; } public Object getParent(Object element) { String s = (String) element; if (s.startsWith("parent")) return null; char lastChar = s.charAt(s.length()-1); return new String[]{"parent"+lastChar}; } public boolean hasChildren(Object element) { String s = (String) element; if (s.startsWith("parent")) return true; return false; } public Object[] getElements(Object inputElement) { return ((List)inputElement).toArray(); } public void dispose() { } public void inputChanged(Viewer viewer, Object oldInput, Object newInput) { } } }
resolved fixed
448e367
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-28T20:58:59Z"
"2005-06-06T15:00:00Z"
111,303
Bug 111303 Cannot middle-button paste to rxvt from Eclipse
Some applications can only deal with XA_STRING when reading from the primary clipboard. Currently, Eclipse only privides UTF8_STRING and COMPOUND_TEXT results. A notable broken example is rxvt, another is xclip, and yet another is eterm. All of these applications only handle the STRING type for middle-button paste. The attached patch addresses this problem.
resolved fixed
31c97db
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-28T20:03:59Z"
"2005-10-02T16:20:00Z"
88,724
Bug 88724 Provide 'since' javadoc in snippets
It would be a useful additional information in some snippets if there were an @since javadoc tag that tells from which version on the snippet will work. For instance, snippet 175 works only from Eclipse 3.1 on, since it uses the GridData.exclude field which was introduced in 3.1
resolved fixed
8e56b85
["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet10.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet118.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet119.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet120.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet122.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet128.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet129.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet131.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet134.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet135.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet136.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet137.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet138.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet142.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet143.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet144.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet145.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet146.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet148.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet150.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet151.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet152.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet154.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet155.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet157.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet159.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet160.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet161.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet165.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet166.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet168.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet170.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet171.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet172.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet173.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet174.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet175.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet176.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet177.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet180.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet181.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet182.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet183.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet184.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet188.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet189.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet190.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet192.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet193.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet195.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet197.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet198.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet2.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet200.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet201.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet25.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet6.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet62.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet79.java", "examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet82.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-26T22:15:05Z"
"2005-03-22T11:13:20Z"
113,895
Bug 113895 pango_layout_context_changed called too often
StyledTextRenderer often updates the tab size of the layouts cached by DisplayRenderer, even though they usually don't change. Each time this is called, it now triggers a call to pango_layout_context_changed() which invalidates pango's line cache. This causes pango to do a lot of work. A possible fix is to only update the tab sizes in pango if they have actually changed.
resolved fixed
cea50da
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-26T20:51:34Z"
"2005-10-26T20:53:20Z"
113,172
Bug 113172 SWT Label widget trancates the text if it contains a long word
null
resolved fixed
a456d1e
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Label.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-26T16:52:00Z"
"2005-10-19T22:13:20Z"
87,883
Bug 87883 Remove title bar buttons from application-modal dialogs on Mac
null
resolved fixed
1f2cbbd
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-25T17:08:47Z"
"2005-03-13T18:53:20Z"
101,331
Bug 101331 GC.drawFocus not implemented on the Mac
We need to somehow use DrawThemeFocusRect() or find the equivalent Core Graphics call.
resolved fixed
8f7aad6
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-24T22:19:20Z"
"2005-06-22T19:53:20Z"
100,035
Bug 100035 Eclipse loses its dock icon when dock restarted
3.1RC2 The MacOS X dock crashed or restarted for some reason on my Mac laptop. When it reappeared, the icon for Eclipse in the dock and alt-tab list changed to being a boring black "exec" window.
resolved fixed
44de4d9
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-24T21:15:48Z"
"2005-06-14T17:26:40Z"
34,612
Bug 34612 scroll problem in tree, table, and list
RC2 - open a Java Editor on some non-empty Java file - use Ctrl+O (Show Outline) -> even if the tree is so small that it fits into the widget it has vertical and horizontal scroll bars -> you can scroll the tree completely out of the visible area Closing the outline with ESC makes it reproducible.
resolved fixed
25da20b
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-24T19:01:51Z"
"2003-03-11T16:26:40Z"
76,804
Bug 76804 Improve SWT performance over GTK window system
There are several places in SWT over GTK that may be improved w.r.t performance. I am going to attach a document describing such places and suggested improvements for them. I would like community to review the rpoposal, comment on it and add other problems that relate to the subject if any. Once modification proposals are finilized and approved our team would like to implement it in SWT 3.1.
resolved fixed
365d9e3
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/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/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Group.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/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/Scale.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Slider.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Spinner.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/TabItem.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/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TrayItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.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
"2005-10-24T15:27:23Z"
"2004-10-22T13:00:00Z"
113,485
Bug 113485 Don't flush X exposes for a SMOOTH Sash
For a Sash that uses SWT.SMOOTH, we don't need to flush the Expose events from the X server since we do no XOR drawing. This will also make view resizing smoother since we won't keep waiting for the X server. I tried this change and I like the effects, however it may show some temporary artifacts during resizing that may be more objectionable than the old behaviour in some configurations. I would like to make this change now to get feedback.
resolved fixed
342e38d
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-23T20:38:55Z"
"2005-10-23T20:40:00Z"
41,466
Bug 41466 Panther: Check and Radio ToolItems don't use correct look
I20030806 Panther (10.3, 7B28) see attached screenshot
resolved fixed
a33b627
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-21T17:48:00Z"
"2003-08-13T10:20:00Z"
68,657
Bug 68657 JUnit test fails for Image.setBackground
In 3.0 RC4: test_setBackgroundLorg_eclipse_swt_graphics_Color(org.eclipse.swt.tests.junit.Test_org_eclipse_swt_gr aphics_Image) junit.framework.AssertionFailedError: background color should have been set to green expected:<Color {0, 255, 0}> but was:<null> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.test_setBackgroundLorg_eclipse_swt_gr aphics_Color(Test_org_eclipse_swt_graphics_Image.java:403) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.runTest(Test_org_eclipse_swt_graphics _Image.java:470) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
resolved fixed
7f9dc81
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Image.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-20T19:38:11Z"
"2004-06-25T19:00:00Z"
113,100
Bug 113100 Button size test failures in org.eclipse.ui.tests
Test failures have appeared in org.eclipse.ui.tests on MacOS X. The test failures all seem to deal with button sizing issues. These failures started appearing in I20051018-0800, and have continued into N20051019-0010. Note that several builds worth of MacOS X tests leading up I20051018-0800 didn't run. There were network issues.
resolved fixed
4d7280c
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-20T16:12:55Z"
"2005-10-19T16:40:00Z"
51,736
Bug 51736 [JUnit] TreeItem test cases failing
I20040210 - candidate for M7 - on Panther The following test cases are failing: setSelection(int) setTopItem(TreeItem)
resolved fixed
a5a369c
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/AllCarbonTests.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-20T14:47:06Z"
"2004-02-11T20:06:40Z"
112,116
Bug 112116 Antialiasing causes incorrect drawing
Using Cairo 1.0 and SWT 3.2M2, antialiasing causes incorrect drawing in some situations. It appears things are drawn when moving the raster when it should not actually be in a draw operation. The attached image and code describe this better than I could here in words.
resolved fixed
4d9fbf0
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-20T02:57:11Z"
"2005-10-10T16:00:00Z"
100,696
Bug 100696 Keyboard fails on MacOS X
Sometimes the keyboard input just stops working in eclipse. It has happened at least three times. The mouse still works, and the keyboard works in other applications. Usually quiting and restarting fixes the problem, but not always.
resolved fixed
8254e52
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-19T19:56:11Z"
"2005-06-18T02:00:00Z"
109,951
Bug 109951 Mac: Menu Highlight Cheese
null
resolved fixed
b735777
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-19T16:21:41Z"
"2005-09-20T01:33:20Z"
112,403
Bug 112403 window dimensions are tiny
jdk 1.5 (64-bit) I20051011 gtk (64-bit) linux-amd64 when trying to start eclipse, all windows that come up are only a few pixels wide/high, regardless of what the size the window was when closing. this is a blocker because the 'select workspace' dialog is not resizable. since you can't select a workspace, eclipse won't start.
resolved fixed
8684eb7
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-19T16:14:17Z"
"2005-10-12T20:46:40Z"
109,952
Bug 109952 Mac: Menu Cleared After Shell Restored From Dock
null
resolved fixed
8188a5d
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-19T16:07:55Z"
"2005-09-20T04:20:00Z"
102,088
Bug 102088 Text with CENTER has too much logical space
3.1 - run the snippet below - the Text shows a horizontal scrollbar that's scrolled to the end, even though the string does not exceed the width of the Text widget - there's also a small strip of cheese near the left edge of the horizontal scrollbar public static void main (String[] args) { String string = "The quick brown fox jumped over the lazy dog.\nOne two three"; final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,400,300); Text text = new Text(shell, SWT.MULTI | SWT.CENTER | SWT.H_SCROLL); text.setBounds(10,10,380,100); text.setText(string); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
85f1fc5
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-18T18:48:10Z"
"2005-06-28T20:20:00Z"
94,370
Bug 94370 SWT crashes with KERN_PROTECTION_FAILURE on mac
I wrote a small SWT stand alone program which crashes every time on MacOS X. The same program work flawlessly on Microsoft Windows platforms. To recreate, run the test program, resize the window that appears, wait a few seconds and then you will get the fatal exception.
resolved fixed
60a9b02
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GCData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-18T16:50:08Z"
"2005-05-10T15:46:40Z"
109,215
Bug 109215 Moveable table column and DND feedback clash on MacOS X
null
resolved fixed
7afad41
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-18T15:53:36Z"
"2005-09-09T23:53:20Z"
89,687
Bug 89687 computeSize(-1, -1) wrong for Text with SWT.Wrap.
Eclipse 3.1 M6 Run the ControlExample and go to the Text tab. Make the size 50 by 50. Now make the size Preferred. The preferred size of the text seems to be based on its current size. The preferred default size should just be one line.
resolved fixed
45c66a5
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-17T22:12:58Z"
"2005-03-30T22:00:00Z"
111,910
Bug 111910 Regression: Empty unusable dialogs on Redhat 8+9 / gtk-2.0.6-8
On Redhat Linux 8 with the default GTK version (gtk2-2.0.6-8 and gtk+-1.2.10-22), most dialogs that directly derive from org.eclipse.jface.Dialog remain empty (gray on gray). For instance, this affects the "Filter Markers" dialog which is available from the Problems or Tasks view when pressing the filter button and also some dialogs in the Preferences. This is a regression since Eclipse-3.1. It worked OK in Eclipse-3.0.1 as well as 3.0.2. By investigation it turned out that when a dialog is marked resizeable, the bug does not appear. Therefore, a valid workaround is to change the constructor of org.eclipse.jface.Dialog such that setShellStyle() includes the SWT.RESIZE flag: setShellStyle(SWT.RESIZE | SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL | getDefaultOrientation()); We suspect, however, that a correct fix must be made somewhere else, since with Eclipse-3.1 or later on Redhat 8 another problem is that most dialogs are not correctly sized on open. They always appear in a default size, which is pretty large, so that dialogs with only little content look bad. This affects the startup progress monitor, all other progress monitors, the startup workspace selection dialog, and all "simple" dialogs. It does not affect wizards, Preferences, TitleAreaDialogs and other complex dialogs. The same problem with empty dialogs appears on Redhat9 with GTK 2.0.6-8. I'm marking severity as "major" since this problem makes Eclipse-3.1 unusable on Redhat8 and 9, and there are Eclipse users (Nortel) which cannot upgrade to newer gtk due to other software or company restrictions.
resolved fixed
66bca6c
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-14T16:02:02Z"
"2005-10-07T15:46:40Z"
57,723
Bug 57723 BIDI: StyledText bug when changing the color of bold text
In the Text Editor example included in the SWT examples, write the Arabic word UNEi. Double click the word to select it. Make it bold, then change its color. The last letter appears unshaped.
resolved fixed
8e45647
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-13T21:21:00Z"
"2004-04-07T12:13:20Z"
102,525
Bug 102525 Button in a toolbar not sized correctly
null
resolved fixed
c897ae2
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-12T20:38:25Z"
"2005-07-01T20:33:20Z"
112,336
Bug 112336 StyledText is still misbehaving
As followup to the breakage in yesterdays I-build, StyledText is still doing the jitterbug but it's no longer resulting in crashes. The cursor will occasionally dance around, particularly when backspacing. Despite being visibly placed in one spot, the deletion occurs at what I expect to be the correct position. Hitting enter seems to reset the cursor to the correct position.
resolved fixed
f873a5e
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-12T20:36:10Z"
"2005-10-12T15:13:20Z"
104,041
Bug 104041 [browser]browser.execute() fails when Acrobat Reader v7 is displayed in browser
I have a pdf document which I am displaying in the browser. Then, to print the contents of the browser I do browser.execute("window.print()"); The above works fine for Acrobat Reader v5, but throws a NullPointerException for Acrobat Reader v7. After debugging, I found that it cannot find the value of "parentWindow" for some reason. Therefore, not only printing, but ANY javascript passed in to execute method will throw a NullPointerException. Thanx, - Kalman
resolved fixed
1fcac31
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/Browser.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-12T13:41:33Z"
"2005-07-15T17:53:20Z"
111,762
Bug 111762 JVM dump in SWT native method
I had eclipse-SDK-N20051006-0010-linux-gtk.tar.gz running on gtk2-2.4.13-14 in gnome-desktop-2.8.0-3 I had done some compiles and cleans, fixed some errors, closed all editors in the java perspective, and then I did CTRL+SHIFT+T and it cored. I'll attached the stack trace. PW
resolved fixed
c99d8d5
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-06T14:58:57Z"
"2005-10-06T12:00:00Z"
93,763
Bug 93763 Clicking on the button frame does not activate toolitem's drop down
For toolitems created with SWT.DROP_DOWN, the menu appears if the click occurs within the bounds of the arrow itself. However, these bounds do not include the right hand side of the button frame. I hit this a lot in eclipse, where I'd like to open the menu for the Run toolitem, but I end up launching the last application instead. The attached patch modifies the bounds checking to count the frame as being part of the arrow's area.
resolved fixed
9aa71ec
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-05T22:22:34Z"
"2005-05-05T02:26:40Z"
71,348
Bug 71348 Can't listen Excel events
use the following code,I can't listen Excel events.But The same way use to "word.document",it's successful. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); OleFrame frame = new OleFrame(shell,SWT.NONE); shell.setLayout(new GridLayout()); frame.setLayoutData(new GridData(GridData.FILL_HORIZONTAL | GridData.FILL_VERTICAL)); OleControlSite site = new OleControlSite(frame,SWT.NONE,"Excel.Sheet"); OleAutomation doc = new OleAutomation(site); int [] dispInfo = doc.getIDsOfNames(new String[] {"Application"}); System.out.println(dispInfo[0]); Variant variant = doc.getProperty(dispInfo[0]); OleAutomation app = variant.getAutomation(); variant.dispose(); int WorkbookBeforeSave= 0x00000623; site.addEventListener(app,WorkbookBeforeSave,new OleListener() { public void handleEvent(OleEvent event) { System.out.println("event"); } }); site.doVerb(OLE.OLEIVERB_OPEN); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } app.dispose(); } }
resolved fixed
1ca19e7
["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-05T18:32:15Z"
"2004-08-04T06:13:20Z"
110,346
Bug 110346 Text widget does not trigger SWT.DefaultSelection events on Return or Enter
M2 Text widget does not trigger SWT.DefaultSelection events on Return or Enter To reproduce: use ControlExample
resolved fixed
9690379
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Sash.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/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-05T17:31:10Z"
"2005-09-22T17:26:40Z"
111,322
Bug 111322 Tab Folder Style TOP does not work
Since release 3.1 incl 3.1.1 the style TOP does not work any longer. Easy to reproduce w "new TabFolder(parent, SWT.TOP)"
resolved fixed
5489602
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-05T02:20:37Z"
"2005-10-03T11:46:40Z"
110,923
Bug 110923 TableItem.setImage does not redraw the item
In a Table with multiple columns I'm trying to display some images. When setting an image to null in a table column other than the first, the item is not redrawn, ie the image that has been visible before will not be cleared. The changes to the item is visible only after covering the application with another window and revealing it again (or minimizing and restoring the window). Here is a snippet that reproduces the issue on my Windows XP box with 3.1 SWT (Start the application, you will see a 2x2 table with 4 blue squares. Pressing the button calls setImage(0,null) and setImage(1,null) on the first row of the table. The expected result is that the two blue boxes vanish in the first row. In fact, only the first box vanishes; the second box is still visible. It can be made to vanish if you temporarily hide the table with some other window): package snippets; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; public class SnippetTableProblem { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); final Table table = new Table(shell, SWT.NONE); final TableItem item1 = new TableItem(table, SWT.NONE); final TableItem item2 = new TableItem(table, SWT.NONE); new TableColumn(table, SWT.NONE).setWidth(50); new TableColumn(table, SWT.NONE).setWidth(50); Image image = new Image(display, 16, 16); GC gc = new GC(image); gc.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); gc.fillRectangle(0, 0, 16, 16); item1.setImage(0, image); item2.setImage(0, image); item1.setImage(1, image); item2.setImage(1, image); Button button = new Button(shell, SWT.PUSH); button.setText("Remove images"); button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { item1.setImage(0, null); item1.setImage(1, null); } }); table.setSize(100, 100); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } image.dispose(); display.dispose(); } }
resolved fixed
9146e79
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-05T01:05:04Z"
"2005-09-28T12:20:00Z"
51,480
Bug 51480 JUnit tests for Browser are printing to console
null
resolved fixed
619e55d
["tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Image.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser1.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser2.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser3.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser4.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser5.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser6.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser7.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser8.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Browser9.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/browser/Test_BrowserSuite.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-04T21:05:50Z"
"2004-02-10T16:20:00Z"
110,342
Bug 110342 SWT Example Launcher: Double-click on "Standalone" folder produces a "Could not instantiate the class to run" log
Build: Eclipse 3.1 I20050627-1435 Platform: Solaris GTK Steps: - Install Eclipse 3.1 with SWT Examples - From Eclipse workbench, go to Window -> Show View -> Other ... - Expand SWT Examples and select SWT Example Launcher. Click OK. - From the SWT Example Launcher view, double-click the "Standalone" folder (under Examples) to open it. The following error log is created: !ENTRY org.eclipse.swt.examples.launcher 4 0 2005-09-22 12:00:56.675 !MESSAGE Could not instantiate the class to run. !STACK 1 org.eclipse.core.runtime.CoreException: Executable extension definition for "mainClass" not found. at org.eclipse.core.internal.registry.ConfigurationElement.throwException (ConfigurationElement.java:192) at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtensio n(ConfigurationElement.java:108) at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableEx tension(ConfigurationElementHandle.java:48) at org.eclipse.swt.examples.launcher.ItemDescriptor.createItemInstance (ItemDescriptor.java:62) at org.eclipse.swt.examples.launcher.LauncherView.launchItem (LauncherView.java:186) at org.eclipse.swt.examples.launcher.LauncherView.access$2 (LauncherView.java:169) at org.eclipse.swt.examples.launcher.LauncherView$1.widgetDefaultSelected (LauncherView.java:69) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:97) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2867) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2572) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:367) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:163) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) !SUBENTRY 1 org.eclipse.core.runtime 4 1 2005-09-22 12:00:56.677 !MESSAGE Executable extension definition for "mainClass" not found.
resolved fixed
5f1d51a
["examples/org.eclipse.swt.examples.launcher/src/org/eclipse/swt/examples/launcher/LauncherView.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-03T20:28:03Z"
"2005-09-22T17:26:40Z"
109,341
Bug 109341 Update the desc doc process
Update the description document process document ("Writing description documents") to reflect that the RG needs a description but not a sizing, and that the AG requires the sizing.
closed fixed
0577307
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-03T18:41:01Z"
"2005-09-12T21:20:00Z"
111,157
Bug 111157 TreeItem.setBackground doesn't work
SWT Win32 - 3206 (3.2M2) 1. Setting a treeItem's background only sets column 0, unlike a tableItem which sets all columns. (setBackground(Color)) 2. Setting a treeItem's column background (setBackground(int,Color)) doesn't seem to do anything. public static void main(String[] a) { Display display = new Display(); Shell shell = new Shell(display); shell.setText(SWT.getPlatform() + " - " + SWT.getVersion()); shell.setLayout(new FillLayout()); Table table = new Table(shell, SWT.H_SCROLL | SWT.FULL_SELECTION); table.setHeaderVisible(true); table.setLinesVisible(true); for (int i = 0; i < 3; i++) { new TableColumn(table, SWT.NONE).setWidth(100); } for (int i = 0; i < 10; i++) { TableItem ti = new TableItem(table, SWT.NONE); ti.setText(1, "Right Click Me!"); ti.setBackground(table.getDisplay().getSystemColor(SWT.COLOR_RED)); if (i % 2 == 0) ti.setBackground(1, table.getDisplay().getSystemColor(SWT.COLOR_RED)); } Tree tree = new Tree(shell, SWT.H_SCROLL | SWT.FULL_SELECTION); tree.setHeaderVisible(true); tree.setLinesVisible(true); for (int i = 0; i < 3; i++) { new TreeColumn(tree, SWT.NONE).setWidth(100); } for (int i = 0; i < 10; i++) { TreeItem ti = new TreeItem(tree, SWT.NONE); ti.setText(1, "Right Click Me!"); ti.setBackground(tree.getDisplay().getSystemColor(SWT.COLOR_RED)); if (i % 2 == 0) ti.setBackground(1, tree.getDisplay().getSystemColor(SWT.COLOR_RED)); } shell.setBounds(50, 50, 600, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
bb4ebb4
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-03T18:00:51Z"
"2005-09-29T21:40:00Z"
111,284
Bug 111284 Crash in TreeSelection - Event
null
resolved fixed
9d77c02
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-10-01T15:09:29Z"
"2005-10-01T12:33:20Z"
88,958
Bug 88958 DirectoryDialog and FileDialog bring CPU utilization to 100%
It seems that this fix for 76195 creates problems is Eclipse 3.1. When I open DierectoryDialog and there are pending asyncExecs the dialog keeps receiving WM_ENTERIDLE events and that brings the CPU utilization to 100%. That makes the DiarctoryDialog node expanding extremely slow, almost impossible to use.
resolved fixed
7498f88
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FileDialog.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/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-30T16:47:53Z"
"2005-03-23T23:20:00Z"
103,894
Bug 103894 browser fail to hyper link to another page
null
resolved fixed
66b5bac
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-30T15:31:39Z"
"2005-07-14T19:40:00Z"
110,949
Bug 110949 link error in GC.setClipping(x, y, w, h) on pocket pc
Calling GC.setClipping(x, y, w, h) on pocket pc, using dll 3206, throws a link error. This seriously hobbles one of our custom widgets.
resolved fixed
f06b65a
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-29T20:28:52Z"
"2005-09-28T15:06:40Z"
98,296
Bug 98296 Browser in BrowserExample opens too small
3.1RC1 - run the BrowserExample and the Browser opens as a pinhead - resize the parent shell and the Browser grows to its correct size
resolved fixed
7858358
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-29T20:19:52Z"
"2005-06-03T14:46:40Z"
110,824
Bug 110824 Trying to create launch config results in StackOverflowError
I was working with last night's build on Linux-GTK, and trying to create a launch configuration causes a StackOverflowError. Steps: 1. I checked out the platform-ui and platform-ui-tests modules 2. Go to the Run icon triangle and select "Run..." from the dropdown it goes away, and then pops up an error saying you better exit the workbench. I've included the .log, but it's not very useful :-) !SESSION 2005-09-27 10:54:20.899 ----------------------------------------------- eclipse.buildId=N20050927-0010 java.version=1.4.2_08 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 !ENTRY org.eclipse.ui 4 4 2005-09-27 11:51:03.172 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 2005-09-27 11:51:03.186 !MESSAGE java.lang.StackOverflowError !STACK 0 java.lang.StackOverflowError PW
resolved fixed
10f885d
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-28T18:06:38Z"
"2005-09-27T16:53:20Z"
33,979
Bug 33979 visitor pattern
It would be nice to have a visitor pattern implementation to be able to traverse a given schema. As in most Abstract Syntax Trees it is very useful to be able to traverse them without the need for "instanceof".
verified fixed
06c0901
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-27T19:33:05Z"
"2003-03-06T14:13:20Z"
110,767
Bug 110767 java.lang.NoSuchMethodError: XErrorProc when setting Display into debug mode on Linux/GTK x86-64-bit
The code: DeviceData data = new DeviceData(); data.debug = true; Display display = new Display(data); Generates: Exception in thread "main" java.lang.NoSuchMethodError: XErrorProc at org.eclipse.swt.internal.Callback.bind(Native Method) at org.eclipse.swt.internal.Callback.<init>(Callback.java:123) at org.eclipse.swt.internal.Callback.<init>(Callback.java:78) at org.eclipse.swt.internal.Callback.<init>(Callback.java:60) at org.eclipse.swt.graphics.Device.init(Device.java:540) at org.eclipse.swt.widgets.Display.init(Display.java:2027) at org.eclipse.swt.graphics.Device.<init>(Device.java:142) at org.eclipse.swt.widgets.Display.<init>(Display.java:429) at SVGBadMatchTester.run(SVGBadMatchTester.java:63) at SVGBadMatchTester.main(SVGBadMatchTester.java:56) When I look at the swt jar itself, I see: static int XErrorProc(int xDisplay, int xErrorEvent) But when I look closer at the code in org.eclipse.swt.internal.Callback, it looks like these 2 parameters are intended to be pointers. So I think the reason it is getting the error, is that it is looking for XErrorProc(long xDisplay, long xErrorEvent), which would be appropriate for 64-bit, and not finding it. The error does not occur in the 32-bit version
resolved fixed
eecf444
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Device.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-27T16:50:45Z"
"2005-09-27T08:33:20Z"
110,753
Bug 110753 gdk_region_get_rectangles leaks
gdk_region_get_rectangles() requires that the returned array be freed with g_free(). This was missed in GC.setTransform() and GC.drawImageXRender().
resolved fixed
3e9b199
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-27T02:35:57Z"
"2005-09-27T03:00:00Z"
108,949
Bug 108949 [browser] javascript alerts are not shown
null
resolved fixed
ed0168a
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/PromptService.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/mozilla/org/eclipse/swt/browser/PromptService.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-23T18:50:35Z"
"2005-09-07T16:20:00Z"
110,432
Bug 110432 atk_object_factory_create_accessible errors
Running Eclipse with SWT from HEAD I get these errors all over the place. I am using atk 1.9.1 and GTK+ 2.6.7. I also saw the same errors at home with atk 1.10.1 and GTK+ 2.6.10. ** (Gecko:18693): CRITICAL **: atk_object_factory_create_accessible: assertion `ATK_IS_OBJECT_FACTORY (factory)' failed
resolved fixed
ee3df50
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-23T14:44:09Z"
"2005-09-23T12:53:20Z"
104,407
Bug 104407 Right click on Tree does not honor the SWT.FULL_SELECTION style
null
resolved fixed
9468047
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-22T23:57:03Z"
"2005-07-19T21:53:20Z"
100,363
Bug 100363 Spinner: getSelection() during modify event should return new value (enable dynamic behaviour)
null
resolved fixed
0168d04
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Spinner.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-22T22:39:57Z"
"2005-06-16T11:06:40Z"
50,646
Bug 50646 CTabFolder tooltips are not read out
M6 gnopernicus is not reading out CTabFolder tooltips properly because they're faked. It simply says "Hide/Restore window". Tried: - adding accessible listeners to the tip shell and its contained label - removing ON_TOP from tip shell creation - giving focus to contained label when shown
resolved fixed
da6d7c2
["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/accessibility/gtk/ATK.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-22T20:08:18Z"
"2004-01-26T23:33:20Z"
108,921
Bug 108921 Tree with lines visible not painted correctly
Background: I used the TableTree in my application up to now. Since it is marked as deprecated in Eclipse 3.1, I tried to replace it with the tree widget using columns. When using columns in the Tree widget with setLinesVisible(true), not all lines are painted as in the old TableTree. Only the lines of rows with content are shown, but not those lines of rows with no content. Furthermore the lines are totally invisible while rearraning the size of a column. In my opinion the lines should be always shown in the widget if setLinesVisible is set to true.
resolved fixed
397136f
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-21T21:10:21Z"
"2005-09-07T13:33:20Z"
110,057
Bug 110057 [browser] crash whenever a Browser is disposed
3.2M2 test build (does not happen on linux-gtk) - run eclipse - open the javadoc view - close it by pressing the 'X' on its tab, and eclipse will shut down with the error message below - this problem has appeared as a side effect of M2 work that changed the order of things that are done at dispose time (in an effort to keep widgets 'valid' during dispose callbacks) sh-3.00$ The program '<unknown>' received an X Window System error. This probably reflects a bug in the program. The error was 'BadWindow (invalid Window parameter)'. (Details: serial 19210 error_code 3 request_code 10 minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.)
resolved fixed
d5acf87
["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-21T20:14:20Z"
"2005-09-20T15:26:40Z"
110,073
Bug 110073 perspective button goes blank after closing perspective
3.2M2 observed on linux-motif and hpux, but not on gtk, so appears to be swt problem - drag the CBanner's separator to ~ the 50% mark - press its "Open Perspective" button, switch to the Debug perspective - after the perspective switch is done, right-click the Debug button in the CBanner and select Close - this returns you to the previous perspective, but its button in the CBanner now appears blank - will attach screenshot next
resolved fixed
dfa24e6
["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ToolItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-09-21T18:16:24Z"
"2005-09-20T18:13:20Z"