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
90,366
Bug 90366 SWT Link Widget throws Array Out of Bounds Exception
Using Eclipse 3.1m5a creating a Link Widget and setting the text property to a string less than 4 characters causes an Array Out of Bounds Exception. This is because in the parse(String s) method called by setText(String s) there is a divide by 4 without first checking to see if the string is at least 4 characters long. The JavaDocs are not overly clear on the intention of a Link Widget, but it would seem that any string (including one without any anchored links) is allowed to be set as the text. Therefore the setText method should allow 1-3 letter strings (i.e. foo).
closed fixed
5ea8a8c
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-04-06T21:02:37Z"
"2005-04-05T19:40:00Z"
90,176
Bug 90176 Scale widget and SWT.PAGE_UP key event
A horizontal Scale widget increments it's selection value on SWT.PAGE_DOWN and decrements on SWT.PAGE_UP. This is the reverse of what's supposed to happen on Windows XP.
resolved fixed
f7f4d8e
["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/Scale.java", "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-04-06T19:25:54Z"
"2005-04-04T15:53:20Z"
90,223
Bug 90223 Regression: Spinner reports wrong value
SWT-win32, v3128 (3.1M6) Run the snippet below. Press the down button of the spinner widget. Even though the visible value is now 99, getSelection() reports a value of 100 when called from within the modify listener attached to the spinner. In v3127, the correct value (99) was returned. --- import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class SpinnerTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); final Spinner spin = new Spinner(shell, SWT.BORDER); spin.setSelection(100); spin.addModifyListener(new ModifyListener() { public void modifyText(ModifyEvent e) { System.out.println("Selection=" + spin.getSelection()); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
resolved fixed
3e73080
["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-04-06T18:30:24Z"
"2005-04-04T21:26:40Z"
87,837
Bug 87837 Strange redraw and disabled behaviour with SWT.CHECK toolitems with and without disabled icons set.
null
resolved fixed
6f6216d
["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-04-05T20:13:02Z"
"2005-03-11T22:26:40Z"
81,263
Bug 81263 [CustomControlExample] CCombo caret moves at random when up and down arrows are press
It correctly move to the previous and next item in the list but the caret is also repositioned. For example, move the caret to the end, hit up arrow and the caret moves back by one character and stays there for subsequent up arrows.
resolved fixed
8ee5446
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-04-05T18:16:27Z"
"2004-12-15T17:00:00Z"
85,117
Bug 85117 Selected and disabled tool item looks enabled
Version: 3.1.0 Build id: I20050209-0800 manifest on comctrl version: 5.82.2800.1106 When you disable a tool image what is selected it appears as enabled with a stippled background. I expected it to appear greyed out like unselected/disabled items. From the sync view: 1. select outgoing mode 2. enable change sets 3. select conflicts mode 4. Observe the change sets button looks enabled (see screenshot) I will create a snippet when i get a chance.
resolved fixed
8038ca7
["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-04-05T17:47:17Z"
"2005-02-14T03:00:00Z"
79,881
Bug 79881 Browser class shipped with AIX-Motif checks for Linux ?!?
I've recently downloaded the AIX-Motif version of the eclipse and tried to run my plugin only to see it fail with "no more handles" error. Checking the error I've discovered that the Browser class c'tor does: public Browser(Composite parent, int style) { super(parent,style | SWT.EMBEDDED); if (!IsLinux) { dispose(); SWT.error(SWT.ERROR_NO_HANDLES); } .... Being on AIX this code will always fail. If a Browser class exists for AIX the file should be replaced in the packages available for download. If not, at least change the message to "not supported" at least. "no more handles" was an extremly puzzling error ...
resolved fixed
2041bb3
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/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-04-04T22:41:31Z"
"2004-12-01T16:53:20Z"
85,530
Bug 85530 Control in vertical ToolBar doesn't fit
- observed on win32, solaris-motif and solaris-gtk (kindof), so this should probably be tried everywhere - run the ControlExample, go to the ToolBar tab - turn on the Combo Child checkbox - select the SWT.VERTICAL radio - you'll end up with something like the attachment (there are supposed to be 7 full toolitems before the Combo, but only about 6.1 of them are shown)
resolved fixed
e821632
["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-04-04T21:45:30Z"
"2005-02-16T18:53:20Z"
90,018
Bug 90018 Native tooltips left around on CTabFolder
Hover over the PartStack CTabFolder inside eclipse until some native tooltip is displayed. For example, the maximize button. When the tooltip appears, change perspectives using the keybinding. the CTabFolder gets hidden, but its tooltip is permanently displayed and never goes away. Even if that CTabFolder is disposed (I'm assuming) when the perspective is closed.
resolved fixed
0d6dac4
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-04-04T20:28:14Z"
"2005-04-01T18:26:40Z"
89,885
Bug 89885 Crash using command-O.
- open a Java editor - select Command-o - after the outline popup opens, click on the editor - notice that the outline doesn't go away - now click back on the outline view - VM crash. Verified that this happens on Mac, but not on Windows.
verified fixed
bd25356
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-31T21:38:34Z"
"2005-03-31T20:13:20Z"
75,317
Bug 75317 [Browser] Location not browsed when URL misses protocol / www
null
resolved fixed
28319d0
["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-03-31T20:58:18Z"
"2004-09-29T17:46:40Z"
89,665
Bug 89665 VM terminated when switching page in the Plugin manifest editor
build Version: 3.1.0 Build id: I20050330-0500 steps - create a plug-in project (use the sample view example) - switch to the "Extensions" page - crashes An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x4D9C074D Function=(null)+0x4D9C074D Library=/usr/lib/libgtk-x11-2.0.so.0 NOTE: We are unable to locate the function name symbol for the error just occurred. Please refer to release documentation for possible reason and solutions. Current Java thread: at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4703) at org.eclipse.swt.widgets.Display.eventProc(Display.java:942) at org.eclipse.swt.internal.gtk.OS._gtk_tree_view_set_cursor(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_tree_view_set_cursor(OS.java:6711) at org.eclipse.swt.widgets.Tree.setSelection(Tree.java:1844) at org.eclipse.jface.viewers.TreeViewer.setSelection(TreeViewer.java:566) at org.eclipse.jface.viewers.AbstractTreeViewer.setSelectionToWidget(AbstractTreeViewe r.java:1505) at org.eclipse.jface.viewers.StructuredViewer.setSelectionToWidget(StructuredViewer.ja va:1401) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.jav a:1115) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:8 74) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:248) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1324) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionsSection.refresh(ExtensionsSecti on.java:524) at org.eclipse.ui.forms.ManagedForm.doRefresh(ManagedForm.java:178) at org.eclipse.ui.forms.ManagedForm.refresh(ManagedForm.java:163) at org.eclipse.ui.forms.editor.FormPage.setActive(FormPage.java:125) at org.eclipse.ui.forms.editor.FormEditor.pageChange(FormEditor.java:391) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.pageChange(PDEFormEditor.java:230) at org.eclipse.ui.part.MultiPageEditorPart$2.widgetSelected(MultiPageEditorPart.java:2 00) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:891) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3141) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1925) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:287) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2778) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2472) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:22 8) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:338) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:151) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:2 5) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871) Dynamic libraries: 08048000-0804e000 r-xp 00000000 03:06 2066189 /home/mvanmeek/jdk1.4.2_01/jre/bin/java 0804e000-0804f000 rw-p 00005000 03:06 2066189 /home/mvanmeek/jdk1.4.2_01/jre/bin/java 40000000-40015000 r-xp 00000000 03:06 1081365 /lib/ld-2.3.2.so 40015000-40016000 rw-p 00014000 03:06 1081365 /lib/ld-2.3.2.so 40017000-4001f000 r-xp 00000000 03:06 788237 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/nativ e_threads/libhpi.so 4001f000-40020000 rw-p 00007000 03:06 788237 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/nativ e_threads/libhpi.so 40020000-40024000 rw-s 00000000 03:06 1264335 /tmp/hsperfdata_mvanmeek/11503 40024000-40025000 r--p 0092f000 03:06 426719 /usr/lib/locale/locale-archive 40025000-40028000 r--s 00000000 03:06 591631 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/dnsns. jar 40028000-40029000 r--s 00000000 03:06 1198755 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench.compatibility_3.1.0/compatibility.jar 40029000-40033000 r-xp 00000000 03:06 1786602 /lib/tls/libpthread-0.29.so 40033000-40034000 rw-p 0000a000 03:06 1786602 /lib/tls/libpthread-0.29.so 40036000-40038000 r-xp 00000000 03:06 1081382 /lib/libdl-2.3.2.so 40038000-40039000 rw-p 00002000 03:06 1081382 /lib/libdl-2.3.2.so 4003a000-40434000 r-xp 00000000 03:06 853774 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/clien t/libjvm.so 40434000-40450000 rw-p 003f9000 03:06 853774 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/clien t/libjvm.so 40462000-40474000 r-xp 00000000 03:06 1081386 /lib/libnsl-2.3.2.so 40474000-40475000 rw-p 00011000 03:06 1081386 /lib/libnsl-2.3.2.so 40477000-40498000 r-xp 00000000 03:06 1786600 /lib/tls/libm-2.3.2.so 40498000-40499000 rw-p 00020000 03:06 1786600 /lib/tls/libm-2.3.2.so 40499000-404a9000 r-xp 00000000 03:06 935695 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libve rify.so 404a9000-404ab000 rw-p 0000f000 03:06 935695 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libve rify.so 404ab000-404b6000 r-xp 00000000 03:06 1081403 /lib/libnss_files-2.3.2.so 404b6000-404b7000 rw-p 0000a000 03:06 1081403 /lib/libnss_files-2.3.2.so 404b7000-404d7000 r-xp 00000000 03:06 935696 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libja va.so 404d7000-404d9000 rw-p 0001f000 03:06 935696 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libja va.so 404d9000-404ed000 r-xp 00000000 03:06 935698 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libzi p.so 404ed000-404f0000 rw-p 00013000 03:06 935698 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libzi p.so 404f0000-41e88000 r--s 00000000 03:06 1623854 /home/mvanmeek/jdk1.4.2_01/jre/lib/rt.jar 41ed2000-41ee8000 r--s 00000000 03:06 1623821 /home/mvanmeek/jdk1.4.2_01/jre/lib/sunrsasign .jar 41ee8000-41fc3000 r--s 00000000 03:06 1623823 /home/mvanmeek/jdk1.4.2_01/jre/lib/jsse.jar 41fc3000-41fd4000 r--s 00000000 03:06 1623822 /home/mvanmeek/jdk1.4.2_01/jre/lib/jce.jar 41ffc000-41ffd000 r--s 00000000 03:06 2067117 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.swt_3.1.0.jar 41ffd000-41fff000 r-xp 00000000 03:06 639264 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.s o.2 41fff000-42000000 rw-p 00001000 03:06 639264 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.s o.2 42000000-4212e000 r-xp 00000000 03:06 1786598 /lib/tls/libc-2.3.2.so 4212e000-42131000 rw-p 0012e000 03:06 1786598 /lib/tls/libc-2.3.2.so 42133000-4268c000 r--s 00000000 03:06 1623853 /home/mvanmeek/jdk1.4.2_01/jre/lib/charsets.j ar 4470c000-4470f000 r-xp 00000000 03:06 329913 /usr/lib/libgmodule-2.0.so.0.200.1 4470f000-44710000 rw-p 00002000 03:06 329913 /usr/lib/libgmodule-2.0.so.0.200.1 4c910000-4cb10000 r--p 00000000 03:06 426719 /usr/lib/locale/locale-archive 4cb10000-4cb42000 r--p 008e1000 03:06 426719 /usr/lib/locale/locale-archive 4cd42000-4cd49000 r--s 00000000 03:06 2067146 /home/mvanmeek/3.1M6/eclipse/startup.jar 4cd49000-4cd65000 r--s 00000000 03:06 591630 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/sunjce _provider.jar 4cd65000-4ce21000 r--s 00000000 03:06 591632 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/locale data.jar 4ce21000-4ce2e000 r--s 00000000 03:06 591633 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/ldapse c.jar 4ce2e000-4ce35000 r--s 00000000 03:06 2067146 /home/mvanmeek/3.1M6/eclipse/startup.jar 4ce35000-4cee0000 r--s 00000000 03:06 2067120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.osgi_3.1.0.jar 4cf60000-4cf70000 r-xp 00000000 03:06 935701 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libne t.so 4cf70000-4cf71000 rw-p 0000f000 03:06 935701 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libne t.so 4cf71000-4cf77000 r-xp 00000000 03:06 935702 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libni o.so 4cf77000-4cf78000 rw-p 00005000 03:06 935702 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libni o.so 4d0f8000-4d164000 r--s 00000000 03:06 2067114 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.runtime_3.1.0.jar 4d164000-4d179000 r--s 00000000 03:06 445109 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.runtime.compatibility_3.1.0/compatibility.jar 4d179000-4d18f000 r--s 00000000 03:06 2067133 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.configurator_3.1.0.jar 4d18f000-4d30b000 r--s 00000000 03:06 2067132 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.ide_3.1.0.jar 4d30b000-4d5b6000 r--s 00000000 03:06 2067138 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench_3.1.0.jar 4d5b6000-4d659000 r--s 00000000 03:06 2067119 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jface_3.1.0.jar 4d659000-4d7b2000 r--s 00000000 03:06 2067135 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.swt.gtk_3.1.0.jar 4d7b2000-4d7cf000 r--s 00000000 03:06 2067112 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui_3.1.0.jar 4d7cf000-4d811000 r-xp 00000000 03:06 477621 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-pi-gtk-3128.so 4d811000-4d813000 rw-p 00041000 03:06 477621 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-pi-gtk-3128.so 4d813000-4d81f000 r-xp 00000000 03:06 295673 /usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.s o 4d81f000-4d820000 rw-p 0000b000 03:06 295673 /usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.s o 4d820000-4d821000 r-xp 00000000 03:06 475278 /usr/lib/gconv/ISO8859-1.so 4d821000-4d822000 rw-p 00001000 03:06 475278 /usr/lib/gconv/ISO8859-1.so 4d822000-4d824000 r-xp 00000000 03:06 1295329 /usr/lib/pango/1.2.0/modules/pango-basic-xft. so 4d824000-4d825000 rw-p 00001000 03:06 1295329 /usr/lib/pango/1.2.0/modules/pango-basic-xft. so 4d825000-4da6e000 r-xp 00000000 03:06 329974 /usr/lib/libgtk-x11-2.0.so.0.200.1 4da6e000-4da77000 rw-p 00248000 03:06 329974 /usr/lib/libgtk-x11-2.0.so.0.200.1 4da79000-4da7d000 r-xp 00000000 03:06 329917 /usr/lib/libgthread-2.0.so.0.200.1 4da7d000-4da7e000 rw-p 00003000 03:06 329917 /usr/lib/libgthread-2.0.so.0.200.1 4da7e000-4da82000 r-xp 00000000 03:06 458938 /usr/X11R6/lib/libXtst.so.6.1 4da82000-4da83000 rw-p 00004000 03:06 458938 /usr/X11R6/lib/libXtst.so.6.1 4da83000-4da95000 r-xp 00000000 03:06 329970 /usr/lib/libgdk_pixbuf-2.0.so.0.200.1 4da95000-4da96000 rw-p 00011000 03:06 329970 /usr/lib/libgdk_pixbuf-2.0.so.0.200.1 4da96000-4daff000 r-xp 00000000 03:06 329968 /usr/lib/libgdk-x11-2.0.so.0.200.1 4daff000-4db04000 rw-p 00069000 03:06 329968 /usr/lib/libgdk-x11-2.0.so.0.200.1 4db04000-4db24000 r-xp 00000000 03:06 329966 /usr/lib/libpangoxft-1.0.so.0.200.1 4db24000-4db25000 rw-p 0001f000 03:06 329966 /usr/lib/libpangoxft-1.0.so.0.200.1 4db25000-4db31000 r-xp 00000000 03:06 329964 /usr/lib/libpangox-1.0.so.0.200.1 4db31000-4db32000 rw-p 0000b000 03:06 329964 /usr/lib/libpangox-1.0.so.0.200.1 4db32000-4db59000 r-xp 00000000 03:06 329960 /usr/lib/libpango-1.0.so.0.200.1 4db59000-4db65000 rw-p 00026000 03:06 329960 /usr/lib/libpango-1.0.so.0.200.1 4db65000-4db7c000 r-xp 00000000 03:06 329945 /usr/lib/libatk-1.0.so.0.200.0 4db7c000-4db7e000 rw-p 00016000 03:06 329945 /usr/lib/libatk-1.0.so.0.200.0 4db7e000-4dbb1000 r-xp 00000000 03:06 329915 /usr/lib/libgobject-2.0.so.0.200.1 4dbb1000-4dbb3000 rw-p 00032000 03:06 329915 /usr/lib/libgobject-2.0.so.0.200.1 4dbb3000-4dc1c000 r-xp 00000000 03:06 329284 /usr/lib/libglib-2.0.so.0.200.1 4dc1c000-4dc1d000 rw-p 00069000 03:06 329284 /usr/lib/libglib-2.0.so.0.200.1 4dc1d000-4dc2a000 r-xp 00000000 03:06 458813 /usr/X11R6/lib/libXext.so.6.4 4dc2a000-4dc2b000 rw-p 0000c000 03:06 458813 /usr/X11R6/lib/libXext.so.6.4 4dc2b000-4dd07000 r-xp 00000000 03:06 458803 /usr/X11R6/lib/libX11.so.6.2 4dd07000-4dd0a000 rw-p 000db000 03:06 458803 /usr/X11R6/lib/libX11.so.6.2 4dd0a000-4dd0d000 r-xp 00000000 03:06 458852 /usr/X11R6/lib/libXrandr.so.2.0 4dd0d000-4dd0e000 rw-p 00002000 03:06 458852 /usr/X11R6/lib/libXrandr.so.2.0 4dd0e000-4dd15000 r-xp 00000000 03:06 458821 /usr/X11R6/lib/libXi.so.6.0 4dd15000-4dd16000 rw-p 00006000 03:06 458821 /usr/X11R6/lib/libXi.so.6.0 4dd16000-4dd27000 r-xp 00000000 03:06 458819 /usr/X11R6/lib/libXft.so.2.1 4dd27000-4dd28000 rw-p 00010000 03:06 458819 /usr/X11R6/lib/libXft.so.2.1 4dd28000-4dd2f000 r-xp 00000000 03:06 458854 /usr/X11R6/lib/libXrender.so.1.2 4dd2f000-4dd30000 rw-p 00006000 03:06 458854 /usr/X11R6/lib/libXrender.so.1.2 4dd30000-4dd51000 r-xp 00000000 03:06 327835 /usr/lib/libfontconfig.so.1.0 4dd51000-4dd54000 rw-p 00021000 03:06 327835 /usr/lib/libfontconfig.so.1.0 4dd55000-4dda1000 r-xp 00000000 03:06 327832 /usr/lib/libfreetype.so.6.3.2 4dda1000-4dda5000 rw-p 0004c000 03:06 327832 /usr/lib/libfreetype.so.6.3.2 4dda6000-4ddc4000 r-xp 00000000 03:06 327830 /usr/lib/libexpat.so.0.4.0 4ddc4000-4ddc6000 rw-p 0001e000 03:06 327830 /usr/lib/libexpat.so.0.4.0 4ddc6000-4ddea000 r-xp 00000000 03:06 477622 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-gtk-3128.so 4ddea000-4ddec000 rw-p 00024000 03:06 477622 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-gtk-3128.so 4dded000-4ddf3000 r--s 00000000 03:06 475330 /usr/lib/gconv/gconv-modules.cache 4ddf3000-4de05000 r--p 00000000 03:06 1344122 /usr/X11R6/lib/X11/fonts/Type1/l048013t.pfa 4de05000-4de0d000 r-xp 00000000 03:06 458811 /usr/X11R6/lib/libXcursor.so.1.0 4de0d000-4de0e000 rw-p 00007000 03:06 458811 /usr/X11R6/lib/libXcursor.so.1.0 4de0e000-4de20000 r--p 00000000 03:06 1344124 /usr/X11R6/lib/X11/fonts/Type1/l048016t.pfa 4de20000-4de30000 r--s 00000000 03:06 2067122 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.commands_3.1.0.jar 4de30000-4de3d000 r--s 00000000 03:06 2067139 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.expressions_3.1.0.jar 4de3d000-4decd000 r--s 00000000 03:06 477548 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources_3.1.0/resources.jar 4decd000-4deea000 r--s 00000000 03:06 117428 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.compatibility_3.1.0/compatibility.jar 4df6a000-4df7b000 r--s 00000000 03:06 2067131 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.help_3.1.0.jar 4df7b000-4df8b000 r--s 00000000 03:06 2067121 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.views_3.1.0.jar 4df8b000-4dfdb000 r--s 00000000 03:06 2067113 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.help.ui_3.1.0.jar 4dfdb000-4dff6000 r--s 00000000 03:06 920070 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.externaltools_3.1.0/externaltools.jar 4dff6000-4e11b000 r--s 00000000 03:06 35500 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.debug.ui_3.1.0/dtui.jar 4e11b000-4e154000 r--s 00000000 03:06 1411765 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.debug.core_3.1.0/dtcore.jar 4e154000-4e191000 r--s 00000000 03:06 2067118 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.intro_3.1.0.jar 4e191000-4e1c7000 r--s 00000000 03:06 2067130 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.forms_3.1.0.jar 4e347000-4e34d000 r--s 00000000 03:06 2067134 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.scheduler_3.1.0.jar 4e34d000-4e3b6000 r--s 00000000 03:06 2067136 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.ui_3.1.0.jar 4e3b6000-4e3c3000 r--s 00000000 03:06 2067125 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug_3.1.0/jdi.jar 4e3c8000-4e43c000 r--s 00000000 03:06 2067137 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.core_3.1.0.jar 4e43c000-4e469000 r--s 00000000 03:06 1378995 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.text_3.1.0/text.jar 4e469000-4e50c000 r--s 00000000 03:06 1624757 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jface.text_3.1.0/jfacetext.jar 4e50c000-4eb24000 r--s 00000000 03:06 477558 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.ui_3.1.0/jdt.jar 4eb24000-4eb85000 r--s 00000000 03:06 2083506 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.editors_3.1.0/editors.jar 4eb85000-4ebea000 r--s 00000000 03:06 1559206 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench.texteditor_3.1.0/texteditor.jar 4ebea000-4ef33000 r--s 00000000 03:06 2050723 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.core_3.1.0/jdtcore.jar 4ef33000-4ef68000 r--s 00000000 03:06 363178 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.team.core_3.1.0/team.jar 4ef68000-4ef86000 r--s 00000000 03:06 1264285 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ltk.core.refactoring_3.1.0/refcore.jar 4ef86000-4ef9b000 r--s 00000000 03:06 920065 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.filebuffers_3.1.0/filebuffers.jar 4ef9b000-4efbc000 r--s 00000000 03:06 1936037 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ltk.ui.refactoring_3.1.0/refui.jar 4f03c000-4f03e000 r-xp 00000000 03:06 1854120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.linux_3.0.0/os/linux/x86/libcore_3_1_0.so 4f03e000-4f03f000 rw-p 00001000 03:06 1854120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.linux_3.0.0/os/linux/x86/libcore_3_1_0.so 4f03f000-4f06d000 r--s 00000000 03:06 1608352 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.launching_3.1.0/launching.jar 4f2ed000-4f2ff000 r--p 00000000 03:06 1344128 /usr/X11R6/lib/X11/fonts/Type1/l048036t.pfa 4f2ff000-4f30a000 r-xp 00000000 03:06 1081411 /lib/libnss_nisplus-2.3.2.so 4f30a000-4f30b000 rw-p 0000a000 03:06 1081411 /lib/libnss_nisplus-2.3.2.so 4f30b000-4f30e000 r-xp 00000000 03:06 1081400 /lib/libnss_dns-2.3.2.so 4f30e000-4f30f000 rw-p 00003000 03:06 1081400 /lib/libnss_dns-2.3.2.so 4f30f000-4f31e000 r-xp 00000000 03:06 1081416 /lib/libresolv-2.3.2.so 4f31e000-4f31f000 rw-p 0000f000 03:06 1081416 /lib/libresolv-2.3.2.so 4f321000-4f334000 r--p 00000000 03:06 1344114 /usr/X11R6/lib/X11/fonts/Type1/l047013t.pfa 4f334000-4f348000 r--p 00000000 03:06 1344116 /usr/X11R6/lib/X11/fonts/Type1/l047016t.pfa 4f348000-4f34c000 r-xp 00000000 03:06 1589448 /usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloade r-png.so 4f34c000-4f34d000 rw-p 00003000 03:06 1589448 /usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloade r-png.so 4f35f000-4f36b000 r-xp 00000000 03:06 327810 /usr/lib/libz.so.1.1.4 4f36b000-4f36d000 rw-p 0000b000 03:06 327810 /usr/lib/libz.so.1.1.4 4f370000-4f3ea000 r--p 00000000 03:06 1885186 /usr/share/fonts/bitmap-fonts/6x13.pcf 4f500000-4f5f5000 r--s 00000000 03:06 19113 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug.ui_3.1.0/jdiui.jar 4f5f5000-4f6a5000 r--s 00000000 03:06 2067126 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug_3.1.0/jdimodel.jar 4f6a5000-4f6c7000 r-xp 00000000 03:06 329941 /usr/lib/libpng12.so.0.1.2.2 4f6c7000-4f6c8000 rw-p 00022000 03:06 329941 /usr/lib/libpng12.so.0.1.2.2 4f6c8000-4f8e0000 r--s 00000000 03:06 1231535 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.ui_3.1.0/pdeui.jar 4f8e0000-4f94f000 r--s 00000000 03:06 395956 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.core_3.1.0/pdecore.jar 4f94f000-4f966000 r--s 00000000 03:06 2067123 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.presentations.r21_3.1.0.jar 4f966000-4f983000 r--s 00000000 03:06 1395364 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.runtime_3.1.0/pdert.jar 4f983000-4f99a000 r--s 00000000 03:06 51874 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde_3.1.0/pde.jar 4f99a000-4fa70000 r--s 00000000 03:06 445094 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ant.ui_3.1.0/antui.jar 4fa70000-4fac6000 r--s 00000000 03:06 1559211 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.search_3.1.0/search.jar Heap at VM Abort: Heap def new generation total 3584K, used 2452K [0x44710000, 0x44af0000, 0x44bf0000) eden space 3200K, 64% used [0x44710000, 0x44915058, 0x44a30000) from space 384K, 100% used [0x44a30000, 0x44a90000, 0x44a90000) to space 384K, 0% used [0x44a90000, 0x44a90000, 0x44af0000) tenured generation total 47072K, used 21356K [0x44bf0000, 0x479e8000, 0x48710000) the space 47072K, 45% used [0x44bf0000, 0x460cb080, 0x460cb200, 0x479e8000) compacting perm gen total 32256K, used 32087K [0x48710000, 0x4a690000, 0x4c710000) the space 32256K, 99% used [0x48710000, 0x4a665c68, 0x4a665e00, 0x4a690000) Local Time = Wed Mar 30 14:42:08 2005 Elapsed Time = 4675 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode) # # An error report file has been saved as hs_err_pid11503.log. # Please refer to the file for further information. #
resolved fixed
5077fe5
["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-03-31T17:00:52Z"
"2005-03-30T19:13:20Z"
87,695
Bug 87695 Interface Disposeable
Please add an interface declaring the methods dispose() and isDisposed() and let it be included by all class that have these methods. Reason: I now had two projects where i have to dynamicaly create diferent widgets. It is nicer to add them all to one single vector and dispose them all when they are not needed anymore. Unfortunally that means that i have to check each entry for what it is...
resolved fixed
85d9ae5
["bundles/org.eclipse.swt/Eclipse", "SWT/cairo/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/cairo/org/eclipse/swt/graphics/Transform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Color.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/TextLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Transform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/Resource.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/graphics/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/graphics/org/eclipse/swt/graphics/Transform.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Color.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Color.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/TextLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Color.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Color.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Path.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Region.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/TextLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Transform.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-30T22:40:23Z"
"2005-03-10T18:40:00Z"
89,564
Bug 89564 Image appears and disappears in Tree
eclipse.buildId=I200411300800 java.version=1.4.2_03 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en Framework arguments: -showlocation Command-line arguments: -os win32 -ws win32 -arch x86 -clean -showlocation - nl en 1. Open Window -> Show View -> Other ... 2. Expand Basic 3. Click on Performance 4. Click away from Performance 5. Click on Performance again When Performance is selected it shows some icon (an icon not related to the Performance View) and when it is not selected it has no icon. I believe the Performance view is not setting any image for this tree item.
resolved fixed
1e8ccf4
["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-03-30T20:02:22Z"
"2005-03-30T16:26:40Z"
89,533
Bug 89533 [Themes] Colors and Fonts preferences page has funny icons for color entries
null
resolved fixed
222e4e9
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ImageList.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-30T19:27:28Z"
"2005-03-30T13:40:00Z"
89,217
Bug 89217 Label.computeSize() returning incorrect values when using WRAP
I20050324-1400 I am pretty sure this used to work :) public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Label label = new Label(shell, SWT.WRAP); label.setText("This is some text that is so huge it should wrap"); System.out.println("label computesize default: " + label.computeSize(SWT.DEFAULT, SWT.DEFAULT)); System.out.println("label computesize 40: " + label.computeSize(40, SWT.DEFAULT)); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } For me: label computesize default: Point {220, 14} label computesize 40: Point {40, 14}
verified fixed
a978555
["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/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Label.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-29T19:48:20Z"
"2005-03-28T14:26:40Z"
87,207
Bug 87207 Content of first column in Tree with columns overflows past last column
Version: 3.1.0 Build id: I20050301-1230 When you open the Log View and the message is long enough to fill the entire screen you can see the message appear past the last column.
resolved fixed
2c8b266
["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-03-28T22:46:31Z"
"2005-03-05T08:06:40Z"
89,163
Bug 89163 GridData.verticalIndent does not work as expected
SWT v3127 The API spec for GridData.verticalIndent says: "specifies the number of pixels of indentation that will be placed along the top side of the cell" As the testcase below demonstrates, this isn't what the current implementation of GridLayout does. Instead, the control is only indented by half the given amount, the other half being placed below it. --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class VerticalIndentTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); GridLayout layout = new GridLayout(); layout.verticalSpacing = 10; shell.setLayout(layout); Composite pnl1 = new Composite(shell, SWT.NONE); pnl1.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); GridLayout pnl1Layout = new GridLayout(); pnl1Layout.marginWidth = 0; pnl1Layout.marginHeight = 0; pnl1.setLayout(pnl1Layout); Label lbl1 = new Label(pnl1, SWT.NONE); lbl1.setBackground(display.getSystemColor(SWT.COLOR_RED)); lbl1.setText("horizontalIndent=10"); GridData lbl1GD = new GridData(); lbl1GD.horizontalIndent = 10; lbl1.setLayoutData(lbl1GD); Composite pnl2 = new Composite(shell, SWT.NONE); pnl2.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); GridLayout pnl2Layout = new GridLayout(); pnl2Layout.marginWidth = 0; pnl2Layout.marginHeight = 0; pnl2.setLayout(pnl2Layout); Label lbl2 = new Label(pnl2, SWT.NONE); lbl2.setBackground(display.getSystemColor(SWT.COLOR_RED)); lbl2.setText("verticalIndent=10"); GridData lbl2GD = new GridData(); lbl2GD.verticalIndent = 10; lbl2.setLayoutData(lbl2GD); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
resolved fixed
e6ff1db
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/GridLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-28T14:52:58Z"
"2005-03-26T15:13:20Z"
89,028
Bug 89028 uneccessary casts
JPEGFileFormat void emit(int huffCode, int nBits) { if (nBits == 0) { SWT.error(SWT.ERROR_INVALID_IMAGE); } int[] power2m1 = new int[] { 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, 65535, 131125 }; int code = (huffCode & power2m1[nBits - 1]) << (24 - nBits - currentBitCount); byte[] codeBuffer = new byte[4]; codeBuffer[0] = (byte)(code % 256); codeBuffer[1] = (byte)((code / 256) % 256); codeBuffer[2] = (byte)((code / 65536) % 256); codeBuffer[3] = (byte)((code / 16777216) % 256); int abs = nBits - (8 - currentBitCount); if (abs < 0) abs = -abs; if ((abs / 8) > 0) { currentByte += codeBuffer[2]; emitByte((byte)currentByte); ***>>>> emitByte((byte)codeBuffer[1]); Compatibility public static int round(int p, int q) { ***>>>>> return (int)Math.round((float)p / q); }
resolved fixed
e209676
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/JPEGFileFormat.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common_j2se/org/eclipse/swt/internal/Compatibility.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-28T14:44:05Z"
"2005-03-24T18:46:40Z"
87,820
Bug 87820 GC.drawString uses BG color for font when alpha value < 255
When drawing transparent strings, the foreground color is not used. It seems the background color is used instead. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setFont(new Font(display, "Arial", 18, SWT.BOLD)); shell.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { GC gc = e.gc; gc.setBackground(new Color(display, 0, 100, 255)); gc.fillRectangle(0, 0, 200, 200); gc.setBackground(new Color(display, 255, 255, 0)); gc.setAlpha(200); gc.drawString("Test String", 10, 10, false); } }); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); }
resolved fixed
5fd4bfa
["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-03-23T16:40:09Z"
"2005-03-11T19:40:00Z"
88,409
Bug 88409 Device.getFontList should have better performance
null
resolved fixed
027efea
["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/graphics/Device.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-22T22:48:38Z"
"2005-03-18T01:40:00Z"
88,582
Bug 88582 Computed width of link widget is too large
Version: 3.1.0 Build id: I20050315-1100 XP Manifest Installed If you run the snippet below you will see that the calcualted size of the link widget is the same as the length of the label widget. The link widget should be sorted since the anchors element is converted to text. This is really visible in the JDT editor preferences, there is a large gap after links. public static void main(String[] args) { Display d = Display.getDefault(); final Shell s = new Shell(d, SWT.DIALOG_TRIM | SWT.RESIZE); s.setLayout(new RowLayout(SWT.HORIZONTAL)); final Link l = new Link(s, SWT.NONE); l.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_RED)); l.setText("<a href=\"text editor\">Text Editors</a>"); Label lab = new Label(s, SWT.NONE); lab.setText("<a href=\"text editor\">Text Editors</a>"); lab.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_RED)); s.setSize(212,200); s.open(); while (!s.isDisposed()) { if (d.readAndDispatch()) { d.sleep(); } } }
resolved fixed
c994bab
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-22T21:15:29Z"
"2005-03-20T00:53:20Z"
82,336
Bug 82336 TreeView: setting gray gives free check mark
swt 20050106 Setting TreeItem.setGrayed (true) causes a check mark to show eventhough the item is uncheck. public static void main(String[] args) { display = new Display (); shell = new Shell (); shell.setLayout( new FillLayout ()); tree = new Tree (shell, SWT.CHECK | SWT.MULTI); item = new TreeItem (tree, SWT.NONE); item.setText("Text"); display.addFilter(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { switch (event.character) { case '1': item.setGrayed(!item.getGrayed()); break; case '2': item.setChecked(!item.getChecked()); break; case '3': tree.setEnabled(!tree.getEnabled()); break; } } }); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep (); } } display.dispose (); } I don't know if gtk has icons to represent all the combinations swt needs (uncheck, check, uncheck+gray, check+gray). If not, I think we should make the uncheck+gray be the same as uncheck. This needs to be fixed in Tree and Table probably.
verified fixed
b58bf8e
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableItem.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-03-19T05:42:04Z"
"2005-01-06T16:46:40Z"
68,040
Bug 68040 Views keep resizing after mouse up
null
verified fixed
006fcc8
["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"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-14T22:01:45Z"
"2004-06-21T17:46:40Z"
86,294
Bug 86294 Find/Replace not working "Illegal/Unsupported escape on the Mac
I can't do a search on a java file with the M5a build on the Mac. Find: mask4 "Illegal/unsupported escape" comes up in the Find / Replace dialog.
resolved fixed
116292d
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.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-03-14T21:53:19Z"
"2005-02-23T17:33:20Z"
87,855
Bug 87855 NullPointerException in Table.callWindowProc
Here is a stack trace I found when trying to kill a running process by pressing the "kill" button in the console view. I use 3.1M5a. !ENTRY org.eclipse.ui 4 0 2005-03-12 14:26:25.58 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:156) at org.eclipse.swt.widgets.Table.sendMouseDownEvent(Table.java:2084) at org.eclipse.swt.widgets.Table.WM_LBUTTONDOWN(Table.java:3174) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3057) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3480) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1619) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2539) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1612) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:293) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:333) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:150) 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:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871)
resolved fixed
d8ec5bd
["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-03-14T21:05:43Z"
"2005-03-12T12:20:00Z"
87,578
Bug 87578 TVT3.1 #38 - RUS mnemonics only work in main window
null
resolved fixed
7b82040
["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-03-11T21:04:33Z"
"2005-03-09T23:13:20Z"
87,664
Bug 87664 Null pointer exception in org.eclipse.swt.widgets.TreeItem.computeDisplayText in 3.1M5a
This also occurs on the motif build for linux... With our plugin, when I switch to the PDE perspective, I immediately get the following two exceptions: java.lang.NullPointerException at org.eclipse.swt.widgets.TreeItem.computeDisplayText(TreeItem.java:280) at org.eclipse.swt.widgets.TreeItem.updateColumnWidth(TreeItem.java:1556) at org.eclipse.swt.widgets.Tree.updateColumnWidth(Tree.java:2293) at org.eclipse.swt.widgets.TreeColumn.setWidth(TreeColumn.java:301) at org.eclipse.ui.views.properties.PropertySheetViewer$1.controlResized(PropertySheetViewer.java:227) <-- snip! --> The second one ends at: at org.eclipse.ui.views.properties.PropertySheetViewer.updateChildrenOf(PropertySheetViewer.java:1117) at org.eclipse.ui.views.properties.PropertySheetViewer.setInput(PropertySheetViewer.java:850) at org.eclipse.ui.views.properties.PropertySheetPage.selectionChanged(PropertySheetPage.java:409) at org.eclipse.ui.views.properties.PropertySheet.selectionChanged(PropertySheet.java:205) at org.eclipse.ui.internal.AbstractSelectionService$3.run(AbstractSelectionService.java:160) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1015) <-- snip! --> This does not occur on either of the M5a gtk builds.
resolved fixed
ee9091b
["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TreeColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/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-03-11T18:24:34Z"
"2005-03-10T15:53:20Z"
87,676
Bug 87676 Double-click only works on a tree's column0
Build I-20050308 Using the log view as an example, double-clicking on column0 brings up the event dialog as it should. double-clicking on column1, column2 results in no notification to our double- click listener.
resolved fixed
dbcf617
["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-03-10T19:15:20Z"
"2005-03-10T18:40:00Z"
87,584
Bug 87584 Remove ImageLoader dependency in Test_org_eclipse_swt_graphics_Image and Test_org_eclipse_swt_graphics_ImageData
null
resolved fixed
76b6937
["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/Test_org_eclipse_swt_graphics_ImageData.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-09T22:36:08Z"
"2005-03-09T23:13:20Z"
87,372
Bug 87372 [browser] CTRL-N should not run IE action when using Browser.setText
On IE, CTRL-N opens up a new window. This is undesired when rendering html from memory.
resolved fixed
a2a262c
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-08T16:06:35Z"
"2005-03-08T13:53:20Z"
87,363
Bug 87363 Regression: MenuDetect no longer opens new menus
Bug introduced Nov 5, 2004. Prior to change Control.showMenu did this: boolean showMenu (int x, int y) { Event event = new Event (); event.x = x; event.y = y; sendEvent (SWT.MenuDetect, event); if (!event.doit) return true; if (menu != null && !menu.isDisposed ()) { if (x != event.x || y != event.y) { menu.setLocation (event.x, event.y); } menu.setVisible (true); return true; } return false; } If a menu was created during the MenuDetect listener notification, the menu field was updated and the menu was set visible. After Nov 5, 2004 the method was moved to Widget and now looks like this: boolean showMenu (Menu menu, int x, int y) { Event event = new Event (); event.x = x; event.y = y; sendEvent (SWT.MenuDetect, event); if (!event.doit) return true; if (menu != null && !menu.isDisposed ()) { if (x != event.x || y != event.y) { menu.setLocation (event.x, event.y); } menu.setVisible (true); return true; } return false; } Since menu is just a local variable, it is not updated when a menu is created in the MenuDetect event. The following example demonstrates the problem: public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.addListener(SWT.MenuDetect, new Listener() { int count = 0; public void handleEvent(Event event) { Menu menu = shell.getMenu(); if (menu != null) menu.dispose(); menu = new Menu(shell, SWT.POP_UP); MenuItem item = new MenuItem(menu, SWT.PUSH); item.setText("Menu " + count++); shell.setMenu(menu); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
c3aa5c7
["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-03-08T13:27:03Z"
"2005-03-08T13:53:20Z"
87,075
Bug 87075 [SWT Examples - SWT Controls] Incorrect Dialog buttons creation with SWT.RETRY, SWT.ABORT, and SWT.IGNORE on MessageBox
When I was going through the Eclipse 3.1M5a examples (eclipse-examples- 3.1M5a.zip), on Solaris 9 (GTK), I realized that selecting SWT.RETRY, SWT.ABORT, or SWT.IGNORE individually for MessageBox always create the OK button on the dialog box. Steps to reproduce: 1. Install Eclipse 3.1M5a on Solaris 9. 2. Download Eclipse 3.1M5a Examples and install them. 3. Launch Eclipse 4. Select Window -> Show View -> Other.... This will launch the Show View Dialog. 5. From the Show View Dialog, select SWT Examples -> SWT Controls. This will display SWT Controls View. 6. Double click the SWT Controls tab and expand the view. 7. From SWT Controls View, select Dialog tab. and select the MessageBox. 8. Select either SWT.RETRY, SWT.ABORT, or SWT.IGNORE option and click the "Create Dialog" button. The "Title" dialog box comes up with an OK button. It should have the button according to the SWT option (RETRY, ABORT, or IGNORE). 9. Select 2 options from SWT.RETRY, SWT.ABORT, or SWT.IGNORE. Again, the dialog box comes up with only 1 OK button. In this case, I think 2 buttons should come up. 10. Select all 3 options from SWT.RETRY, SWT.ABORT, and SWT.IGNORE. The dialog box comes up correctly with all 3 buttons (RETRY, ABORT, and IGNORE).
resolved fixed
31415c6
["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/DialogTab.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-07T22:14:22Z"
"2005-03-03T14:26:40Z"
83,432
Bug 83432 iFrame does not render border when in SWT Browser
Try this: create an html file with the following content: <html> <body> hello <iframe src="localPage1.xhtml" frameborder="1" scrolling="auto"> </body></html> open it with IE6.0. You see an iFrame with a border. create a HelloWorld SWT browser and do a set text with the same exact snippet above. You get am iFrame with no border (regarless of what frameborder is set to.
resolved fixed
f9c50e4
["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-03-07T21:13:09Z"
"2005-01-21T17:53:20Z"
84,051
Bug 84051 Table widget unexpectedly fire deactivated event while clicking scroll bar buttons.
I have created listeners to a table widget for its activate and deactivate events. When I click on the table, the table fires an activate event. When the table becomes out of focus, it fires an deactivate event. If I have the table activated, and then keeps clicking on the scroll bar, the table will eventually fire a deactivate event. This behaviour is different from that on Windows and since the table is still in focus, it should not fire a deactivate event. Here's the testcase deomonstrating the problem: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10,10,400,400); final Table table = new Table(shell, SWT.NONE); table.setBounds(10,10,100,100); for (int i = 0; i < 99; i++) { new TableItem(table, SWT.NONE).setText("item " + i); } table.addListener(SWT.Activate, new Listener() { public void handleEvent(Event arg0) { System.out.println(" 1 activated"); }}); table.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event arg0) { System.out.println(" 1 deactivated"); }}); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
10bdf99
["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-03-07T17:02:50Z"
"2005-01-31T16:46:40Z"
87,265
Bug 87265 Link widget javadoc does not mention style bits
M5 The javadoc for link does not menton which style bits are valid for it. This is an issue as the default style (SWT.NONE) renders a link widget that is just a label and cannot be selected.
resolved fixed
497fc90
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-03-07T16:55:42Z"
"2005-03-07T15:40:00Z"
84,012
Bug 84012 StyledText with SWT.WRAP style does not adjust selection correctly
When selecting text in the native Windows text widget, it is possible to extend the selection to the beginning (end) of a line by moving the mouse cursor beyond the left (right) edge of the widget's client area. In a StyledText widget with SWT.WRAP style, this does not work. When handling mouse move events, the StyledText discards all cases in which the horizontal mouse position lies outside its client area while the vertical coordinate translates to the same line the caret is currently on. This means that if the mouse movement is too quick (resulting in not receiving enough mouse move events to cover all the caret positions up to the left(right)most one), the selection will remain incomplete. See the attached screenshot for some visual clarification. Ignoring events outside the client area is apparently done in order not to confuse the (horizontal) auto-scroll mechanism that may also kick in on mouse movements. However, when the SWT.WRAP style is set, there is no horizontal auto-scrolling. Therefore, the fix is to introduce a check to see if the word-wrap option is turned on and allow extending the selection if it is. --- import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class StyledTextSelectionTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); FillLayout layout = new FillLayout(SWT.VERTICAL); layout.marginWidth = 20; layout.marginHeight = 20; layout.spacing = 20; shell.setLayout(layout); Font font = new Font(display, "Arial", 12, SWT.NORMAL); StyledText text1 = new StyledText(shell, SWT.BORDER | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL); text1.setFont(font); text1.setText("StyledText widget with SWT.WRAP style."); Text text2 = new Text(shell, SWT.BORDER | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL); text2.setFont(font); text2.setText("Native text widget with SWT.WRAP style."); shell.setSize(400, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } font.dispose(); display.dispose(); } }
resolved fixed
5327c2c
["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-03-01T17:53:56Z"
"2005-01-31T00:06:40Z"
82,703
Bug 82703 Tree with TreeColumns doesn't display FULL_SELECTION properly
Run ControlExample and go to TreeTab Turn on Multiple Columns Turn on FULL_SELECTION The full selection does not draw
resolved fixed
eca0585
["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-02-28T22:54:16Z"
"2005-01-12T20:00:00Z"
86,587
Bug 86587 Tree: problem with WM_PRINT
I use WM_PRINT under Windows to create image of control that I show outside of visible screen. This work Ok for all control except new Tree with columns. When I try to send it WM_PRINT under WinXP, I see image without headers, only with items. Same code works without any problem with Table. When I ask for screen shot of full Shell, with all children, I see correct image of Tree, with headers, but now without items. Is there any way to have full image, with headers and items?
resolved fixed
1395ca8
["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-02-26T14:44:05Z"
"2005-02-25T05:40:00Z"
41,546
Bug 41546 GTK-BIDI: RTL support in Table
Sequence of columns in the table and sequence of the renderers in the column should be reversed. Additional space should be added to first visible column and not to last, as in case of ltr-oriented Table. Initial scroll position should be from the right.
resolved fixed
94c141d
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-25T22:25:58Z"
"2003-08-14T14:06:40Z"
51,828
Bug 51828 GTK-BIDI: RTL support in Menu
null
resolved fixed
ba96fef
["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"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-25T22:08:15Z"
"2004-02-12T12:46:40Z"
86,588
Bug 86588 Tree: problem with column resize
When I add items and one column and try to resize column, it damages items text and never restores it (only after window show/hide).
resolved fixed
7c7de7f
["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-02-25T16:09:23Z"
"2005-02-25T05:40:00Z"
86,577
Bug 86577 Not removing event filter added with gdk_window_add_filter
We use gdk_window_add_filter() to listen for focus events to fix ON_TOP shells. While this call takes a window, this is just the window to search for, and it seems that the filter may not be removed automatically when the window is destroyed. The fix is to use gdk_window_remove_filter() appropriately.
resolved fixed
9f173bb
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-24T23:51:56Z"
"2005-02-25T00:06:40Z"
85,552
Bug 85552 TextLayout preferred size depends on current width
Eclipse 3.1 M5 Run the ControlExample Go to the Link tab Select 50x50 from the Size Area Select Preferred from the Size area Notice that the Link widget is still 50 pixels wide and wrapped to multiple lines. It should be one long line. Felipe says this is a bug in TextLayout on carbon. The call setLayoutControl(OS.kATSULineWidthTag, OS.Long2Fix(width), 4); is not doing the right thing when the width is -1.
resolved fixed
147485a
["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-02-24T20:30:43Z"
"2005-02-16T21:40:00Z"
41,363
Bug 41363 GTK-BIDI: RTL support in TabFolder
Direction of packing of rtl-oriented TabFolder's tabs should be changed to opposite. Text direction of each tab's contents should be set separately.
resolved fixed
dc163ac
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-24T20:11:20Z"
"2003-08-10T15:40:00Z"
86,402
Bug 86402 ToolBar only needs to resize its children if the bounds are required
ToolBar currently calls forceResize() in layoutItems(). This is required to ensure that items with controls can update their position. This call is expensive, and so deferring it until someone requires the bounds is a performance improvement. A similar strategy to the one used for getClientArea() of TabFolder and Group can be used.
resolved fixed
87d0a34
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolBar.java", "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-02-23T23:59:32Z"
"2005-02-23T23:06:40Z"
86,000
Bug 86000 ImageLoader Save - produces invalid JPEG images
The ImageLoader Save function appears to be producing bad JPG images. I have only verified this with JPEG output. Simple test case below loads PNG Files and Saves them as JPEG. Many files were tested and the majority did produced the proper JPG images as expected. The attached Zip file contains only those files that did not save correctly to JPEG. package com.ibm.test.image; import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; public class ImageLoaderTest { public static void main(String[] args) { ImageLoader loader; String dir="c:\\image-problems\\"; String files[]={ "s34i3p04", "s34n3p04", "s35i3p04", "s35n3p04", "s36i3p04", "s36n3p04", "s37i3p04", "s37n3p04", "s38i3p04", "s38n3p04", "s39i3p04", "s39n3p04" }; try { for (int i=0; i<files.length; i++) { String filein = dir+files[i]+".png"; String fileout = dir+files[i]+".jpg"; loader = new ImageLoader(); loader.load(filein); loader.save(fileout,SWT.IMAGE_JPEG); } } catch (SWTException e) { e.printStackTrace(); } } }
resolved fixed
ecb4856
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/JPEGFileFormat.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-23T22:56:43Z"
"2005-02-21T21:06:40Z"
86,375
Bug 86375 Toolitem calling gtk_widget_add_events after it is realized
Before a GTK+ widget is realized, calling gtk_widget_add_events simply sets some private data and does not do any work in the X server. However, if the widget is already realized, changing the event mask requires querying the current mask from the X server and updating its state in X. In SWT, hookEvents() is always performed on unrealized widgets, except in ToolItem. ToolItem is being realized because it is asking for the foreground colour of its parent, which causes it to be realized. The fix is to either avoid realizing the parent (it is not required in this particular case), and maybe to defer connecting the tool item to its parent until later.
resolved fixed
75c47fa
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.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/Widget.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-23T21:34:08Z"
"2005-02-23T20:20:00Z"
86,145
Bug 86145 VM Crash when running remotely via cygwin/X
Using Cygwin 1.5.12 (0.116/4/2) and forwarding X from a Solaris 3.0.1 eclipse, the system fails to start with the following error: ssh -X eclipse.sun.box bash-2.05$ ./eclipse An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0xFF38058C Function=memcpy+0xB0 Library=/usr/platform/sun4u/lib/libc_psr.so.1 Current Java thread: at org.eclipse.swt.internal.motif.OS.memmove(Native Method) at org.eclipse.swt.graphics.Image.<init>(Image.java:245) at org.eclipse.swt.widgets.Label.setBitmap(Label.java:380) at org.eclipse.swt.widgets.Label.setImage(Label.java:462) at org.eclipse.jface.dialogs.TitleAreaDialog.createTitleArea(TitleAreaDialog.java:180) at org.eclipse.jface.dialogs.TitleAreaDialog.createContents(TitleAreaDialog.java:107) at org.eclipse.jface.window.Window.create(Window.java:348) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:925) at org.eclipse.jface.window.Window.open(Window.java:637) at org.eclipse.ui.internal.ide.ChooseWorkspaceDialog.prompt(ChooseWorkspaceDialog.java:65) at org.eclipse.ui.internal.ide.IDEApplication.promptForWorkspace(IDEApplication.java:314) at org.eclipse.ui.internal.ide.IDEApplication.checkInstanceLocation(IDEApplication.java:219) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:83) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Dynamic libraries: 0x10000 /usr/bin/java 0xff360000 /usr/lib/libthread.so.1 0xff39a000 /usr/lib/libdl.so.1 0xff280000 /usr/lib/libc.so.1 0xff380000 /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1 0xfec00000 /usr/j2se/jre/lib/sparc/client/libjvm.so 0xff240000 /usr/lib/libCrun.so.1 0xff210000 /usr/lib/libsocket.so.1 0xff100000 /usr/lib/libnsl.so.1 0xff1c0000 /usr/lib/libm.so.1 0xff0e0000 /usr/lib/libsched.so.1 0xff0c0000 /usr/lib/libmp.so.2 0xff060000 /usr/j2se/jre/lib/sparc/native_threads/libhpi.so 0xfebd0000 /usr/j2se/jre/lib/sparc/libverify.so 0xfeb90000 /usr/j2se/jre/lib/sparc/libjava.so 0xff030000 /usr/j2se/jre/lib/sparc/libzip.so 0xfe1d0000 /usr/j2se/jre/lib/sparc/libnet.so 0xfc6e0000 /usr/j2se/jre/lib/sparc/libnio.so 0xfc6c0000 /usr/lib/librt.so.1 0xfc6a0000 /usr/lib/libaio.so.1 0xfc5e0000 /usr/lib/libmd5.so.1 0xfc5c0000 /usr/lib/libsendfile.so.1 0xfbe90000 /export/home/davidm/eclipse/plugins/org.eclipse.swt.motif_3.0.1/os/solaris/sparc/libswt-motif-3063.so 0xf0d00000 /usr/lib/libXm.so.4 0xfbd90000 /usr/openwin/lib/libXt.so.4 0xf0c00000 /usr/openwin/lib/libX11.so.4 0xfbfc0000 /usr/openwin/lib/libXp.so.1 0xfbfa0000 /usr/openwin/lib/libXtst.so.1 0xfbcd0000 /usr/openwin/lib/libXext.so.0 0xfbcb0000 /usr/openwin/lib/libSM.so.6 0xfbc80000 /usr/openwin/lib/libICE.so.6 0xfbc60000 /usr/lib//liblayout.so Heap at VM Abort: Heap def new generation total 2112K, used 1429K [0xf1800000, 0xf1a20000, 0xf1f10000) eden space 2048K, 66% used [0xf1800000, 0xf19555f0, 0xf1a00000) from space 64K, 100% used [0xf1a10000, 0xf1a20000, 0xf1a20000) to space 64K, 0% used [0xf1a00000, 0xf1a00000, 0xf1a10000) tenured generation total 4680K, used 3521K [0xf1f10000, 0xf23a2000, 0xf5800000) the space 4680K, 75% used [0xf1f10000, 0xf22806f0, 0xf2280800, 0xf23a2000) compacting perm gen total 5120K, used 4994K [0xf5800000, 0xf5d00000, 0xf9800000) the space 5120K, 97% used [0xf5800000, 0xf5ce0b08, 0xf5ce0c00, 0xf5d00000) Local Time = Tue Feb 22 08:01:34 2005 Elapsed Time = 11 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_05-b04 mixed mode) # # An error report file has been saved as hs_err_pid5146.log. # Please refer to the file for further information. # Running a Linux X server against it works OK, however. If this is a cygwin/X problem, I would like some information on what specifically is going wrong here so I can report it to the X folks. It seems to be having trouble copying the memory for an image..?
resolved fixed
b2ef8a6
["bundles/org.eclipse.swt/Eclipse", "SWT/motif/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-02-23T16:35:52Z"
"2005-02-22T16:33:20Z"
86,216
Bug 86216 Display.getActiveShell() slow with lots of widgets
If no shell is active, Display.getActiveShell() currently has to loop over every widget. Since only one shell can be active at any given time, we can optimize this case.
resolved fixed
4471e2e
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java", "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-02-22T23:52:34Z"
"2005-02-22T22:06:40Z"
71,844
Bug 71844 popup menu has bunch of empty items
If popup menu is opned at the bottom of the screen, you will see a popup menu which has bunch of empty items. Here is how to. 1) Install the attached plugin 2) Press the button of tool bar, "Hello Eclipse world" 3) Press OK button 4) move the popup'ed dialog to the bottom of the screen. Note that "See me!" button should be visible 5) Press "See me!" button you will see a popup menu with empty items. See attached images.
verified fixed
1ed6e01
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-21T18:55:21Z"
"2004-08-12T08:40:00Z"
85,412
Bug 85412 changing link foreground does not repaint
- run the ControlExample, go to the Link tab - change the foreground colour and note that the example Link on the page does not change accordingly - use another window to damage part of the Link and note that the Link repaints with the new foreground colour when the other window is moved away
resolved fixed
7455548
["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Link.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-18T22:33:00Z"
"2005-02-16T13:20:00Z"
85,875
Bug 85875 Eclipse crashes when clicking on "View Installation History"
Steps to reproduce: 1. Click on help 2. Select Software Updates 3. Select Manage Configuration 4. Click on View Installation History Eclipse then crashes and I get the following error: JVM terminated. Exit code=1 /usr/bin/java -jar /home/ijuma82/bin/eclipse-new/startup.jar -os linux -ws gtk -arch x86 -launcher /home/ijuma82/bin/eclipse-new/eclipse -name Eclipse -showsplash 600 -exitdata 25160013 -vm /usr/bin/java -vmargs -jar /home/ijuma82/bin/eclipse-new/startup.jar I'm using Fedora Core 3 with Sun's JDK 5.0 Update 1 and Eclipse 3.1 I20050218-1333. This is on a new workspace btw.
verified fixed
53ba736
["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-02-18T22:06:26Z"
"2005-02-18T20:53:20Z"
85,877
Bug 85877 Shell has unwanted title bar on Pocket PC
in M5 (v3123), Shell shows up with a title bar even if SWT.TITLE is not set. This is a bug.
resolved fixed
2d03084
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-18T22:01:48Z"
"2005-02-18T20:53:20Z"
85,547
Bug 85547 Combo box list is way too big
Eclipse 3.1 M5 Run ControlExample Go to the Combo tab Select SWT.SIMPLE in style area Select SWT.DROP_DOWN in style area Click on Arrow button of Combo to open list Notice that the list is extremely large and sticks up above the combo box.
resolved fixed
f3660f5
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "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-02-18T21:36:22Z"
"2005-02-16T21:40:00Z"
85,849
Bug 85849 GC.copyArea() slow on images
I20050215-2300 The test test_copyAreaIIIIII is slower on Linux compared to Windows. The offender seems to be the calls to gdk_gc_set_exposures(). Since we're doing a copyArea on an image, we do not need to make these calls.
resolved fixed
ff4f7ab
["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-02-18T19:20:06Z"
"2005-02-18T18:06:40Z"
85,834
Bug 85834 notifyAll() slow in locking code
Calling notifyAll() unnecessarily is causing a performance regression in the test suites for Region.intersect() and other GC calls on Linux-GTK. We should only call notifyAll() if we actually have someone waiting.
resolved fixed
785e507
["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common/org/eclipse/swt/internal/Lock.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-18T15:57:25Z"
"2005-02-18T15:20:00Z"
85,732
Bug 85732 getClientArea() cause Shell to be resized to its initial size
linux gtk build I20050217-0800 fedora core 3 (gtk 2.4.14) On eclipse if I move the mouse over the toolbar the tooltip resizes (width) according with the length of the string (the string depends on with toolitem the mouse is over). When I do the same over the ctabfolder tabs the tooltip doesn't resize, it keeps the same width it first shows. I tried to capture a screenshot but the tooltip doesn't on it. I can reproduce this problem on my machine consistently.
verified fixed
92a90fb
["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-02-17T20:22:20Z"
"2005-02-17T17:06:40Z"
84,557
Bug 84557 Table item does not appear in table
I am running I20050202-0800 linux gtk ctrl esc E brings up the handy switch to editor window, but unfortuantley the list is empty :(
resolved fixed
aae4689
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-17T19:27:19Z"
"2005-02-07T12:40:00Z"
85,453
Bug 85453 Advanced graphics not working on W2K - trigger system window
null
resolved fixed
1e6274f
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/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-02-16T19:24:57Z"
"2005-02-16T16:06:40Z"
85,236
Bug 85236 IllegalArgumentException when layouting link widget
When using the Link widget on the Java>Editor preference page, I get the following exception when the page is first displayed (due to a zero width parameter): java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:2823) at org.eclipse.swt.SWT.error(SWT.java:2762) at org.eclipse.swt.SWT.error(SWT.java:2733) at org.eclipse.swt.graphics.TextLayout.setWidth(TextLayout.java:1404) at org.eclipse.swt.widgets.Link.computeSize(Link.java:96) at org.eclipse.swt.layout.GridData.computeSize(GridData.java:474) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:459) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:186) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1115) at org.eclipse.swt.widgets.Composite.layout(Composite.java:741) at org.eclipse.swt.widgets.Composite.layout(Composite.java:706) at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createContents(JavaEditorPreferencePage.java:294) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:425) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:390) at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createControl(JavaEditorPreferencePage.java:125) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.createPageControl(WorkbenchPreferenceDialog.java:419) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1132) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1018) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1126) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.showPage(WorkbenchPreferenceDialog.java:650) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:628) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:681) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1018) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:679) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:950) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:970) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:231) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:226) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:392) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2705) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2430) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:66) at org.eclipse.jface.action.Action.runWithEvent(Action.java:1003) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:557) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:507) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:421) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1009) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2728) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2427) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1624) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1590) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:299) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:227) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:281) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:131) 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.basicRun(Main.java:261) at org.eclipse.core.launcher.Main.run(Main.java:817) at org.eclipse.core.launcher.Main.main(Main.java:801)
resolved fixed
5b3ec30
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-15T21:44:35Z"
"2005-02-15T12:20:00Z"
45,429
Bug 45429 TableColumn.pack() doesn't decrease column's width on GTK
When the text of the TableItem is changed, I call TableColumn.pack() to resize the column to contain whole text of all items. On GTK, when text is larger then the previous one, column is extended (with both pack() and without pack()). This is OK. When I set the text to the smaller one again and call to pack(), the columns width remains unchanged (should be decreased I thing, because on MS Windows it works). I can solve it by computing the string sizes and then call to column's setWidth() method, but I thing it's not clear. Try this: import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; public class Main { static int i = 0; public static void main(String [] args) { Display display = Display.getDefault(); final Shell shell = new Shell(display); shell.setLayout(new FormLayout()); Table table = new Table(shell, SWT.BORDER|SWT.FULL_SELECTION|SWT.SINGLE); table.setHeaderVisible(true); table.setLinesVisible(true); final TableColumn col = new TableColumn(table, SWT.LEFT); TableColumn col2 = new TableColumn(table, SWT.LEFT); final TableItem item = new TableItem(table, SWT.NONE); item.setText("click the button"); final String[] texts = new String[] { "<short text>", "<some larger text some larger text " + "some larger text some larger text>", "<largest text largest text largest text largest text largest text " + "largest text largest text largest text largest text largest text " + "largest text largest text largest text>" }; Button b = new Button(shell, SWT.PUSH); b.setText("test"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { if (i == texts.length) { i = 0; } item.setText(texts[i++]); col.pack(); } }); shell.setDefaultButton(b); FormData fd1 = new FormData(); fd1.top = new FormAttachment(0, 5); fd1.left = new FormAttachment(0, 5); fd1.right = new FormAttachment(100, -5); fd1.bottom = new FormAttachment(b, -5); table.setLayoutData(fd1); FormData fd2 = new FormData(); fd2.bottom = new FormAttachment(100, -5); fd2.right = new FormAttachment(100, -5); b.setLayoutData(fd2); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
resolved fixed
84155e3
["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-02-14T20:24:23Z"
"2003-10-23T09:06:40Z"
85,119
Bug 85119 Use GDK_HAND2 instead of GDK_HAND1 for SWT.CURSOR_HAND
A common use for the hand cursor is for use with links as in a web browser. The cursor used by default for links in Mozilla Firefox looks like GDK_HAND2, while currently we use the right-pointing hand, GDK_HAND1. It would be nicer to follow Mozilla on this one, as the hand cursor we currently use often looks out of place.
verified fixed
fdc503f
["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/graphics/Cursor.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-14T16:15:19Z"
"2005-02-14T05:46:40Z"
34,644
Bug 34644 DND in the FileViewer example resets tree selection
RC2 Linux-GTK In the FileViewer example, expand the tree a few levels and drag a file from the table on the right to somewhere in the tree on the left. No matter where the drop occurs, the selection is reset to the filesystem root. A client application wouldn't want to lose the user's context this way. The selection should remain on the item that was dropped onto.
resolved fixed
709d79b
["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileViewer.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-12T04:53:10Z"
"2003-03-11T16:26:40Z"
84,733
Bug 84733 TabFolder position change broken
1. Open the control example 2. Switch to the TabFolder pane 3. Switch between SWT.TOP and SWT.BOTTOM When using the SWT.BOTTOM style, the contents disappear.
verified fixed
3e26cc4
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "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/Scrollable.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabItem.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/ToolBar.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/TreeColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-11T20:57:29Z"
"2005-02-08T19:13:20Z"
84,535
Bug 84535 TitleAreaDialog doesn't dismiss on <ENTER> if contains Combo(SWT.SIMPLE)
A TitleAreaDialog that contains a Combo in SWT.SIMPLE mode no longer responds to pressing ENTER by activating the default OK button and closing the dialog. When the test code below is run, click the button "Press Me". On the dialog invoked, press <ENTER>. The dialog should close, but doesn't. Using 3.1M4. -------8<------ package com.yoogalu.priceservice.client.ui; import org.eclipse.jface.dialogs.TitleAreaDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class DefaultButtonBugDemo { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Button b = new Button(shell, SWT.NONE); b.setText("Press Me"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { TitleAreaDialog dialog = new DefaultButtonBugDemo().new MyDialog(shell); dialog.setBlockOnOpen(true); dialog.open(); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } public class MyDialog extends TitleAreaDialog { public MyDialog(Shell shell) { super(shell); } protected Control createDialogArea(Composite parent) { Composite composite = (Composite) super.createDialogArea(parent); Combo combo = new Combo(composite, SWT.SIMPLE); combo.setItems(new String[]{"ITEM1", "ITEM2"}); return composite; } } } ----------8<--------
resolved fixed
008439e
["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-02-11T19:44:06Z"
"2005-02-07T04:20:00Z"
85,006
Bug 85006 TableColumn.pack() of column 0 wth SWT.CHECK is bad
In the following case, column 0 is not packing correctly: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new RowLayout(SWT.HORIZONTAL)); final Table table = new Table(shell, SWT.BORDER | SWT.CHECK); table.setLayoutData(new RowData(-1, 400)); table.setHeaderVisible(true); TableColumn column0 = new TableColumn(table, SWT.NONE); column0.setText("Column 0"); TableColumn column1 = new TableColumn(table, SWT.NONE); column1.setText("Column 1"); TableColumn column2 = new TableColumn(table, SWT.NONE); column2.setText("Column 2"); TableColumn column3 = new TableColumn(table, SWT.NONE); column3.setText("Column 3"); TableColumn column4 = new TableColumn(table, SWT.NONE); column4.setText("Column 4"); for (int i = 0; i < 20; i++) { TableItem item = new TableItem(table, SWT.NONE); String[] text = new String[]{"abc"+i, "def"+i, "ghi"+i, "jkl"+i, "mnop"+i}; item.setText(text); } column0.pack(); column1.pack(); column2.pack(); column3.pack(); column4.pack(); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
718bc9a
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-11T18:19:35Z"
"2005-02-11T16:40:00Z"
84,665
Bug 84665 Clarify Javadoc of Display.postEvent
I20050202-0800 The return value of Display.postEvent's Javadoc says: * @return true if the event was generated or false otherwise It is not clear whether this means that it's not supported i.e. will always return false for that event (type) or whether it means it did not work this time and I can try it again until I get true.
resolved fixed
4e26a42
["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-02-10T17:59:42Z"
"2005-02-08T10:53:20Z"
84,861
Bug 84861 Display.post(Event) not working for char key events SWT.TAB, SWT.ESC, SWT.DEL and SWT.BS
null
verified fixed
7929c76
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.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-02-10T16:28:47Z"
"2005-02-10T07:20:00Z"
81,254
Bug 81254 ControlExample spews warnings
observed on Solaris and hpux - run the ControlExample with warnings turned on (do this in Device I think) - a scrollbar warning is spewed on each page that's shown - this is ugly when using the swt-only download since warning messages are not supressed in this context
resolved fixed
e27de3e
["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java", "examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CanvasTab.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-09T18:07:40Z"
"2004-12-15T17:00:00Z"
84,630
Bug 84630 resizing a TreeColumn does not fire Resize or Move
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns and Header Visible checkboxes - turn on listening for SWT.Move and SWT.Resize events - use the mouse to resize the columns in the example Tree with columns and note that no Resize or Move events are fired - doing the equivalent steps on the Table tab does result in these events firing
resolved fixed
dd1f487
["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-02-09T16:25:50Z"
"2005-02-07T21:00:00Z"
84,783
Bug 84783 Directory dialog does not deal with non-UTF8 filenames
null
verified fixed
4451ea4
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-09T15:35:14Z"
"2005-02-09T14:40:00Z"
84,755
Bug 84755 Cannot open filenames with 8-bit characters
null
verified fixed
24afc87
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/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-02-09T15:21:37Z"
"2005-02-09T03:33:20Z"
84,602
Bug 84602 scrolling Tree with columns horizontally fires Move and Resize events
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns checkbox - set the Tree's size to 100x100 so that a horizontal scrollbar is needed - turn on listening for SWT.Move and SWT.Resize events - scroll the example Tree on the page horizonally and note that Move and Resize events are fired - this does not match Tree on the other platforms, and does not match Table on win32
resolved fixed
d73d99b
["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-02-08T00:04:19Z"
"2005-02-07T18:13:20Z"
84,600
Bug 84600 resizing TreeColumn leaves cheese
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns, Header Visible and Lines Visible checkboxes - in the first example Tree on the page, resize the Name column by dragging its right column line to span most of the available tree width (ie.- to roughly where the Modified column ends by default) - resize the Name column back to its original size, and the table contents will not redraw properly, as shown in the attached image
resolved fixed
6162900
["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-02-07T20:12:46Z"
"2005-02-07T18:13:20Z"
54,973
Bug 54973 [browser] Default WindowEvent to handle normal window open case - feature request
In the documenation for WindowEvent is about 50-lines of code that is noted as this is the way "..are typically handled". This makes an HTML link that opens another window such as &lt;a href="...url.." target="_blank"&gt; work. Since this is the typical use (as stated in the docs), why not make this the default behavior? It's a lot of code to get in and get right. What I actually want is for the browser to handle _blank target by opening the system browser, as it would if I loaded the HTML into IE, not to open another SWT browser. I was not able to get this to work.
resolved fixed
ca98239
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/OpenWindowListener.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/common/org/eclipse/swt/browser/WindowEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/WindowCreator.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/mozilla/org/eclipse/swt/browser/WindowCreator.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/photon/org/eclipse/swt/browser/Browser.java", "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-02-07T19:13:20Z"
"2004-03-16T18:00:00Z"
84,581
Bug 84581 Check button size does not change when right aligned
Run the control example. - Button tab - SWT.CHECK - Alignment: Right - Horizontal Fill - Preferred Button does not return to its preferred size. The problem is that we have set the usize on the child, but not reset it when we ask for its preferred size.
verified fixed
9b0ccc5
["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-02-07T16:18:27Z"
"2005-02-07T15:26:40Z"
71,262
Bug 71262 Combo boxes ignoring visible item count
After setting the visible item count , the combo box ignores it and displays all items. To test pass the method a 0 , and it will still show all items. If you pass a 0 in the win32 impl. nothing shows.
resolved wontfix
0441770
["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-02-04T22:27:54Z"
"2004-08-02T23:40:00Z"
30,968
Bug 30968 DCR:Combo SWT.SIMPLE not implemented on GTK
Open ControlExample switch Combo style from DROP_DOWN to SIMPLE. Style is not supported. The Combobox by itself does not change but its location is modified, which is bizarre.
resolved wontfix
6c55e6d
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-04T22:20:10Z"
"2003-02-05T15:46:40Z"
84,404
Bug 84404 Disabled button stops events
Run the following code. Setting button 2 to be disabled stops events from being sent to button 3, even though it is above. public static void main(String [] args) { Display display = new Display(); Shell shell = new Shell(display); Composite c = new Composite(shell, SWT.NONE); c.setSize(800,600); Button b1 = new Button(c, SWT.PUSH); b1.setText("Button 1"); b1.setSize(400,400); Button b2 = new Button(c, SWT.PUSH); b2.setText("Button 2"); b2.setSize(400,400); b2.setEnabled(false); Button b3 = new Button(c, SWT.PUSH); b3.setText("Button 3"); b3.setSize(400,400); b3.moveAbove(b1); c.addListener(SWT.MouseMove, new Listener() { public void handleEvent(Event event) { System.out.println("cheeze:" + event.x + "," + event.y); } }); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); }
resolved fixed
43df143
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.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-02-03T23:24:49Z"
"2005-02-03T22:33:20Z"
84,383
Bug 84383 [browser] can't navigate to eclipse bugzilla
null
resolved fixed
868a13a
["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/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-02-03T21:15:54Z"
"2005-02-03T19:46:40Z"
84,085
Bug 84085 XP style not support with Button with SWT.ARROW
When you create a Button with the SWT.ARROW style and XP styling is enabled, the button still shows older beveled styling.
resolved fixed
ee6b656
["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/Button.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-02-03T15:48:01Z"
"2005-01-31T19:33:20Z"
82,739
Bug 82739 EXCEPTION_ACCESS_VIOLATION hovering over check in table with SWT.CHECK style
Version: 3.1.0 Build id: I20050112-1200 When i hover over the check mark of a table that was created with the SWT.CHECK style bit and have no text in the first column i get an EXCEPTION_ACCESS_VIOLATION. Will attach a snippet to reproduce. An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x773D4933 Function=Ordinal155+0x58 Library=C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1499) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:172) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3103) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3376) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1575) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2452) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.tigris.subversion.subclipse.ui.actions.CommitAction.confirmCommit(CommitAction.java:188) at org.tigris.subversion.subclipse.ui.actions.CommitAction$1.run(CommitAction.java:82) at org.tigris.subversion.subclipse.ui.repository.RepositoryManager.run(RepositoryManager.java:366) at org.tigris.subversion.subclipse.ui.actions.SVNAction$1.run(SVNAction.java:228) at org.tigris.subversion.subclipse.ui.actions.SVNAction$2.run(SVNAction.java:237) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.tigris.subversion.subclipse.ui.actions.SVNAction.run(SVNAction.java:234) at org.tigris.subversion.subclipse.ui.actions.CommitAction.execute(CommitAction.java:101) at org.tigris.subversion.subclipse.ui.actions.SVNAction.run(SVNAction.java:58) at org.eclipse.ui.actions.ActionDelegate.runWithEvent(ActionDelegate.java:70) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:234) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2454) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1577) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1543) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:287) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:274) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:255) at org.eclipse.core.launcher.Main.run(Main.java:811) at org.eclipse.core.launcher.Main.main(Main.java:795) Dynamic libraries: 0x00400000 - 0x00407000 C:\j2sdk1.4.2\bin\javaw.exe 0x7C900000 - 0x7C9B0000 C:\WINDOWS\system32\ntdll.dll 0x7C800000 - 0x7C8F4000 C:\WINDOWS\system32\kernel32.dll 0x77DD0000 - 0x77E6B000 C:\WINDOWS\system32\ADVAPI32.dll 0x77E70000 - 0x77F01000 C:\WINDOWS\system32\RPCRT4.dll 0x77D40000 - 0x77DD0000 C:\WINDOWS\system32\USER32.dll 0x77F10000 - 0x77F56000 C:\WINDOWS\system32\GDI32.dll 0x77C10000 - 0x77C68000 C:\WINDOWS\system32\MSVCRT.dll 0x08000000 - 0x08136000 C:\j2sdk1.4.2\jre\bin\client\jvm.dll 0x76B40000 - 0x76B6D000 C:\WINDOWS\system32\WINMM.dll 0x10000000 - 0x10007000 C:\j2sdk1.4.2\jre\bin\hpi.dll 0x00840000 - 0x0084E000 C:\j2sdk1.4.2\jre\bin\verify.dll 0x00850000 - 0x00868000 C:\j2sdk1.4.2\jre\bin\java.dll 0x00870000 - 0x0087D000 C:\j2sdk1.4.2\jre\bin\zip.dll 0x00940000 - 0x0094F000 C:\j2sdk1.4.2\jre\bin\net.dll 0x71AB0000 - 0x71AC7000 C:\WINDOWS\system32\WS2_32.dll 0x71AA0000 - 0x71AA8000 C:\WINDOWS\system32\WS2HELP.dll 0x03000000 - 0x03008000 C:\j2sdk1.4.2\jre\bin\nio.dll 0x03420000 - 0x0346F000 D:\eclipse-SDK-I20050112-1200-win32\plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86\swt-win32-3119.dll 0x774E0000 - 0x7761C000 C:\WINDOWS\system32\ole32.dll 0x773D0000 - 0x774D2000 C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll 0x77F60000 - 0x77FD6000 C:\WINDOWS\system32\SHLWAPI.dll 0x763B0000 - 0x763F9000 C:\WINDOWS\system32\comdlg32.dll 0x7C9C0000 - 0x7D1D4000 C:\WINDOWS\system32\SHELL32.dll 0x77120000 - 0x771AC000 C:\WINDOWS\system32\OLEAUT32.dll 0x76390000 - 0x763AD000 C:\WINDOWS\system32\IMM32.dll 0x74D90000 - 0x74DFB000 C:\WINDOWS\system32\USP10.dll 0x035B0000 - 0x035B7000 C:\Program Files\Logitech\MouseWare\System\LgWndHk.dll 0x035F0000 - 0x035F8000 D:\eclipse-SDK-I20050112-1200-win32\plugins\org.eclipse.core.resources.win32_3.0.0\os\win32\x86\core_3_1_0.dll 0x03750000 - 0x03761000 C:\WINDOWS\system32\ctagent.dll 0x73F10000 - 0x73F6C000 C:\WINDOWS\system32\DSOUND.dll 0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll 0x5AD70000 - 0x5ADA8000 C:\WINDOWS\system32\uxtheme.dll 0x74C80000 - 0x74CAC000 C:\WINDOWS\system32\oleacc.dll 0x76080000 - 0x760E5000 C:\WINDOWS\system32\MSVCP60.dll 0x03830000 - 0x03AF5000 C:\WINDOWS\system32\xpsp2res.dll 0x77B40000 - 0x77B62000 C:\WINDOWS\system32\Apphelp.dll 0x76FD0000 - 0x7704F000 C:\WINDOWS\system32\CLBCATQ.DLL 0x77050000 - 0x77115000 C:\WINDOWS\system32\COMRes.dll 0x75CF0000 - 0x75D81000 C:\WINDOWS\System32\mlang.dll 0x6EEC0000 - 0x6EEEA000 D:\data\eclipse\workspace\javahl-win32\libapr.dll 0x71A50000 - 0x71A8F000 C:\WINDOWS\system32\MSWSOCK.dll 0x6EE50000 - 0x6EE59000 D:\data\eclipse\workspace\javahl-win32\libapriconv.dll 0x04470000 - 0x04569000 D:\data\eclipse\workspace\javahl-win32\libeay32.dll 0x71AD0000 - 0x71AD9000 C:\WINDOWS\system32\WSOCK32.dll 0x04570000 - 0x0460E000 D:\data\eclipse\workspace\javahl-win32\libdb42.dll 0x04610000 - 0x04640000 D:\data\eclipse\workspace\javahl-win32\ssleay32.dll 0x6EE60000 - 0x6EE99000 D:\data\eclipse\workspace\javahl-win32\libaprutil.dll 0x03C50000 - 0x03C60000 C:\Program Files\Subversion\bin\intl.dll 0x04640000 - 0x0470C000 D:\data\eclipse\workspace\javahl-win32\libsvnjavahl-1.dll 0x76780000 - 0x76789000 C:\WINDOWS\system32\SHFOLDER.dll 0x76380000 - 0x76385000 C:\WINDOWS\system32\msimg32.dll 0x037E0000 - 0x037EB000 C:\Program Files\Common Files\Logitech\Scrolling\LgMsgHk.dll 0x76C90000 - 0x76CB8000 C:\WINDOWS\system32\imagehlp.dll 0x59A60000 - 0x59B01000 C:\WINDOWS\system32\DBGHELP.dll 0x76BF0000 - 0x76BFB000 C:\WINDOWS\system32\PSAPI.DLL Heap at VM Abort: Heap def new generation total 9152K, used 1888K [0x10010000, 0x109f0000, 0x113e0000) eden space 8192K, 20% used [0x10010000, 0x101b0ab8, 0x10810000) from space 960K, 23% used [0x10900000, 0x10937648, 0x109f0000) to space 960K, 0% used [0x10810000, 0x10810000, 0x10900000) tenured generation total 121024K, used 77731K [0x113e0000, 0x18a10000, 0x20210000) the space 121024K, 64% used [0x113e0000, 0x15fc8da8, 0x15fc8e00, 0x18a10000) compacting perm gen total 28672K, used 28508K [0x20210000, 0x21e10000, 0x24210000) the space 28672K, 99% used [0x20210000, 0x21de72d8, 0x21de7400, 0x21e10000)
resolved fixed
dd05f31
["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-02-01T00:31:56Z"
"2005-01-13T09:53:20Z"
84,077
Bug 84077 Table.pack() extends last column to include scroll bar
The following code causes a shell to grow without bounds. The problem is that Windows expands the last column to include the scroll bar when Column.pack() is called. import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; 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 EclipseCorner4 { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Table Column Pack"); GridLayout vertical = new GridLayout(); vertical.numColumns = 1; shell.setLayout(vertical); final Table table = new Table(shell, SWT.SINGLE); table.setHeaderVisible(true); table.setLinesVisible(true); final TableColumn col1 = new TableColumn(table, SWT.CENTER); col1.setText("Column 1"); final TableColumn col2 = new TableColumn(table, SWT.CENTER); col2.setText("Column 2"); col1.pack(); col2.pack(); Button button = new Button(shell, SWT.PUSH); button.setText("Fill Data"); button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent event) { // table.layout(true); table.setRedraw(false); table.removeAll(); String[] data1 = { "1", "2" }; String[] data2 = { "3", "4" }; TableItem item1 = new TableItem(table, SWT.NONE); item1.setText(data1); TableItem item2 = new TableItem(table, SWT.NONE); item2.setText(data2); col1.pack(); col2.pack(); shell.pack(); table.setRedraw(true); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
resolved fixed
165e842
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-31T20:36:51Z"
"2005-01-31T19:33:20Z"
83,791
Bug 83791 Repaint problems for Combo using SWT.SIMPLE style
When a few Combo boxes using SWT.SIMPLE style are visible, a series of manual resizes of the containing composite leaves areas of the Combo littered with buffer noise. The first two attached screen-dumps show the result of running the test code below, both before and after resizing of the window. The third one shows a portion of a commercial interface I am attempting to build at the moment, where the same problem is evident. -----------------8<--------------------- package test; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class ComboRepaintBugDemo { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); FillLayout fillLayout = new FillLayout(SWT.VERTICAL); fillLayout.marginHeight = 20; fillLayout.marginWidth = 20; fillLayout.spacing = 20; shell.setLayout(fillLayout); Combo combo1 = new Combo(shell, SWT.SIMPLE); combo1.setBackground(display.getSystemColor(SWT.COLOR_RED)); Combo combo2 = new Combo(shell, SWT.SIMPLE); combo2.setBackground(display.getSystemColor(SWT.COLOR_GREEN)); Combo combo3 = new Combo(shell, SWT.SIMPLE); combo3.setBackground(display.getSystemColor(SWT.COLOR_BLUE)); Combo combo4 = new Combo(shell, SWT.SIMPLE); combo4.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } -------------------8<-----------------
resolved fixed
1b41a98
["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-01-28T20:13:53Z"
"2005-01-27T04:26:40Z"
83,699
Bug 83699 Font reset to default after screen saver
I20050125-0800 All editors and views using a StyledText widget have the font reset to default after coming back from my screen saver. Makes build I20050125-0800 unusable for me. Works if I replace org.eclipse.swt.win32_3.1.0 with the one from last I-build. This breakpoint gets hit when I return from the screen saver Thread [main] (Suspended (breakpoint at line 6820 in StyledText)) StyledText.setFont(Font) line: 6820 StyledText(Control).updateFont(Font, Font) line: 2913 StyledText(Composite).updateFont(Font, Font) line: 810 Canvas(Composite).updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Shell(Composite).updateFont(Font, Font) line: 807 Display.updateFont() line: 3379 Display.messageProc(int, int, int, int) line: 2276 OS.PeekMessageW(MSG, int, int, int, int) line: not available [native method] OS.PeekMessage(MSG, int, int, int, int) line: 2016 Display.readAndDispatch() line: 2510 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1584 Workbench.runUI() line: 1550 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 288 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 144 IDEApplication.run(Object) line: 102 1.run(Object) line: 225 EclipseStarter.run(Object) line: 274 EclipseStarter.run(String[], Runnable) line: 129 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object[]) line: 324 Main.basicRun(String[]) line: 255 Main.run(String[]) line: 811 Main.main(String[]) line: 795
verified fixed
cc9a023
["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-26T23:02:49Z"
"2005-01-26T11:46:40Z"
83,765
Bug 83765 DCR: add strikeout to TextLayout
add underline and strikeout to TextLayout on all platforms.
resolved fixed
ff5cee0
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/TextStyle.java", "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-01-26T21:37:23Z"
"2005-01-26T22:53:20Z"
57,068
Bug 57068 [browser] Curious behaviour on target=_blank links
Hi, I am using the SWT browser widget to display HTML and let the user navigate through the WWW in my application. Earlier the browser ignored clicking on links that would open in a new window (with having target="_blank"). I've now found out the OpenWindowListener which could solve my problem. Playing around with it, I came up to this snippet, which shows a very strange behaviour: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Main Window"); shell.setLayout(new FillLayout()); Browser browser = new Browser(shell, SWT.NONE); initialize(display, browser); shell.open(); browser.setUrl("C:/index.html"); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } static void initialize(final Display display, Browser browser) { browser.addOpenWindowListener(new OpenWindowListener() { public void open(WindowEvent event) { event.browser.getUrl(); //Comment / Uncomment this line! } }); } The file "index.html" is a local HTML file with a simple link that uses target="_blank". Having the "event.browser.getUrl();" commented, nothing happens. But when uncommented, after clicking on the URL it opens in my system default browser (IE). I am also wondering, why the WindowEvent event does not provide information about the URL that the new browser-window will load? Regards, Ben
resolved fixed
7303839
["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-01-26T21:37:22Z"
"2004-04-01T17:20:00Z"
82,346
Bug 82346 CLabel disappears when given SWT.CENTER flag in constructor
Not working (CLabel disappears): ... CLabel label = new CLabel(composite, SWT.SHADOW_IN | SWT.CENTER); label.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); ... Workaround: ... CLabel label = new CLabel(composite, SWT.SHADOW_IN); label.setAlignment(SWT.CENTER); label.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); ... Noticed this on Linux (gtk) , Eclipse 3.1M4
resolved fixed
617caa1
["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-26T20:41:27Z"
"2005-01-06T19:33:20Z"
83,546
Bug 83546 Printing doesn't seem to work anymore in latest integration build
In I20050118-1015, I cannot print a document (text file) from Eclipse. I need to copy the contents, open a text editor, paste the contents into the text editor and then print it. Then it works fine.
resolved fixed
1a5ca70
["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-01-26T18:16:18Z"
"2005-01-24T15:20:00Z"
80,414
Bug 80414 ArrmListener for MenuItem generates submenu with invisible lables
I have an extension which extends "org.eclipse.ui.actionSets". This adds a menu in Eclipse main menu called "MyMenu". Under "MyMenu", there are a few second-level submenu items "submenu1", "submenu2" and "submenu3". "submenu2" is a IWorkbenchWindowPulldownDelegate2 object. It has a few third- level submenu items labelled "subsubmenu1", "subsubmenu2", "subsubmenu3". The creation of the third-level submenus are shown in the following code: MenuItem item = new MenuItem(submenu2, SWT.ICON | SWT.CASCADE); item.setText("subsubmenu1"); Menu menu = new Menu(WorkbenchUtils.getDefaultShell(), SWT.DROP_DOWN); item.setMenu(menu); MyDropDownSelectionListener listener = new MyDropDownSelectionListener(); item.addArmListener(listener); public MyDropDownSelectionListener() { public void widgetArmed(ArmEvent e) { if (e.getSource() instanceof MenuItem) { MenuItem menuItem = (MenuItem)e.getSource(); MenuManager menuManager = new MenuManager(); menuManager.add(new Action("Action 1") { }); menuManager.add(new Action("Action 2") { }); Menu cascadeMenu = menuItem.getMenu(); MenuItem[] oldItems = cascadeMenu.getItems(); for(int i = 0; i < oldItems.length;i++) { oldItems[i].dispose(); } IContributionItem[] newItems = menuManager.getItems(); for (int i = 0; i < newItems.length; i++) { newItems[i].fill(cascadeMenu, -1); } } } } The result is that only "Action 2" is visible. "Action 1" is not visible. The following is the structure of the menu: MyMenu ---> submenu1 submenu2 ---> subsubmenu1 submenu3 subsubmenu2 ---> |_______| // "Action 1" not visible subsubmenu3 Action 2 This problem only happens on Linux/Motif.
resolved fixed
8d32a5e
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/MenuItem.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-25T19:58:19Z"
"2004-12-07T20:06:40Z"
49,426
Bug 49426 Layouts should support laying out only a subset of a composite's children
Currently all standard SWT layout managers always lay out all children of the composite they are managing. This includes children which are not visible. While this may be desired in some cases, it makes it difficult to manage dynamic layouts where the layout should change when a control is made visible or invisible. The SWT layout managers should allow the programmer to specify a subset of the managed controls for which a layout will be computed. I initially thought of having a "hideInvisibleControls" flag on all layout managers but that would not be sufficient. When hiding a control you could redo the layout and get the expected results but when showing a control, you first need to recompute the layout to make room for the control and then make the control visible after the layout has changed. If you were restricted to computing a layout for visible controls, you would first have to make the control visible, thus showing it with a wrong position and size, and then recompute the layout. So instead of such a flag I am proposing a "public Control[] controls" field for all layout managers where you can explicitly set the controls which will be considered for computing the layout. If this field is set to null (which should be the default), the composite will be queried for all children (the current behaviour). Simply replacing all calls to "composite.getChildren()" by "controls == null ? composite.getChildren() : controls" in all layout managers should do the trick. I have done these modifications to my own copies of the SWT layout managers (where I simply copied the original code; this cannot be done through inheritance because the calls to composite.getChildren() are not encapsulated in a protected method of the Layout class). So far I have tested the modified versions of FillLayout and FormLayout and they worked as expected.
resolved fixed
ee0cb80
["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/GridData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/GridLayout.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/RowData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/RowLayout.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-24T22:00:37Z"
"2003-12-30T21:33:20Z"
83,532
Bug 83532 [browser] HTTPS link crashes Browser with Mozilla 1.7.5
null
resolved fixed
73a144c
["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/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-01-24T14:45:14Z"
"2005-01-24T15:20:00Z"
82,640
Bug 82640 Setting style bits breaks SWT embedded Swing in Milestone M4
Creating an SWT container with Composite container = new Composite(shell, SWT.BORDER|SWT.EMBEDDED); for embedding swing no longer works under Linux for milestone 4. The embedded swing components aren't drawn when the SWT container appears. However it works if you create the container with Composite container = new Composite(shell, SWT.EMBEDDED);
resolved fixed
c2991ac
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/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-01-21T19:22:26Z"
"2005-01-12T06:06:40Z"
83,305
Bug 83305 Javadoc of Display.addFilter could be improved
I20050118 The Javadoc of Display.addFilter doesn't tell anything about filtering, it only says that the added listener will be notified. As far as I understood it no event is filtered ever but the listener could set doit.false and hope that all other listeners check that flag.
verified fixed
08c6b7c
["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-01-21T02:23:54Z"
"2005-01-20T14:06:40Z"
82,905
Bug 82905 drawImage doesn't honor clip rect
I tried both I20050104-1600 and 3.1M4 on different linux versions with gtk 2.2 and gtk 2.4. It seems that GC#drawImage(Image,int,int,int,int,int,int.int,int) will not honor the GC's clipping but draw over the whole client area if and only if SWT.NO_BACKGROUND is set and the image has an alpha channel. This should not happen! Steps to reproduce: I've attached a demo application which displays two custom tab stripe created by a custom canvas subclass. The first stripe uses NO_BACKGROUND. I think, that's valid (and works on Windows) because the canvas draws its own background (the real application does more than just filling it with a simple color) and otherwise, it would flicker (unfortunately, blitting alpha-images is quite slow with SWT). You will notice that in the first stripe, the tab text will vanish if you move the mouse over the tabs. This seems happen because everything is redrawn is parts of the stripe are updated and the images are drawn always and the texts only inside the clipping region. So the images overwrite the text outside of the clipping region.
verified fixed
77d1382
["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/graphics/GC.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-20T16:09:48Z"
"2005-01-15T11:53:20Z"
64,923
Bug 64923 EC: need api to query for Tray support
Maybe something like Tray.isPresent() ? The motivation for wanting to know this, as opposed to just blindly using it, is pasted below. " if you want to close all windows and have your program run in the background with only a tray item to show status information and to (re-)open the main window, you need to be sure that the tray item is really displayed, or you risk leaving your application running without any means to control it. "
resolved fixed
8d4295b
["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Display.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-01-20T00:24:27Z"
"2004-06-01T11:40:00Z"
83,262
Bug 83262 rxvt pastes null terminator
When pasting using the middle mouse button from StyledText into an rxvt window, it contains a null terminator at the end. Pasting from other applications like gedit or mozilla into rxvt does not show this behaviour, and this is not reproducable when pasting into an xterm. This problem exists on both Motif and GTK+. Since the X clipboard protocol has a string length field, we do not need to be null terminating these strings.
verified fixed
1f0c909
["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/RTFTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/org/eclipse/swt/dnd/RTFTransfer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/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-01-19T22:43:24Z"
"2005-01-19T21:26:40Z"
42,632
Bug 42632 Clipboard becomes empty after shell closes
Selecting text from one of the properties page in Linux GTK and then copying has no effect despite the option being there. STEPS 1) Open a preference pahe on a project 2) Select the path 3)Pop up the menu and select copy or use Ctrl-C 4) Paste somewhere - the clipboard is empty or the previous contents.
resolved fixed
3b1252a
["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java"]
SWT
https://github.com/eclipse-platform/eclipse.platform.swt
eclipse-platform/eclipse.platform.swt
java
null
null
null
"2005-01-19T20:42:29Z"
"2003-09-05T19:26:40Z"
82,828
Bug 82828 Table's SWT.FULL_SELECTION broken for empty table items
I20050112-1200 Empty cells do not get the selection bg color. Test Case: 1. start fresh Eclipse 2. Window > Preferences > Java > Editor > Hovers 3. Select a line in the table that has an empty cell ==> empty cell does not get selection bg color This used to work in previous builds.
resolved fixed
0b8a14c
["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-01-18T19:14:26Z"
"2005-01-14T08:06:40Z"