id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
3,161 | 34,536 |
Bug 34536 Drop-down arrows (on tree) are not centered
|
The new SWT tree view on Mac OS X uses the drop-down arrows to drill down into trees. This is seen in (amongst other things) the project views and also the preferences window. The arrow icon though does not look centered with the text; in fact, it looks as if it is positioned in the top of the line and the icon looks as if it is taking a 32x32 pixel size when its only a 16x16 cursor. Comparing Finder's tree-view of files and the Eclipse Preferences seems to suggest that the tree icons aren't quite the same position as the Mac renders them, or that the text line (and inter-line spaces) are too large. Eclipse 2.1RC2 on Mac OS X.2.4
|
2003-03-10 18:21:53
| 1,047,340,000 |
resolved fixed
|
c8ec0f7
| 1,098,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,162 | 69,781 |
Bug 69781 max StyledText window, fire MouseMove event
|
I add StyledText to fill a standalone program. When I maximize this window using double click title bar( NOT click maximum button! ), the MouseMove event is fired! Try to write some text on StyledText, and select a block text. Then double click title bar. The selected block text will change select area because of this bug.
|
2004-07-10 07:18:34
| 1,089,460,000 |
resolved fixed
|
1f67cda
| 1,098,810,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,163 | 76,904 |
Bug 76904 Poor Canvas scrolling performance
|
Scrolling Canvas scrollbars redraw the whole client area, instead of drawing just the part which has to be redrawn. This terribly slows down the performance on Mac. Is there a way to do the scrolling like on Windows, where the part of the client area which stays visible is copied to a new location, and the part of the canvas which was not visible is redrawn?
|
2004-10-24 15:03:01
| 1,098,640,000 |
resolved fixed
|
37e38fc
| 1,098,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,164 | 76,983 |
Bug 76983 [browser] Download.java uses wrong pointer
|
From Javier Pedemonte: I think there is a bug in the Init() method of Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/Download.java. I'm not too familiar with this code, so I decided to send you a note rather than open a bug. Here is the code in question: nsILocalFile target = new nsILocalFile(aTarget); int aNativeTarget = XPCOM.nsEmbedCString_new(); target.GetNativeLeafName(aNativeTarget); length = XPCOM.nsEmbedCString_Length(aSpec); buffer = XPCOM.nsEmbedCString_get(aSpec); dest = new byte[length]; XPCOM.memmove(dest, buffer, length); XPCOM.nsEmbedCString_delete(aNativeTarget); String file = new String(dest); I think the two instances of |aSpec| here should instead be |aNativeTarget|. javier
|
2004-10-25 19:00:02
| 1,098,750,000 |
resolved fixed
|
ca75669
| 1,098,740,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/Download.java
|
SWT
|
3,165 | 63,579 |
Bug 63579 Rename refactoring wizard butchers clipboard
|
M9 (GTK) KDE 3.2.2 Gentoo --- If one does a rename (noticed this with a class, but probably affects all "renamable" artifacts), then the contents of the "New Name" field gets put into the clipboard, erasing what was there previously. This, IMHO, is Not Good (ie/ Very Bad (TM)). To reproduce: - copy something. - paste (to prove to yourself that that's what the clipboard contains) - start a rename (right-click on a class, Refactor->Rename). - No need to complete the rename, just hit cancel. - try pasting again -- notice that what you are pasting is the contents of the "New Name" field.
|
2004-05-23 07:55:30
| 1,085,310,000 |
resolved fixed
|
8de03a6
| 1,098,740,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java
|
SWT
|
3,166 | 55,964 |
Bug 55964 [ViewMgmt] spacing between border and text of "classic" tab style
|
I20040324 IMO the spacing between the border and the text for tabs in the classic style should be a little bit increase. If you have a lots of tabs in a row it looks a little bit squeezed
|
2004-03-24 13:26:01
| 1,080,150,000 |
resolved fixed
|
7ffe879
| 1,098,730,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
|
SWT
|
3,167 | 76,709 |
Bug 76709 CR Key down arrives twice
|
I200410190941, GTK+ 2.4.9, KDE 3.3.0, Linux 2.6.8.1 On KDE, go into the package explorer and select an HTML file. Then press enter. The HTML file should open in an external browser. However, it either opens two browsers or two tabs in a single browser. This appears to happen because the CR key down event is arriving twice. Below is some debugging output. It shows the CR traversal event arriving at the key binding architecture, but nothing happening. Then the CR key down arrives at the key binding architecture -- again nothing happens. Then two CR key down events arrive at OpenStrategy$1. This causes two editor open events to happen. This is not a (big) problem for Java editors, because a second open event is effectively ignored. KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = Traverse, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) KEYS >>> Listener.handleEvent(type = KeyDown, stateMask = 0x0, keyCode = 0xd, character = 0xd) KEYS >>> WorkbenchKeyboard.press(potentialKeyStrokes = [CR]) Event arrive: hashCode=1670407056, type=14 WorkbenchPage.openEditor(input=org.eclipse.ui.part.FileEditorInput@6867ab71, editorID=org.eclipse.ui.systemExternalEditor, activate=true Event arrive: hashCode=1675977701, type=14 WorkbenchPage.openEditor(input=org.eclipse.ui.part.FileEditorInput@6867ab71, editorID=org.eclipse.ui.systemExternalEditor, activate=true
|
2004-10-20 16:45:35
| 1,098,310,000 |
resolved fixed
|
3ffd5b1
| 1,098,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,168 | 73,100 |
Bug 73100 Crash while running a JUnit Plug-In test
|
I am using build id 200408311100 on Mac OS 10.3.5 (512 MB SDRAM, 667 MHz PowerPC G4) running java 1.4.2_05-141. This is reproducible with earlier builds as well. I tried running a UI Junit Plug-in test ("IWorkbenchPageTest"), but it crashes and does not complete (only on the Mac). I had to play around with the Vm's Xmx and Xms settings to get all the tests to complete, but some tests still fail with out of memory errors. Steps: - Check out "org.eclipse.ui.tests" and "org.eclipse.test.performance" from CVS. - Switch to the Java perspective and open the "IWorkbenchPageTest" class. - Run the test as a "Junit Plug-in test". - The test does not complete and crashes (around test 30) with the following: "Date/Time: 2004-09-01 16:53:46 -0400 OS Version: 10.3.5 (Build 7M34) Report Version: 2 Command: java Path: /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java Version: ??? (???) PID: 476 Thread: 0 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000040 Thread 0 Crashed: 0 com.apple.HIToolbox 0x927e05ac _Z23GetMenuSystemAttributesP8MenuDataPm + 0 1 com.apple.HIToolbox 0x927de32c _Z18FindNextMenuInRootP12IterPositionP8MenuData + 0xb0 2 com.apple.HIToolbox 0x927dfef0 _Z12FindNextMenuP12IterPositionP9RootMenus + 0xe4 3 com.apple.HIToolbox 0x927e5ea4 _Z23_MenuIterGetDataAtIndexP21OpaqueMenuIteratorRefl + 0x5c 4 com.apple.HIToolbox 0x927e5790 _Z18UpdateMenuEnablingv + 0x110 5 com.apple.HIToolbox 0x928135b4 _Z12MenuBarTimerP16__EventLoopTimerPv + 0x5c 6 com.apple.CoreFoundation 0x901946a8 __CFRunLoopDoTimer + 0xf4 7 com.apple.CoreFoundation 0x90191a08 __CFRunLoopRun + 0x5c8 8 com.apple.CoreFoundation 0x90195f1c CFRunLoopRunSpecific + 0x148 9 com.apple.HIToolbox 0x927d5f88 RunCurrentEventLoopInMode + 0xac 10 com.apple.HIToolbox 0x927dc668 ReceiveNextEventCommon + 0xf4 11 com.apple.HIToolbox 0x9284d7fc ReceiveNextEventInMode + 0x48 12 libswt-pi-carbon-3104.jnilib 0x017b7064 Java_org_eclipse_swt_internal_carbon_OS_ReceiveNextEvent + 0xd4 13 <<00000000>> 0x03f33580 0 + 0x3f33580 14 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 15 <<00000000>> 0x03f2ce30 0 + 0x3f2ce30 16 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 17 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 18 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 19 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 20 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 21 <<00000000>> 0x03f2d310 0 + 0x3f2d310 22 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 23 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 24 <<00000000>> 0x03f2d310 0 + 0x3f2d310 25 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 26 <<00000000>> 0x03f2d310 0 + 0x3f2d310 27 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 28 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 29 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 30 <<00000000>> 0x03f2d310 0 + 0x3f2d310 31 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 32 <<00000000>> 0x03f2ce30 0 + 0x3f2ce30 33 <<00000000>> 0x03f2ce30 0 + 0x3f2ce30 34 <<00000000>> 0x03f2ce30 0 + 0x3f2ce30 35 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 36 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 37 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 38 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 39 <<00000000>> 0x03f2d220 0 + 0x3f2d220 40 <<00000000>> 0x03f2d220 0 + 0x3f2d220 41 <<00000000>> 0x03f2d220 0 + 0x3f2d220 42 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 43 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 44 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 45 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 46 libclient.dylib 0x947d7234 JVM_IsNaN + 0x5b24 47 libclient.dylib 0x947febc4 __floatdisf + 0xef4 48 libclient.dylib 0x9482c710 JVM_InvokeMethod + 0x1f0 49 <<00000000>> 0x03f33580 0 + 0x3f33580 50 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 51 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 52 <<00000000>> 0x03f2d220 0 + 0x3f2d220 53 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 54 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 55 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 56 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 57 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 58 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 59 libclient.dylib 0x9485456c JVM_UnloadLibrary + 0xfc4c 60 libclient.dylib 0x949246dc jio_vsnprintf + 0x103dc 61 java 0x00004604 0x1000 + 0x3604 62 java 0x000066b4 0x1000 + 0x56b4 63 java 0x00003d10 0x1000 + 0x2d10 64 java 0x00003b84 0x1000 + 0x2b84 Thread 1: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x948031dc JNI_CreateJavaVM_Impl + 0x44ec 3 libclient.dylib 0x94803170 JNI_CreateJavaVM_Impl + 0x4480 4 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 5 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 2: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x9475e0a4 __divdi3 + 0x5094 4 libclient.dylib 0x94773ca0 JVM_GetMethodIxModifiers + 0x4f0 5 libclient.dylib 0x9481b48c JVM_GetInterfaceVersion + 0x17a4c 6 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 7 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 3: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 9 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 10 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 11 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 12 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 13 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 14 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 15 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 16 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 17 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 4: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 5: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x9473af60 JVM_GetCPMethodSignatureUTF + 0x1810 4 libclient.dylib 0x9473b100 JVM_GetCPMethodSignatureUTF + 0x19b0 5 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 6 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 6: 0 libSystem.B.dylib 0x90014528 semaphore_wait_trap + 0x8 1 libclient.dylib 0x94857090 JVM_UnloadLibrary + 0x12770 2 libclient.dylib 0x94856374 JVM_UnloadLibrary + 0x11a54 3 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 4 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 5 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 7: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x9475e104 __divdi3 + 0x50f4 4 libclient.dylib 0x94795510 JVM_GetFieldIxModifiers + 0xb60 5 libclient.dylib 0x947812bc JVM_SocketAvailable + 0x130c 6 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 7 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 8 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 8: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 9: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 10: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 11: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 12: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x041bf408 0 + 0x41bf408 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 13: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x041bf408 0 + 0x41bf408 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 14: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x041bf408 0 + 0x41bf408 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 15: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b3c8 JVM_GetClassAccessFlags + 0x1168 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 9 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 10 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 11 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 12 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 13 <<00000000>> 0x03f2d310 0 + 0x3f2d310 14 <<00000000>> 0x03f2d310 0 + 0x3f2d310 15 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 16 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 17 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 18 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 19 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 20 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 21 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 22 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 23 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 16: 0 libSystem.B.dylib 0x9000eacc read + 0xc 1 libnet.jnilib 0x8e2779f0 Java_java_net_SocketInputStream_socketRead0 + 0x18c 2 <<00000000>> 0x03f33580 0 + 0x3f33580 3 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 4 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 5 <<00000000>> 0x04024300 0 + 0x4024300 6 <<00000000>> 0x04025d38 0 + 0x4025d38 7 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 8 <<00000000>> 0x03f2cef0 0 + 0x3f2cef0 9 <<00000000>> 0x03fad258 0 + 0x3fad258 10 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 11 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 12 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 13 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 14 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 15 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 16 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 17 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 18 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 19 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 20 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 Thread 17: 0 libSystem.B.dylib 0x900074c8 mach_msg_trap + 0x8 1 libSystem.B.dylib 0x90007018 mach_msg + 0x38 2 libclient.dylib 0x9472b448 JVM_GetClassAccessFlags + 0x11e8 3 libclient.dylib 0x94725d28 _mh_dylib_header + 0x2d28 4 libclient.dylib 0x9472f194 __cmpdi2 + 0x1ad4 5 libclient.dylib 0x9472b8a8 JVM_MonitorWait + 0x108 6 <<00000000>> 0x03f33580 0 + 0x3f33580 7 <<00000000>> 0x03f2cfb0 0 + 0x3f2cfb0 8 <<00000000>> 0x041bf408 0 + 0x41bf408 9 <<00000000>> 0x03f2cec0 0 + 0x3f2cec0 10 <<00000000>> 0x03f2a16c 0 + 0x3f2a16c 11 libclient.dylib 0x9473dff8 JVM_GetCPMethodClassNameUTF + 0xb38 12 libclient.dylib 0x9475f448 JVM_GetCPClassNameUTF + 0x998 13 libclient.dylib 0x9479c0a8 JVM_Close + 0x4b8 14 libclient.dylib 0x947ac970 JVM_Interrupt + 0x2e0 15 libclient.dylib 0x9485170c JVM_UnloadLibrary + 0xcdec 16 libclient.dylib 0x94797e04 JVM_FindClassFromClass + 0xc14 17 libclient.dylib 0x948f590c JVM_UnloadLibrary + 0xb0fec 18 libSystem.B.dylib 0x900246e8 _pthread_body + 0x28 PPC Thread State: srr0: 0x927e05ac srr1: 0x0200f030 vrsave: 0x00000000 cr: 0x84024222 xer: 0x20000000 lr: 0x927da888 ctr: 0x90193580 r0: 0x927de32c r1: 0xbfffcbe0 r2: 0x00000030 r3: 0x00000000 r4: 0xbfffcc20 r5: 0x73686f72 r6: 0x00000000 r7: 0x00000002 r8: 0x00000000 r9: 0xbfffcb82 r10: 0x00000000 r11: 0xbfffcb82 r12: 0x08be63d0 r13: 0x00500c70 r14: 0x00000000 r15: 0x00000001 r16: 0x00000000 r17: 0x00000001 r18: 0xa0191458 r19: 0x00000000 r20: 0x00000000 r21: 0x00000000 r22: 0x00312980 r23: 0x00312a98 r24: 0xa01945bc r25: 0xa00011ac r26: 0x00000021 r27: 0x08badcd0 r28: 0x08b63270 r29: 0x00000010 r30: 0xbfffcd30 r31: 0x927dfe1c Binary Images Description: 0x1000 - 0xcfff java /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java 0x177a000 - 0x177afff libcore_2_1_0b.jnilib /Users/ines/Desktop/I20040831/eclipse/plugins/org.eclipse.core.resources.macosx_3.0.0/os/macosx/ppc/libcore_2_1_0b.jnilib 0x17a0000 - 0x17d3fff libswt-pi-carbon-3104.jnilib /Users/ines/Desktop/I20040831/eclipse/plugins/org.eclipse.swt.carbon_3.1.0/os/macosx/ppc/libswt-pi-carbon-3104.jnilib 0x24da000 - 0x2506fff libswt-carbon-3104.jnilib /Users/ines/Desktop/I20040831/eclipse/plugins/org.eclipse.swt.carbon_3.1.0/os/macosx/ppc/libswt-carbon-3104.jnilib 0x77fb0000 - 0x77fbbfff libzip.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libzip.jnilib 0x8e275000 - 0x8e27efff libnet.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libnet.jnilib 0x8e282000 - 0x8e286fff libnio.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libnio.jnilib 0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld 0x90000000 - 0x90122fff libSystem.B.dylib /usr/lib/libSystem.B.dylib 0x90190000 - 0x9023dfff com.apple.CoreFoundation 6.3.4 (299.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x90280000 - 0x904f9fff com.apple.CoreServices.CarbonCore 10.3.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x90570000 - 0x905dffff com.apple.framework.IOKit 1.3.5 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x90610000 - 0x9069afff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x90720000 - 0x90787fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.3 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib 0x90910000 - 0x90983fff com.apple.DesktopServices 1.2.2 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x909f0000 - 0x90b4bfff com.apple.Foundation 6.3.5 (500.56) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x90df0000 - 0x90df4fff com.apple.JavaVM 1.4.2 (1.4.2 Release 1) /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM 0x910b0000 - 0x91101fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x912a0000 - 0x912bdfff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x91320000 - 0x913defff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x91460000 - 0x91473fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x914a0000 - 0x91509fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x9153a000 - 0x91544fff libverify.dylib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libverify.dylib 0x91560000 - 0x91619fff com.apple.QD 3.4.65 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x91670000 - 0x916a8fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x916e0000 - 0x91773fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x917e0000 - 0x917f0fff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x91810000 - 0x9182afff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x91850000 - 0x91860fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x91890000 - 0x9189cfff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x918c0000 - 0x918cdfff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x918f0000 - 0x9193efff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x91990000 - 0x9199bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x919c0000 - 0x91a33fff com.apple.NavigationServices 3.3.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices 0x91ab0000 - 0x91ac4fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x91ae0000 - 0x91aebfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x91b10000 - 0x91b2afff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib 0x91b50000 - 0x91b5ffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib 0x91b80000 - 0x91b93fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent 0x920c0000 - 0x922a7fff com.apple.security 2.4 (177) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x92430000 - 0x92468fff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x92740000 - 0x92777fff com.apple.CFNetwork 1.2.1 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x927d0000 - 0x92b54fff com.apple.HIToolbox 1.3.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x92d30000 - 0x92d80fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x935d0000 - 0x938a8fff com.apple.CoreGraphics 1.203.26 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x939a0000 - 0x939b4fff libcups.2.dylib /usr/lib/libcups.2.dylib 0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib 0x94060000 - 0x94078fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore 0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib 0x94610000 - 0x9462afff libresolv.9.dylib /usr/lib/libresolv.9.dylib 0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x94723000 - 0x94971fff libclient.dylib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libclient.dylib 0x94a30000 - 0x94af5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib 0x94b20000 - 0x94badfff com.apple.ink.framework 101.1.3 (55.10) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x94c1a000 - 0x94c35fff libjava.jnilib /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Libraries/libjava.jnilib 0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib 0x96a20000 - 0x96ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib 0x96b40000 - 0x96b6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib 0x96bf0000 - 0x96c7ffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib 0x97510000 - 0x97518fff libbsm.dylib /usr/lib/libbsm.dylib "
|
2004-09-01 17:12:32
| 1,094,070,000 |
resolved fixed
|
723b1d5
| 1,098,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,169 | 23,006 |
Bug 23006 Tree Expand all "*" sends expand event regardless of current state
|
Run the code below, select a node in the tree and press the "*" key repeatedly. The Tree sends an expand event for each sub-item in the tree regardless of whether the item was already expanded or not. Getting an expand event for an expanded node seems wrong. If this is correct behaviour (sending Expand event for an expanded node), then TableTree should be modified to do the same. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout(SWT.VERTICAL)); final Tree tree = new Tree(shell, SWT.FULL_SELECTION); tree.addListener(SWT.Expand, new Listener() { public void handleEvent(Event event) { Item item = (Item)event.item; if (item != null) { System.out.println("Expand event "+item.getText ()); } else { System.out.println("Expand event "+null); } } }); TreeItem item1 = new TreeItem(tree, SWT.NONE); item1.setText("A"); TreeItem item2 = new TreeItem(item1, SWT.NONE); item2.setText("B"); TreeItem item3 = new TreeItem(item2, SWT.NONE); item3.setText("C"); TreeItem item4 = new TreeItem(item3, SWT.NONE); item4.setText("D"); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); display.dispose(); }
|
2002-08-29 17:07:33
| 1,030,660,000 |
resolved fixed
|
8a56311
| 1,098,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,170 | 75,218 |
Bug 75218 DirectoryDialog widget has a growing label
|
3.1M2 In the DirectoryDialog widget, the label added by SWT expands to take up space. It should instead remain only large enough to contain its text.
|
2004-09-28 17:11:56
| 1,096,410,000 |
resolved fixed
|
ee8dd8c
| 1,098,220,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
3,171 | 75,577 |
Bug 75577 Keyboard focus not given to selected element in tree
| null |
2004-10-04 11:57:14
| 1,096,910,000 |
resolved fixed
|
a39f522
| 1,098,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,172 | 20,269 |
Bug 20269 Please add javadoc for Composite getChildren() ordering
|
Please add a note in the javadoc for Composite's getChildren(). It doesn't say anything about the order of the children returned in the array. I was told it is in z-order, could you please add this, or if it's not, then say it's not?
|
2002-06-13 15:46:33
| 1,024,000,000 |
resolved fixed
|
66daf83
| 1,098,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,173 | 75,739 |
Bug 75739 Variant has no toString()
|
The Variant class has no toString() and one cannot call getString() in all cases since it throws an Exception if the type is VT_EMPTY. So I suggest: /** * Always returns a String. * @param variant * @return a String */ public static String toString() { if (this.getType() == COM.VT_EMPTY) { return ""; } return this.getString(); } Version 3.1.M2.
|
2004-10-06 17:02:29
| 1,097,100,000 |
resolved fixed
|
90ec89f
| 1,098,130,000 |
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java
|
SWT
|
3,174 | 73,871 |
Bug 73871 [KeyBindings] NullPointerException while running UiTestSuite
| null |
2004-09-14 10:29:58
| 1,095,170,000 |
resolved fixed
|
e2f7314
| 1,098,120,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,175 | 68,876 |
Bug 68876 Sashes should resize interactively
|
3.0 The following patch modifies Sash to resize interactively, rather than drawing an XOR stipple. This makes Eclipse feel a lot more modern, and follows the behaviour of other Linux applications.
|
2004-06-29 11:55:25
| 1,088,520,000 |
resolved fixed
|
9c87272
| 1,097,880,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.java
|
SWT
|
3,176 | 74,882 |
Bug 74882 TextLayout needs toString() Method
|
Currently the TextLayout class has no toString representation. It could do with one. A listing of the attributes in the layout would be my suggestion.
|
2004-09-23 19:31:00
| 1,095,980,000 |
resolved fixed
|
4481c39
| 1,097,700,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/textlayout/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,177 | 10,766 |
Bug 10766 Combo.removeAll() behaviour does not match API documentation
|
The doc says that removeAll() should clear all items of the receiver's list. However, it also clears the receiver's text field, which it should not.
|
2002-03-05 09:48:10
| 1,015,340,000 |
resolved fixed
|
0318541
| 1,097,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,178 | 11,657 |
Bug 11657 inconsistent SWT.NO_FOCUS behaviour
|
1) w2k: the flag is ignored when provided as a style to a Shell instead of some widget. linux: the flag is respected. 2) linux: the flag has effect for the widget and all its children. w2k: the flag has only effect for the widget itself (except if the widget is a Shell) 3) There should be better documentation about how the flag effects focus events.
|
2002-03-19 12:26:17
| 1,016,560,000 |
resolved fixed
|
1c45042
| 1,097,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
|
SWT
|
3,179 | 75,753 |
Bug 75753 SWT.NO_BACKGROUND not working on Linux GTK
| null |
2004-10-06 18:42:57
| 1,097,100,000 |
resolved fixed
|
0cb1669
| 1,097,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
|
SWT
|
3,180 | 75,906 |
Bug 75906 Multiple file type filters broken in file chooser
|
Currently in the file chooser implementation, filters of the form "*.jar;*.zip" are not honoured as they are on Windows. The following patch fixes this. For an example use case, see File > Import > Zip File > Browse. Index: Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java =================================================================== RCS file: /home/eclipse/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java,v retrieving revision 1.38 diff -u -r1.38 FileDialog.java --- Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java 8 Oct 2004 14:01:48 -0000 1.38 +++ Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java 8 Oct 2004 14:47:48 -0000 @@ -397,13 +397,26 @@ if (filterExtensions == null) filterExtensions = new String [0]; for (int i = 0; i < filterExtensions.length; i++) { if (filterExtensions [i] != null) { - byte [] filterString = Converter.wcsToMbcs (null, filterExtensions [i], true); + byte [] filterString; int /*long*/ filter = OS.gtk_file_filter_new (); - OS.gtk_file_filter_add_pattern (filter, filterString); if (filterNames.length > i && filterNames [i] != null) { filterString = Converter.wcsToMbcs (null, filterNames [i], true); + OS.gtk_file_filter_set_name (filter, filterString); + } else { + filterString = Converter.wcsToMbcs (null, filterExtensions [i], true); + OS.gtk_file_filter_set_name (filter, filterString); } - OS.gtk_file_filter_set_name (filter, filterString); + if (filterExtensions[i].indexOf(';') != -1) { + String [] curExtensions = filterExtensions[i].split(";"); //$NON-NLS-1$ + for (int j = 0; j < curExtensions.length; j++) { + filterString = Converter.wcsToMbcs (null, curExtensions [j], true); + OS.gtk_file_filter_add_pattern (filter, filterString); + } + } else { + filterString = Converter.wcsToMbcs (null, filterExtensions [i], true); + OS.gtk_file_filter_add_pattern (filter, filterString); + } + OS.gtk_file_chooser_add_filter (handle, filter); } }
|
2004-10-08 11:01:24
| 1,097,250,000 |
resolved fixed
|
a60d8be
| 1,097,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
3,181 | 56,047 |
Bug 56047 SWT Example Launcher does not run standalone apps
|
M8 Install the example plugins Start Eclipse Switch to the SWT Example Launcher view Select AddressBook in Standalone Click Run Nothing happens.
|
2004-03-24 17:04:40
| 1,080,170,000 |
resolved fixed
|
d6148e6
| 1,097,170,000 |
examples/org.eclipse.swt.examples.launcher/src/org/eclipse/swt/examples/launcher/ItemDescriptor.java examples/org.eclipse.swt.examples.launcher/src/org/eclipse/swt/examples/launcher/LauncherPlugin.java examples/org.eclipse.swt.examples.launcher/src/org/eclipse/swt/examples/launcher/LauncherView.java
|
SWT
|
3,182 | 75,675 |
Bug 75675 [browser] setText/setUrl crashes when called from location.changing
| null |
2004-10-05 16:51:36
| 1,097,010,000 |
resolved fixed
|
467aee2
| 1,097,010,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/WebKit.java
|
SWT
|
3,183 | 74,666 |
Bug 74666 String cut off in New Java Interface wizard
|
I200409212000 - New > Java Interface - Beside the entry for Package: there is the string (default), but the closing parenthesis is cut off
|
2004-09-22 14:15:07
| 1,095,880,000 |
resolved fixed
|
231c9b1
| 1,097,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,184 | 73,345 |
Bug 73345 TableTreeItem.setExpanded causes redraw which causes flickering
|
WinXP / SWT 3.0 When my mouse is not hovering over the window, the entire tableTree redraws all the lines. This extreme example hopefully shows that a redraw needlessly draws the lines which I see as flicker in normal apps. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setBounds(0,0,200,200); TableTree tt = new TableTree(shell, SWT.NONE); tt.getTable().setLinesVisible(true); TableTreeItem tti1 = new TableTreeItem(tt, SWT.NONE); tti1.setText("Parent"); TableTreeItem tti2 = new TableTreeItem(tti1, SWT.NONE); tti2.setText("Child"); shell.open(); while (!shell.isDisposed()) { tti1.setExpanded(false); if (!display.readAndDispatch()) display.sleep(); } }
|
2004-09-07 00:05:29
| 1,094,530,000 |
resolved fixed
|
c38115e
| 1,097,010,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeItem.java
|
SWT
|
3,185 | 48,272 |
Bug 48272 pocket pc - gesture erases current text selection
|
PPC: select some text, then bring up a popup. The gesture erases the current selection. It should not (e.g. see Word). import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; public class TextStylusHold { Display display; Shell shell; Text text; class MySelectionAdapter extends SelectionAdapter { public void widgetSelected(SelectionEvent e) { String x = ""; if (e.widget != null && e.widget.getData() != null) x = (String) e.widget.getData(); if (x.equals("POPUP_COPY")) text.copy(); } } public TextStylusHold() { display = new Display(); shell = new Shell(display); shell.setText("Main"); Menu mb = new Menu(shell, SWT.BAR); shell.setMenuBar(mb); Menu menu = new Menu(shell, SWT.POP_UP); MenuItem item = new MenuItem(menu, SWT.CASCADE); item.setData("POPUP_COPY"); item.setText("copy"); item.addSelectionListener( new MySelectionAdapter()); text = new Text(shell, SWT.MULTI); text.setText("Please,\nhere select some text\nand hold tap."); text.setMenu(menu); shell.setLayout( new FillLayout()); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } public static void main(String[] args) { new TextStylusHold(); } }
|
2003-12-08 10:00:35
| 1,070,900,000 |
resolved fixed
|
7f20729
| 1,096,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,186 | 58,185 |
Bug 58185 Eclipse fails to load oldstyle BMP files
| null |
2004-04-12 15:16:27
| 1,081,800,000 |
resolved fixed
|
c0a3d8a
| 1,096,900,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/FileFormat.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/OS2BMPFileFormat.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/WinBMPFileFormat.java
|
SWT
|
3,187 | 74,275 |
Bug 74275 SWT.ON_TOP and SWT.MIN|SWT.MAX are mutually eclusive
|
Regression: with SWT 3062 for Windows, it is no longer possible to create a window that has MIN/MAX buttons and is also ON_TOP. yvind
|
2004-09-20 08:42:06
| 1,095,680,000 |
resolved fixed
|
bc96056
| 1,096,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,188 | 30,804 |
Bug 30804 DCR - GridLayout should not treat width/height hint as minumum size when grab/fill is specified
|
The GridLayout manager treats the width and height hint as a minumum width even if fill and grab is specified for the cell. But is doesn't treat it as a maximum width. This makes it hard to design dialogs which are opened on a "smaller" screen. Consider the following example: - a shell with a tree and some label below the tree - the layout is managed by a GridLayout manager. - we specify a width hint of 500 for the tree and make it fill and grab. Open the dialog. When you resize it (make it larger) the tree gets enlarged as well. If you make the dialog small the tree get clipped. When you now open the dialog on a smaller screen (600x480) the tree gets clipped right from the beginning.
|
2003-02-03 05:31:46
| 1,044,270,000 |
resolved fixed
|
817eb70
| 1,096,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java
|
SWT
|
3,189 | 75,219 |
Bug 75219 File open dialog does not handle filters
|
3.1M2 In eclipse: 1. Go to File > Import 2. Choose 'Zip File' 3. Hit 'Browse' The file dialog that pops up is supposed to filter on the file types *.jar and *.zip, but instead the text appears in the file name text entry.
|
2004-09-28 17:13:35
| 1,096,410,000 |
resolved fixed
|
280ed50
| 1,096,580,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
3,190 | 75,404 |
Bug 75404 ControlExample slider tab grabs mouse
|
Mouse click in slider. Mouse is grabbed.
|
2004-09-30 14:43:57
| 1,096,570,000 |
resolved fixed
|
6e1828b
| 1,096,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java
|
SWT
|
3,191 | 75,169 |
Bug 75169 [StyledText] setStyleRanges() shows different result when StyleRanges are sorted differently
|
Hi, see this Snippet: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); StyledText st = new StyledText(shell, SWT.NONE); st.setText("www.heise.de\n\nComments: \n\nSome comments"); StyleRange sr1 = new StyleRange(); sr1.start = 0; sr1.length = 12; sr1.background = display.getSystemColor(SWT.COLOR_WHITE); sr1.foreground = display.getSystemColor(SWT.COLOR_RED); sr1.fontStyle = SWT.NORMAL; StyleRange sr2 = new StyleRange(); sr2.start = 14; sr2.length = 9; sr2.background = display.getSystemColor(SWT.COLOR_WHITE); sr2.foreground = display.getSystemColor(SWT.COLOR_BLUE); sr2.fontStyle = SWT.NORMAL; st.setStyleRanges(new StyleRange[] { sr1, sr2 }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } Call it once with st.setStyleRanges(new StyleRange[] { sr1, sr2 }); and once with st.setStyleRanges(new StyleRange[] { sr2, sr1 }); See that in case sr2 is first in the StyleRange[] Array, the "www.heise.de" is not painted RED. If the sort order of StyleRanges in the StyleRange[] argument is dependand for the result, it should at least be mentioned in the Api. Nevertheless, the method should give the same result, regardless of the Order of the StyleRage[] array. Ben
|
2004-09-28 09:58:29
| 1,096,380,000 |
resolved fixed
|
2861187
| 1,096,500,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,192 | 75,268 |
Bug 75268 snippet 2
|
I noticed that if I wanted to replace the static creation of the table items and create it dynamically with a "for" loop, that a "widget disposed" type exception is thrown from line "items[i].dispose();" at line 541 of snippet 2 located under "inserting a row in a table" if clicking the second column to perform a sort. I am wondering if there is a reference issue in the Table. If you replace the static creation of the TableItems with the dynamic creation used in a "for" loop you will see that the exception is thrown. Replace: TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] {"a", "6"}); item = new TableItem(table, SWT.NONE); item.setText(new String[] {"d", "1"}); item = new TableItem(table, SWT.NONE); item.setText(new String[] {"a", "5"}); item = new TableItem(table, SWT.NONE); item.setText(new String[] {"a", "4"}); item = new TableItem(table, SWT.NONE); item.setText(new String[] {"b", "3"}); item = new TableItem(table, SWT.NONE); item.setText(new String[] {"c", "2"}); with: for(int k = 12; k > 0; k--) { TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] {"a", String.valueOf(k)}); } then click on column 2 to sort the numbers.
|
2004-09-29 08:18:31
| 1,096,460,000 |
resolved fixed
|
9d0adde
| 1,096,490,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet2.java
|
SWT
|
3,193 | 65,865 |
Bug 65865 TableColumn.pack() calculates wrong size in TableTrees
|
I think that TableColumn.pack calculates the wrong size if all these conditions are given in a TableTree: columnindex==0 image of biggest item in column==null columwidth>headerwidth and some other item in this column has an image Reasoning: If the columnwidth is bigger than the header width, then the column width is used as result. Only if the column header has an image, then the width for the image is added to the column width. But this addition must also be done if at least one of the items in the column has an image. The attached screenshot shows the first table column of a table tree. The upper part was taken after calling pack() for the column, the lower part was taken after packing and incrementing the column width by the width of the image in the first row. System: Build 3M9 on Win2000
|
2004-06-05 06:32:29
| 1,086,430,000 |
resolved wontfix
|
7497dae
| 1,096,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,194 | 75,168 |
Bug 75168 Deadlocked Eclipse
|
Running the latest from HEAD, I hit this deadlock while a progress dialog was open: Full thread dump Java HotSpot(TM) Client VM (1.4.2_03-b02 mixed mode): "ModalContext" prio=1 tid=0x08873548 nid=0x1c51 waiting for monitor entry [4f106000..4f106854] at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:47) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:148) - locked <0x45788fb8> (a org.eclipse.swt.widgets.RunnableLock) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:28) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3090) at org.eclipse.jface.operation.AccumulatingProgressMonitor.beginTask(AccumulatingProgressMonitor.java:121) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1665) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:110) - locked <0x456cb288> (a org.eclipse.ui.actions.CopyFilesAndFoldersOperation$2) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:105) "TimeoutOutputStream" daemon prio=1 tid=0x4ea077b8 nid=0x1c51 in Object.wait() [4e852000..4e852854] at java.lang.Object.wait(Native Method) - waiting on <0x456c28f0> (a org.eclipse.team.internal.core.streams.TimeoutOutputStream) at java.lang.Object.wait(Object.java:429) at org.eclipse.team.internal.core.streams.TimeoutOutputStream.writeUntilDone(TimeoutOutputStream.java:240) - locked <0x456c28f0> (a org.eclipse.team.internal.core.streams.TimeoutOutputStream) at org.eclipse.team.internal.core.streams.TimeoutOutputStream.runThread(TimeoutOutputStream.java:195) at org.eclipse.team.internal.core.streams.TimeoutOutputStream.access$0(TimeoutOutputStream.java:193) at org.eclipse.team.internal.core.streams.TimeoutOutputStream$1.run(TimeoutOutputStream.java:66) at java.lang.Thread.run(Thread.java:534) "Worker-6" prio=1 tid=0x08611868 nid=0x1c51 waiting for monitor entry [4f085000..4f085854] at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:47) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:74) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:34) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3090) at org.eclipse.ui.model.WorkbenchContentProvider.resourceChanged(WorkbenchContentProvider.java:107) at org.eclipse.core.internal.events.NotificationManager$2.run(NotificationManager.java:283) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.core.internal.events.NotificationManager.notify(NotificationManager.java:277) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges(NotificationManager.java:151) at org.eclipse.core.internal.resources.Workspace.broadcastChanges(Workspace.java:172) at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:901) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1683) at org.eclipse.core.internal.events.NotificationManager$NotifyJob.run(NotificationManager.java:38) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) "Worker-5" prio=1 tid=0x08667358 nid=0x1c51 waiting for monitor entry [4e400000..4e400854] at org.eclipse.swt.widgets.Display.wakeThread(Display.java:3144) - waiting to lock <0x48b08390> (a java.lang.Class) at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:54) - locked <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:74) at org.eclipse.swt.widgets.Display.asyncExec(Display.java:562) at org.eclipse.ui.progress.UIJob.run(UIJob.java:85) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) "Java indexing" daemon prio=1 tid=0x0831dc60 nid=0x1c51 in Object.wait() [4ce8e000..4ce8e854] at java.lang.Object.wait(Native Method) - waiting on <0x45192548> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Object.wait(Object.java:429) at org.eclipse.jdt.internal.core.search.processing.JobManager.run(JobManager.java:345) - locked <0x45192548> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Thread.run(Thread.java:534) "Worker-3" prio=1 tid=0x081d2430 nid=0x1c51 in Object.wait() [4ddbe000..4ddbe854] at java.lang.Object.wait(Native Method) - waiting on <0x45083fb0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:166) - locked <0x45083fb0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:193) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:59) "Worker-2" prio=1 tid=0x081d19f8 nid=0x1c51 waiting for monitor entry [4dd3d000..4dd3d854] at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:47) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:74) at org.eclipse.swt.widgets.Display.asyncExec(Display.java:562) at org.eclipse.ui.progress.UIJob.run(UIJob.java:85) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) "Reference Cleaner - 6" prio=1 tid=0x08305398 nid=0x1c51 in Object.wait() [4dafa000..4dafa854] at java.lang.Object.wait(Native Method) - waiting on <0x4514d8c8> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x4514d8c8> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Reference Cleaner - 5" prio=1 tid=0x083050e8 nid=0x1c51 in Object.wait() [4da79000..4da79854] at java.lang.Object.wait(Native Method) - waiting on <0x4514d938> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x4514d938> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Reference Cleaner - 4" prio=1 tid=0x08301148 nid=0x1c51 in Object.wait() [4d9f8000..4d9f8854] at java.lang.Object.wait(Native Method) - waiting on <0x4514d9a8> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x4514d9a8> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Worker-0" prio=1 tid=0x0837f870 nid=0x1c51 waiting for monitor entry [4d977000..4d977854] at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:47) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:74) at org.eclipse.swt.widgets.Display.asyncExec(Display.java:562) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.postLabelEvent(CVSLightweightDecorator.java:396) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.refresh(CVSLightweightDecorator.java:326) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.projectConfigured(CVSLightweightDecorator.java:381) at org.eclipse.team.internal.ccvs.core.util.ResourceStateChangeListeners$4.notify(ResourceStateChangeListeners.java:129) at org.eclipse.team.internal.ccvs.core.util.ResourceStateChangeListeners$Notification.run(ResourceStateChangeListeners.java:54) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.team.internal.ccvs.core.util.ResourceStateChangeListeners$Notification.run(ResourceStateChangeListeners.java:51) at org.eclipse.team.internal.ccvs.core.util.ResourceStateChangeListeners.fireNotification(ResourceStateChangeListeners.java:75) at org.eclipse.team.internal.ccvs.core.util.ResourceStateChangeListeners.projectConfigured(ResourceStateChangeListeners.java:127) at org.eclipse.team.internal.ccvs.core.CVSTeamProvider.configureProject(CVSTeamProvider.java:501) at org.eclipse.team.core.RepositoryProvider.configure(RepositoryProvider.java:297) at org.eclipse.team.core.RepositoryProvider.map(RepositoryProvider.java:123) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutProjectOperation.refreshProjects(CheckoutProjectOperation.java:457) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutProjectOperation.performCheckout(CheckoutProjectOperation.java:254) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutProjectOperation$1.run(CheckoutProjectOperation.java:151) at org.eclipse.team.internal.ccvs.core.resources.EclipseSynchronizer.run(EclipseSynchronizer.java:1382) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutProjectOperation.checkout(CheckoutProjectOperation.java:149) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutMultipleProjectsOperation.checkout(CheckoutMultipleProjectsOperation.java:50) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutOperation.checkout(CheckoutOperation.java:46) at org.eclipse.team.internal.ccvs.ui.operations.CheckoutOperation.execute(CheckoutOperation.java:31) at org.eclipse.team.internal.ccvs.ui.operations.CVSOperation.run(CVSOperation.java:84) at org.eclipse.team.internal.ui.actions.JobRunnableContext.run(JobRunnableContext.java:159) at org.eclipse.team.internal.ui.actions.JobRunnableContext$3.runInWorkspace(JobRunnableContext.java:179) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) "Reference Cleaner - 3" prio=1 tid=0x0808ff58 nid=0x1c51 in Object.wait() [4d8b5000..4d8b5854] at java.lang.Object.wait(Native Method) - waiting on <0x45102430> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x45102430> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Reference Cleaner - 2" prio=1 tid=0x08091180 nid=0x1c51 in Object.wait() [4d834000..4d834854] at java.lang.Object.wait(Native Method) - waiting on <0x451024a0> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x451024a0> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Reference Cleaner - 1" prio=1 tid=0x08090f50 nid=0x1c51 in Object.wait() [4d0a0000..4d0a0854] at java.lang.Object.wait(Native Method) - waiting on <0x45102510> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x45102510> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.resource.ImageCache$ReferenceCleanerThread.run(ImageCache.java:161) "Start Level Event Dispatcher" daemon prio=1 tid=0x0823efc0 nid=0x1c51 in Object.wait() [4d01f000..4d01f854] at java.lang.Object.wait(Native Method) - waiting on <0x44c4d438> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:162) - locked <0x44c4d438> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:100) "Framework Event Dispatcher" daemon prio=1 tid=0x08242560 nid=0x1c51 in Object.wait() [4cf9e000..4cf9e854] at java.lang.Object.wait(Native Method) - waiting on <0x44c41ab8> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:162) - locked <0x44c41ab8> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:100) "Signal Dispatcher" daemon prio=1 tid=0x0809d700 nid=0x1c51 waiting on condition [0..0] "Finalizer" daemon prio=1 tid=0x08088998 nid=0x1c51 in Object.wait() [4c924000..4c924854] at java.lang.Object.wait(Native Method) - waiting on <0x44c2a698> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x44c2a698> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159) "Reference Handler" daemon prio=1 tid=0x08087da8 nid=0x1c51 in Object.wait() [4c8a3000..4c8a3854] at java.lang.Object.wait(Native Method) - waiting on <0x44c2a700> (a java.lang.ref.Reference$Lock) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x44c2a700> (a java.lang.ref.Reference$Lock) "main" prio=1 tid=0x080525b8 nid=0x1c51 waiting for monitor entry [bfff9000..bfffbd08] at org.eclipse.swt.widgets.Synchronizer.removeFirst(Synchronizer.java:90) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:101) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2636) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2365) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:141) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:279) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:449) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:268) at org.eclipse.ui.actions.CopyFilesAndFoldersOperation.copyResources(CopyFilesAndFoldersOperation.java:501) at org.eclipse.ui.views.navigator.PasteAction.run(PasteAction.java:134) at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167) at org.eclipse.ui.actions.TextActionHandler$PasteActionHandler.runWithEvent(TextActionHandler.java:245) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:215) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:188) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:463) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:956) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:997) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:541) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:488) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:241) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1059) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:972) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:997) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:982) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:2374) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1859) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:448) at org.eclipse.swt.widgets.Tree.gtk_key_press_event(Tree.java:650) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1228) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3168) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(Native Method) at org.eclipse.swt.widgets.Display.eventProc(Display.java:902) at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2361) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1443) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1414) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:271) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) "VM Thread" prio=1 tid=0x08086ab8 nid=0x1c51 runnable "VM Periodic Task Thread" prio=1 tid=0x0809ff10 nid=0x1c51 waiting on condition "Suspend Checker Thread" prio=1 tid=0x0809cd60 nid=0x1c51 runnable Found one Java-level deadlock: ============================= "Worker-5": waiting to lock monitor 0x08089614 (object 0x48b08390, a java.lang.Class), which is held by "main" "main": waiting to lock monitor 0x08089844 (object 0x450d1650, a java.lang.Object), which is held by "Worker-5" Java stack information for the threads listed above: =================================================== "Worker-5": at org.eclipse.swt.widgets.Display.wakeThread(Display.java:3144) - waiting to lock <0x48b08390> (a java.lang.Class) at org.eclipse.swt.widgets.Synchronizer.addLast(Synchronizer.java:54) - locked <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.asyncExec(Synchronizer.java:74) at org.eclipse.swt.widgets.Display.asyncExec(Display.java:562) at org.eclipse.ui.progress.UIJob.run(UIJob.java:85) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) "main": at org.eclipse.swt.widgets.Synchronizer.removeFirst(Synchronizer.java:90) - waiting to lock <0x450d1650> (a java.lang.Object) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:101) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2636) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2365) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:141) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:279) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:449) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:268) at org.eclipse.ui.actions.CopyFilesAndFoldersOperation.copyResources(CopyFilesAndFoldersOperation.java:501) at org.eclipse.ui.views.navigator.PasteAction.run(PasteAction.java:134) at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167) at org.eclipse.ui.actions.TextActionHandler$PasteActionHandler.runWithEvent(TextActionHandler.java:245) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:215) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:188) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:463) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:956) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:997) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:541) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:488) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:241) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1059) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:972) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:997) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:982) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:2374) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1859) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:448) at org.eclipse.swt.widgets.Tree.gtk_key_press_event(Tree.java:650) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1228) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3168) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(Native Method) at org.eclipse.swt.widgets.Display.eventProc(Display.java:902) at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2361) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1443) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1414) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:271) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Found 1 deadlock.
|
2004-09-28 09:58:23
| 1,096,380,000 |
resolved fixed
|
62659c6
| 1,096,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java
|
SWT
|
3,195 | 74,241 |
Bug 74241 [DND] Drop Target TreeItem not selected when Font was set
|
Hi, I've implemented Drag and Drop in a Tree. That was done, similiar to Snippet 91 ("drag leaf items in a tree"). Now, when dragging a TreeItem over valid DropTargets, the Target TreeItem becomes selected when hovering over it. But, when I am setting a Font to the TreeItems, hovering over valid Drop Targets does not show the Selection. I have created a Snippet that shows this behaviour (at least on my WinXP), based on Snippet 91: public class Main { public static void main(String[] args) { Display display = Display.getDefault(); Font font = new Font(display, display.getSystemFont().getFontData()[0].getName(), 10, SWT.NORMAL); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Tree tree = new Tree(shell, SWT.BORDER); for (int i = 0; i < 3; i++) { TreeItem item = new TreeItem(tree, SWT.NONE); item.setFont(font); item.setText("item " + i); for (int j = 0; j < 3; j++) { TreeItem subItem = new TreeItem(item, SWT.NONE); subItem.setFont(font); subItem.setText("item " + i + " " + j); for (int k = 0; k < 3; k++) { TreeItem subsubItem = new TreeItem(subItem, SWT.NONE); subsubItem.setFont(font); subsubItem.setText("item " + i + " " + j + " " + k); } } } Transfer[] types = new Transfer[] { TextTransfer.getInstance() }; int operations = DND.DROP_MOVE | DND.DROP_COPY | DND.DROP_LINK; final DragSource source = new DragSource(tree, operations); source.setTransfer(types); final TreeItem[] dragSourceItem = new TreeItem[1]; source.addDragListener(new DragSourceListener() { public void dragStart(DragSourceEvent event) { TreeItem[] selection = tree.getSelection(); if (selection.length > 0 && selection[0].getItemCount() == 0) { event.doit = true; dragSourceItem[0] = selection[0]; } else { event.doit = false; } }; public void dragSetData(DragSourceEvent event) { event.data = dragSourceItem[0].getText(); } public void dragFinished(DragSourceEvent event) { if (event.detail == DND.DROP_MOVE) dragSourceItem[0].dispose(); dragSourceItem[0] = null; } }); DropTarget target = new DropTarget(tree, operations); target.setTransfer(types); target.addDropListener(new DropTargetAdapter() { public void dragOver(DropTargetEvent event) { event.feedback = DND.FEEDBACK_EXPAND | DND.FEEDBACK_SCROLL | DND.FEEDBACK_SELECT; } public void drop(DropTargetEvent event) { if (event.data == null) { event.detail = DND.DROP_NONE; return; } String text = (String) event.data; if (event.item == null) { TreeItem item = new TreeItem(tree, SWT.NONE); item.setText(text); } else { TreeItem parent = (TreeItem) event.item; TreeItem item = new TreeItem(parent, SWT.NONE); item.setText(text); } } }); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } In the second line the "font" is created that is set to all TreeItems. As soon as "Font font = null;" is set, everything works, and the selection is set to the TreeItem. But when using any Font (as in this case the System Font), no selection is shown when dragging over a valid drop target. Ben
|
2004-09-19 13:35:23
| 1,095,620,000 |
resolved fixed
|
10cacb4
| 1,096,310,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,196 | 74,399 |
Bug 74399 [CTabFolder] Widget Disposed SWTException when closing Application with opened Tab-Chooser
|
Hi, take this snippet: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); CTabFolder folder = new CTabFolder(shell, SWT.CLOSE); for (int i = 0; i < 12; i++) { CTabItem item = new CTabItem(folder, SWT.NONE); item.setText("Item " + i); Text text = new Text(folder, SWT.BORDER | SWT.MULTI); text.setText("Content for Item " + i); item.setControl(text); } shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } Click on the button top-right to popup the small list with Tabs that are currently not visible. Leave the popup open and close the application. A SWTException is thrown. I am able to reproduce this with latest SWT 3106 and with earlier 3062. Somehow SWT.MouseUp Event is fired when closing the application with opened Popup. The call to getDisplay() then results in the Exception, since Display is disposed in that situation. Regards, Ben
|
2004-09-21 05:21:17
| 1,095,760,000 |
resolved fixed
|
bc2886f
| 1,096,310,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,197 | 74,824 |
Bug 74824 Adding items to a combo is ridiculously slow on gtk
|
SWT3 final/p3 450/rh9 Result Motif: 770 Result GTK: 70500 -- Display display = new Display(); final Shell shell = new Shell(display); int n = 25000; String[] s = new String[n]; for (int i = 0; i < n; i++) s[i] = "A"; Combo combo = new Combo(shell, SWT.NONE); long t = System.currentTimeMillis(); combo.setItems(s); System.out.println((System.currentTimeMillis() - t));
|
2004-09-23 14:01:16
| 1,095,960,000 |
resolved wontfix
|
06bbc99
| 1,095,970,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,198 | 63,224 |
Bug 63224 Chevron in the coolbar
|
I200405200800 I am seeing a chevron in the first toolbar in my coolbar in Eclipse. However, it is always empty and does not show a menu. It was not always there, playing around in the coolbar caused it to occur.
|
2004-05-20 11:11:32
| 1,085,070,000 |
resolved fixed
|
3504314
| 1,095,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java
|
SWT
|
3,199 | 66,122 |
Bug 66122 AIX Table performance problem
|
I'm having a performance problem with tables on AIX. I have a table in a view with 30 or so table columns filled with 4,000 rows of data. I have the ability for a user to select a format file for the table that changes which columns of the data are displayed without hiding the view. I do this by disposing the TableColumns and creating new TableColumns based on the format data. When I tested this on OS X (PowerBook G4 500 MHz) the performance was perfectly acceptable. When I moved the code to AIX (Power3 350 MHz I think) the performance was hideous.
|
2004-06-08 09:44:50
| 1,086,700,000 |
resolved fixed
|
3ec8ce8
| 1,095,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/TableItem.java
|
SWT
|
3,200 | 66,392 |
Bug 66392 IllegalArgumentException in Table
|
06081200 build Run the attached snippet and will get the exception below: Exception in thread "main" java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2677) at org.eclipse.swt.SWT.error(SWT.java:2616) at org.eclipse.swt.SWT.error(SWT.java:2587) at org.eclipse.swt.widgets.Widget.error(Widget.java:334) at org.eclipse.swt.widgets.Table.internalGetColumn(Table.java:1624) at org.eclipse.swt.widgets.TableItem.getAlignmentOffset(TableItem.java:273) at org.eclipse.swt.widgets.TableItem.drawText(TableItem.java:266) at org.eclipse.swt.widgets.TableItem.paint(TableItem.java:1124) at org.eclipse.swt.widgets.Table.paintSubItem(Table.java:1936) at org.eclipse.swt.widgets.Table.paintItems(Table.java:1903) at org.eclipse.swt.widgets.Table.paint(Table.java:1834) at org.eclipse.swt.widgets.Table.handleEvents(Table.java:1437) at org.eclipse.swt.widgets.SelectableItemWidget$2.handleEvent(SelectableItemWidget.java:1199) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:731) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:752) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:738) at org.eclipse.swt.widgets.Composite.XExposure(Composite.java:882) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:906) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3478) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:2844) at org.eclipse.swt.widgets.Control.update(Control.java:2829) at org.eclipse.swt.widgets.SelectableItemWidget.scroll(SelectableItemWidget.java:1580) at org.eclipse.swt.widgets.Table.columnChange(Table.java:371) at org.eclipse.swt.widgets.TableColumn.setBounds(TableColumn.java:434) at org.eclipse.swt.widgets.TableColumn.setWidth(TableColumn.java:515) at org.eclipse.swt.widgets.Table.setFirstColumnWidth(Table.java:2596) at org.eclipse.swt.widgets.Table.itemChanged(Table.java:1739) at org.eclipse.swt.widgets.TableItem.notifyImageChanged(TableItem.java:1045) at org.eclipse.swt.widgets.TableItem.internalSetImage(TableItem.java:969) at org.eclipse.swt.widgets.TableItem.setImage(TableItem.java:1390) at org.eclipse.swt.widgets.TableItem.removeColumn(TableItem.java:1147) at org.eclipse.swt.widgets.Table.removeColumnData(Table.java:2173) at org.eclipse.swt.widgets.Table.removeColumn(Table.java:2115) at org.eclipse.swt.widgets.TableColumn.disposeColumn(TableColumn.java:236) at org.eclipse.swt.widgets.TableColumn$1.handleEvent(TableColumn.java:134) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:731) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:752) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:735) at org.eclipse.swt.widgets.Widget.releaseWidget(Widget.java:607) at org.eclipse.swt.widgets.Item.releaseWidget(Item.java:139) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:326) at Main$1.run(Main.java:61) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3319) at Main.main(Main.java:52)
|
2004-06-09 15:35:02
| 1,086,810,000 |
resolved fixed
|
76edfc5
| 1,095,780,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,201 | 74,010 |
Bug 74010 Display.setSynchronizer, readAndDispatch may throw ERROR_FAILED_EXEC
|
via Synchronizer.runAsyncMessages. This is not documented in the spec.
|
2004-09-15 15:13:05
| 1,095,280,000 |
resolved fixed
|
d3b4511
| 1,095,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,202 | 72,399 |
Bug 72399 Program integration with KDE
|
The Program class provided with Eclipse/GTK uses GNOME bindings to retrieve programs associated with a particular file extension. Now, given that: * there is no publicly available QT port; * many people like me use KDE and don't even have GNOME installed it would be nice it at least the Program class would be able to inspect and use the KDE bindinds when looking for applications, should the current environment be KDE. I guess this is possible without linking the KDE libraries, and by parsing the KDE configuration files instead...
|
2004-08-22 03:43:45
| 1,093,160,000 |
resolved fixed
|
6ac50ee
| 1,095,720,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java bundles/org.eclipse.swt/Eclipse SWT Program/kde/org/eclipse/swt/internal/kde/KDE.java bundles/org.eclipse.swt/Eclipse SWT Program/motif/org/eclipse/swt/program/Program.java
|
SWT
|
3,203 | 74,111 |
Bug 74111 enum is no longer a valid variable name
|
I'm guessing that this JDT warning was just recently added to eclipse. Users with jdk 1.5 will not be able to compile us since enum is now a keyword. The places where we use enum as a variable name, but no longer should, are: Clipboard.java line 534 Clipboard.java line 538 Clipboard.java line 539 Clipboard.java line 548 DropTarget.java line 641 DropTarget.java line 647 DropTarget.java line 648 DropTarget.java line 668
|
2004-09-16 15:42:11
| 1,095,360,000 |
resolved fixed
|
efc6003
| 1,095,700,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
3,204 | 67,898 |
Bug 67898 VM crash when restarting Eclipse
|
I2005406180800 build. At the end of install/update wizard there is a question to restart Eclipse. Answering Yes, causes Eclipse to shutdown, but VM crashes and does not restart.
|
2004-06-18 16:48:53
| 1,087,590,000 |
resolved fixed
|
c35dab8
| 1,095,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,205 | 73,757 |
Bug 73757 Empty button has different height from one with text
|
The following program passes on Win32, Linux-GTK, and MacOS X, but fails on Linux-Motif. I believe the behaviour on Motif should be fixed. import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; public class EmptyButton { public static void main(String[] args) { Display d = new Display(); Shell t = new Shell(d); Shell s = new Shell(t); Button b = new Button(s, SWT.PUSH); b.setText(""); b.setSize(b.computeSize(SWT.DEFAULT, SWT.DEFAULT)); int b1height = b.getSize().y; System.out.println("Button 1: " + b1height); b = new Button(s, SWT.PUSH); b.setText("Some Text"); b.setSize(b.computeSize(SWT.DEFAULT, SWT.DEFAULT)); int b2height = b.getSize().y; System.out.println("Button 2: " + b2height); if(b1height != b2height) { System.out.println("FAILED: Heights are not the same."); } else { System.out.println("PASSED: Heights are the same."); } d.dispose (); } }
|
2004-09-13 09:38:22
| 1,095,080,000 |
resolved fixed
|
a5bbcc9
| 1,095,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,206 | 74,169 |
Bug 74169 DirectoryDialog widget does not allow resize to smaller width
|
The DirectoryDialog control on Linux does not seem to allow the user to resize the dialog to a width smaller than the longest string displayed in the dialog. Windows does not seem to have this problem -- it both wraps the string and also allows for resizing to a width smaller than even the wrapped string (though I think there may be another problem here in that rezising does not repaint the control, because if resizing on Windows to a width smaller than the displayed string, and then resizing back wider -- the string is not repainted). Steps to reproduce: 1. Start Eclipse (tried this on 3.0 and 3.0.1 RC1) 2. Open Help > Software Updates > Manage Configuration... 3. Click Add an Extension Location On Linux, the width of this dialog is fairly large, to accomodate the long message in the dialog. Attempts to resize to a smaller width fail. But can resize width to a larger size (and height larger as well). On Windows, the width of this dialog is reasonable, because the text has been wrapped. Dialog can be resized here, but text is not resized as well -- this is not a huge issue, but when resizing width larger again, the text is not repainted. This behavior causes issues on lower resolutions (message runs off sides of screen) with no remedy (other than dragging the window around so that the entire message can be read). Attempts to force wrapping of text prior to setMessage() for the dialog work okay, but then the text is always centered (on Linux), and does not look correct -- I would think this would need to be right-justified.
|
2004-09-17 09:17:15
| 1,095,430,000 |
verified fixed
|
64714dc
| 1,095,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
3,207 | 73,725 |
Bug 73725 [Browser] SWTException when resizing CTab containing Browser
|
Hi, I am getting feedback from RSSOwl users on Mac that see a "SWTException: Widget is disposed" when a CTabItem laying in a CTabFolder is resized. I tracked this problem down to line 192 in Browser.java. Whenever the Event SWT.RESIZE is triggered, a call to "isVisible()" is made. In there the normal checkWidget() call results in the Exception. On any other OS, no exception is thrown. The interesting part is, that I am not disposing the browser unless the CTabItem was closed. But this exception occurs (sometimes, not in every case) when a Browser Tab is visible and resized. It's even sufficient to resize the entire application (since that fires SWT.RESIZE to the Browser too). Is this a known issue? I think it will be difficult for me to post a code snippet, since I am not really knowing what this is about. I am going to ask my users for more details. Ben
|
2004-09-11 15:45:39
| 1,094,930,000 |
resolved fixed
|
dbd4777
| 1,095,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,208 | 70,966 |
Bug 70966 No Popup on Tiger
|
Hi, I have installed a Pre-Release of Mac OSX 10.4 (Tiger) on my Ibook. Popup Menus doesn't work on Eclipse 3.0. There is no text displayed in menu. I receive this stacktrace on the Console : java.lang.ArrayIndexOutOfBoundsException: -2 at org.eclipse.swt.widgets.Menu.kEventMenuTargetItem(Menu.java:674) at org.eclipse.swt.widgets.Widget.menuProc(Widget.java:1018) at org.eclipse.swt.widgets.Display.menuProc(Display.java:2399) at org.eclipse.swt.internal.carbon.OS.PopUpMenuSelect(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:190) at org.eclipse.swt.widgets.Display.runPopups(Display.java:2978) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2509) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) You made a great Job ! Nicolas.
|
2004-07-28 08:02:40
| 1,091,020,000 |
resolved fixed
|
bc8b6e5
| 1,095,270,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Menu.java
|
SWT
|
3,209 | 73,730 |
Bug 73730 Button.computeSize definition on Mac does not match other platforms
|
3.1M1 Button.computeSize() on carbon adds a 4 pixel padding factor to any size hints passed in. I think this padding may be added to compensate for the large internal border given to buttons, but this does not match the behaviour of other platforms. I think this should be cleaned up.
|
2004-09-11 21:54:47
| 1,094,950,000 |
resolved fixed
|
2412273
| 1,095,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,210 | 73,717 |
Bug 73717 Button.computeSize gives different results on Linux-GTK and Linux-Motif
|
The following code gives this result on Linux-GTK: Button 1: Point {69, 28} Button 2: Point {100, 10} But this result on Linux-Motif: Button 1: Point {78, 35} Button 2: Point {110, 20} For button 2, while we set the height hint to 100,10, on Linux-Motif the resulting size has added a 10-pixel border for the default-button ring trim, while on GTK+ the ring size is not included (under the "Nuvola" theme it is also 10 pixels, under "Industrial" it is 6 pixels). import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; public class ButtonSize { public static void main(String[] args) { Display d = new Display(); Shell t = new Shell(d); Shell s = new Shell(t); Button b = new Button(s, SWT.PUSH); b.setText("Button 1"); b.setSize(b.computeSize(SWT.DEFAULT, SWT.DEFAULT)); System.out.println("Button 1: " + b.getSize()); b = new Button(s, SWT.PUSH); b.setText("Button 2"); b.setSize(b.computeSize(100,10)); System.out.println("Button 2: " + b.getSize()); s.pack(); s.open(); while (!s.isDisposed ()) { if (!d.readAndDispatch ()) d.sleep (); } d.dispose (); } }
|
2004-09-10 18:56:25
| 1,094,860,000 |
resolved fixed
|
88d75ad
| 1,095,190,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GtkBorder.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,211 | 73,735 |
Bug 73735 Carbon vertical Scale widget has top/bottom reversed from other platforms
|
A Scale widget with SWT.VERTICAL style has larger values at the top and smaller values at the bottom in Carbon, but larger values at the bottom and smaller values at the top in GTK+ and Win32. This makes it harder to present a consistent interface behavior across platforms, particularly for things like volume sliders which have a clear conventional direction.
|
2004-09-12 06:23:44
| 1,094,980,000 |
resolved fixed
|
14dfa16
| 1,095,100,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scale.java
|
SWT
|
3,212 | 73,698 |
Bug 73698 Control.isVisible() returns incorrect value for child Shell
|
SWT v3102 on Windows2000 According to the isVisible() Javadoc and the SWT book (p. 73), isVisible() must return false if one of the Control's ancestors is hidden (meaning the visibility is set to false). However, in the following test case, the child Shell will incorrectly return true from isVisible(). This might be due to the fact that Shell has overridden isVisible() to always return the result of getVisible() (see Shell revision 1.116 on 6/9/04). public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setVisible(false); Shell child = new Shell(shell, SWT.NULL); child.setVisible(true); System.out.println("shell.isVisible() = "+shell.isVisible()); System.out.println("child.isVisible() = "+child.isVisible()); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); }
|
2004-09-10 15:07:41
| 1,094,840,000 |
resolved fixed
|
6b3d5dd
| 1,095,090,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,213 | 73,432 |
Bug 73432 Textlayout does not render multiline text correctly
|
When I run code with the following snippet, the first time when Chinese characters appears, TextLayout renders that line very well. However for the subsequent lines, Textlayout just shows boxes. It is not a font problem, Textlayout can show the first line perfectly. All the characters in the subsequent lines are just repition of the first line. ////////////////////// The code ///////////////////////// TextLayout layout = new TextLayout(Display.getCurrent()); layout.setWidth(200); layout.setText("This is a test.This is a test.This is \u65E5 \u672C\u8A9E\u65E5\u672C\u8A9E\u65E5\u672C\u8A9E\u65E5 \u672C\u8A9E\u672C\u8A9E\u65E5\u672C\u672C\u8A9E\u65E5\u672C\u672C\u8A9E\u65E5 \u672Ca test.This is a test.This\n is a test."); layout.draw(gc, 10, 10);
|
2004-09-08 05:37:50
| 1,094,640,000 |
resolved fixed
|
522d8bf
| 1,094,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,214 | 47,184 |
Bug 47184 MS Word can not be pasted on clipboard in Windows 98
|
Build ID: 20031119-2030 While I was testing eclipse using the clipboard examples, I noticed that MS Word document can not be pasted properly on clipboard. Every time I copied one line of word document, and pasted onto the clipboard, only the first character was pasted. However I can copy text from notepad and paste on clipboard. This problem only occurs on windows 98. On Windows XP, I can paste Word on clipboard.
|
2003-11-20 16:49:30
| 1,069,360,000 |
resolved fixed
|
7203f64
| 1,094,830,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TextTransfer.java
|
SWT
|
3,215 | 49,726 |
Bug 49726 [Workbench] Weird Java perspective icon in action bar
|
See attachment. Version: 3.0.0 Build id: 200401070010 GTK build Steps to reproduce: New workspace. Clicking on the "Open a Perspective" button will show the regular icon. Once I've opened the perspective the checkmark icon will be shown after clicking on the "Open a Perspective" button again.
|
2004-01-08 14:46:47
| 1,073,590,000 |
resolved fixed
|
9fc2725
| 1,094,160,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,216 | 70,780 |
Bug 70780 Table Redraw freezes the Table Headers on CE
|
setRedraw(false) and a later setRedraw(true) freezes the tables headers and they don't scroll any longer with the table cell (this works correct). To reproduce you really only need to call setRedraw with "false" and then directly "true" and the freeze is there.
|
2004-07-24 13:30:20
| 1,090,690,000 |
resolved fixed
|
595545d
| 1,094,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,217 | 73,046 |
Bug 73046 UnsatisfiedLinkError jawt.dll already loaded in another classloader
|
I am developing plugins for various IDEs. Till now all our products were Swing based and all the plugins were working fine. We recently switched from Swing to SWT. Now I am trying to embedd our products (SWT components) in various IDEs( Swing components). I am using jars and dlls of Eclipse 3. Embedding of SWT in Swing is working fine in stand alone application. But when I deploy my plugin in IDE eg IntelliJ IDEA, following error is thrown org.eclipse.swt.SWTError: Not implemented (java.lang.UnsatisfiedLinkError: Native Library D:\Apps\IDEs\Idea4.0\jre\bin\jawt.dll already loaded in another classloader) at org.eclipse.swt.SWT.error(SWT.java:2717) at org.eclipse.swt.SWT.error(SWT.java:2616) at org.eclipse.swt.awt.SWT_AWT.new_Shell(SWT_AWT.java:265) *** Stack trace of contained error *** java.lang.UnsatisfiedLinkError: Native Library D:\Apps\IDEs\Idea4.0\jre\bin\jawt .dll already loaded in another classloader at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1525) at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1477) at java.lang.Runtime.loadLibrary0(Runtime.java:788) at java.lang.System.loadLibrary(System.java:834) at org.eclipse.swt.awt.SWT_AWT.loadLibrary(SWT_AWT.java:67) at org.eclipse.swt.awt.SWT_AWT.new_Shell(SWT_AWT.java:262) at com.appperfect.plugins.common.SWTContainer$1.run(SWTContainer.java:49 ) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.ja va:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2749) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2434) at com.appperfect.plugins.common.DisplayThread.swtEventLoop(DisplayThrea d.java:72) at com.appperfect.plugins.common.DisplayThread.run (DisplayThread.java:65) We are not able to proceed because of this problem. If problem is not resolved then we may have to switched back to Swing. :( Problem is because SWT_AWT explicitly loads jawt.dll, this may be because SWT_AWT or some other class in swt.jar directly calls a native method in jawt.dll. If this is not so and just swt dlls have internal dependeny on jawt.dll then I think explicit loading of jawt is not required. Is there any work around? Am I missing something? -Sudhan.
|
2004-09-01 08:17:42
| 1,094,040,000 |
resolved fixed
|
577b297
| 1,094,060,000 |
bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java bundles/org.eclipse.swt/Eclipse SWT AWT/motif/org/eclipse/swt/awt/SWT_AWT.java bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java
|
SWT
|
3,218 | 64,607 |
Bug 64607 GC.drawRoundRectangle/GC.fillRoundRectangle
|
the arcWidth and arcHeight arguments of GC.drawRoundRectangle and GC.fillRoundRectangle are spec'd as "the horizontal[vertical] diameter of the arc at the four corners". The Windows implementation actually draws the corners with a radius, not a diameter, of arcWidth and arcHeight.
|
2004-05-28 14:50:15
| 1,085,770,000 |
resolved fixed
|
0ac7d71
| 1,094,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,219 | 72,929 |
Bug 72929 TableColumn widths ignored in Table width calculation
|
When a Table widget calculates its size in computeSize() it uses the width of the text in its columns and completely ignores the widths of any TableColumns. This is very annoying when creating an empty table.
|
2004-08-31 02:27:29
| 1,093,930,000 |
resolved fixed
|
67412c6
| 1,093,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,220 | 70,299 |
Bug 70299 Eclipse dead slow on one system, normal on other
| null |
2004-07-18 08:34:10
| 1,090,150,000 |
resolved fixed
|
f3b59a0
| 1,093,970,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
|
SWT
|
3,221 | 70,883 |
Bug 70883 DBCS: IME pre-edit text size looks like 12 points all the time
|
OS: windows XP and 2003 Language: Japanese Build level: M20040721 JDK version: IBM JDK 1.4.2 Beta Steps to recreate problem: 1-open Java editor (Text size is default 10) 2-set IME on, input AAA 3-Set the text size to 16, and repeat above. I will attache the screenshot for 3.0.1 and 2.1.3. .... Error: pre-edit size is fixed unlike Eclipse 2.1.3 Expected Result: pre-edit text size should be the defeined.
|
2004-07-27 03:27:02
| 1,090,910,000 |
verified fixed
|
59bcdb6
| 1,093,900,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Caret.java
|
SWT
|
3,222 | 72,217 |
Bug 72217 CTabFolder should hide tabs in LRU order
|
If CTabFolder does not have enough space to render all of its tabs, it should display the N most recently used tabs rather than the tabs immediately adjacent to the selected tab. This should not affect the relative ordering of tabs. For example: CTabItem item0 = new CTabItem(folder, SWT.NONE, 0); CTabItem item1 = new CTabItem(folder, SWT.NONE, 1); CTabItem item2 = new CTabItem(folder, SWT.NONE, 2); In this case, item0 should always be to the left of item2 whenever both are displayed at the same time. If item1 is the least recently used tab, then item0 should appear immediately adjacent to item2 whenever there is only space for two tabs.
|
2004-08-18 17:14:46
| 1,092,860,000 |
resolved fixed
|
6509ef8
| 1,093,900,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
|
SWT
|
3,223 | 71,303 |
Bug 71303 BIDI issue in Variables view
|
3.0 While debugging Unicode-surrogate problems, I came across a string containing arabic characters. The string showed up as shown in the attached screenshot. I'm not sure whether this is a bug (and I could live with it if it were :-), but I'm just curious whether this behavior is correct from a BIDI point of view.
|
2004-08-03 12:29:21
| 1,091,550,000 |
resolved fixed
|
bb8fa56
| 1,093,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,224 | 72,750 |
Bug 72750 "Program.findProgram()" does not return null for an extension with no associated program on Mac OS 10.3.3
|
I tried the following line of code and was expecting a null value to be returned, but it returned a program named "invalid_extension" instead: Program.findProgram(".invalid_extension") This only happens on the Mac. I looked at the Mac implementation of the "Program#getProgram" static method. It is designed to return null only if the extension passed is null or if it is an empty string, but not if the extension is not valid (does not have a program associated with it). Is that intentional? The API for "findProgram" states that it will return the program or null, so I would expect null to also be returned for an extension that does not have a program associated with it.
|
2004-08-26 18:28:05
| 1,093,560,000 |
resolved fixed
|
9f67525
| 1,093,620,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java
|
SWT
|
3,225 | 70,077 |
Bug 70077 [typing] Copy/paste doesn't work occasionally
|
Hi. When I do the copying/pasting, something seems strange: I'm editing the Java source code, and want to copy some lines of code to another place, I selected the lines, about 15-line, press Ctrl-C, and then move to the paste place, and press Ctrl-V, and just nothing happened. I've tried several time, and tried to use mouse and right-button-menu for the copy/paste, the results are the same. And I also tried to copy/paste only one line, it sometimes works, but not always. With multiple lines copy/paste, it sometimes works too. I'm using the Eclipse 3, Windows 2000 pro, JDK 1.4.2, Lomboz.3rc2(before), Lomboz 3(now).
|
2004-07-14 21:29:30
| 1,089,850,000 |
resolved fixed
|
1277d92
| 1,093,460,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java
|
SWT
|
3,226 | 57,188 |
Bug 57188 Label widget can get focus.
|
Since build M7 in QNX, using traverse keys (TAB and SHIFT-TAB)Label widget cat get focus. This bug forces me to stay on build M6.
|
2004-04-02 01:31:50
| 1,080,890,000 |
resolved fixed
|
9c0076e
| 1,093,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,227 | 61,893 |
Bug 61893 controlMoved event fired by Control.setBounds() on Windows, but not on Photon (BBAWT)
|
The following test case, when run on Windows, prints the notification that a controlMoved event was produced. But this does not happen when run on Photon. This is significant to us because in our AWT implementation, we need to create the moved event if it is not given to us by SWT, so we need consistent behavior. Right now, our code assumes that the event is produced by SWT (we prefer the behavior that Windows exhibits). import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTImageTest { Display display; Shell shell; Image image; public void run() { display = new Display(); shell = new Shell(display); shell.setSize(300, 300); shell.open(); int depth = 24; image = new Image(display, 200, 200); ImageData myData = image.getImageData(); System.out.println("Depth = " + myData.depth); GC gc = new GC(image); Color[] colors = new Color[8]; colors[0] = new Color(display, 255, 0, 0); colors[1] = new Color(display, 0, 255, 0); colors[2] = new Color(display, 0, 0, 255); colors[3] = new Color(display, 255, 255, 0); colors[4] = new Color(display, 255, 0, 255); colors[5] = new Color(display, 0, 255, 255); colors[6] = new Color(display, 255, 255, 255); colors[7] = new Color(display, 0, 0, 0); GC shellGC = new GC(shell); for (int j = 0; j < 8; j++) { gc.setBackground(colors[j]); gc.fillArc(0, 0, 200, 200, 0, 360); ImageData retrievedData = image.getImageData(); int mainPixel = retrievedData.getPixel(100, 100); int red = mainPixel & 0xff; int blue = (mainPixel & 0xff0000) >> 16; int green = (mainPixel & 0xff00) >> 8; Color finalColor = new Color(display, red, green, blue); System.out.println("red = " + finalColor.getRed() + " green = " + finalColor.getGreen() + " blue = " + finalColor.getBlue()); //shellGC.drawImage(image, 0, 0); //this is the critical line } while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTImageTest().run(); } }
|
2004-05-12 09:54:46
| 1,084,370,000 |
resolved fixed
|
c9ca12a
| 1,093,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Image.java
|
SWT
|
3,228 | 48,884 |
Bug 48884 Dialog (org.eclipse.swt.widgets.ColorDialog and org.eclipse.swt.widgets.FileDialog) can not close correctly
| null |
2003-12-16 12:36:46
| 1,071,600,000 |
resolved fixed
|
95909fa
| 1,093,380,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,229 | 72,223 |
Bug 72223 Add org.eclipse.swt.custom.ST.SELECT_ALL
|
Version 3.1M1 Add org.eclipse.swt.custom.ST.SELECT_ALL for use with StyledText.setKeyBinding. Thanks.
|
2004-08-18 19:40:54
| 1,092,870,000 |
resolved fixed
|
e501552
| 1,093,380,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,230 | 47,549 |
Bug 47549 GPF in XtSetValues on M5
|
i got this 2 times in 5 minutes on M5 which means the build is unusable for me An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x40036DF0 Function=__pthread_mutex_lock+0x18 Library=/lib/libpthread.so.0 Current Java thread: at org.eclipse.swt.internal.motif.OS.XtSetValues(Native Method) at org.eclipse.swt.widgets.MenuItem.setText(MenuItem.java:846) at org.eclipse.jface.action.ActionContributionItem.update(ActionContributionItem.java:706) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:464) at org.eclipse.jface.action.SubContributionItem.update(SubContributionItem.java:140) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:464) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:464) at org.eclipse.ui.internal.WorkbenchActivitiesCommandsAndRoles.updateActiveWorkbenchWindowMenuManager(WorkbenchActivitiesCommandsAndRoles.java:722) at org.eclipse.ui.internal.WorkbenchActivitiesCommandsAndRoles$9.partActivated(WorkbenchActivitiesCommandsAndRoles.java:301) at org.eclipse.ui.internal.PartListenerList$1.run(PartListenerList.java:49) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1127) at org.eclipse.core.runtime.Platform.run(Platform.java:464) at org.eclipse.ui.internal.PartListenerList.firePartActivated(PartListenerList.java:47) at org.eclipse.ui.internal.WWinPartService$1.partActivated(WWinPartService.java:27) at org.eclipse.ui.internal.PartListenerList2$1.run(PartListenerList2.java:45) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1127) at org.eclipse.core.runtime.Platform.run(Platform.java:464) at org.eclipse.ui.internal.PartListenerList2.firePartActivated(PartListenerList2.java:43) at org.eclipse.ui.internal.WorkbenchPage.firePartActivated(WorkbenchPage.java:1212) at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:2401) at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2128) at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:354) at org.eclipse.ui.internal.PartPane.handleEvent(PartPane.java:334) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:745) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:766) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:749) at org.eclipse.swt.widgets.Shell.setActiveControl(Shell.java:1147) at org.eclipse.swt.widgets.Control.XButtonPress(Control.java:2824) at org.eclipse.swt.widgets.Composite.XButtonPress(Composite.java:806) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:930) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2864) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2111) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1381) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:237) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:299) at org.eclipse.core.launcher.Main.run(Main.java:767) at org.eclipse.core.launcher.Main.main(Main.java:601) Dynamic libraries: 08048000-0804e000 r-xp 00000000 00:0f 131489 /PAG/local/pkg/java/j2sdk1.4.2/bin/java 0804e000-0804f000 rw-p 00005000 00:0f 131489 /PAG/local/pkg/java/j2sdk1.4.2/bin/java 40000000-40012000 r-xp 00000000 03:01 457973 /lib/ld-2.2.5.so 40012000-40013000 rw-p 00012000 03:01 457973 /lib/ld-2.2.5.so 40013000-4001b000 r-xp 00000000 00:0f 180338 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/native_threads/libhpi.so 4001b000-4001c000 rw-p 00007000 00:0f 180338 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/native_threads/libhpi.so 4001c000-40025000 r-xp 00000000 03:01 459219 /lib/libnss_files-2.2.5.so 40025000-40026000 rw-p 00008000 03:01 459219 /lib/libnss_files-2.2.5.so 40026000-4002f000 r-xp 00000000 03:01 460597 /lib/libnss_nisplus-2.2.5.so 4002f000-40030000 rw-p 00008000 03:01 460597 /lib/libnss_nisplus-2.2.5.so 40030000-4003e000 r-xp 00000000 03:01 460599 /lib/libpthread-0.9.so 4003e000-40045000 rw-p 0000e000 03:01 460599 /lib/libpthread-0.9.so 40046000-40048000 r-xp 00000000 03:01 459172 /lib/libdl-2.2.5.so 40048000-40049000 rw-p 00001000 03:01 459172 /lib/libdl-2.2.5.so 40049000-40167000 r-xp 00000000 03:01 458048 /lib/libc-2.2.5.so 40167000-4016c000 rw-p 0011e000 03:01 458048 /lib/libc-2.2.5.so 40170000-40567000 r-xp 00000000 00:0f 831854 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so 40567000-40582000 rw-p 003f6000 00:0f 831854 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/client/libjvm.so 40595000-405a6000 r-xp 00000000 03:01 459176 /lib/libnsl-2.2.5.so 405a6000-405a7000 rw-p 00011000 03:01 459176 /lib/libnsl-2.2.5.so 405a9000-405c9000 r-xp 00000000 03:01 459174 /lib/libm-2.2.5.so 405c9000-405ca000 rw-p 0001f000 03:01 459174 /lib/libm-2.2.5.so 405ca000-405ce000 rw-s 00000000 03:05 81371 /tmp/hsperfdata_akiezun/28974 405ce000-405de000 r-xp 00000000 00:0f 180345 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libverify.so 405de000-405e0000 rw-p 0000f000 00:0f 180345 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libverify.so 405e0000-405e6000 r--s 00000000 03:01 409154 /usr/lib/gconv/gconv-modules.cache 405e6000-405e7000 r--p 00000000 03:01 231836 /usr/lib/locale/en_US.iso885915/LC_IDENTIFICATION 405e7000-405f0000 r-xp 00000000 03:01 458077 /lib/libnss_nis-2.2.5.so 405f0000-405f1000 rw-p 00008000 03:01 458077 /lib/libnss_nis-2.2.5.so 405f1000-40611000 r-xp 00000000 00:0f 180346 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libjava.so 40611000-40613000 rw-p 0001f000 00:0f 180346 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libjava.so 40613000-40627000 r-xp 00000000 00:0f 180348 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libzip.so 40627000-4062a000 rw-p 00013000 00:0f 180348 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libzip.so 4062a000-41fb5000 r--s 00000000 00:0f 180399 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/rt.jar 41fff000-42015000 r--s 00000000 00:0f 180370 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/sunrsasign.jar 42015000-420f0000 r--s 00000000 00:0f 180396 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/jsse.jar 420f0000-42101000 r--s 00000000 00:0f 180371 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/jce.jar 42101000-4265a000 r--s 00000000 00:0f 180397 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/charsets.jar 44702000-44705000 r--s 00000000 00:0f 473529 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/ext/dnsns.jar 44705000-4470a000 r--s 00000000 00:0d 2736210 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/startup.jar 4470a000-4470b000 r--p 00000000 03:01 232099 /usr/lib/locale/en_US.iso885915/LC_MEASUREMENT 4470b000-4470c000 r--p 00000000 03:01 232103 /usr/lib/locale/en_US.iso885915/LC_TELEPHONE 4470c000-4470d000 r--p 00000000 03:01 228935 /usr/lib/locale/en_US.iso885915/LC_ADDRESS 4470d000-4470e000 r--p 00000000 03:01 232101 /usr/lib/locale/en_US.iso885915/LC_NAME 4470e000-4470f000 r--p 00000000 03:01 232102 /usr/lib/locale/en_US.iso885915/LC_PAPER 4470f000-44710000 r--p 00000000 03:01 245380 /usr/lib/locale/en_US.iso885915/LC_MESSAGES/SYS_LC_MESSAGES 6893f000-6896a000 r--p 00000000 03:01 114555 /usr/lib/locale/en_US.iso885915/LC_CTYPE 6896a000-68986000 r--s 00000000 00:0f 473528 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/ext/sunjce_provider.jar 68986000-68993000 r--s 00000000 00:0f 473531 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/ext/ldapsec.jar 68993000-68a4f000 r--s 00000000 00:0f 473562 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/ext/localedata.jar 68a4f000-68a5f000 r-xp 00000000 00:0f 180351 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libnet.so 68a5f000-68a60000 rw-p 0000f000 00:0f 180351 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libnet.so 68a60000-68a66000 r-xp 00000000 00:0f 180352 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libnio.so 68a66000-68a67000 rw-p 00005000 00:0f 180352 /PAG/local/pkg/java/j2sdk1.4.2/jre/lib/i386/libnio.so 68a67000-68a7f000 r--s 00000000 00:0d 2736654 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.boot_3.0.0/boot.jar 68a7f000-68ad6000 r--s 00000000 00:0d 2228545 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.runtime_3.0.0/runtime.jar 68ad6000-68c21000 r--s 00000000 00:0d 2737024 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.ide_3.0.0/ide.jar 68c21000-68dd4000 r--s 00000000 00:0d 2228556 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar 68dd4000-68e47000 r--s 00000000 00:0d 540856 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jface_3.0.0/jface.jar 68e47000-68f44000 r--s 00000000 00:0d 3604710 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.swt.motif_3.0.0/ws/motif/swt.jar 68f44000-68f88000 r-xp 00000000 00:0d 2229093 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.swt.motif_3.0.0/os/linux/x86/libswt-motif-3030.so 68f88000-68f8b000 rw-p 00044000 00:0d 2229093 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.swt.motif_3.0.0/os/linux/x86/libswt-motif-3030.so 68f8b000-68f8c000 r--p 00000000 03:01 232100 /usr/lib/locale/en_US.iso885915/LC_MONETARY 68f8c000-68f92000 r--p 00000000 03:01 539728 /usr/lib/locale/en_US.iso885915/LC_COLLATE 68f92000-68f93000 r--p 00000000 03:01 232104 /usr/lib/locale/en_US.iso885915/LC_TIME 68f93000-68f94000 r--p 00000000 03:01 425184 /usr/lib/locale/en_US.iso885915/LC_NUMERIC 68f94000-68f96000 r-xp 00000000 03:01 197142 /usr/X11R6/lib/X11/locale/common/xlcDef.so.2 68f96000-68f97000 rw-p 00001000 03:01 197142 /usr/X11R6/lib/X11/locale/common/xlcDef.so.2 68f97000-68f98000 r--s 00000000 00:0d 2228656 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui_3.0.0/ui.jar 68f98000-68f9a000 r-xp 00000000 03:01 409106 /usr/lib/gconv/ISO8859-15.so 68f9a000-68f9b000 rw-p 00001000 03:01 409106 /usr/lib/gconv/ISO8859-15.so 68f9b000-68fa6000 r--s 00000000 00:0d 2737178 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.help.ide_3.0.0/helpide.jar 68fa6000-68fa7000 r-xp 00000000 00:0d 540867 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.resources.linux_3.0.0/os/linux/x86/libcore_2_1_0b.so 68fa7000-68fa8000 rw-p 00001000 00:0d 540867 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.resources.linux_3.0.0/os/linux/x86/libcore_2_1_0b.so 68fa8000-6912f000 r-xp 00000000 03:01 362035 /usr/X11R6/lib/libXm.so.2.1 6912f000-69142000 rw-p 00186000 03:01 362035 /usr/X11R6/lib/libXm.so.2.1 69143000-69215000 r-xp 00000000 03:01 360110 /usr/X11R6/lib/libX11.so.6.2 69215000-69218000 rw-p 000d1000 03:01 360110 /usr/X11R6/lib/libX11.so.6.2 69218000-69224000 r-xp 00000000 03:01 360118 /usr/X11R6/lib/libXext.so.6.4 69224000-69225000 rw-p 0000c000 03:01 360118 /usr/X11R6/lib/libXext.so.6.4 69225000-6926d000 r-xp 00000000 03:01 360138 /usr/X11R6/lib/libXt.so.6.0 6926d000-69271000 rw-p 00047000 03:01 360138 /usr/X11R6/lib/libXt.so.6.0 69271000-69277000 r-xp 00000000 03:01 360130 /usr/X11R6/lib/libXp.so.6.2 69277000-69278000 rw-p 00006000 03:01 360130 /usr/X11R6/lib/libXp.so.6.2 69278000-6927f000 r-xp 00000000 03:01 360108 /usr/X11R6/lib/libSM.so.6.0 6927f000-69280000 rw-p 00007000 03:01 360108 /usr/X11R6/lib/libSM.so.6.0 69280000-69294000 r-xp 00000000 03:01 360104 /usr/X11R6/lib/libICE.so.6.3 69294000-69295000 rw-p 00013000 03:01 360104 /usr/X11R6/lib/libICE.so.6.3 69297000-692b2000 r-xp 00000000 03:01 197141 /usr/X11R6/lib/X11/locale/common/ximcp.so.2 692b2000-692b4000 rw-p 0001a000 03:01 197141 /usr/X11R6/lib/X11/locale/common/ximcp.so.2 692b4000-69345000 r--s 00000000 00:0d 2736665 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.resources_3.0.0/resources.jar 69345000-6937c000 r--s 00000000 00:0d 2736611 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.search_3.0.0/search.jar 6937c000-6938c000 r--s 00000000 00:0d 540848 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.pde_3.0.0/pde.jar 6938c000-69615000 r--s 00000000 00:0d 2736613 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.core_3.0.0/jdtcore.jar 69615000-69656000 r--s 00000000 00:0d 2310549 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.junit_3.0.0/junitsupport.jar 69656000-696b8000 r--s 00000000 00:0d 2310968 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.compare_3.0.0/compare.jar 696b8000-696c7000 r--s 00000000 00:0d 2311086 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.help_3.0.0/help.jar 696c7000-69b62000 r--s 00000000 00:0d 2310818 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.ui_3.0.0/jdt.jar 69b62000-69b7a000 r--s 00000000 00:0d 2737106 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar 69b7a000-69c67000 r--s 00000000 00:0d 2737565 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/teamcvsui.jar 69c67000-69c95000 r--s 00000000 00:0d 2736635 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.editors_3.0.0/editors.jar 69c95000-69cee000 r--s 00000000 00:0d 2737221 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.team.ui_3.0.0/teamui.jar 69cee000-69db7000 r--s 00000000 00:0d 557423 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/jdiui.jar 69db7000-69dfd000 r--s 00000000 00:0d 3244390 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar 69dfd000-69e96000 r--s 00000000 00:0d 2737157 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.debug.ui_3.0.0/dtui.jar 69e96000-69ea3000 r--s 00000000 00:0d 2277395 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.console_3.0.0/console.jar 69ea3000-69eb1000 r--s 00000000 00:0d 2229087 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ui.views_3.0.0/views.jar 69eb1000-69f28000 r--s 00000000 00:0d 2311118 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.update.core_3.0.0/updatecore.jar 69f28000-69fc1000 r--s 00000000 00:0d 2228534 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ant.ui_3.0.0/antui.jar 69fc1000-69fd5000 r--s 00000000 00:0d 2736640 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.help.ui_3.0.0/helpui.jar 69fd5000-6a18c000 r--s 00000000 00:0d 2312508 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.pde.ui_3.0.0/pdeui.jar 6a18c000-6a191000 r--s 00000000 00:0d 2310821 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.update.scheduler_3.0.0/scheduler.jar 6a191000-6a1e7000 r--s 00000000 00:0d 2736497 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.update.ui_3.0.0/updateui.jar 6a1e7000-6a1fd000 r--s 00000000 00:0d 2277891 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.pde.runtime_3.0.0/pdert.jar 6a1fd000-6a265000 r--s 00000000 00:0d 2277655 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar 6a265000-6a283000 r--s 00000000 00:0d 2311097 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.text_3.0.0/text.jar 6a283000-6a299000 r--s 00000000 00:0d 2310827 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.team.core_3.0.0/team.jar 6a299000-6a308000 r--s 00000000 00:0d 3244243 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/cvs.jar 6a308000-6a314000 r--s 00000000 00:0d 2277848 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/teamcvsssh.jar 6a314000-6a337000 r--s 00000000 00:0d 2310588 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.debug.core_3.0.0/dtcore.jar 6a337000-6a33d000 r--s 00000000 00:0d 2737393 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.variables_3.0.0/variables.jar 6a33d000-6a346000 r-xp 00000000 03:01 197146 /usr/X11R6/lib/X11/locale/common/xomGeneric.so.2 6a346000-6a347000 rw-p 00008000 03:01 197146 /usr/X11R6/lib/X11/locale/common/xomGeneric.so.2 6a347000-6a350000 r--s 00000000 00:0d 2228666 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.ant.core_3.0.0/antsupport.jar 6a350000-6a375000 r--s 00000000 00:0d 2228536 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.launching_3.0.0/launching.jar 6a375000-6a37f000 r--s 00000000 00:0d 2310553 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar 6a37f000-6a38b000 r--s 00000000 00:0d 2310837 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.debug_3.0.0/jdi.jar 6a3a8000-6a3ab000 r-xp 00000000 03:01 458069 /lib/libnss_dns-2.2.5.so 6a3ab000-6a3ac000 rw-p 00002000 03:01 458069 /lib/libnss_dns-2.2.5.so 6a3ac000-6a3b9000 r-xp 00000000 03:01 460601 /lib/libresolv-2.2.5.so 6a3b9000-6a3ba000 rw-p 0000d000 03:01 460601 /lib/libresolv-2.2.5.so 6a500000-6a5aa000 r--s 00000000 00:0d 2310835 /PAG/g6/users/akiezun/eclipse/3.0M5-motif/eclipse/plugins/org.eclipse.jdt.debug_3.0.0/jdimodel.jar Heap at VM Abort: Heap def new generation total 18240K, used 11797K [0x44710000, 0x45ad0000, 0x46e70000) eden space 16256K, 72% used [0x44710000, 0x452954a0, 0x456f0000) from space 1984K, 0% used [0x456f0000, 0x456f0000, 0x458e0000) to space 1984K, 0% used [0x458e0000, 0x458e0000, 0x45ad0000) tenured generation total 241984K, used 6952K [0x46e70000, 0x55ac0000, 0x64710000) the space 241984K, 2% used [0x46e70000, 0x4753a200, 0x4753a200, 0x55ac0000) compacting perm gen total 20736K, used 20699K [0x64710000, 0x65b50000, 0x68710000) the space 20736K, 99% used [0x64710000, 0x65b46f08, 0x65b47000, 0x65b50000) Local Time = Wed Nov 26 12:05:13 2003 Elapsed Time = 205 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode) #
|
2003-11-26 12:12:13
| 1,069,870,000 |
resolved fixed
|
9f8a407
| 1,093,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,231 | 72,342 |
Bug 72342 MouseListener behaving incorrectly when attached to Button
|
import org.eclipse.swt.SWT; import org.eclipse.swt.events.MouseEvent; import org.eclipse.swt.events.MouseListener; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class MouseBug implements MouseListener { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(100,100); MouseBug mousebug = new MouseBug(); // doesn't work under OS X: // mouse pressed: nothing happens // mouse released: mouse down event generated // double click: works Button button = new Button(shell, SWT.NONE); button.addMouseListener(mousebug); // works correctly under OS X Canvas canvas = new Canvas(shell, SWT.NONE); canvas.addMouseListener(mousebug); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } public void mouseDoubleClick(MouseEvent arg0) { System.out.println("mouse double click"); } public void mouseDown(MouseEvent arg0) { System.out.println("mouse down"); } public void mouseUp(MouseEvent arg0) { System.out.println("mouse up"); } }
|
2004-08-20 09:03:02
| 1,093,010,000 |
resolved fixed
|
a03a5a9
| 1,093,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,232 | 72,345 |
Bug 72345 Text wider than normal in toolitem if ampersand (&) used
|
Text without ampersands in it is displayed correctly. Text with a ampersand in it, but with more than one word is wider that normal. Text with one word starting with an ampersand is even wider. (Mac OS 10.3) The following snippet demonstrates this: import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class Bug { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(100,100); ToolBar toolbar = new ToolBar(shell,SWT.NONE); // fine ToolItem good = new ToolItem(toolbar, SWT.NONE); good.setText("good"); // text somewhat wider that normal ToolItem hmm = new ToolItem(toolbar, SWT.NONE); hmm.setText("somewhat &wrong"); // single words displayed double size ToolItem bad = new ToolItem(toolbar, SWT.NONE); bad.setText("&1"); shell.open(); shell.pack(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } } I will attach a screenshot.
|
2004-08-20 09:39:42
| 1,093,010,000 |
resolved fixed
|
8616a65
| 1,093,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,233 | 72,343 |
Bug 72343 Shell doesn't maximize
|
Calling shell.setMaximized(true) doesn't maximize the shell on Mac OS X 10.3 (it does so on Windows XP). The following snipped demonstrates this: import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class MaximizeBug { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(100,100); shell.open(); // this method fails shell.setMaximized(true); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
|
2004-08-20 09:21:36
| 1,093,010,000 |
resolved fixed
|
dd61d11
| 1,093,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,234 | 67,746 |
Bug 67746 investigate making emulated Table and Tree always post selections
|
post-3.0 Compare event ordering to other platforms, as there are some inconsistencies in the implementation that probably introduce some problems. Senders of Selection and DefaultSelection should probably always post these. In particular, some examples: - SelectableItemWidget.deselectNotify currently async's - Tree.mouseDoubleClick currently sends (notifyListeners)
|
2004-06-17 19:08:25
| 1,087,510,000 |
resolved fixed
|
308d894
| 1,092,940,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/SelectableItemWidget.java
|
SWT
|
3,235 | 72,206 |
Bug 72206 StyledText Javadoc needs italic doc.
|
Version 3.1M1. The StyledText Javadoc does not mention that italic is now supported.
|
2004-08-18 15:34:44
| 1,092,860,000 |
resolved fixed
|
1858921
| 1,092,930,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,236 | 71,711 |
Bug 71711 Gtk - Checkbox/Radiobox setLocation Bug
|
When calling setSize in front of setLocation the text in the checkbox is not displayed. This works: ----------------------8<---------------------- Button check = new Button( this, SWT.NONE | SWT.CHECK ); check.setLocation( 10, 200 ); check.setSize( 200, 300 ); check.setText( "TEST" ); ----------------------8<---------------------- This don't (text is not diplayed): ----------------------8<---------------------- Button check = new Button( this, SWT.NONE | SWT.CHECK ); check.setSize( 200, 300 ); check.setLocation( 10, 200 ); check.setText( "TEST" ); ----------------------8<---------------------- On win32 both versions are working. Versions used: libswt-gtk-3062 GTK, I don't know what's apropiate: [tom@vinea tom]$ pkg-config --modversion gtk+-2.0 2.4.4 [tom@vinea tom]$
|
2004-08-10 11:18:00
| 1,092,150,000 |
resolved fixed
|
2c997bf
| 1,092,770,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,237 | 52,548 |
Bug 52548 PocketPC and eSWT example problems
|
v3039 Run the attached examples. ExampleLauncher is the main class. These are the examples that are shipped with eSWT. The examples were derived from the SWT ControlExample. 1. Run ButtonExample. Push Buttons are always flat. Does the PPC support beveled buttons? 2. Run CanvasExample. Check the NO_BACKGROUND style. Notice that a scrollbar appears in the wrong place. Uncheck the NO_BACKGROUND style. Check the NO_FOCUS style. You can see a stray vertical scrollbar flashing on the screen. 3. Run the ComboExample. Check the READ_ONLY style. You can see the combo flash up in the left hand corner of the screen. Select the SIMPLE style. The combo "acts" like it is a SIMPLE combo as seen on Windows 2K (it is placed based on a larger vertical height), but it's still just the DROP_DOWN style. Does PPC support the SIMPLE style? 4. Run the LabelExample. Check SEPARATOR. The separator is barely visible. Click HORIZONTAL and it goes away all together. Try to set the size (via the size menu), you still can't get the separator to appear. Also, I take it that the shadow styles are not supported on PPC? 5. Run the SliderExample. Try to drag the thumb to the right. The thumb jumps all the way to the left. 6. Run the TextExample. Check WRAP or READ_ONLY. You see a stray scrollbar flashing toward the top of the screen.
|
2004-02-19 16:52:33
| 1,077,230,000 |
resolved fixed
|
dd8aef2
| 1,092,760,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java
|
SWT
|
3,238 | 71,999 |
Bug 71999 StyleText displays StyleRanges incorrect depending on order of StyleRange in array
|
I've been fighting with a bug which I believe was in my code, but now I feel it is in the StyleText code. Basically if I create a array of StyleRange and use setStyleRanges() then the styles are not applied correctly if the start position of each style is not in numerical order. A easy example is this: StyleRange[] ranges = new StyleRange[3]; //This works fine ranges[0] = new StyleRange(0, 2, black, red); ranges[1] = new StyleRange(3, 2, black, blue); ranges[2] = new StyleRange(6, 2, black, red); //This doesn't, the 2nd red isn't applied ranges[0] = new StyleRange(0, 2, black, red); ranges[1] = new StyleRange(6, 2, black, red); ranges[2] = new StyleRange(3, 2, black, blue); I've attached source code for a small sample program showing the problem... I've made sure the above sample doesn't have overlapping region (with each style being one character apart). I have no fixed my code by making sure the StyleRanges are in start order before I setStyleRanges. I have only tested this on Windows XP, SWT 3.0 (build 3062) If you need any more information please contact me. Thanks Andrew
|
2004-08-15 16:15:13
| 1,092,600,000 |
resolved fixed
|
ddb04b1
| 1,092,670,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java
|
SWT
|
3,239 | 71,894 |
Bug 71894 ToolBar.getItem(Point point) always returns first item.
|
Running on Eclipse 3.0 Linux-GTK, when ToolBar.getItem(Point point) is called, it always returns the first item in the toolbar. This works fine on Eclipse 3.0 Windows. public class TestClass { ToolBar myTB; public TestClass(Shell shell) { super(); myTB = new ToolBar (shell, SWT.FLAT); ToolItem item1 = new ToolItem(myTB,SWT.PUSH); item1.setText("1"); item1.setData(new String("Item 1")); ToolItem item2 = new ToolItem(myTB,SWT.PUSH); item2.setText("2"); item2.setData(new String("Item 2")); ToolItem item3 = new ToolItem(myTB,SWT.PUSH); item3.setText("3"); item3.setData(new String("Item 3")); ToolItem item4 = new ToolItem(myTB,SWT.PUSH); item4.setText("4"); item4.setData(new String("Item 4")); ToolItem item5 = new ToolItem(myTB,SWT.PUSH); item5.setText("5"); item5.setData(new String("Item 5")); myTB.addMouseMoveListener(new MouseMoveListener(){ public void mouseMove(MouseEvent arg0) { int x = arg0.x; int y = arg0.y; System.out.println("X: "+x+" Y: "+y); ToolItem item = myTB.getItem(new Point(x,y)); System.out.println("MOUSEIN: "+(String)item.getData ()); } }); } public static void main (String [] args) { Display d = new Display (); Shell s = new Shell(SWT.SHELL_TRIM); s.setLayout(new RowLayout()); TestClass application = new TestClass(s); s.open(); while (! s.isDisposed()) { if (! d.readAndDispatch()) d.sleep(); } d.dispose(); System.exit(0); } }
|
2004-08-12 15:00:38
| 1,092,340,000 |
resolved fixed
|
47a8a2e
| 1,092,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,240 | 71,757 |
Bug 71757 Cursor X/Y hotspots don't work with all constructors
|
When using org.eclipse.swt.graphics.Cursor(Device device, ImageData source, int hotspotX, int hotspotY) [win32 version] to create a custom cursor, the hotspotX/hotspotY parameters are ignored. They're checked for validity at the top of the function, but then they're never referenced again.
|
2004-08-11 05:17:57
| 1,092,220,000 |
resolved fixed
|
daf2c61
| 1,092,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java
|
SWT
|
3,241 | 71,907 |
Bug 71907 The "Device#getFontList" method does not return an array of size 0 for a bad face name
|
I ran into this bug trying to fix a UI test that fails on Mac OS X but passes on Windows and Linux. It fails because it expects an array of size 0 to be returned by the "getFontList" method when it is passed a bad face name. I executed the following line of code on Windows XP, Mac OS 10.3.3 and Linux GTK: System.out.println(display.getFontList("badData",true).length) Linux and Windows XP both print 0. On the Mac, it returns an array of size 144. The array contains all null values. I noticed that this particular problem occurs in GTK but is corrected at the end of the method. It is corrected in the "Device#getFontList()" method by copying the non null values into a results array and returning it. I could not find the "expected" return value for a bad face name in the API documentation, but I am guessing the "getFontList" method should behave as it does on Windows and Linux, which is to return an array of size 0. I am using build id 200408110800.
|
2004-08-12 16:47:25
| 1,092,340,000 |
resolved fixed
|
5e87f5f
| 1,092,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Device.java
|
SWT
|
3,242 | 71,803 |
Bug 71803 No lower border on swt combo boxes
|
Build: I-20040810-1200 This happens in 3.1 builds, but not 3.0 builds. On WinXP with the manifest.exe Some combo boxes do not show the bottom blue border. I will attach screen shots that show the plug-in export wizard, where one combo box exhibits this behavior and the other two are fine. Another example where you would see this behavior is the Team > Commit... dialog.
|
2004-08-11 12:32:10
| 1,092,240,000 |
resolved fixed
|
158da38
| 1,092,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,243 | 63,571 |
Bug 63571 TextLayout: font substitution support
|
On Windows, org.eclipse.swt.graphics.TextLayout should support font substitution. If the user types any text not supported by the current font on StyledText which calls TextLayout, the text becomes blank (in Eclipse3.0M9) on Windows. For Example, if the user selects "Microsoft Sans Serif" font on Windows, and type Japanese text which "Microsoft Sans Serif" font does not contain, then notepad.exe still can display Japanese text. It is because notepad.exe supports font substitution and finds Japanese "MS Gothic" or something like that. (maybe because notepad.exe may simply call TextOutW(), though.) Since StyledText/TextLayout is implemented by Uniscribe, TextLayout should support font substitution.
|
2004-05-23 01:59:10
| 1,085,290,000 |
resolved fixed
|
e100584
| 1,092,420,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/COM.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,244 | 70,620 |
Bug 70620 Display.setMouseLocation() not implemented on GTK
|
In Logic Example. - Create a Flow Container and select it. - Press "." to access handles Result: - Nothing happens Expected: - Should go into handle accessibility mode.
|
2004-07-22 10:12:00
| 1,090,510,000 |
resolved fixed
|
7bae145
| 1,092,260,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,245 | 71,013 |
Bug 71013 Shell.open() blocks until the window is mapped
| null |
2004-07-28 15:20:03
| 1,091,040,000 |
resolved fixed
|
2f96e7e
| 1,092,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,246 | 65,772 |
Bug 65772 Receiving duplicate key events per non-printable key [BBAWT]
|
Run the attached testcase on PocketPC. Place focus on the Text widget, then bring up the soft keyboard and press the Enter and Tab key. What you get are 2 KeyDown events plus 1 KeyUp for the Enter key and only a single KeyUp event (no KeyDown) for the Tab key. For comparison, on win32, you get a single down and up for the Enter key and nothing at all for the Tab key. I tested this using the Windows CE (ARM PocketPC) download from eclipse.org which more specifically is swt-3.0RC1-win32-ce-arm-ppc.zip (which is based on version 3054).
|
2004-06-04 14:16:59
| 1,086,370,000 |
resolved fixed
|
83e8835
| 1,092,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,247 | 69,440 |
Bug 69440 Inspect32 does not show name for CCombo
|
Accessibility problem. CCombo widget does not return accessible "Name" property. The Inspect32 shows "none". Here is a sample code; private static int STYLE = SWT.FLAT; public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); final Composite page = new Composite(shell, STYLE); GridLayout layout = new GridLayout(); layout.numColumns = 2; page.setLayout(layout); page.setLayoutData(new GridData(GridData.FILL_BOTH)); Label label = new Label(page, 0); label.setText("Combobox test"); CCombo ccombo = new CCombo(page, STYLE); ccombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); ccombo.addKeyListener(new KeyAdapter() { }); page.layout(true); shell.open(); shell.addControlListener(new ControlAdapter() { public void controlResized(ControlEvent e) { Rectangle r = shell.getClientArea(); page.setBounds(r); } }); shell.setSize(256, 360); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose(); } How to reproduce; 1, Start Inspect32.exe. 2, Run above example. A shell with Label and CCombo is shown. 3, Click the CCombo. The Inspect32 shows "none" for "Name" property. <<< ERROR Expected result; The Inspect32 shows "Combobox test" for "Name" property.
|
2004-07-07 03:20:35
| 1,089,180,000 |
resolved fixed
|
3b2dd0f
| 1,092,250,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
3,248 | 68,273 |
Bug 68273 tabletree plus/minus not visible in High Contrast Mode
|
"Blind" users work in Windows High Contrast Mode (BG: Black, FG: white, Font size: 16, style: Bold). In this mode, tableTree plus/minus icons are not visible and confuse user.
|
2004-06-23 04:34:13
| 1,087,980,000 |
closed fixed
|
1373546
| 1,092,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,249 | 66,433 |
Bug 66433 Need keyboard support for Nested Tabfolder Traversal
|
CTRL+PageUP and CTRL+PageDown doesn't work in the inner tabfolder if you have nested tabfolders. It works on the outer one even if focus is on inner tabfolder. It should work on whereever the focus is. HOME & END keys does work on inner tabfolder correctly. Problem happens Eclipse 3.0RC1 build Linux GTK build. Haven't tried on Motif. Works fine on Windows. e.g import org.eclipse.swt.widgets.*; import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.custom.*; public class TabTest { public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); final CTabFolder customFolder = new CTabFolder(shell, SWT.BOTTOM); Composite comp = new Composite(customFolder, SWT.NONE); comp.setLayout(new GridLayout()); for (int i =0; i < 3; i++) { CTabItem item = new CTabItem(customFolder, SWT.NULL); item.setText("CTabItem " + i); if (i ==0) { item.setControl(comp); } } final TabFolder tabFolder = new TabFolder (comp, SWT.BORDER); for (int i=0; i < 6; i++) { TabItem item = new TabItem (tabFolder, SWT.NULL); item.setText ("TabItem " + i); } tabFolder.setLayout(new GridLayout()); tabFolder.setLayoutData(new GridData(GridData.FILL_BOTH)); customFolder.setSize (400, 200); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } }
|
2004-06-09 18:07:45
| 1,086,820,000 |
resolved fixed
|
9bc8e8c
| 1,092,090,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
3,250 | 71,570 |
Bug 71570 Tooltips are not shown if shell's client area is located at (0,0)
|
If you locate a shell with NO_TRIM style at (0,0) or a shell with any other style so that the client area is located at (0,0) no tooltips are shown for the shell's children. The reason is that in Control.hasCursor() this case is excluded (MapWindowPoints returns 0). Why is this necessary ? Is there a workaround except locating the shell f.e. at (0,-1) ? To reproduce this behaviour try this piece of code: import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class ToolTipTest { public static void main (String [] args) { Display display = new Display (); // final Shell shell = new Shell (display, SWT.NO_TRIM); final Shell shell = new Shell (display, SWT.SHELL_TRIM); shell.setLayout (new RowLayout(SWT.VERTICAL)); Button button1 = new Button (shell, SWT.PUSH); button1.setText ("To (100/100)"); button1.setToolTipText("Locates window at (100/100)\nAfter pressing this button tooltips are (still) shown"); button1.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e) { shell.setLocation(100, 100); } }); Button button2 = new Button (shell, SWT.PUSH); button2.setText ("To (0/0)"); button2.setToolTipText("Locates window area at (0/0)\nAfter pressing this button tooltips are NOT shown anymore"); button2.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e) { Point locationAbsolute = shell.getLocation(); Point clientAreaAbsolute = shell.toDisplay(0,0); int x = locationAbsolute.x - clientAreaAbsolute.x; int y = locationAbsolute.y - clientAreaAbsolute.y; shell.setLocation(x, y); } }); Button button3 = new Button (shell, SWT.PUSH); button3.setText ("Close"); button3.setToolTipText("Closes the window"); button3.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e) { shell.dispose(); } }); shell.setSize(150,130); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } }
|
2004-08-06 10:41:25
| 1,091,800,000 |
resolved fixed
|
e5688b4
| 1,092,070,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,251 | 71,019 |
Bug 71019 Setting a ToolItem's control to a Button doesn't work in Linux GTK
|
In a ToolBar, setting a ToolItem's control to a Button doesn't work in Linux GTK. I was under the impression that it should work, since it worked in Windows and adding other SWT controls such as Text worked. A workaround was to add the button to a Composite first.
|
2004-07-28 15:45:15
| 1,091,040,000 |
resolved fixed
|
7ee2667
| 1,091,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,252 | 71,282 |
Bug 71282 Text control has been broken since 3.0
|
Several aspects of the Text control have been broken since 3.0 on GTK. SWT.BORDER and SWT.WRAP are no longer honoured. Additionally, all text appears to be vertically aligned center by default. Screenshot forthcoming.
|
2004-08-03 10:01:28
| 1,091,540,000 |
resolved fixed
|
20b59fb
| 1,091,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,253 | 71,277 |
Bug 71277 Program.execute does not work on Mac (patch available)
| null |
2004-08-03 09:14:33
| 1,091,540,000 |
resolved fixed
|
8d27542
| 1,091,710,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java
|
SWT
|
3,254 | 70,857 |
Bug 70857 when the toolBar is wrapped only by a few pixels, removing and adding items causes wrapping to fail
| null |
2004-07-26 16:36:22
| 1,090,870,000 |
resolved fixed
|
61dd7a5
| 1,091,650,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
3,255 | 69,410 |
Bug 69410 TVT3.0: mnemonics doesn't work if focus is in a text widget
|
OS: Linux (RHEL 3.0) Locales: CHT, CHS and possibly other DBCS, SBCS seems to work fine Build: 3.0GM with NL Language Packs installed 1) Begin creating a new java project 2) Place focus in a text entry widget 3) Now unable to switch focus to other widgets using shortcut keys 4) Place focus on another widget and the shortcut keys work The problem manifests in other panels as well. Bug reproduced in Traditional Chinese and Simplified Chinese locales. English and German are verified to work correctly.
|
2004-07-06 16:00:41
| 1,089,140,000 |
closed fixed
|
3dd67fc
| 1,091,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,256 | 71,338 |
Bug 71338 Unsatisfied link error with Combo
|
v3101 1. Run the attached example jar on the Pocket PC. 2. Select ComboExample from the list and press Run. You'll get an UnsatisfiedLinkError for org/eclipse/swt/internal/win32/OS.GetComboBoxInfo.
|
2004-08-03 18:44:09
| 1,091,570,000 |
resolved fixed
|
7d42018
| 1,091,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,257 | 68,292 |
Bug 68292 [Import/Export] Import/Export dialogs confused by "Select Types..."
|
The checkboxes beside the items in the directory tree (left hand pane) are not updated properly when "Select Types..." is used to filter out some of the files to export. To see this, select a project, bring up the Export dialog, use "Select Types..." to filter out some of the files being exported. At this point, the checkmark at the root of the directory hierarchy should be marked "grayed" to indicate partial selection. Instead it is still showing as "checked" to indicate full selection. Same for Import.
|
2004-06-23 09:14:04
| 1,088,000,000 |
resolved fixed
|
258f430
| 1,090,960,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
3,258 | 30,983 |
Bug 30983 ACC - I20030205 - Can't switch tabs using keyboard
|
Major accessibility issue for Eclipse Open ControlExample Give focus to a tab folder. Press Tab or arrow or space or enter or anything: cannot switch to the next tab folder. Problem seems that the tab folder 'eats' the arrow key and loses focus instead of giving focus to the next tab folder. In Eclipse, you can for example go to Preferences > Debug > launch history and try switching between the tabs. Works on Windows.
|
2003-02-05 12:08:22
| 1,044,460,000 |
resolved fixed
|
5c85236
| 1,090,870,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,259 | 37,868 |
Bug 37868 Setting a GridLayout on a TabFolder gives strange behavior when resizing
|
Although it doesn't make sense to set a layout on a TabFolder, I've seen this done many times. The problem is that it doesn't affect the look in windows, but in motif, the widgets appear in bits and pieces after resizing the window. Would it make sense to override setLayout() in TabFolder as a no-op, as an added safety mechanism, or to throw an exception?
|
2003-05-20 10:40:51
| 1,053,440,000 |
resolved fixed
|
2e28a9e
| 1,090,520,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/tabfolder/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
3,260 | 70,160 |
Bug 70160 Image(Device, InputStream) throws incorrect/unspec'd exception
|
The existing JUnit test that attempts to load an empty file throws an exception with error code ERROR_UNSUPPORTED_FORMAT. Based on the spec I would have expected an ERROR_INVALID_IMAGE.
|
2004-07-15 16:48:55
| 1,089,920,000 |
resolved fixed
|
c9dfe7c
| 1,090,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageData.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoader.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.