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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
199,137 | Bug 199137 Debug view scrolls right when thread suspends | null | resolved fixed | 99e696b | ["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 | "2007-09-19T14:44:56Z" | "2007-08-07T18:06:40Z" |
202,524 | Bug 202524 StyledText not respecting parent's background mode | Build ID: I20070625-1500 Steps To Reproduce: Sample code below demonstrates how the StyledText is inheriting its parent's background color when it should not. /** * StyledTextBackgroundColorIssue.java */ package tests; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; /** * Demonstrates a StyledText issue where StyledText is inheriting its parent's * background color even if the parent set its background mode to INHERIT_NONE. */ public class StyledTextBackgroundColorIssue { private static Shell shell; public static void main(String[] args) { Display display = new Display(); shell = new Shell(display); createContents(shell); shell.setBounds(50, 50, 300, 150); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } private static void createContents(Composite parent) { parent.setLayout(new FillLayout()); //For this set of widgets, 3 nested composites, you'll see them colored in //this order: BLUE, BLUE, RED Composite c1 = new Composite(parent, SWT.BORDER); c1.setLayout(new GridLayout()); c1.setBackground(c1.getDisplay().getSystemColor(SWT.COLOR_BLUE)); c1.setBackgroundMode(SWT.INHERIT_FORCE); Composite c2 = new Composite(c1, SWT.BORDER); c2.setLayout(new GridLayout()); c2.setLayoutData(new GridData(GridData.FILL_BOTH)); c2.setBackgroundMode(SWT.INHERIT_NONE); Composite c3 = new Composite(c2, SWT.NONE); c3.setLayoutData(new GridData(GridData.FILL_BOTH)); c3.setBackground(c2.getDisplay().getSystemColor(SWT.COLOR_RED)); //For this set of widgets, where the innermost one is StyledText, you'll //see them colored in this order: BLUE, BLUE, BLUE //The behavior should be the same as above (BLUE, BLUE, RED); c1 = new Composite(parent, SWT.BORDER); c1.setLayout(new GridLayout()); c1.setBackground(c1.getDisplay().getSystemColor(SWT.COLOR_BLUE)); c1.setBackgroundMode(SWT.INHERIT_FORCE); c2 = new Composite(c1, SWT.BORDER); c2.setLayout(new GridLayout()); c2.setLayoutData(new GridData(GridData.FILL_BOTH)); c2.setBackgroundMode(SWT.INHERIT_NONE); StyledText st1 = new StyledText(c2, SWT.NONE); st1.setLayoutData(new GridData(GridData.FILL_BOTH)); st1.setBackground(c2.getDisplay().getSystemColor(SWT.COLOR_RED)); st1.setText("Should be RED"); } } More information: | resolved fixed | efdb698 | ["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 | "2007-09-18T20:53:12Z" | "2007-09-06T20:20:00Z" |
203,648 | Bug 203648 Icon above cursor on drag and drop | build i0917-0010 In the Package Explorer when I select a file and start to drag it around, the icon for the file appears roughly one inch above the cursor itself. Although the behaviour is not effected (ignore the icon and place the cursor at the destination), this is visually distracting. | resolved fixed | 4f375a4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-18T17:36:03Z" | "2007-09-17T20:13:20Z" |
203,817 | Bug 203817 Scrolled custom draw trees not drawn correctly in RTL | If you have a custom draw that has scroll bars, it will not draw correctly in RTL. Note that without scrollbars everything looks OK. | resolved fixed | ea4586e | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-18T16:54:44Z" | "2007-09-18T15:40:00Z" |
195,254 | Bug 195254 [consistency] Left Mouse Down is Not recieved on TabFolder on Linux.Works fine on Windows | Run the example on Windows. Click on tab items "aaa" & "bbb" . See MouseDown events received correctly. Now run on Linux - see that Mouse Down events are skipped. import org.eclipse.swt.SWT; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class TabSnippet { static final String [] EVENT_NAMES = { "None", "KeyDown", "KeyUp", "MouseDown", "MouseUp", "MouseMove", "MouseEnter", "MouseExit", "MouseDoubleClick", "Paint", "Move", "Resize", "Dispose", "Selection", "DefaultSelection", "FocusIn", "FocusOut", "Expand", "Collapse", "Iconify", "Deiconify", "Close", "Show", "Hide", "Modify", "Verify", "Activate", "Deactivate", "Help", "DragDetect", "Arm", "Traverse", "MouseHover", "HardKeyDown", "HardKeyUp", "MenuDetect", "SetData", "MouseWheel","38","Settings", "EraseItem", "MeasureItem","PaintItem" }; public static void main(String [] args) { Listener listener = new Listener() { public void handleEvent(Event event) { System.out.println( EVENT_NAMES[event.type] + " ["+event.type+"] " ); } }; final Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new FillLayout (SWT.VERTICAL)); Text text = new Text(shell, SWT.NONE); TabFolder tab = new TabFolder(shell,SWT.NONE); TabItem item = new TabItem(tab, 0); item.setText("aaa"); TabItem item1 = new TabItem(tab, 1); item1.setText("bbb"); tab.addListener(SWT.FocusIn, listener); tab.addListener(SWT.FocusOut, listener); tab.addListener(SWT.MouseDown, listener); tab.addListener(SWT.MouseUp, listener); tab.addListener(SWT.Selection, listener); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } | resolved fixed | aa6d3c4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-17T14:43:09Z" | "2007-07-03T13:40:00Z" |
189,847 | Bug 189847 [DND] Combo/Text on Linux does not fire Drop event. | null | resolved fixed | 117c71d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DateTime.java", "examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/dnd/DNDExample.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-14T21:39:01Z" | "2007-05-30T07:26:40Z" |
148,345 | Bug 148345 ExpandableWidget#setText/layout messes up StyledText in it | When StyledText is in ExpandableWidget and ExpandableWidget#setText and ExpandableWidget#layout are called, StyledText's redraw doesn't work so that if some refresh event, i.e. iconify/deiconify happens, its content isn't redrawn correctly. Here is how to. a) Install the attached plugin. b) Run workbench c) Window > Show view > Other ... d) Sample Category > ExpandableWidget view e) Open Inner section(0), then open Nested section(0) f) Copy and Paste very long string in StyledText next to the label of "Second label" ( You can type here instead of Copy and Paste. If so, while typing, you will see a refresh problem so that you don't have to do g) and h) below) g) Make sure that the pasted string is wrapped. ( So that you will see multiple lines in StyledText. See Fig 1 in the attached picture ) h) Iconify/Deiconify the workbench window You will see the content in StyleText is gone. ( Fig 2 ) | resolved fixed | 9f7b55d | ["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 | "2007-09-14T18:07:31Z" | "2006-06-23T08:06:40Z" |
202,359 | Bug 202359 Label with SWT.WRAP does not work on WPF | I am on Eclipse 3.4M1. The test case below works as expected on the regular 32-bit Windows build. Test case: import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; public class JFaceMessageDialogBug { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(); shell.setLayout(new GridLayout(1, true)); Label label = new Label(shell, SWT.WRAP); label.setText("This is a message that goes over the shell forever and ever and ever"); label.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); shell.setSize(300, 200); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } | resolved fixed | ec0f5dc | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-13T21:35:19Z" | "2007-09-06T03:40:00Z" |
184,186 | Bug 184186 StyledText.setTabs(int) resets caret | I20070424-0930 Calling StyledText.setTabs(int) resets caret location to 0. This is not expected and not Javadoc'ed. If possible the caret should be preserved and if not it should be documented. | verified fixed | 78dd0ce | ["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 | "2007-09-13T20:50:30Z" | "2007-04-26T09:33:20Z" |
149,576 | Bug 149576 [DnD] StyledText auto-scroll does not work if first line is empty | If the first line of the StyledText content is empty, auto-scrolling does not work. Debugging showed that StyledTextDragAndDropEffect computes the potential scroll amount (the extent of a char) using StyledText.getTextBounds(0, 0) which yields a zero extent in case of an empty first line. Can be easily replicated with a slightly modified version of SWT snippet 210 (using DND.FEEDBACK_SCROLL). | resolved fixed | 4a3bc80 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-13T16:33:44Z" | "2006-07-04T13:33:20Z" |
202,671 | Bug 202671 [leopard] crash when finishing any snippet | Mac OS X 10.5 (9A527) installed from scratch - run the snippet below, and after closing the shell you'll get the error at the bottom - this happens for any SWT app that I run - this has always worked on OSX; has something changed in 10.5 that swt needs to adjust to? Or is this a bug in 10.5? Scott are you able to try this? public class Snippet1 { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell(display); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } Process: java [1860] Path: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java Identifier: java Version: ??? (???) Code Type: X86 (Native) Parent Process: eclipse [1510] Date/Time: 2007-09-07 13:53:18.329 -0400 OS Version: Mac OS X 10.5 (9A527) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) Client VM (1.5.0_12-115 mixed mode, sharing) Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_12-115) for macosx-x86, built on Aug 10 2007 19:51:24 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x0045c6cb Current thread (0x0100b210): JavaThread "Thread-0" daemon [_thread_in_vm, id=-1606996192] Stack: [0xbf800000,0xc0000000) Java Threads: ( => current thread ) 0x01001480 JavaThread "DestroyJavaVM" [_thread_blocked, id=-1333784576] =>0x0100b210 JavaThread "Thread-0" daemon [_thread_in_vm, id=-1606996192] 0x010090d0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8411136] 0x01008600 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8500224] 0x010081a0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8496640] 0x010079d0 JavaThread "Finalizer" daemon [_thread_blocked, id=8485376] 0x010075f0 JavaThread "Reference Handler" daemon [_thread_blocked, id=8479232] Other Threads: 0x01006d40 VMThread [id=8475648] 0x01009c30 WatcherThread [id=8414720] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 576K, used 361K [0x25580000, 0x25620000, 0x25a60000) eden space 512K, 58% used [0x25580000, 0x255ca920, 0x25600000) from space 64K, 99% used [0x25600000, 0x2560fdc8, 0x25610000) to space 64K, 0% used [0x25610000, 0x25610000, 0x25620000) tenured generation total 1408K, used 183K [0x25a60000, 0x25bc0000, 0x29580000) the space 1408K, 13% used [0x25a60000, 0x25a8dec0, 0x25a8e000, 0x25bc0000) compacting perm gen total 8192K, used 697K [0x29580000, 0x29d80000, 0x2d580000) the space 8192K, 8% used [0x29580000, 0x2962e610, 0x2962e800, 0x29d80000) ro space 8192K, 63% used [0x2d580000, 0x2da95ed8, 0x2da96000, 0x2dd80000) rw space 12288K, 43% used [0x2dd80000, 0x2e2ab0e8, 0x2e2ab200, 0x2e980000) Virtual Machine arguments: JVM args: -Djava.library.path=/Users/felipeheidrich/Desktop/Workspace-Grant/org.eclipse.swt.carbon.macosx -Dfile.encoding=MacRoman Java command: org.eclipse.swt.snippets.Snippet1 launcher type: SUN_STANDARD Thread 0 Crashed: 0 libclient.dylib 0x0045c6cb 0x3b9000 + 669387 1 libclient.dylib 0x005c86d7 JNI_CreateJavaVM_Impl + 101863 2 libswt-carbon-3408.jnilib 0x05f83f60 callback + 794 3 ??? 0x05ff3655 0 + 100611669 4 com.apple.CoreFoundation 0x935ffe52 __CFRunLoopDoObservers + 466 5 com.apple.CoreFoundation 0x936018c4 CFRunLoopRunSpecific + 2660 6 com.apple.CoreFoundation 0x936021a8 CFRunLoopRunInMode + 88 7 java 0x00005142 0x1000 + 16706 8 java 0x0000258e 0x1000 + 5518 Thread 1: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d18ca 0x3b9000 + 1149130 3 libclient.dylib 0x004d1569 0x3b9000 + 1148265 4 libclient.dylib 0x00470fea 0x3b9000 + 753642 5 libclient.dylib 0x00470ae5 0x3b9000 + 752357 6 libclient.dylib 0x00491a82 0x3b9000 + 887426 7 libclient.dylib 0x005afba1 JNI_CreateJavaVM_Impl + 689 8 java 0x000044b7 0x1000 + 13495 9 java 0x00004d3f 0x1000 + 15679 10 libSystem.B.dylib 0x937d50f1 _pthread_start + 321 11 libSystem.B.dylib 0x937d4fae thread_start + 34 Thread 2: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libSystem.B.dylib 0x93819f03 mach_msg_server + 491 3 libclient.dylib 0x003c8325 0x3b9000 + 62245 4 libclient.dylib 0x003c80e5 0x3b9000 + 61669 5 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 6 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 3: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d1813 0x3b9000 + 1148947 3 libclient.dylib 0x004d16ac 0x3b9000 + 1148588 4 libclient.dylib 0x0041660d 0x3b9000 + 382477 5 libclient.dylib 0x00416177 0x3b9000 + 381303 6 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 7 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 4: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d18ca 0x3b9000 + 1149130 3 libclient.dylib 0x004176aa 0x3b9000 + 386730 4 libclient.dylib 0x00416c95 0x3b9000 + 384149 5 libclient.dylib 0x005f84b1 JVM_MonitorWait + 465 6 ??? 0x035839b1 0 + 56113585 7 ??? 0x0357d9d3 0 + 56089043 8 ??? 0x0357d9d3 0 + 56089043 9 ??? 0x0357b227 0 + 56078887 10 libclient.dylib 0x004d28ea 0x3b9000 + 1153258 11 libclient.dylib 0x00416b83 0x3b9000 + 383875 12 libclient.dylib 0x00416a75 0x3b9000 + 383605 13 libclient.dylib 0x004169b5 0x3b9000 + 383413 14 libclient.dylib 0x004168d8 0x3b9000 + 383192 15 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 16 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 5: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d18ca 0x3b9000 + 1149130 3 libclient.dylib 0x004176aa 0x3b9000 + 386730 4 libclient.dylib 0x00416c95 0x3b9000 + 384149 5 libclient.dylib 0x005f84b1 JVM_MonitorWait + 465 6 ??? 0x035839b1 0 + 56113585 7 ??? 0x0357d9d3 0 + 56089043 8 ??? 0x0357daaa 0 + 56089258 9 ??? 0x0357daaa 0 + 56089258 10 ??? 0x0357b227 0 + 56078887 11 libclient.dylib 0x004d28ea 0x3b9000 + 1153258 12 libclient.dylib 0x00416b83 0x3b9000 + 383875 13 libclient.dylib 0x00416a75 0x3b9000 + 383605 14 libclient.dylib 0x004169b5 0x3b9000 + 383413 15 libclient.dylib 0x004168d8 0x3b9000 + 383192 16 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 17 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 6: 0 libSystem.B.dylib 0x937a4bc2 semaphore_wait_trap + 10 1 libclient.dylib 0x00417dce 0x3b9000 + 388558 2 libclient.dylib 0x00417ab5 0x3b9000 + 387765 3 libclient.dylib 0x004168d8 0x3b9000 + 383192 4 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 5 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 7: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d18ca 0x3b9000 + 1149130 3 libclient.dylib 0x004d1569 0x3b9000 + 1148265 4 libclient.dylib 0x004183fb 0x3b9000 + 390139 5 libclient.dylib 0x004180d8 0x3b9000 + 389336 6 libclient.dylib 0x004168d8 0x3b9000 + 383192 7 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 8 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 8: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d18ca 0x3b9000 + 1149130 3 libclient.dylib 0x004d16ac 0x3b9000 + 1148588 4 libclient.dylib 0x00418510 0x3b9000 + 390416 5 libclient.dylib 0x004168d8 0x3b9000 + 383192 6 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 7 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 9: 0 libSystem.B.dylib 0x937a4b86 mach_msg_trap + 10 1 libSystem.B.dylib 0x937ac37c mach_msg + 72 2 libclient.dylib 0x004d1813 0x3b9000 + 1148947 3 libclient.dylib 0x00418d2f 0x3b9000 + 392495 4 libclient.dylib 0x0041887a 0x3b9000 + 391290 5 libclient.dylib 0x0067df25 JVM_RaiseSignal + 441109 6 libSystem.B.dylib 0x93821017 _pthread_body + 27 Thread 0 crashed with X86 Thread State (32-bit): eax: 0x00000000 ebx: 0x005c8621 ecx: 0x0100b2d0 edx: 0x00000000 edi: 0x0100b210 esi: 0xbfffef20 ebp: 0xbfffeef0 esp: 0xbfffeef0 ss: 0x0000001f efl: 0x00010246 eip: 0x0045c6cb cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 cr2: 0x00000000 Binary Images: 0x1000 - 0xaff0 java ??? (???) <7be3ee78d4dc0e81282a244eb1bc37dc> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java 0x11000 - 0x18ffd com.apple.JavaVM 12.0.0 (12.0.0) <13e44eaf254f745c0caffb0149f06c6b> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM 0x3a000 - 0x41fe0 libverify.dylib ??? (???) <d25772ada0811c5acde8dc5a064b6ff2> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x47000 - 0x61fef libjava.jnilib ??? (???) <149c19bec348c71c41e22a0086d869af> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jnilib 0x71000 - 0x7cffb libzip.jnilib ??? (???) <531285f2fbc0aa8a6c52a69597baa4e5> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jnilib 0x3b9000 - 0x708ffb libclient.dylib ??? (???) <fcaa40d3867423198af3882802557324> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libclient.dylib 0x5f81000 - 0x5f83fff +libswt-carbon-3408.jnilib ??? (???) /Users/felipeheidrich/Desktop/Workspace-Grant/org.eclipse.swt.carbon.macosx/libswt-carbon-3408.jnilib 0x5f88000 - 0x5fbb067 +libswt-pi-carbon-3408.jnilib ??? (???) /Users/felipeheidrich/Desktop/Workspace-Grant/org.eclipse.swt.carbon.macosx/libswt-pi-carbon-3408.jnilib 0x11a1d000 - 0x11aecff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x12bad000 - 0x12bb2fff com.apple.DictionaryServiceComponent 1.1 (1.1) /System/Library/Components/DictionaryService.component/Contents/MacOS/DictionaryService 0x8fe00000 - 0x8fe2d883 dyld 95.1 (???) <421e26152bb0af280d47a019f23c7e6b> /usr/lib/dyld 0x901dd000 - 0x901e8fe7 libCSync.A.dylib ??? (???) <3ea2e8dd769d074069d956557b9c286f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x901e9000 - 0x90272ff7 com.apple.LaunchServices 272 (272) <019dac3415b6cde314eb5b4436e4242f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x90273000 - 0x903b8ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <0017369ffc7b48577066818b042f3507> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x903b9000 - 0x903bafef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib 0x90409000 - 0x90492fff com.apple.framework.IOKit 1.5.0 (???) <bd2c027df7a737e6443a64659d4027c2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x904ca000 - 0x904e7fea libJPEG.dylib ??? (???) <c9eecdefd15b4b1b6c6f366394bbfbf8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x904e8000 - 0x904effff libCGATS.A.dylib ??? (???) <626327fae7171adfe4636f9ae35e57db> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x90599000 - 0x9060effb com.apple.CFNetwork 203 (203) <7e209f4cf9bcadab2b3f64310aef4536> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x906d6000 - 0x906e0feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <7912eb6f16eb98a7d79990e6f6d3239c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x906e1000 - 0x906e9fff com.apple.DiskArbitration 2.2 (2.2) <6d95568b4d68ca77cd36c2dd7a323d07> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x906ea000 - 0x906f0fff com.apple.print.framework.Print 218 (219) <610347ee6ac14d152cad71dde7e1d39b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x906f1000 - 0x90770ff5 com.apple.SearchKit 1.2.0 (1.2.0) <529f4c9acd23965173fa81a6afc8d203> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x90771000 - 0x90b81fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x90c46000 - 0x91434fff com.apple.AppKit 6.5 (929) <b02358937f1ba3b85cc59a5a9ad397ac> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x91435000 - 0x914e5fff edu.mit.Kerberos 6.0.11 (6.0.11) <dc312ae0dbd95a556578870c42229192> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x914e6000 - 0x91515fe3 com.apple.AE 401 (401) <c5a8d0ca8be55227c23336610a286c4a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x9151c000 - 0x91552fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <499a455afdf48dfb00fc34a2fb898f33> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x91553000 - 0x91561ffd libz.1.dylib ??? (???) <137d8c1b7787613d9b7c0f50e8604f7a> /usr/lib/libz.1.dylib 0x91562000 - 0x91562ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x91563000 - 0x91563fff com.apple.Carbon 135 (135) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x915b1000 - 0x9160afff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x9160b000 - 0x91668ffb libstdc++.6.dylib ??? (???) <981dbc0f8c3297f3d5ee969316545c1b> /usr/lib/libstdc++.6.dylib 0x91733000 - 0x917e2fe3 com.apple.CoreServices.OSServices 191 (191) <dc2c6908a0bbaf600781e86b1d3a1633> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x917e3000 - 0x917feffb libPng.dylib ??? (???) <624ba81f64680ed891075de1d5014c4c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x917ff000 - 0x917ffff8 com.apple.ApplicationServices 33 (33) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x91830000 - 0x918b7ff7 libsqlite3.0.dylib ??? (???) <2520da698d668da5b4207d8ce2296931> /usr/lib/libsqlite3.0.dylib 0x918b8000 - 0x91964fff com.apple.DesktopServices 1.4.2 (1.4.2) <473b50674345853162ea1e26b54f0e5d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x91965000 - 0x919a7fef com.apple.NavigationServices 3.5 (152) <144dabffea3df50e0f4ee34e3265ec1f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x919a8000 - 0x919c6fff libresolv.9.dylib ??? (???) <fe082a2e6672d51daba3a100267a7715> /usr/lib/libresolv.9.dylib 0x919c8000 - 0x91a8fff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x91a90000 - 0x91a90fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer 0x91a97000 - 0x91a97ffa com.apple.CoreServices 31 (31) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x91a98000 - 0x91a98ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x91a99000 - 0x91aa9ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bee5f5b8a10c6416bcb5c3c3868de394> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x91ad5000 - 0x9216aff3 com.apple.CoreGraphics 1.332.0 (???) <398632d9e0b82ee3f0b56e7f22be115c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x9219d000 - 0x9249dff3 com.apple.HIToolbox 1.5.0 (???) <993f7fd811971b4a86f19461396d3109> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x9249e000 - 0x9285cfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x9285d000 - 0x92881fff libxslt.1.dylib ??? (???) <5bc1c409858be1c41fe5eb7ac2a17937> /usr/lib/libxslt.1.dylib 0x928b5000 - 0x928b5ffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x928c9000 - 0x92919ff7 com.apple.HIServices 1.6.0 (???) <9fb7a2f06abaa6758d0069cb6e285089> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x9291a000 - 0x92ddcf7e libGLProgrammability.dylib ??? (???) <5a10e13f060bf88c2b137ecc3a1dbecc> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x92ddd000 - 0x92df3fff com.apple.DictionaryServices 1.0.0 (1.0.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x92df4000 - 0x92e1bfff libcups.2.dylib ??? (???) <b4184bdffb80bbd21bd0729d01af9a93> /usr/lib/libcups.2.dylib 0x92e1c000 - 0x92e90fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x92e91000 - 0x92e9cff9 com.apple.helpdata 1.0 (11) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 0x930af000 - 0x930ecfef libTIFF.dylib ??? (???) <8458ed4dee3489ff57b2c1d68dec6253> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x930ed000 - 0x930effff com.apple.help 1.1 (34) <4e34e2cdf99cfda36cade938b7b8dee3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x9312d000 - 0x9312fff5 libRadiance.dylib ??? (???) <28073e0926cb5cbf41e2ec3a1ce2ae5a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x93130000 - 0x93139fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <48b64d73304c1e897881d67a1516bc75> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x9313a000 - 0x931cdfef com.apple.ink.framework 101.3 (86) <90f33bfaf270afc42e98d13f3ba3c9c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x931ce000 - 0x934a4fe7 com.apple.CoreServices.CarbonCore 769 (769) <8ddbb32698afbf514148977d611af55d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x9350a000 - 0x93544ff7 com.apple.coreui 0.1 (50) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x93590000 - 0x936beff7 com.apple.CoreFoundation 6.5 (464) <428b4f8f8e4ef259b78ba7bf86ce4b9b> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x936bf000 - 0x937a3ffb com.apple.CoreData 100 (181) <09172bf5ca4b56c3e41edd15cb776200> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x937a4000 - 0x938f9fe3 libSystem.B.dylib ??? (???) <4a3a6737703f0c7ea02fed4cdb25466e> /usr/lib/libSystem.B.dylib 0x93964000 - 0x9396bfe9 libgcc_s.1.dylib ??? (???) <c884b86212d86db06b7dc6826b56973c> /usr/lib/libgcc_s.1.dylib 0x93bdd000 - 0x93bf5fff com.apple.openscripting 1.2.6 (???) <0f853ed2fffc2be829c7b55b38211765> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x93bf6000 - 0x93c06fff com.apple.speech.synthesis.framework 3.6.57 (3.6.57) <8e28fc1f6a04c72b1f1ca5e2b9222baf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x93c07000 - 0x93f9cfff com.apple.QuartzCore 1.5.0 (1.5.0) <32943332455652b91a0cdd50e218ec1e> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x93f9d000 - 0x94068fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x94069000 - 0x94096feb libvDSP.dylib ??? (???) <565d1717c2c80ca21e3e5219b8cd7348> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x941d0000 - 0x941f6fef libauto.dylib ??? (???) <87814dd0cf403aabdf4a37ee0801a304> /usr/lib/libauto.dylib 0x941f7000 - 0x94238fe7 libRIP.A.dylib ??? (???) <7dfa55da8443eb538999285efff784fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x94239000 - 0x9424ffef com.apple.CoreVideo 1.5.0 (1.5.0) <1b7e1c0ca4115bad724a403b2704a9e3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x94250000 - 0x94257ffe libbsm.dylib ??? (???) <4d1f862c7ab0ef5090733238ca0d6371> /usr/lib/libbsm.dylib 0x94258000 - 0x94337fff libobjc.A.dylib ??? (???) <e046faea96d35816c758c878b0784918> /usr/lib/libobjc.A.dylib 0x94338000 - 0x94375ff7 libGLImage.dylib ??? (???) <1c4686fc327043e686b653eb955b88c7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x94376000 - 0x9453efe7 com.apple.security 5.0 (31122) <f37784687b97f911a8a5b32b902d9469> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x953fe000 - 0x9547afeb com.apple.audio.CoreAudio 3.1.0 (3.1) <d5fb136f74505d0df778868fffbca96f> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x954cb000 - 0x955edfe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x955ee000 - 0x956a0ffb libcrypto.0.9.7.dylib ??? (???) <806f796305904e8c7e3993c96721a133> /usr/lib/libcrypto.0.9.7.dylib 0x956a1000 - 0x956adff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x956ae000 - 0x9578fff7 libxml2.2.dylib ??? (???) <f0fd688c42c5412257ddfeed5cce6bc4> /usr/lib/libxml2.2.dylib 0x95abb000 - 0x95bf3ff7 libicucore.A.dylib ??? (???) <ca68b940057e223bf25a794b81f9c9ba> /usr/lib/libicucore.A.dylib 0x95d8d000 - 0x95d99fe7 com.apple.opengl 1.5.2 (1.5.2) <ea1e65137fb9a3ff129b26fc0eb60ebb> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x95d9a000 - 0x95d9ffff com.apple.CommonPanels 1.2.4 (85) <f2f78333255a37042513bd30d8b42a47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x95da0000 - 0x95e31fef com.apple.ApplicationServices.ATS 3.0 (???) <c63d04756b55e590abe470b5b008749e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x95e32000 - 0x95e32ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x963b0000 - 0x96409fef com.apple.CoreText 2.0.0 (???) <ad310a0f8712646d65925342f644358f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x9640a000 - 0x96432fef com.apple.shortcut 1 (1.0) <44d957100d713de92c60f564ed998f1d> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x96433000 - 0x964adff8 com.apple.print.framework.PrintCore 5.5 (241) <fd885f0f3132769c0463db1a13e77a00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x964ae000 - 0x964f3fef com.apple.Metadata 10.5.0 (368) <23afa227c97f0018a04682e1e80eabe7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x964f4000 - 0x96508ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x96521000 - 0x9657dff7 com.apple.htmlrendering 68 (1.1.3) <6818a3b5ff144c17cbcc242739a77b57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x96588000 - 0x9658afff com.apple.securityhi 3.0 (30817) <52e4c640b1c17be98af3cd967d956746> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x965bf000 - 0x96666fef com.apple.QD 3.11.46 (???) <d4dedaae18937611ae376e9a86abaeb1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x966ac000 - 0x966b0fff libGIF.dylib ??? (???) <3305be2268b84a90f78c6f9a3079c466> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x966b1000 - 0x966b2ffc libffi.dylib ??? (???) <7efc58d57fd424e57e0362406d065256> /usr/lib/libffi.dylib 0x966b3000 - 0x9692bfe7 com.apple.Foundation 6.5 (664) <7cadbeaf10f179ff3f83a01f271179cc> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib 0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib | resolved fixed | 08e30b5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-12T20:05:47Z" | "2007-09-07T18:33:20Z" |
199,350 | Bug 199350 [Browser] setText can fail with IE6 on XP SP2 | null | resolved fixed | 45585fa | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-12T16:09:03Z" | "2007-08-09T03:26:40Z" |
108,813 | Bug 108813 LineStyles in Very Long Lines Takes Forever | null | resolved fixed | 74beac4 | ["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 | "2007-09-11T19:45:09Z" | "2005-09-06T07:00:00Z" |
172,290 | Bug 172290 Photoshop can't open some SWT generated PNG files | Eclipse 3.3M4 on Windows Photoshop can't open some SWT generated PNG files; other programs report parsing errors. We use this functionality in Jazz for producing screen shots. | resolved fixed | a1a8bcf | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/PngEncoder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common_j2me/org/eclipse/swt/internal/Compatibility.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 | "2007-09-11T19:41:52Z" | "2007-01-31T10:40:00Z" |
120,616 | Bug 120616 [KeyBindings] interactions: Ctrl+Shift+I does not arrive at display KeyDown filter | When, I press Ctrl+Shift+I, I get the following trace. There are two things that are odd. First of all, the modified "I" KeyDown event never arrives. Secondly, when I press the "I", it triggers a selection change to null, and then back to the previous selection. This happens in both the Outline view, Console view and a Java editor ... so it doesn't seem to widget specific. KEYS >>> Listener.handleEvent(type = KeyDown, stateMask = 0x0, keyCode = 0x40000, time = 8684128, character = 0x0) KEYS >>> Listener.handleEvent(type = KeyDown, stateMask = 0x40000, keyCode = 0x20000, time = 8685673, character = 0x0) SOURCES >> Selection changed to null SOURCES >> Selection changed to org.eclipse.debug.internal.ui.viewers.TreeSelection@3188eab | resolved fixed | ccdc725 | ["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 | "2007-09-11T18:59:00Z" | "2005-12-13T16:06:40Z" |
197,402 | Bug 197402 [SWT, GTK] Slider Buttons too large | I'm using Eclipse 3.3 on a Gentoo Linux box with the following GTK versions installed: x11-libs/gtk+-1.2.10-r12 x11-libs/gtk+-2.10.13 (Don't know which one Eclipse uses.) I'm experiencing problems with the Slider widget: Under certain circumstances, the buttons at the end of the slider are drawn a bit too large - they even exceed the size of the scrollbar. This doesn't happen all the time - most of the delivered views and editors work fine. Until now, I've only seen this problem occur on horizontal scrollbars. It happens both inside the distributed Eclipse and inside my own RCP applications. The easiest way for me to reproduce this problem is to open the SWT Controls example view and go to the Sliders page. I'll attach a screenshots to illustrate the problem - the left scrollbar belongs to the package explorer and looks as it should, the right one is drawn by the SWT Controls example view. | resolved fixed | 610c645 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Slider.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-11T17:52:45Z" | "2007-07-21T20:33:20Z" |
198,902 | Bug 198902 SWT ToolBar.setFont quirks on Mac OS X | null | resolved fixed | d98e416 | ["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 | "2007-09-11T15:17:48Z" | "2007-08-05T21:40:00Z" |
201,568 | Bug 201568 VM crashes when closing an ON_TOP shell on MacOS X | null | resolved fixed | d46eb49 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-11T15:01:00Z" | "2007-08-29T15:06:40Z" |
139,647 | Bug 139647 StyledText.getOffsetAtLocation can't return offset at end of a line | It doesn't seem like StyledText.getOffsetAtLocation is able to return an offset corresponding to the end of a line. This is unfortunate, because for any offset corresponding to the end of a line styledText.getOffsetAtLocation (styledText.getLocationAtOffset()) is not an identity transformation. This also appears to prevent the StyledTextDragAndDropEffect class from positioning the cursor at the end of a line for a drop. | resolved fixed | 1fa5b3f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-10T18:36:30Z" | "2006-05-02T00:33:20Z" |
13,411 | Bug 13411 [CCombo] Incorrect CCombo behaviour (list gets stuck) | integration build 0409, Motif only - File -> New -> Other - Plugin development -> Feature Project, Next - continue through the wizard to create the Feature project, Finish - a feature editor is automatically opened - go to the Information page - click the drop-down arrow on the Section combo, and it's dropped down - click this drop-down arrow again, and focus leaves but then re-enters the combo. Its list is not retracted. | resolved fixed | fb22460 | ["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 | "2007-09-07T22:01:15Z" | "2002-04-10T17:33:20Z" |
195,575 | Bug 195575 StyledText.getLocationAtOffset is slow for long lines was: Long lines take too long to display when "Show Whitespace Characters" is enabled. | Build ID: I20070625-1500 Steps To Reproduce: 1. Enable the "Show Whitespace Characters" feature. 2. Open a file containing a long line of data (>100 kB works well) in a text-based editor (text editor, or XML editor in Source mode). 3. Observe that Eclipse becomes unresponsive for 30+ seconds with 100% CPU utilization in Eclipse.exe. Turning off the "Show Whitespace Characters" feature reduces this to about < 3 seconds. More information: Test machine is 2 GHz with 2 GB RAM, running Win2k. | resolved fixed | 07cc106 | ["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 | "2007-09-07T20:49:13Z" | "2007-07-05T18:26:40Z" |
201,480 | Bug 201480 Tab traversal order is broken | I20070828-0800 When traversing selectable controls in reverse, the focus will get stuck. I have seen this in many different dialogs, etc., which leads me to believe that it's an SWT problem, but I could be wrong. The following is one place this can be reproduced: 1) Open the preferences dialog in Eclipse. 2) While holding Shift, press and hold Tab. 3) The backwards tab traversal gets stuck on the OK button. I have also noticed weird orderings in the forward traversal, though I don't have details. The problems may be related though. | resolved fixed | 63adc34 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-06T22:18:04Z" | "2007-08-28T22:26:40Z" |
200,621 | Bug 200621 Editors do not respect operating system caret settings | Build ID: I20070621-1340 Steps To Reproduce: 1. Change thickness of caret in control panel 2. Launch eclipse 3. Open a file More information: The text caret's size is not reflected by eclipse it remains the standard size inside editor windows; while the size change is reflected correctly in Eclipse dialogs. | resolved fixed | ae95c9e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Caret.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-06T21:37:24Z" | "2007-08-20T22:46:40Z" |
116,854 | Bug 116854 StyledText with SWT.WRAP cuts last character of wrapped line | I20051116-1332 - CustomControlExample, StyledText, WinXP default font (Tahoma Regular 8) - select 50 X 50 - select SWT.WRAP - set text to "a/Path/to/A.java" (no quotes) -> the character "A" is cut off; should appear on second line This is very annoying in the Details Pane of debug's Variables view. | resolved fixed | 1de9af6 | ["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 | "2007-09-06T19:37:14Z" | "2005-11-17T12:20:00Z" |
201,373 | Bug 201373 SIGSEGV in Printer.getPrinterList | null | resolved fixed | d894787 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/gtk/org/eclipse/swt/printing/Printer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-06T18:05:13Z" | "2007-08-28T05:46:40Z" |
201,716 | Bug 201716 VerifyKeyListener broken | Build ID: I20070828-0800 Steps To Reproduce: 1. Open a text editor 2. Press Ctrl-J to start incremental find, "Incremental Find" appears in the status bar 3. Typing text just cancels the search and inserts text into the editor More information: I think this is a regression, because incremental find was working ok in 3.4M1 | resolved fixed | 7654e11 | ["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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-09-05T21:54:38Z" | "2007-08-30T10:33:20Z" |
198,745 | Bug 198745 StyledRange causes final Arabic character to have medial form | null | resolved fixed | 8055a45 | ["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 | "2007-09-05T20:55:30Z" | "2007-08-02T21:26:40Z" |
201,326 | Bug 201326 computeSize on empty Link widget returns 0 for height | 3.3 Point p = new Label(parent, SWT.NONE).computeSize(SWT.DEFAULT, SWT.DEFAULT); System.out.println(p); p = new Link(parent, SWT.NONE).computeSize(SWT.DEFAULT, SWT.DEFAULT); System.out.println(p); This prints out: Point {0, 13} Point {0, 0} Expectation: the preferred height of an empty Link widget should be the font height (or more perhaps if the underline takes space). Otherwise, the usual approach of using SWT.CENTER for the vertical alignment in GridData fails -- it gets a height of 0. We're using a workaround of setting a height hint based on the height of the font. | resolved fixed | b6e1dfb | ["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 | "2007-08-31T21:00:32Z" | "2007-08-27T21:26:40Z" |
199,156 | Bug 199156 ExpandBar does not scroll properly | Build ID: I20070625-1500 Steps To Reproduce: 1. Create an ExpandBar, with more items than what can fit the screen. A scroll bar should automatically appear. 2. Suppose you have a disability and cannot use the mouse. Use the arrows keys to adjust focus to each ExpandBar item. 3. The item you want is currently not on screen. Notice that as you move focus beyond the last viewable ExpandBar item, the scroll bar does not adjust. This is a bug. More information: Certain people with disabilities cannot use the mouse to access ExpandBars scrolling functionality. Currently, there is no way for them to access items beyond the initial viewable set. | resolved fixed | fd48f10 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ExpandBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-31T20:41:05Z" | "2007-08-07T20:53:20Z" |
199,099 | Bug 199099 ExpandBar is not high contrast complient. Cannot manually fix this issue. | Build ID: I20070625-1500 Steps To Reproduce: 1.Go to Control Panel->Accessabilty. Click the Display tab, and then click "Use High Contrast" and click OK. 2. Open a project that contains a ExpandBar, and at least one or two ExpandBar items. 3. Notice that the header (bar that contains text) is black, and the text is black, therefore you cannot read it's contents. More information: This problem is actually two problems in one. The first issue that arises is that ExpandBar is not high contrast complient. The second issue arises in ones inability to fix the first issue by changing the background color or font color of the header. Both issues should perferabily be fixed. | resolved fixed | f2fdacc | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ExpandBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ExpandItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-31T19:31:57Z" | "2007-08-07T15:20:00Z" |
193,515 | Bug 193515 [DND] Cannot drag a single character selection in StyledText | Eclipse 3.3 RC4 Steps to reproduce: Try to drag and drop a single character selection with Snippet210. | resolved fixed | f0e4282 | ["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 | "2007-08-30T21:45:04Z" | "2007-06-20T14:33:20Z" |
187,125 | Bug 187125 [DND] Image effect not showing in RTL | null | resolved fixed | a249bc7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DragSource.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.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 | "2007-08-29T21:37:43Z" | "2007-05-15T20:13:20Z" |
196,737 | Bug 196737 [64] JUnit test crashes: Image constructor(Device,String) | The following PI snippet used to reproduce the crash as well, but it no longer seems to since I've replaced swt with HEAD. The junit case still fails though. public static void main(String[] args) { Display display = new Display (); String filename="C:\\workspace33RC3\\org.eclipse.swt.tests\\bin\\folder.gif"; long /*int*/ [] token = new long /*int*/ [1]; GdiplusStartupInput input = new GdiplusStartupInput (); input.GdiplusVersion = 1; if (Gdip.GdiplusStartup (token, input, 0) != 0) { System.out.println("BAD"); } int length = filename.length(); char[] chars = new char[length+1]; filename.getChars(0, length, chars, 0); long bitmap = Gdip.Bitmap_new(null, false); long bitmapData = Gdip.BitmapData_new(); int pixelFormat = Gdip.Image_GetPixelFormat(bitmap); System.out.println(pixelFormat); Gdip.Bitmap_LockBits(bitmap, 0, 0, pixelFormat, bitmapData); Gdip.Bitmap_UnlockBits(bitmap, bitmapData); Gdip.BitmapData_delete(bitmapData); Gdip.Bitmap_delete(bitmap); display.dispose (); } | resolved fixed | 8302dca | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-29T19:18:21Z" | "2007-07-16T21:06:40Z" |
200,101 | Bug 200101 TableColumn sets image when SWT.CENTER alignment is used. | Build ID: M20061214-1200 Steps To Reproduce: If you create a table with a column and set the column alignment to SWT.CENTER, it will place the image returned by the label provider for the first row in the table at the header image for the column. If you do not set the alignment, it does not show the image. I didn't believe me at first either. | resolved fixed | c6b183f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-27T20:20:16Z" | "2007-08-15T20:33:20Z" |
201,217 | Bug 201217 NPE in Canvas.kEventControlSetFocusPart(Canvas.java:150) | N20070825-0010 and N20070826-0010. NPE in Canvas.kEventControlSetFocusPart(Canvas.java:150) causes many tests (including SWTs) to fail. | resolved fixed | 3980bdc | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Canvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-27T14:58:28Z" | "2007-08-27T07:33:20Z" |
148,530 | Bug 148530 Text SWT.MULTI with backgroundimage don't show deleted characters | A multiline textarea with a backgroundimage does not show the deleted characters until a mouseclick out and again in the textarea. Steps to reproduce: 1. create a textarea with SWT.MULTI, SWT.WRAP or SWT.V_SCROLL (textArea = new Text(top, SWT.MULTI | SWT.WRAP | SWT.V_SCROLL | SWT.FLAT);) 2. add a background image (textArea.setBackgroundImage(new Image(Display.getCurrent(), getClass().getResourceAsStream("/images/bg.png")));) 3. at runtime add some characters 4. delete some characters with backspace or delete --> the cursor moves back but the characters are not removed 5. click on another item 6. click back to the textarea --> the characters are now removed Version: 3.2 RC7 | resolved fixed | 4810e30 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-24T21:47:31Z" | "2006-06-24T09:06:40Z" |
200,694 | Bug 200694 TableItem.getBounds() wrong. | The no arg getBounds function returns the bounds of the WPF ListViewItem instead of the bounds of the cell in the first column. | resolved fixed | c49ba6c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TreeItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-22T18:44:17Z" | "2007-08-21T15:26:40Z" |
199,102 | Bug 199102 selection on tree is too short | null | resolved fixed | dac24fe | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TableItem.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 | "2007-08-21T18:27:16Z" | "2007-08-07T15:20:00Z" |
200,153 | Bug 200153 Provide AllowSetForegroundWindow in org.eclipse.swt.internal.win32.OS | Since Windows restricts the processes that can set the foreground window, opening a new workbench window while an RCP application is in the background or is minimized does not bring newly created windows to the foreground. An example scenario in which such a problem is exhibited is an RCP application which restricts itself to a single instance and opens a new workbench window on each attempt to start a new instance while one is already running. Registering a specific file type on Windows with a specific application and trying to open a file of the type in question by double-clicking it in Windows Explorer is a common reproduction of the described scenario. Because double-clicking a file in Windows Explorer mandates that the workbench window of the RCP application is not the foreground one, the newly created workbench window will open in the background and will not become the foreground window. In many situations the described behavior is considered problematic and unconventional for Windows. The feature request of this bug report is based on the availability of the Win32 API function AllowSetForegroundWindow. In the long run, it's probably best that a solution to this problem is offered by org.eclipse.swt.widgets.Shell because it is a part of the public API of SWT. However, it may be initially enough to have AllowSetForegroundWindow in org.eclipse.swt.internal.win32.OS. Because AllowSetForegroundWindow is part of the public Win32 API (of recent Windows versions), using reflection to check its presence in the mentioned class and then invoking it will allow clients to provide better integration of their RCP applications. An example patch introducing AllowSetForegroundWindow to org.eclipse.swt.internal.win32.OS is attached to this bug report. | resolved fixed | 9a0a62f | ["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 | "2007-08-21T14:43:07Z" | "2007-08-16T07:40:00Z" |
194,146 | Bug 194146 CVSUIPlugin.stop not being called | null | resolved fixed | ef3d9f0 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/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 | "2007-08-20T18:39:29Z" | "2007-06-24T21:20:00Z" |
196,979 | Bug 196979 Shell.getBounds() wrong when shell is maximized. | When you maximize a shell, then call get bounds, the shell returns it's premaximized size and x y coordinates which are less than 0. before maximizing: Rectangle {161, 161, 300, 300} after maximizing: Rectangle {-7, -7, 300, 300} | resolved fixed | 955ded9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-20T15:48:22Z" | "2007-07-18T14:46:40Z" |
197,964 | Bug 197964 Table.setBackground() fails if TableItem.setBackground() was used | Build ID: I20070621-1340 Steps To Reproduce: see source code attached Works fine if the line item.setBackground() is commented out. More information: ---8<--- display = new Display(); Shell shell = new Shell(display); table = new Table(shell, SWT.BORDER); table.setBackground(new Color(null, 128, 64, 64)); for (int i=0; i<10; i++) { TableItem item = new TableItem(table, SWT.NULL); // works as long as the next line is commented out // item.setBackground(new Color(null, 128, 128, 128)); item.setText("Item " + i); } table.setSize(100, 200); table.setHeaderVisible(true); table.setLinesVisible(true); shell.pack(); shell.open(); new Thread(new Runnable() { public void run() { try { TimeUnit.SECONDS.sleep(3); display.asyncExec(new Runnable() { public void run() { table.setBackground(new Color(null, 255, 0, 0)); } }); TimeUnit.SECONDS.sleep(3); display.asyncExec(new Runnable() { public void run() { table.setBackground(new Color(null, 0, 255, 0)); } }); } catch (Exception e) { } } }).start(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); display.dispose(); ---8<--- | resolved fixed | 7da50be | ["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 | "2007-08-16T22:45:27Z" | "2007-07-26T14:26:40Z" |
199,115 | Bug 199115 Table.computeSize wrong when table has no columns | computeSize is wrong when it's called before the table is visible. test case: public static void main(String[] args) { Display display = new Display (); Shell shell = new Shell (display); final Table table = new Table (shell, SWT.NONE); TableItem item = new TableItem (table, SWT.NONE); item.setText("plate"); Point size = table.computeSize(SWT.DEFAULT, SWT.DEFAULT); System.out.println(size); table.setSize(size); shell.open (); size = table.computeSize(SWT.DEFAULT, SWT.DEFAULT); System.out.println(size); // table.setSize(size); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose(); } | resolved fixed | c407d3c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-16T20:52:56Z" | "2007-08-07T15:20:00Z" |
189,149 | Bug 189149 Scale widget freaks out if layout() is called from a selection listener. | Build ID: M20070212-1330 Steps To Reproduce: 1. Create a Scale widget and attach a selection listener which calls getParent().layout() on the Scale. 2. When clicking on the designated paging area the Scale now transitions all the values up to the value under the mouse instead of only the page increment as it should. 3. Removing the layout() call will restore the correct behaviour. More information: It seems that a call to layout during event processing generates a whole series of selection events, not ending until the value under the mouse has been reached. For some strange reason you only get a couple of events (but still too many...) if you debug. Probably because the focus of the window is stolen by the IDE once it hits the breakpoint. This problem does not occur with, for example, the Slider widget although one might expect them to exhibit similar characteristics. | resolved fixed | 409208d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scale.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-16T18:42:34Z" | "2007-05-25T13:33:20Z" |
140,270 | Bug 140270 Mouse wheel does not fire selection event on Scale | Add a selection listener the Scale in SWT Snippet 45 that prints the selection event. If the scale is moved using a mouse drag gesture then selection events are printed. If the mouse wheel is used to change the scale then no selection events are printed. | resolved fixed | 6d655f8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scale.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-16T15:05:27Z" | "2006-05-04T22:00:00Z" |
150,365 | Bug 150365 setImeInputMode() is not correct with MS-IME2000 | null | resolved fixed | 729580d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-15T19:40:28Z" | "2006-07-12T10:26:40Z" |
199,109 | Bug 199109 Changing foreground color on Canvas does not work | Use Control Example, Canvas tab. 1 - change foreground color -> nothing happens 2 - change background color -> foreground and background change. | resolved fixed | 2f7a73a | ["bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-14T15:05:32Z" | "2007-08-07T15:20:00Z" |
199,133 | Bug 199133 Combo#cut() does not place deleted text to clipboard | I20070807-0010 Combo#cut() does not place the deleted text to the clipboard on the Mac. In fact, it just deletes the selected text. I've just lost a worthy regular expression I wanted to cut&paste from the Find/Replace dialog (Command+X calls cut() in Eclipse). | resolved fixed | 9c3b25f | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.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 | "2007-08-07T22:15:29Z" | "2007-08-07T18:06:40Z" |
198,922 | Bug 198922 CTabFolder code causes Widget is disposed exception | Introduced I20070802-0800 with but also present in I20070806-0010. The code in CTabFolder line 2166 is broken: if (item.isDisposed()) { Display display = getDisplay(); Test Case: 1. open an editor 2. close the editor by clicking on the X ==> !ENTRY org.eclipse.ui 4 0 2007-08-06 12:38:16.375 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3563) at org.eclipse.swt.SWT.error(SWT.java:3481) at org.eclipse.swt.SWT.error(SWT.java:3452) at org.eclipse.swt.widgets.Widget.error(Widget.java:432) at org.eclipse.swt.widgets.Widget.getDisplay(Widget.java:542) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2167) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:320) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3708) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3319) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) 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.equinox.launcher.Main.invokeFramework(Main.java:508) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447) at org.eclipse.equinox.launcher.Main.run(Main.java:1173) at org.eclipse.equinox.launcher.Main.main(Main.java:1148) | verified fixed | 2237660 | ["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 | "2007-08-07T18:42:56Z" | "2007-08-06T11:33:20Z" |
198,632 | Bug 198632 Browser widget now has border | I20070731-0800 In earlier releases and 3.4 up to last week had no border in the Browser widget. Now there is a border which makes Javadoc hovers look awful. Also Javadoc view looks bad. Works fine under Linux. Please revert that change for M1. Test Case: 1. run Snippet128 with R3.3 or I20070724-0800 ==> no border 2. run Snippet128 with I20070731-0800 ==> border | verified fixed | d2b5564 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-02T16:44:06Z" | "2007-08-02T07:33:20Z" |
160,824 | Bug 160824 SWT will crash when VoiceOver feature is turn on | null | resolved fixed | da2976a | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-08-02T16:39:55Z" | "2006-10-13T09:00:00Z" |
194,275 | Bug 194275 CTabFolder close box should highlight without needing mouse move | 1. Open several tabs with long enough titles such that they will have same (max) tab width 2. Close one on the left, using the mouse, and leave the mouse pointer where it is Observe 1: the next tab right will replace the deleted one (naturally) Observe 2: even though the mouse ptr is directly over the close box, the close box is not visible. You need to move the mouse to get it to light up. The issue is that, when closing many tabs, its nice to just keep clicking to close. You can do this in Firefox 2.0 quite nicely. The problem is likely that the close box only lights up via mouse move. We also need to check as a result of tab close. | resolved fixed | 866f929 | ["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 | "2007-08-01T21:06:13Z" | "2007-06-25T19:33:20Z" |
198,053 | Bug 198053 Invoking spinner.getSelection() in a modify event causes infinite loop | null | resolved fixed | 1085340 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-30T18:24:35Z" | "2007-07-27T01:33:20Z" |
189,292 | Bug 189292 [DND] FileTransfer disables image feedback | Custom feedback image does not work with FileTransfer data type. In org.eclipse.swt.dnd.DragSource : event.image contains the custom image line 281 : if (transfer instanceof FileTransfer) { TransferData transferData = new TransferData(); transferData.type = types[0]; event = new DNDEvent(); // Image is lost event.widget = this; MacOS 1.4.9 / Eclipse 3.3RC1 | resolved fixed | d34c19d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/carbon/org/eclipse/swt/dnd/DragSource.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-30T18:11:57Z" | "2007-05-26T17:20:00Z" |
194,971 | Bug 194971 [browser] fires duplicate mouse events | null | resolved fixed | a9d8213 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-26T20:09:54Z" | "2007-06-29T20:46:40Z" |
164,755 | Bug 164755 Inconsistent z-order for ON_TOP shells between win32 and MacOS | I want to create several shells that all of them have the SWT.ON_TOP style. When i run the SWT code on Window platform, the z-order is that the first created shell is putted on deep, the last created shell is putted on top. But if run the code on MacOS, the z-order is reversal, the last created shell is on deep, the first created shell is on top. This is inconsistent between platforms. this is the code snippet: public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setLayout(new FillLayout()); Shell tipShell1 = new Shell(Display.getDefault(),SWT.ON_TOP ); tipShell1.pack(); tipShell1.setSize(50,300); tipShell1.setVisible(true); tipShell1.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_GREEN)); Shell tipShell2 = new Shell(Display.getDefault(),SWT.ON_TOP); tipShell2.pack(); tipShell2.setSize(200,50); tipShell2.setVisible(true); tipShell2.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_RED)); Shell tipShell3 = new Shell(Display.getDefault(),SWT.ON_TOP ); tipShell3.pack(); tipShell3.setSize(100,100); tipShell3.setVisible(true); tipShell3.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_BLUE)); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } | resolved fixed | ca32cbc | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-26T14:22:41Z" | "2006-11-16T04:06:40Z" |
135,011 | Bug 135011 [TableCursor] moves cursor to first column unexpectedly | My table has 3 columns. If I click in the table outside of the columns, the table cursor will be moved to the first column. In TableCursor#TableMouseDown, if a column cannot be found from the mouse down event, the code positions the cursor to the first column. if (newColumn == null) { newColumn = table.getColumn(0); } The TableCursor should not move the cursor if the mouse event cannot be mapped to any cell inside the table. Otherwise, user's selection will be changed unexpectedly. (e.g. If use right mouse click to bring up the context menu outside of the column area, the selection in the table gets changed unexpectedly.) I will attach a testcase to demonstrate problem. | resolved fixed | fcf97f8 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableCursor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-25T20:17:44Z" | "2006-04-05T12:26:40Z" |
118,844 | Bug 118844 [consistency] Make TreeColumn.pack consistent across platforms | TreeColumn.pack needs to have a consistent behaviour across platforms. I think it should give the width need to display the widest expanded child item (i.e. ignore children that are not visible because the parent is collapsed) | resolved fixed | 9c30fc8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-25T15:41:45Z" | "2005-12-01T15:13:20Z" |
195,812 | Bug 195812 Text without delimeters is not wrapped on linux. Works fine on windows. | Run the example on windows. See that text is wrapped in few lines. Run on Linux. Text is displayed in one line. import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.*; public class MultiText { public static void main(String [] args) { final Display display = new Display (); final Shell shell = new Shell (display); Text text = new Text(shell, SWT.MULTI |SWT.WRAP); text.setBounds(5, 5, 50, 200); text.setText("123456789012345678901234567890"); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } | resolved fixed | f7ce289 | ["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/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-24T16:01:56Z" | "2007-07-09T11:20:00Z" |
179,773 | Bug 179773 TreeViewer setSelection does not scroll horizontally to show selection | This could end up being an SWT bug. When calling treeViewer.setSelection( selection, true ), the tree is scrolled down vertically to reveal the selection but never seems to scroll horizontally. I confirmed that this is a bug in the platform because it happens in the Package Explorer when using the ShowIn context menu on Java source. To replicate, shrink the width of the Package Explorer and select some function in the Java source. Then right-click and do Show In--Package Explorer. If the width of the View is small enough, you will notice that the Tree scrolled enough vertically, but since it did not scroll horizontally, you cannot see the selected Tree node. | resolved fixed | 43f7c48 | ["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 | "2007-07-23T21:16:41Z" | "2007-03-28T16:40:00Z" |
193,561 | Bug 193561 public Image (Device device, String filename) fails on WinCe | public Image (Device device, String filename) has a try catch like this try { device.checkGDIP(); ... } catch (SWTException e) { } The problem is that in checkGDI we have a: if (OS.IsWinCE) SWT.error(SWT.ERROR_NOT_IMPLEMENTED); That throws a SWTError that is not catch in clause 'catch (SWTException e)' SSQ, do you want me to replace 'catch (SWTException e)' by 'catch (SWTError e)' ? | verified fixed | 4a24b9b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-23T20:17:10Z" | "2007-06-20T17:20:00Z" |
195,650 | Bug 195650 Multiselection with Shifht ARROW_UP/DOWN not working on MAC | Build ID: I20070625-1500 Steps To Reproduce: 1. Open Example Browser, Example "Table" With style multiselect 2. Select a line with mouse 3. Try to select more with SHIFT + ARROW_DOWN => no effect More information: MacOSX 10.4.10 latest Java 5, Eclipse 3.3.0 final | resolved fixed | d475996 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-23T19:53:50Z" | "2007-07-06T13:53:20Z" |
197,336 | Bug 197336 Negative values not displaying with Read-Only style combo. | I've tried this on XP and Mac OS X...doesn't seem to be a problem on XP. If you add negative values to a combo box that is of SWT.READ_ONLY style, the negative values do not show up in the drop-down list. If the combo style is SWT.DROP_DOWN style, negative values that are added to the combo will correctly be displayed in the list. | resolved fixed | 400bebb | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-23T19:25:27Z" | "2007-07-20T19:33:20Z" |
191,260 | Bug 191260 NPE in Display.readImageRef | null | resolved fixed | 4e66ded | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-23T18:22:28Z" | "2007-06-06T14:26:40Z" |
192,700 | Bug 192700 CCombo does not loose focus when hidden | null | resolved fixed | 9a686c6 | ["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 | "2007-07-23T15:47:37Z" | "2007-06-14T16:53:20Z" |
187,210 | Bug 187210 Ownerdraw - 'Show status line' on open type dialog does not redraw status line when colored labels | I20070516-0010 1. Open 'Open type dialog' 2. In menu deselect 'Show Status Line' 3. In menu select 'Show Status Line' Is: Screen cheese the status line is (sometimes) not redrawn, see screen shot. | resolved fixed | 1291751 | ["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 | "2007-07-19T16:23:48Z" | "2007-05-16T10:06:40Z" |
194,702 | Bug 194702 [browser]Click URL linked to a new window, pop up two browser window | null | resolved fixed | 48a4a5c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-17T20:27:08Z" | "2007-06-28T03:06:40Z" |
167,562 | Bug 167562 SIGSEGV in Tree#destroyItem() | Eclipse 3.3 M3 Java 1.5.0_07-b03 See the log attached. | resolved fixed | 0327217 | ["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 | "2007-07-17T19:05:35Z" | "2006-12-12T10:40:00Z" |
196,791 | Bug 196791 SWT ToolTip does not render Arabian text tooltip correctly on SLED10 Linux | Build ID: Eclipse3.2.2 Steps To Reproduce: 1.Create a SWT Application 2.Create a ToolTip on Shell and setMessage with Arabian text. 3.Launch application More information: public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); ToolTip tip = new ToolTip(shell, SWT.BALLOON ); tip.setMessage("\u0627\u0644\u0639\u0631\u0628\u064A\u0651\u0629"); tip.setVisible(true); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } We modified setMessage(String message) method in ToolTip.java and add the following code to let it works: layoutMessage = OS.gtk_widget_create_pango_layout (handle, buffer); //lijiao added OS.pango_layout_set_auto_dir(layoutMessage, false); //end OS.pango_layout_set_wrap (layoutMessage, OS.PANGO_WRAP_WORD_CHAR); I found in GC and TextLayout::createLayout() SWT used the following code: if (OS.GTK_VERSION >= OS.VERSION(2, 4, 0)) { OS.pango_layout_set_auto_dir(layout, false); } Could we use this code in ToolTip.setMessage(String msg)? | resolved fixed | 0ea3ba1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolTip.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-17T17:00:10Z" | "2007-07-17T08:13:20Z" |
177,578 | Bug 177578 ExpandItem (of the ExpandBar) returns wrong header height in Gnome (Debian Linux) | Build ID: M20060921-0945 Steps To Reproduce: Compare the value returned by ExpandItem#getHeaderHeight() to what it really is in the GUI. More information: For me ExpandItem#getHeaderHeight() returns 17px, while it's actually 21px (I made a screenshot and counted the pixels myself). I need the header height to calculate the available space in order to "maximize" an ExpandItem. When I compensate the difference, my calculations work as expected (like they do in Windows without the compensation). And no, I did not forget ExpandBar#getSpacing(). | resolved fixed | a573181 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-16T17:07:57Z" | "2007-03-15T14:46:40Z" |
157,568 | Bug 157568 StyledText: horizontal scrollbar doesn't handle indent | null | resolved fixed | 10728f7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-11T20:52:51Z" | "2006-09-16T15:20:00Z" |
192,861 | Bug 192861 VM crash opening browser widget with much html | Build ID: I20070503-1400 Steps To Reproduce: The attached snippet will crash the VM. The html to be shown is over 20000 characters, much will not be displayed immediately but is already present in a javascript section in the head part. Opening the same html in firefox works without any problem. More information: Suse Linux 10, GTK 2.8.10-39.22 | resolved fixed | 4508514 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDocShell_1_8.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-11T17:12:27Z" | "2007-06-15T12:20:00Z" |
191,790 | Bug 191790 [Browser] Browser leaks due to COM objects | Build ID: I20070601-1539 Steps To Reproduce: While analyzing memory dumps from an RCP application I noticed there were 321 instances of WebSite retained in memory. The WebSites are retained due to org.eclipse.swt.internal.ole.win32.COMObject#ObjectMap. I was able to recreate a standalone testcase that shows this happens when a browser's setText method is called and doesn't happen when the method isn't called. | resolved fixed | 4d0cb80 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/IE.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/ole/win32/COM.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-10T18:57:30Z" | "2007-06-09T03:33:20Z" |
56,502 | Bug 56502 Wrong positioning when going off end-of-line | When editing a java file and positioning the cursor before the last character and then pressing right-cursor twice (making the cursor go to the beginning of the next line) and then pressing up-cursor positions the cursor at the end of the previous line, while it should position it at the beginning of the previous line. It doesn't happen on every line, but almost every line. | resolved fixed | e434118 | ["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 | "2007-07-05T22:00:24Z" | "2004-03-28T18:53:20Z" |
91,311 | Bug 91311 Drawing Problems | The drawProc in the Control make use of PtGetsAbsPosition. This is not a good funtion to use in a drawing procedure because it queries every region in the system until it hits the root region to figure out your position. Doing this every draw operation is extremely expensive. I have updated the function as well as fixed some little drawing issues within SWT. | resolved fixed | 437b264 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/photon/org/eclipse/swt/internal/photon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Caret.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/widgets/Sash.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-04T20:34:48Z" | "2005-04-13T16:33:20Z" |
189,649 | Bug 189649 Link widget renders mnemonics on the Mac | I20070529-0010 The Link widget should not render mnemonics on the Mac. To reproduce in Eclipse, select a Java project in the Package Explorer and choose context menu > Assign Working Sets. | verified fixed | 1a49efb | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-04T18:01:06Z" | "2007-05-29T12:00:00Z" |
195,154 | Bug 195154 Snippet132 using drawString incorrectly | Snippet132 has the following code at the "business end:" String testString = "Hello World!"; Point extent = gc.stringExtent(testString); gc.drawString(testString, leftMargin, topMargin + font.getFontData()[0].getHeight()); I'm not sure why we're adding font.getFontData()[0].getHeight() and I believe it should be removed. drawString()'s x and y parameters are measured in pixels, but FontData.getHeight() is a measure of the font face's height in points. On my printer there is no appreciable difference on the printout, since the printer DPI is 600 and the FontData.getHeight() returns 2 (not sure why) which amounts to only 1/300" == 0.085mm difference. However in working with the SWTSwing folks, where printing is always 72DPI (ugh) the error in this snippet is more obvious. An 8-point font will be drawn at an 8-point offset (about 1/8" == 2.82mm). This makes SWTSwing's behavior appear to be wrong when in fact it is the snippet. | resolved fixed | b4c7375 | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet132.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-07-04T15:35:45Z" | "2007-07-02T15:26:40Z" |
186,683 | Bug 186683 Embedding a Combo in a Toolbar fails on WPF | null | resolved fixed | aac1e89 | ["bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-25T18:51:30Z" | "2007-05-12T17:13:20Z" |
184,643 | Bug 184643 Ctrl+Click on Launch Config not working | Normally, you can easly edit a launch configuration by clicking on it the the Launch/Debug Dropdown menu while holding Ctrl. This is not working in Eclipse 3.3, I20070323-1616 on Windows Vista. | resolved fixed | c9b39df | ["bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-22T16:59:06Z" | "2007-04-29T20:53:20Z" |
191,632 | Bug 191632 TextLayout implementation on linux platform doesn't provide suitable line offsets in specific scenarios | Build ID: M20070212-1330 Steps To Reproduce: 1.Create a shell 2.Define a text including both English characters and arabian characters 3.Use TextLayout to draw the text on the shell 4.Print the offset of each line 5.Find that the offsets on linux platform are weird More information: Here is the code snippet: import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.TextLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestTextLayout { private static final String TEXT= "يوم. يمبث القناة من خلال\nabc\nيوث القناة من خلال"; public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Font font = new Font(display, "Times New Roman", 10, SWT.NORMAL); shell.addPaintListener(new PaintListener() { public void paintControl(PaintEvent event) { GC gc = event.gc; TextLayout tl = new TextLayout(display); tl.setFont(font); tl.setText(TEXT); tl.setWidth(200); tl.draw(gc, 10, 10); int[] offsets = tl.getLineOffsets(); for (int i = 0; i < offsets.length; i++) { System.out.println(" line" + i + "'s offset: " + offsets[i]); } } }); shell.setBounds(10, 10, 200, 200); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } font.dispose(); display.dispose(); } } On windows platform, I got the following console output: line0's offset: 0 line1's offset: 25 line2's offset: 29 line3's offset: 47 while on linux platform, the output is : line0's offset: 23 line1's offset: 25 line2's offset: 46 line3's offset: 47 As a result, I cannot get every line's string correctly on linux platform while on windows platform, I could get each line's tring using TEXT.substring(0, 25), TEXT.substring(25, 46), TEXT.substring(46); | resolved fixed | c16281c | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-21T16:04:36Z" | "2007-06-08T02:33:20Z" |
190,028 | Bug 190028 post-3.3 Browser cleanup | null | resolved fixed | 01cb2fa | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-20T16:01:22Z" | "2007-05-30T21:20:00Z" |
189,189 | Bug 189189 MOZ_PLUGIN_PATH should parse for multiple delimited paths | - fix this post-3.3 | resolved fixed | 0c4f2da | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/AppFileLocProvider.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-20T15:58:12Z" | "2007-05-25T19:06:40Z" |
188,726 | Bug 188726 callback in MozillaDelegate should be static | fix this post-3.3 | resolved fixed | c57f6d4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-20T15:55:56Z" | "2007-05-23T19:53:20Z" |
81,604 | Bug 81604 Filter path does not behave as expected with new GtkFileChooser | null | resolved fixed | eb8e8e7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-20T15:54:15Z" | "2004-12-19T01:33:20Z" |
186,685 | Bug 186685 Tray doesn't work on WPF | null | resolved fixed | c0e89b9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/wpf/org/eclipse/swt/internal/wpf/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/TrayItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-19T20:08:06Z" | "2007-05-12T17:13:20Z" |
189,676 | Bug 189676 Cannot select a patch file in WPF | Version: 3.3.0 Build id: I20070529-0010 When you select a patch file using thr browse button only the folder path is added to the dialog - you need to type in the file name yourself. This isn't happening on the other file selections (like the import archive dialog) and only on WPF | resolved fixed | a276fdb | ["bundles/org.eclipse.swt/Eclipse", "SWT/wpf/org/eclipse/swt/widgets/FileDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-19T20:01:22Z" | "2007-05-29T14:46:40Z" |
192,128 | Bug 192128 If shell is set disabled before it's open, top menu can pop up after it's shown. | null | resolved fixed | 222c99b | ["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 | "2007-06-18T20:27:06Z" | "2007-06-12T09:20:00Z" |
193,188 | Bug 193188 Text.computeSize(8, SWT.DEFAULT) wrong for text field without border | null | resolved fixed | 21833dd | ["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 | "2007-06-18T20:18:31Z" | "2007-06-18T20:53:20Z" |
191,741 | Bug 191741 cheese in java editor | Version: 3.3.0 Build id: I20070608-0010 The bug is in TextLayout, it doesn't draw the full selection background properly cause it has a test (for performance reason) where it doesn't draw a line when textual part of the line is outside of the clipping. To reproduce this problem on eclipse just resize the editor, or move a window over the editor, or open the cotext menu over it. Photon, has the same problem. | resolved fixed | 90dc236 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/TextLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-08T17:25:28Z" | "2007-06-08T16:26:40Z" |
191,412 | Bug 191412 FocusIn and FocusOut events are processed with different cases in Shell. | Since about org.eclipse.swt 3.3.0.v3339, a filter for x focus change event (FocusIn and FocusOut event)is added in org.eclipse.swt.widget.Shell. When the focus event meets some conditions, shell will set some fileds and send SWT event. But the conditions to process FocusIn event and FocusOut event are not the same. For FocusOut event, when its detail is one of OS.NotifyNonlinear, OS.NotifyNonlinearVirtual and OS.NotifyVirtual, above actions will be done. But for FocusIn event, just when its detail is either OS.NotifyNonlinear or OS.NotifyVirtual, the corresponding actions will be done. Where is OS.NotifyNonlinearVirtual case? It impacts general focus events. Following is the source code of filterProc: int /*long*/ filterProc (int /*long*/ xEvent, int /*long*/ gdkEvent, int /*long*/ data2) { int eventType = OS.X_EVENT_TYPE (xEvent); if (eventType != OS.FocusOut && eventType != OS.FocusIn) return 0; XFocusChangeEvent xFocusEvent = new XFocusChangeEvent(); OS.memmove (xFocusEvent, xEvent, XFocusChangeEvent.sizeof); switch (eventType) { case OS.FocusIn: if (xFocusEvent.mode == OS.NotifyNormal || xFocusEvent.mode == OS.NotifyWhileGrabbed) { if (xFocusEvent.detail == OS.NotifyNonlinear || xFocusEvent.detail == OS.NotifyAncestor) {//=====where is OS.NotifyNonlinearVirtual? if (tooltipsHandle != 0) OS.gtk_tooltips_enable (tooltipsHandle); display.activeShell = this; display.activePending = false; sendEvent (SWT.Activate); } } break; case OS.FocusOut: if (xFocusEvent.mode == OS.NotifyNormal || xFocusEvent.mode == OS.NotifyWhileGrabbed) { switch (xFocusEvent.detail) { case OS.NotifyNonlinear: case OS.NotifyNonlinearVirtual: case OS.NotifyVirtual: if (tooltipsHandle != 0) OS.gtk_tooltips_disable (tooltipsHandle); Display display = this.display; sendEvent (SWT.Deactivate); setActiveControl (null); if (display.activeShell == this) { display.activeShell = null; display.activePending = false; } break; } } break; } return 0; } | resolved fixed | 77e08c6 | ["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 | "2007-06-07T20:34:45Z" | "2007-06-07T04:20:00Z" |
191,372 | Bug 191372 Cannot unminimize eclipse from dock | Run eclipse. Minimize it and click in the dock app icon to unminimize it. It does not work. | resolved fixed | 2fff6ef | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-06T21:43:56Z" | "2007-06-06T20:00:00Z" |
191,072 | Bug 191072 Existing shell window title gets overwritten | If you have an already created window and use Shell.internal_new to pass the handle in, Shell.createHandle will overwrite any existing title. An example of this can be seen in the 3.3 RC3 build where the toolbar item for eclipse switches to "untitled window" after the workspace chooser disappears. | resolved fixed | 1bd926e | ["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 | "2007-06-05T18:52:49Z" | "2007-06-05T16:13:20Z" |
190,262 | Bug 190262 CCombo doesn't receive key-events | On MacOSX when opening a CCombo one is not able to scroll the list up/down using the keyboard. It seems that no key-events are delivered to it. On WinXP this is working as expected and I think I can remember that in also works on Gtk. This is a major problem for applications because usability is decreased when CCombo has to be used e.g. when Inline-Editing tables/trees. I know we are late in 3.3 but would it be able to fix it in this cycle? | resolved fixed | 62e3138 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-06-01T18:38:48Z" | "2007-05-31T16:46:40Z" |
190,480 | Bug 190480 regression: FocusOut not fired for Texts in an SWT.APPLICATION_MODAL shell | 3.3RC3 candidate build - run the snippet below - tab between the two text fields and you'll only see "in" printed to stdout, but you should see "out" and "in" for each focus change - this works fine if the Shell is not created with style SWT.APPLICATION_MODAL public static void main(String[] args) { Display display = Display.getDefault(); FocusListener listener = new FocusListener() { public void focusLost(FocusEvent e) { System.out.println("out"); } public void focusGained(FocusEvent e) { System.out.println("in"); } }; Shell shell = new Shell(display, SWT.APPLICATION_MODAL); // <-- shell.setLayout(new GridLayout()); shell.layout(); shell.pack(); shell.setSize(200, 200); new Text(shell, SWT.NONE).addFocusListener(listener); new Text(shell, SWT.NONE).addFocusListener(listener); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 360c1d1 | ["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 | "2007-06-01T15:47:16Z" | "2007-06-01T15:00:00Z" |
149,040 | Bug 149040 Change javadoc for Table addSelectionListener | Current javadoc reads: "Adds the listener to the collection of listeners who will be notified when the receiver's selection changes, by sending it one of the messages defined in the SelectionListener interface." This is not true since the receiver's selection can change programatically and an event will not be sent. Adding a note about this issue would be very helpful. | resolved fixed | 67aa0d2 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableCursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/CoolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/DateTime.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MenuItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Sash.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/ScrollBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Slider.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.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/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolTip.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TrayItem.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/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-05-31T19:09:55Z" | "2006-06-28T15:53:20Z" |
189,992 | Bug 189992 Column in problem view not properly refreshed when resizing the column width | Using I20070530-0010, I can get a reproducable refresh problem in the problem view. If I resize the first column in order to be able to see the complete warning message and then I resize it to be quite small, I can see part of the message still displayed after the last column. I don't expect it. If I force a refresh of the view, the leftovers are properly removed. See attached screenshot. I add Tod on the CC as I don't know if the problem comes from SWT or JFace or the problem view itself. | resolved fixed | 93ea26f | ["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 | "2007-05-31T18:39:51Z" | "2007-05-30T18:33:20Z" |
158,043 | Bug 158043 [Mac] Right clicking on app in Dock and selecting Quit does nothing if file needs to be saved | With Eclipse 3.2 on the Mac OSX, Steps: 1. Launch Eclipse 2. Open some source code for editing. 3. Make an edit, but dont save it. 4. Minimize the application to the Dock. 5. Right click on the application in the Dock and choose Quit Note: For us, the problem was reported with our RCP application that we generated through Eclipse. However, I made the repro steps similar just with the Eclipse IDE itself. Actual: Nothing happens, if you right click again you will notice a "save Resource" item in the menu. You can continue to click on quit Expexcted: It should behave like other Mac OSX applications. Their icons do the 'bouncy icon' thing to alert the user that theres a problem that needs attention. The user then left clicks on it in the dock to open the app and see the "Save Resources" dialog. | resolved fixed | 52ff68e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-05-30T20:52:43Z" | "2006-09-20T19:20:00Z" |
173,559 | Bug 173559 Javadoc for GC methods requiring advanced graphics | null | resolved fixed | 8500e6a | ["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 | "2007-05-30T18:07:00Z" | "2007-02-09T00:13:20Z" |
189,960 | Bug 189960 [browser] executing window.print() does not print | null | resolved fixed | d4cb22d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/Mozilla.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/browser/WindowCreator2.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebBrowserChrome.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-05-30T17:50:50Z" | "2007-05-30T15:46:40Z" |
189,970 | Bug 189970 GC drawImage fails on bidi + icon + double buffered | build eclipse 3.3 rc2 Create a drawing area with SWT.DOUBLE_BUFFERED and SWT.RIGTH_TO_LEFT. In the paint handler draw an icon. Run the test case and move a small window over the the icon -> cheese! | resolved fixed | 750a2fb | ["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 | "2007-05-30T17:50:49Z" | "2007-05-30T15:46:40Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.