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 |
---|---|---|---|---|---|---|---|---|---|---|
1,561 | 225,404 |
Bug 225404 Clicking on areas to left or right of cell editors in tree does not raise a FocusIn event for tree on vista
|
Build ID: M20071023-1652 Steps To Reproduce: This happens only on Windows Vista 1. Have a tree with multiple columns and cell editors (use CCombo based combo box cell editors). 2. Click on the area to the left (i.e. where twisties would appear) or right (in blank columns area) of the place where cell editors would appear. 3. Unlike in XP and other OSes, the tree does not raise a FocusIn event and become the focused widget--this causes the filter in CCombo to not pick up the event and thus not raise a FocusOut event, and thus the cell editor will not deactivate. More information: We are using the 3.4M5 version of the SWT plugin though.
|
2008-04-02 15:18:33
| 1,207,160,000 |
resolved fixed
|
4f4c47a
| 1,211,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,562 | 229,570 |
Bug 229570 Screen cheese in breadcrumb when using Windows classic style
|
I20080430-0100. This is more a "seeking for advice" than official bug: when switching between Java editors I see screen cheese in the breadcrumb when using Windows classic style. XP style and also Vista are fine. Also, this only happens when there are several other views in the window, e.g. when working in the Browsing perspective. It looks like XP style it is drawing the breadcrumb in one go but with Classic style it first clears, then does something else and then draws the new content. Is therAnything we can do to debug/fix this? Steps: 1. switch to Windows Classic style 2. start Eclipse 3. open 'Java Browsing' perspective 4. open java.util.regex.Pattern 5. enable breadcrumb (Alt+Shift+B) 6. open java.util.HashMap 7. switch between the two and observe the cheese
|
2008-04-30 04:39:13
| 1,209,540,000 |
verified fixed
|
ae21c0f
| 1,211,310,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java
|
SWT
|
1,563 | 228,282 |
Bug 228282 [Accessibility] Table & Tree with no column headers say "sort button" on Leopard
|
Run ControlExample and go to Table tab. Start VoiceOver (command+F5). Tab into the Table, and type down arrow to select the first row. VoiceOver says "sort button" before saying the contents of every cell. This would be pretty annoying and confusing to a VoiceOver user. To see what is happening, select "Column Headers". Now, the column headers each have a name. Type down arrow to select the next row. Now, VoiceOver says each table header before it says the cell contents, and it sounds correct. So the problem must be that the column headers exist - with no text - even when the columns are not visible, and VoiceOver says their description (sort button) because they have no name. Hide the column headers by deselecting "Column Headers" and type down arrow one more time. Now, the column header names that were visible are being spoken, instead of "sort button". Verified that this is a problem even in a minimal snippet. import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; public class TableTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); shell.setText("Table"); Table table = new Table(shell, SWT.MULTI | SWT.FULL_SELECTION); table.setLayoutData(new GridData(GridData.FILL_BOTH)); // table.setHeaderVisible(true); for (int col = 0; col < 3; col++) { TableColumn column = new TableColumn(table, SWT.NONE); // column.setText("Column " + col); column.setWidth(100); } for (int row = 0; row < 5; row++) { TableItem item = new TableItem(table, SWT.NONE); for (int col = 0; col < 3; col++) { item.setText(col, "item" + col + row); } } shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
|
2008-04-22 16:54:39
| 1,208,900,000 |
resolved fixed
|
650c120
| 1,211,310,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,564 | 231,882 |
Bug 231882 [Accessibility] Characters typed into Text are not accessible on Leopard
|
20080513 Run ControlExample, go to Text tab. Turn on VoiceOver (Command+F5). Type Tab key to give focus to Text. Type characters. VoiceOver should speak the characters, but it isn't. Same problem for both SINGLE and MULTI.
|
2008-05-13 13:43:22
| 1,210,700,000 |
resolved fixed
|
b334d44
| 1,211,310,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,565 | 232,475 |
Bug 232475 Compiler warning
|
1. WARNING in /builds/I200805152000/src/plugins/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java (at line 183) Class clazz = Class.forName ("org.eclipse.swt.browser.XULRunnerInitializer"); //$NON-NLS-1$ The local variable clazz is never read
|
2008-05-16 07:24:46
| 1,210,940,000 |
resolved fixed
|
234c8e4
| 1,210,950,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,566 | 232,017 |
Bug 232017 [breadcrumb] Open type dialog pops up behind breadcrumb drop down on OSX
|
I20080513-2000 In breadcrumb 1. Click on a item to open its drop down 2. Open Type Is: Drop down is not closed, open type dialog pops up behind drop down. Same for open resource, sort members and probably others. This dialogs do not take focus?! Should: Close drop down.
|
2008-05-14 04:02:48
| 1,210,750,000 |
resolved fixed
|
15abd1c
| 1,210,880,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,567 | 201,774 |
Bug 201774 Mozilla Browser doesn't open at the first execution in a Linux RHEL 4.
|
Build ID: 120070625-1500 Steps To Reproduce: I'm developing a Plug-in over ATF Plugins. So this error ocurrs when I'm running the my plug-in. 1. Runs a Plug-in Project with the "Clear" button checked in the Workspace Data Goup on the Plug-in Launcher. 2. Create a HTML Page 3. Open With -> Mozilla Browser More information: We are working on Linux RedHat Enterprise 4. We install the ATF Plug-in like as said in the ATF's page. But in first time we try to run the Mozilla Browser in a new workspace we found a NullPointerException. The bug occurs when the ATF Plug-ins requires the SWT Mozilla Broswer, in the org.eclipse.swt.browser.Mozilla.getWebBrowser(Mozilla.java:1258), in the first time that I tried to open a mozilla for a workspace, this method throw the InvocationTargetException. When I restart the Eclipse and try to open a Mozilla browser again everything works fine. java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.swt.browser.Mozilla.getWebBrowser(Mozilla.java:1258) at org.eclipse.swt.browser.Browser.getWebBrowser(Browser.java:446) at org.eclipse.atf.mozilla.ide.ui.browser.MozBrowserEditor.getAdapter(Unknown Source) at org.eclipse.atf.mozilla.ide.ui.netmon.MozNetworkMonitorAdapter.connect(Unknown Source) at org.eclipse.atf.mozilla.ide.ui.browser.MozBrowserEditor.createPartControl(Unknown Source) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:426) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:592) at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:263) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2721) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2633) at org.eclipse.ui.internal.WorkbenchPage.access$12(WorkbenchPage.java:2625) at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2577) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2572) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2556) at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:340) at org.eclipse.ui.actions.OpenWithMenu.access$0(OpenWithMenu.java:328) at org.eclipse.ui.actions.OpenWith Menu$2.handleEvent(OpenWithMenu.java:190) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3319) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) Caused by: org.mozilla.xpcom.XPCOMInitializationException: Must call Mozilla.getInstance().initialize() before using this method at org.mozilla.xpcom.Mozilla.wrapXPCOMObject(Mozilla.java:1062) ... 48 more Caused by: java.lang.NullPointerException at org.mozilla.xpcom.Mozilla.wrapXPCOMObject(Mozilla.java:1060) ... 48 more
|
2007-08-30 14:29:17
| 1,188,500,000 |
resolved fixed
|
a1cedd5
| 1,210,870,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,568 | 229,181 |
Bug 229181 [DateTime] DateTime widget does not report mouseDoubleClick
|
Build ID: M20080221-1800 Steps To Reproduce: 1. Create a DateTime widget. 2. Add a mouse listener. 3. Double-click on an instance of the DateTime widget. 4. note that mouseDoubleClick is never called. More information: May be related to 219698
|
2008-04-28 17:13:32
| 1,209,420,000 |
resolved fixed
|
cb49a6d
| 1,210,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java
|
SWT
|
1,569 | 232,093 |
Bug 232093 crash in Safari browser while handling key events
|
In eclipse: 1 - open content assist 2 - select a content assist item that open the second content assist window 3 - click in the second content assist window 4 - press escape to dismiss second content assist window 5 - type the word "crash" Process: eclipse [6615] Path: /Users/kevinbarnes/Eclipse/eclipse/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.4 (3.4) Code Type: PPC (Native) Parent Process: launchd [76] Date/Time: 2008-05-14 11:06:59.241 -0400 OS Version: Mac OS X 10.5.2 (9C7010) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008 Crashed Thread: 0 Application Specific Information: Java information: Version: Java HotSpot(TM) Client VM (1.5.0_13-119 mixed mode, sharing) Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_13-119) for macosx-ppc, built on Sep 28 2007 23:55:48 by root with gcc 4.0.1 (Apple Inc. build 5465) Exception type: Bus Error (0xa) at pc=0x912c41b0 Current thread (0x01001670): JavaThread "main" [_thread_in_native, id=-1600085900] Stack: [0xbf800000,0xc0000000) Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(II)I+0 j org.eclipse.swt.browser.Safari.handleCallback(II)I+860 j org.eclipse.swt.browser.Safari.eventProc3(III)I+27 v ~StubRoutines::call_stub j org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(II)I+0 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+52 j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+393 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$5.run()V+23 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+80 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub Java Threads: ( => current thread ) 0x010a5cf0 JavaThread "Additional info timer" [_thread_blocked, id=13199872] 0x01061e50 JavaThread "Worker-2" [_thread_blocked, id=8867840] 0x01054f30 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=13275648] 0x0104c380 JavaThread "Java indexing" daemon [_thread_blocked, id=9003520] 0x0103e810 JavaThread "Worker-0" [_thread_blocked, id=13196288] 0x0102fc40 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=10134528] 0x01015d80 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=9017856] 0x01014e80 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=8871424] 0x0100a940 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=8504320] 0x01009f30 JavaThread "CompilerThread0" daemon [_thread_blocked, id=8500736] 0x01009ab0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=8497152] 0x01009280 JavaThread "Finalizer" daemon [_thread_blocked, id=8491008] 0x01008eb0 JavaThread "Reference Handler" daemon [_thread_blocked, id=8484864] =>0x01001670 JavaThread "main" [_thread_in_native, id=-1600085900] Other Threads: 0x01008630 VMThread [id=8481280] 0x0100c090 WatcherThread [id=8507904] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 7488K, used 1583K [0x0d580000, 0x0dda0000, 0x0f1e0000) eden space 6656K, 11% used [0x0d580000, 0x0d63bc08, 0x0dc00000) from space 832K, 100% used [0x0dc00000, 0x0dcd0000, 0x0dcd0000) to space 832K, 0% used [0x0dcd0000, 0x0dcd0000, 0x0dda0000) tenured generation total 65552K, used 34100K [0x0f1e0000, 0x131e4000, 0x1d580000) the space 65552K, 52% used [0x0f1e0000, 0x1132d160, 0x1132d200, 0x131e4000) compacting perm gen total 38400K, used 38300K [0x1d580000, 0x1fb00000, 0x2d580000) the space 38400K, 99% used [0x1d580000, 0x1fae7098, 0x1fae7200, 0x1fb00000) ro space 8192K, 63% used [0x2d580000, 0x2da96c48, 0x2da96e00, 0x2dd80000) rw space 12288K, 43% used [0x2dd80000, 0x2e2af088, 0x2e2af200, 0x2e980000) Virtual Machine arguments: JVM args: -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Xms40m -Xmx256m -XX:MaxPermSize=256m -Dorg.eclipse.swt.internal.carbon.smallFonts Java command: <unknown> launcher type: generic Thread 0 Crashed: 0 com.apple.WebCore 0x912c41b0 WebCore::Frame::page() const + 0 1 com.apple.WebKit 0x95eeb2c4 -[WebFrameView keyDown:] + 52 2 com.apple.AppKit 0x944e4218 forwardMethod + 104 3 com.apple.AppKit 0x944e4218 forwardMethod + 104 4 com.apple.AppKit 0x944e4218 forwardMethod + 104 5 com.apple.AppKit 0x945d57d4 -[NSControl keyDown:] + 116 6 com.apple.WebKit 0x95ed07fc -[WebHTMLView keyDown:] + 412 7 com.apple.AppKit 0x94466ea0 -[NSWindow sendEvent:] + 7428 8 com.apple.AppKit 0x949d4ad8 -[HICocoaWindowAdapter sendSuperEvent:] + 112 9 com.apple.AppKit 0x949d3df0 ForwardEventToNSWindow + 244 10 com.apple.AppKit 0x9461d104 HICocoaViewEventHandler + 764 11 com.apple.HIToolbox 0x93aa8f68 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484 12 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 13 com.apple.HIToolbox 0x93b1c030 CallNextEventHandler + 116 14 libswt-pi-carbon-3445.jnilib 0x08c54c7c Java_org_eclipse_swt_internal_carbon_OS_CallNextEventHandler + 60 15 ??? 0x03586260 0 + 56124000 16 ??? 0x0357f9ec 0 + 56097260 17 ??? 0x0357f9ec 0 + 56097260 18 ??? 0x0357d160 0 + 56086880 19 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 20 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 21 libjvm.dylib 0x0046a658 0x3c9000 + 661080 22 libjvm.dylib 0x005d6964 JNI_CreateJavaVM_Impl + 133876 23 libswt-carbon-3445.jnilib 0x08c0fe08 callback + 1048 24 libswt-carbon-3445.jnilib 0x08beb0a4 fn38_3 + 48 25 com.apple.HIToolbox 0x93aa8f68 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484 26 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 27 com.apple.HIToolbox 0x93aa7f1c SendEventToEventTargetWithOptions + 52 28 com.apple.HIToolbox 0x93ad8d70 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1664 29 com.apple.HIToolbox 0x93aa93bc DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2592 30 com.apple.HIToolbox 0x93aa8100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464 31 com.apple.HIToolbox 0x93ac50e0 SendEventToEventTarget + 52 32 libswt-pi-carbon-3445.jnilib 0x08c711f4 Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget + 60 33 ??? 0x03586260 0 + 56124000 34 ??? 0x0357f9ec 0 + 56097260 35 ??? 0x0357f92c 0 + 56097068 36 ??? 0x0357faac 0 + 56097452 37 ??? 0x0357f9ec 0 + 56097260 38 ??? 0x0357f9ec 0 + 56097260 39 ??? 0x0357fe0c 0 + 56098316 40 ??? 0x0357faac 0 + 56097452 41 ??? 0x0357f9ec 0 + 56097260 42 ??? 0x0357f9ec 0 + 56097260 43 ??? 0x0357fd1c 0 + 56098076 44 ??? 0x0357fd1c 0 + 56098076 45 ??? 0x0357f9bc 0 + 56097212 46 ??? 0x0357f9bc 0 + 56097212 47 ??? 0x0357f9bc 0 + 56097212 48 ??? 0x0357d160 0 + 56086880 49 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 50 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 51 libjvm.dylib 0x0046f8a0 0x3c9000 + 682144 52 libjvm.dylib 0x0048ccd0 0x3c9000 + 802000 53 libjvm.dylib 0x0061f7f0 JVM_InvokeMethod + 592 54 ??? 0x03586260 0 + 56124000 55 ??? 0x0357f9bc 0 + 56097212 56 ??? 0x0357f9bc 0 + 56097212 57 ??? 0x0357fd1c 0 + 56098076 58 ??? 0x0357f9bc 0 + 56097212 59 ??? 0x0357faac 0 + 56097452 60 ??? 0x0357faac 0 + 56097452 61 ??? 0x0357d160 0 + 56086880 62 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 63 libjvm.dylib 0x004c3ff4 0x3c9000 + 1028084 64 libjvm.dylib 0x00454768 0x3c9000 + 571240 65 libjvm.dylib 0x005cfdd8 JNI_CreateJavaVM_Impl + 106344 66 eclipse_1114.so 0x0001a0bc startJavaJNI + 600 67 eclipse_1114.so 0x00018dfc startJavaVM + 124 68 eclipse_1114.so 0x00016598 run + 1228 69 org.eclipse.eclipse 0x000021e4 original_main + 792 70 org.eclipse.eclipse 0x00002a90 main + 636 71 org.eclipse.eclipse 0x00001ae8 _start + 756 72 org.eclipse.eclipse 0x000017ec start + 44 Thread 1: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libSystem.B.dylib 0x94d1f134 mach_msg_server + 500 3 libjvm.dylib 0x003d67e0 0x3c9000 + 55264 4 libjvm.dylib 0x003d6500 0x3c9000 + 54528 5 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 6 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 2: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040cb94 0x3c9000 + 277396 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 3: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357faac 0 + 56097452 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 4: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 5: 0 libSystem.B.dylib 0x94c959c8 semaphore_wait_trap + 8 1 libjvm.dylib 0x0040e820 0x3c9000 + 284704 2 libjvm.dylib 0x0040d408 0x3c9000 + 279560 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 6: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libjvm.dylib 0x00564de4 0x3c9000 + 1687012 2 libjvm.dylib 0x0040ee34 0x3c9000 + 286260 3 libjvm.dylib 0x0040d408 0x3c9000 + 279560 4 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 5 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 7: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040f2c0 0x3c9000 + 287424 3 libjvm.dylib 0x0040d408 0x3c9000 + 279560 4 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 5 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 8: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x0040f65c 0x3c9000 + 288348 3 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 4 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 9: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 10: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 ??? 0x0358ee30 0 + 56159792 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 11: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 12: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CoreFoundation 0x96ca1ea8 CFRunLoopRun + 60 4 com.apple.DesktopServices 0x9295ecf0 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 104 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 13: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CoreFoundation 0x96ca1ea8 CFRunLoopRun + 60 4 com.apple.DesktopServices 0x9295ee6c TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 176 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 14: 0 libSystem.B.dylib 0x94c9c38c __semwait_signal + 12 1 libSystem.B.dylib 0x94cd8f40 _pthread_cond_wait + 1580 2 ...ple.CoreServices.CarbonCore 0x91ce91d4 TSWaitOnCondition + 132 3 ...ple.CoreServices.CarbonCore 0x91cc75c0 TSWaitOnConditionTimedRelative + 204 4 ...ple.CoreServices.CarbonCore 0x91ce8d90 MPWaitOnQueue + 272 5 com.apple.DesktopServices 0x9296a8e8 TNodeSyncTask::SyncTaskProc(void*) + 88 6 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 7 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 15: 0 libSystem.B.dylib 0x94cd73d8 kevent + 12 1 com.apple.CoreFoundation 0x96c78ed4 __monitor_file_descriptor__ + 88 Thread 16: 0 libSystem.B.dylib 0x94cfa004 select$DARWIN_EXTSN + 12 1 com.apple.CoreFoundation 0x96caca68 __CFSocketManager + 764 Thread 17: 0 libSystem.B.dylib 0x94c959f8 semaphore_timedwait_signal_trap + 8 1 libSystem.B.dylib 0x94cd8e3c _pthread_cond_wait + 1320 2 com.apple.Foundation 0x95a55898 -[NSCondition waitUntilDate:] + 384 3 com.apple.Foundation 0x95a556c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268 4 com.apple.AppKit 0x94408b80 -[NSUIHeartBeat _heartBeatThread:] + 664 5 com.apple.Foundation 0x95a184f4 __NSThread__main__ + 1004 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 18: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 19: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357fe0c 0 + 56098316 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 20: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357faac 0 + 56097452 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 21: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357f9bc 0 + 56097212 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 22: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 com.apple.CoreFoundation 0x96ca1618 CFRunLoopRunSpecific + 1828 3 com.apple.CFNetwork 0x90bd5b5c CFURLCacheWorkerThread(void*) + 292 4 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 23: 0 libSystem.B.dylib 0x94c959f8 semaphore_timedwait_signal_trap + 8 1 libSystem.B.dylib 0x94cd8e3c _pthread_cond_wait + 1320 2 ...ple.CoreServices.CarbonCore 0x91cc75e4 TSWaitOnConditionTimedRelative + 240 3 ...ple.CoreServices.CarbonCore 0x91ce8d90 MPWaitOnQueue + 272 4 com.apple.DesktopServices 0x9296c5a8 TFolderSizeTask::FolderSizeTaskProc(void*) + 88 5 ...ple.CoreServices.CarbonCore 0x91ce6fc4 PrivateMPEntryPoint + 76 6 libSystem.B.dylib 0x94cd7b98 _pthread_start + 316 Thread 24: 0 libSystem.B.dylib 0x94c95978 mach_msg_trap + 8 1 libSystem.B.dylib 0x94c9c89c mach_msg + 56 2 libjvm.dylib 0x006077e8 JVM_MonitorWait + 664 3 ??? 0x0357fe0c 0 + 56098316 4 ??? 0x0357d160 0 + 56086880 5 libjvm.dylib 0x004c4284 0x3c9000 + 1028740 6 libjvm.dylib 0x0040d6d0 0x3c9000 + 280272 7 libjvm.dylib 0x0040d5bc 0x3c9000 + 279996 8 libjvm.dylib 0x0040d54c 0x3c9000 + 279884 9 libjvm.dylib 0x0040d408 0x3c9000 + 279560 10 libjvm.dylib 0x006978e0 JVM_RaiseSignal + 481824 11 libSystem.B.dylib 0x94d273a8 _pthread_body + 36 Thread 0 crashed with PPC Thread State 32: srr0: 0x912c41b0 srr1: 0x0000f030 dar: 0x00000008 dsisr: 0x40000000 r0: 0x95eeb2e4 r1: 0xbfffc070 r2: 0x35b20a10 r3: 0x00000000 r4: 0x962cf6e8 r5: 0x35b3cbe0 r6: 0x35b3cbe0 r7: 0x00000028 r8: 0xa1b1c1d3 r9: 0x00000002 r10: 0x00000008 r11: 0xa0b68894 r12: 0x912c41b0 r13: 0x01001670 r14: 0x036021fc r15: 0x08c54c40 r16: 0xbfffcd80 r17: 0x1dc519e0 r18: 0xbfffcde4 r19: 0xbfffcd68 r20: 0x1dc6b498 r21: 0x1dc519e0 r22: 0x00000100 r23: 0x35b33f50 r24: 0x00000000 r25: 0xa0cea70c r26: 0x35b3cbe0 r27: 0x35b32e10 r28: 0x35b3cbe0 r29: 0x962c136c r30: 0x35b32f50 r31: 0x95eeb2a4 cr: 0x24044228 xer: 0x00000004 lr: 0x95eeb2e4 ctr: 0x912c41b0 vrsave: 0x00000000 Binary Images: 0x1000 - 0x4fff +org.eclipse.eclipse 3.4 (3.4) /Users/kevinbarnes/Eclipse/eclipse/Eclipse.app/Contents/MacOS/eclipse 0x15000 - 0x1efc7 +eclipse_1114.so ??? (???) /Users/kevinbarnes/Eclipse/eclipse/plugins/org.eclipse.equinox.launcher.carbon.macosx_1.0.100.v20080509-1800/eclipse_1114.so 0x26000 - 0x2dfff com.apple.JavaVM 12.0.2 (12.0.2) <7a7d795d9c93b302a8a2b838bcb6a914> /System/Library/Frameworks/JavaVM.framework/JavaVM 0x45000 - 0x4cff0 libverify.dylib ??? (???) <a6b0e78edb9f54007c092f3063f51811> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify.dylib 0x51000 - 0x6efff libjava.jnilib ??? (???) <752d32182502fb192cee65d77131d2ab> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jnilib 0x7d000 - 0x89fff libzip.jnilib ??? (???) <440002c90c10019da69d134857522d1f> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jnilib 0x3c9000 - 0x72bfff libjvm.dylib ??? (???) <fa3f5f95dcfb4128b0a168dfda315b9a> /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Libraries/libjvm.dylib 0x17bb000 - 0x17bcfff libframeembedding.jnilib ??? (???) <177ad5648f7401b90869a78377b69a39> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libframeembedding.jnilib 0x6033000 - 0x6034ffc com.apple.JavaFrameEmbedding 12.0.0 (12.0.0) <7a4b767a12923ff997c37f1174e2c901> /System/Library/Frameworks/JavaFrameEmbedding.framework/Versions/A/JavaFrameEmbedding 0x6184000 - 0x626dffb com.apple.RawCamera.bundle 2.0.4 (2.0.4) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x8be2000 - 0x8c0fffc +libswt-carbon-3445.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-carbon-3445.jnilib 0x8c20000 - 0x8c41ff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib 0x8c49000 - 0x8c9fff7 +libswt-pi-carbon-3445.jnilib ??? (???) <cf6c22d6751c8d3e1f8bcd8071e94076> /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-pi-carbon-3445.jnilib 0x8e12000 - 0x8e1efff libnet.jnilib ??? (???) <edef147cc9842a75520df4faae4f4350> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnet.jnilib 0x8e24000 - 0x8e28fff libnio.jnilib ??? (???) <34a01a51acbba860bc469073ec64287a> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnio.jnilib 0x3327e000 - 0x3328affe com.apple.URLMount 3.1 (3.1) <c901b91776a9a87ebaf253acb8799a03> /System/Library/PrivateFrameworks/URLMount.framework/URLMount 0x3337f000 - 0x33385fff libCGXCoreImage.A.dylib ??? (???) <4e1cd099b993b5ad9637cd0435a3a182> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib 0x333d0000 - 0x333d1ffb ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x33402000 - 0x33403feb +liblocalfile_1_0_0.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/23/1/.cp/os/macosx/liblocalfile_1_0_0.jnilib 0x34044000 - 0x34048ffe +libswt-cocoa-carbon-3445.jnilib ??? (???) /Users/kevinbarnes/Eclipse/eclipse/configuration/org.eclipse.osgi/bundles/130/1/.cp/libswt-cocoa-carbon-3445.jnilib 0x346c6000 - 0x3472efff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) <4b60ff8df520b0d8ca383547d07cd2bb> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser 0x357f2000 - 0x3595dffb libawt.jnilib ??? (???) <07c1ab45c1709a0e2b64bf6534ae2728> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib 0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld 0x90039000 - 0x90060fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib 0x90061000 - 0x90070fff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers 0x90071000 - 0x90074ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x90075000 - 0x90079ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x900df000 - 0x9018ffff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x901a1000 - 0x901a3ffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x901a4000 - 0x9025efff libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib 0x9025f000 - 0x902f9ff7 com.apple.ApplicationServices.ATS 3.2 (???) <4258842969dc8d4fa37e01a80aa3d409> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x9036c000 - 0x908e0ff7 com.apple.CoreGraphics 1.351.21 (???) <44bbf8c3a4e8bc97e8b3e35737001742> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x908e7000 - 0x9097dff3 com.apple.LaunchServices 286.5 (286.5) <1a1a73b91deacb172d15745ec73e5959> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x90a4d000 - 0x90a8efff com.apple.CoreMediaIOServicesPrivate 8.0 (8.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/CoreMediaIOServicesPrivate 0x90a8f000 - 0x90a8fffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallServer 0x90a90000 - 0x90abbff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib 0x90abc000 - 0x90b06fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x90b07000 - 0x90b8cfff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib 0x90b8d000 - 0x90b8dffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x90b8e000 - 0x90bcafff libRIP.A.dylib ??? (???) <7bc908a7317a00fe3c659571c50cdd46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x90bcb000 - 0x90c45ffd com.apple.CFNetwork 221.5 (221.5) <ef2672379d6fcb1470dc9361ce68e7f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x90c56000 - 0x90c69fff com.apple.LangAnalysis 1.6.4 (1.6.4) <c184bb5b2859e82c5740a6fdb1e3d0bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x90c6a000 - 0x90c89fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x90c95000 - 0x90d1ffff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x90d2c000 - 0x90d2cff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x90d2d000 - 0x90d2dfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x90d2e000 - 0x90d57ffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 0x90d58000 - 0x90d90fff com.apple.SystemConfiguration 1.9.1 (1.9.1) <50bc5b4d50a2e1f7743e729381467537> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x90d91000 - 0x90d98ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x90d9f000 - 0x90df5fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x90e25000 - 0x90e26ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x90e2a000 - 0x90eb1ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x90eb2000 - 0x90f3dffb com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x90f3e000 - 0x90f9efff com.apple.CoreText 2.0.1 (???) <2ecbcac842c4864bdd3de0a68e4d2f2c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText 0x90f9f000 - 0x91182ffb com.apple.security 5.0.2 (33001) <5e841904ba22d381672679180d4b0f4a> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x9121a000 - 0x91265ffb com.apple.Metadata 10.5.2 (398.7) <f0c3c28205af67a29a2ed728ee297648> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x91266000 - 0x91947ff3 com.apple.WebCore 5525.18.1 (5525.18.1) <92c7f43022f33c6d71cd174b2784070d> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x91a8c000 - 0x91b73ff7 com.apple.JavaScriptCore 5525.17 (5525.17) <9566ab27b76c1bfb748a982bea07d4af> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x91b74000 - 0x91beffff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x91bf0000 - 0x91c52ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering 0x91c53000 - 0x91c79fff libcups.2.dylib ??? (???) <d60807e6cfdc208c2e5520f7acb473f6> /usr/lib/libcups.2.dylib 0x91c7a000 - 0x91c99fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x91c9a000 - 0x91c9dfff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x91c9e000 - 0x91f9fff7 com.apple.CoreServices.CarbonCore 785.8 (785.8) <d56076bc0fe62dd58002bdd581a3f3c0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x91fa0000 - 0x91fc4ffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x91fc5000 - 0x91fc5ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel 0x91fc6000 - 0x91fd2ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound 0x91fd3000 - 0x92408ffa libGLProgrammability.dylib ??? (???) <6d71574167a838789ab0ee27f92af626> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x92457000 - 0x9251cffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x9251d000 - 0x92549fff com.apple.CoreMediaPrivate 8.0 (8.0) <66b09473b80b671769201a045f14d614> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate 0x9254a000 - 0x928a7ff2 com.apple.QuartzCore 1.5.1 (1.5.1) <f364682e96d58c5849cad532f6bf2f91> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x928ec000 - 0x92907ffb libPng.dylib ??? (???) <c51ec88c87a3f0a646471165e16acd43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A
|
2008-05-14 11:20:38
| 1,210,780,000 |
resolved fixed
|
650ccec
| 1,210,790,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,570 | 231,787 |
Bug 231787 When computing bounds,TextLayout does not take trailing line break into account
|
(1) Have a TextLayout and set its text to "abc<enter>" > call getBounds() (2) set the text to "abc" > call getBounds() > the result for (1) and (2) are the same. The trailing line break is not taken into account
|
2008-05-13 08:14:45
| 1,210,680,000 |
resolved fixed
|
05d141b
| 1,210,790,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,571 | 226,007 |
Bug 226007 BIDI3.4: search results appear shaped improperly
| null |
2008-04-07 13:45:35
| 1,207,590,000 |
closed fixed
|
238f507
| 1,210,790,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,572 | 231,925 |
Bug 231925 Arrow button is drawn backwards
|
The left arrow button is drawn pointing right and the right button is drawn pointing left.
|
2008-05-13 15:53:27
| 1,210,710,000 |
resolved fixed
|
67772f2
| 1,210,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java
|
SWT
|
1,573 | 227,076 |
Bug 227076 [DND]Combo:Multiple problems during drag text in combo on Mac OS X
|
Build ID: I20080207-1530 Steps To Reproduce: My Env: Mac OS Version 10.5 Eclipse build I20080207-1530 SWT 3.4.0 v3428a [Step to reproduce] 1.Run snipplet on Mac OS X 2.Use mouse to select some text in the combo. 3.Drag the text to the Text area on the right. [Results]: 1.Mouse cursor does not change its shape to indicate dragging as on Windows. 2.A "DragStart" was not triggered until user release the mouse(mouse up). 3.A "DragEnter" was also not triggered until mouse up. [Expected:] 1.Mouse cursor will change its shape during dragging. 2.A "DragStart" should be triggered when the dragging actually happens. 3.A "DragEnter" should be triggered when the the mouse cursor enter the text area during dragging. More information:
|
2008-04-15 01:46:38
| 1,208,240,000 |
resolved fixed
|
f336407
| 1,210,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/DateTime.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,574 | 231,884 |
Bug 231884 [Accessibility] Controls that implement kEventAccessibleGetNamedAttribute need to call swt accessible API
|
20080513 Many of the Carbon controls had to override kEventAccessibleGetNamedAttribute in order to provide basic accessibility for the control. If an application hooked an AccessibleListener to any of these controls, then the application's AccessibleListener code was not being called. The fix involved coming up with a mechanism to let the Accessible class know that theEvent may already contain valid data. Also, care needed to be taken to make sure that CallNextEventHandler was not called twice for the same event.
|
2008-05-13 13:51:07
| 1,210,700,000 |
resolved fixed
|
95bcccf
| 1,210,710,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,575 | 231,606 |
Bug 231606 [Browser] disposing Browser in KeyDown causes crash
|
- happens on OSX with the Safari and Mozilla browsers - it seems that HICocoaView is not doing a disposed check after sending key notifications
|
2008-05-12 13:07:55
| 1,210,610,000 |
resolved fixed
|
56fb1e5
| 1,210,630,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java
|
SWT
|
1,576 | 206,870 |
Bug 206870 [Mac] New Project wizard Finish button isn't enabled for Japanese project name
| null |
2007-10-19 06:19:52
| 1,192,790,000 |
closed fixed
|
8aef787
| 1,210,620,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,577 | 225,373 |
Bug 225373 Bidi3.4: Unicode Markers don't have any effect in Console View
| null |
2008-04-02 12:24:35
| 1,207,150,000 |
closed fixed
|
5403e07
| 1,210,620,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,578 | 227,974 |
Bug 227974 DBCS3.4: Dragged texts from Safari gets garbled when dropped on a StyledText widget
| null |
2008-04-21 05:23:15
| 1,208,770,000 |
closed fixed
|
1a3287a
| 1,210,620,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/TextTransfer.java
|
SWT
|
1,579 | 228,167 |
Bug 228167 DBCS3.4: URLTransfer for DBCS URL failed
| null |
2008-04-22 04:12:13
| 1,208,850,000 |
closed fixed
|
f60812a
| 1,210,620,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/URLTransfer.java bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java
|
SWT
|
1,580 | 231,449 |
Bug 231449 First Table Row Justification Wrong
| null |
2008-05-10 16:28:36
| 1,210,450,000 |
resolved fixed
|
71b2aa6
| 1,210,620,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java
|
SWT
|
1,581 | 227,965 |
Bug 227965 Tooltip for table column not appearing
|
OS: Mac OS X 10.5.2 (intel) Build: 3.4M6a (SWT v3436) Steps: 1. Create a Java project and import a snippet code org.eclipse.swt.snippets.Snippet2.java from CVS 2. Insert the following lines below "column2.setWidth(100);" (around line 46) column1.setToolTipText("Column 1"); column2.setToolTipText("Column 2"); 3. Run a SWT application (platform specific swt JAR file may be needed in the build path) 4. Move a mouse cursor over the table columns and stay there for a couple of seconds None of given tooltips "Column 1" and "Column 2" appeared for each table column
|
2008-04-21 03:35:58
| 1,208,760,000 |
resolved fixed
|
25a38b5
| 1,210,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,582 | 231,303 |
Bug 231303 Browser widget: Tab key traps focus when key listener is added
|
I20080508-2000 Focus handling in the Browser widget is screwed as soon as I add a key listener (KeyUp or KeyDown) to the Browser. Steps in ControlExample: - add key listener - click into browser, just before the first link - press Tab to focus first link - press Shift+Tab => should: put focus to the "Browser" TabItem => does: first puts you into a state where nothing really has focus (Up/DownArrow keys don't scroll the browser any more). On second press of Shift+Tab, puts focus the last link in the browser. - click into the "Browser" TabItem - press Tab => should: put focus to the browser => does: puts focus into a black hole. There's no way to get the focus back from this state using the Tab key. I think the problem is that Browser is a subclass of Composite, and adding a key listener to the composite makes it take focus. Even with a key listener, the Browser widget should behave like e.g. a Tree and still correctly implement focus traversal (e.g. by passing focus to the contained WebSite control).
|
2008-05-09 10:01:20
| 1,210,340,000 |
resolved fixed
|
239af00
| 1,210,370,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
1,583 | 214,503 |
Bug 214503 Incorrect KeyEvents returned using SWT_AWT.
| null |
2008-01-07 11:30:23
| 1,199,720,000 |
resolved fixed
|
fb9d25e
| 1,210,360,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,584 | 229,520 |
Bug 229520 FileDialog does not provide enough information to open multiple files from different directories
|
On Mac OSX, opening a FileDialog with SWT.MULTI allows the selection of multiple files from multiple different directories. However, after running FileDialog.open(), calling FileDialog.getFileNames() returns only the base names of each of the selected files, and does not provide any means of discovering the directories for the files. The return value of FileDialog.open() does indeed return the full path, but only to the first file that is selected. This effectively makes it impossible to robustly support opening multiple from different directories on OSX. For example, if I run: public static void main(String[] args) throws Exception { FileDialog fd = new FileDialog(new Shell(), SWT.OPEN | SWT.MULTI); String opened = fd.open(); System.out.println("FileDialog.show: " + opened); System.out.println("FileDialog.getFileName: " + fd.getFileName()); System.out.println("FileDialog.getFilterPath: " + fd.getFilterPath()); System.out.println("FileDialog.getFileNames(): " + Arrays.asList(fd.getFileNames())); System.out.println("FileDialog.getFilterExtensions(): " + Arrays.asList(fd.getFilterExtensions())); System.out.println("FileDialog.getFilterNames(): " + Arrays.asList(fd.getFilterNames())); } and select the two files: /tmp/files/foo/baz /tmp/files/bar/baz The program will output: FileDialog.show: /tmp/files/bar/baz FileDialog.getFileName: baz FileDialog.getFilterPath: /tmp/files/bar FileDialog.getFileNames(): [baz, baz] FileDialog.getFilterExtensions(): [] FileDialog.getFilterNames(): [] Note that the path to "/tmp/files/foo/baz" is not provided by any of the methods in FileDialog. The javadoc for FileDialog.getFileNames() says that it "Returns a (possibly empty) array with the paths of all files that were selected in the dialog relative to the filter path." I suppose one way to fix this bug while being consistent with the documented behavior would be to construct relative paths for each of the selected files, so that in the example above, FileDialog.getFileNames() would return {baz,../foo/baz}. An alternative solution could be for FileDialog.getFilterPath() to return the lowest common denominator path to the files selected (e.g., in the example above, it would return "/tmp/files"), and then have FileDialog.getFileNames() return the paths relative to that directory (e.g., {bar/baz,foo/baz}).
|
2008-04-29 20:35:39
| 1,209,520,000 |
resolved fixed
|
d474035
| 1,210,350,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
1,585 | 226,832 |
Bug 226832 BIDI3.4:HCG "Cancel" button of Source Folder Selection dialog does not work in Hebrew version
|
Build ID: I20080405 Linux RedHat 5 Steps To Reproduce: 1. Install: - Eclipse SDK with NL Bidi package 2. Run mirrored Eclipse with Hebrew translation (use command line argument -nl iw) 3. Go to File->New->Package 4. Select "Browse..." 5. Source Folder Selection dialog is opened and the list does not contain a source folder. 6. Try to click on the "Cancel" button to close the dialog. Expected result: the dialog is closed Actual result: the button does not work Comments: 1. The dialog can be closed with x 2. The cancel button works in the English version More information:
|
2008-04-13 09:19:10
| 1,208,090,000 |
closed fixed
|
4d7a561
| 1,210,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,586 | 223,926 |
Bug 223926 Table/Tree scrollbars bad after setVisible()
|
Run the testcase. Grab the vertical scrollbar and note that the selection event is fired. Click on the table to hide the scrollbar. Click again to show it. Note the selection event is not fired anymore. import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.*; public class PR { public static void main(String[] args) throws Exception { final Display display = new Display(); final Shell shell = new Shell(display); final Table table = new Table(shell, SWT.BORDER); for (int i = 0; i < 300; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText("Item" + i); } table.setBounds(10, 10, 300, 300); table.getVerticalBar().addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { System.out.println("selection"); } }); table.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { System.out.println("here=" + table.getVerticalBar().getVisible()); table.getVerticalBar().setVisible(!table.getVerticalBar().getVisible()); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2008-03-25 14:06:53
| 1,206,470,000 |
resolved fixed
|
fad730f
| 1,210,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,587 | 231,192 |
Bug 231192 [Accessibility] Characters typed into Editable Combo are not accessible on Leopard
| null |
2008-05-08 16:00:01
| 1,210,280,000 |
resolved fixed
|
8ec8763
| 1,210,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java
|
SWT
|
1,588 | 231,148 |
Bug 231148 [Accessibility] StyledText typed characters are not accessible on Leopard
|
I20080502-0100 Open any editor, or run the CustomControlExample to get a StyledText. Turn on VoiceOver. Type some characters into the StyledText. The typed characters are not spoken.
|
2008-05-08 11:40:43
| 1,210,260,000 |
resolved fixed
|
077a241
| 1,210,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
1,589 | 231,009 |
Bug 231009 Compile Error on GTK 2.2.x: Fields missing from PangoLayoutLine
|
We can't compile the GTK libraries on 2.2.x because the PangoLayoutLine struct was changed in GTK 2.4.
|
2008-05-07 18:54:46
| 1,210,200,000 |
resolved fixed
|
327cb8a
| 1,210,200,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/PangoLayoutLine.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
|
SWT
|
1,590 | 219,558 |
Bug 219558 [CellEditors] ComboBoxCellEditor doesn't work properly (CCombo)
|
Eclipse Version: 3.4M5 OS: Windows XP It works well in older version, but doesn't in this one. I used ComboBoxCellEditor in a table, and sometimes it doesn't work. In the table, click the cell, sometimes the triangle at right is shown, and sometimes is hidden. When the triangle is shown, I select an item in the list, it works. But if the triangle is hidden, I select one, it can't be selected. After studying the code, I find that in the condition the triangle is hidden, if I select an item, CellModifier.CanModify() won't be invoked, and none of method in CellModifier will be called. Obviously, it's a bug. To simplify the question, you can see this file org.eclipse.jface.snippets/Eclipse JFace Snippets/org/eclipse/jface/snippets/viewers/Snippet027ComboBoxCellEditors.java, and change v.setCellEditors(new CellEditor[] { new ComboBoxCellEditor( v.getTable(), new String[] { "Zero", "Ten", "Twenty", "Thirty","Fourty", "Fifty", "Sixty", "Seventy", "Eighty","Ninety" }) }); to v.setCellEditors(new CellEditor[] { new ComboBoxCellEditor( v.getTable(), new String[] { "Zero", "Ten", "Twenty", "Thirty","Fourty", "Fifty", "Sixty", "Seventy", "Eighty","Ninety" },SWT.READ_ONLY) }); After doing that, you can reproduce this bug easily.
|
2008-02-20 03:22:24
| 1,203,500,000 |
resolved fixed
|
77f6122
| 1,210,190,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
1,591 | 230,489 |
Bug 230489 use DeleteObject to dispose non-Mlang fonts
| null |
2008-05-06 17:42:29
| 1,210,110,000 |
resolved fixed
|
0100159
| 1,210,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,592 | 212,991 |
Bug 212991 Mac OS X accessibility does not have the standard relations
|
On Windows, there are several standard relations under MSAA, for example, a Label preceeding a Text will provide the accessible name for the Text. On GTK, these relations were implemented for SWT using ATK relations. (see Control.setRelations() and Label.addRelation() in the GTK code) Need to implement these on Mac OS X.
|
2007-12-14 04:51:09
| 1,197,630,000 |
resolved fixed
|
7c5c835
| 1,210,180,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java
|
SWT
|
1,593 | 230,912 |
Bug 230912 IAE when leaving IME
| null |
2008-05-07 11:38:24
| 1,210,170,000 |
verified fixed
|
854a2a0
| 1,210,180,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
1,594 | 230,935 |
Bug 230935 [Accessibility] StyledText speaks name twice
|
Create a single-line StyledText preceded by a Label. Run this, and turn on VoiceOver. When the StyledText takes focus, it speaks the Label text twice.
|
2008-05-07 13:00:56
| 1,210,180,000 |
resolved fixed
|
ee716e4
| 1,210,180,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
1,595 | 230,388 |
Bug 230388 Cannot get focus out of browser widget any more
|
I20080502-0100, was OK in M5. Cannot get focus out of browser widget any more. To reproduce, e.g. launch ControlExample, tab into the browser widget and then try to get out by keyboard. - Tab and Shift+Tab used to pass focus out after the last/first link was selected (worked fine in M5, broken in M6 and in HEAD) - Ctrl+Tab and Ctrl+Shift+Tab already didn't work in M5 This is an accessibility problem. E.g. in Javadoc hovers (opened with F2 in a Java editor), you cannot reach the toolbar buttons any more.
|
2008-05-06 09:18:30
| 1,210,080,000 |
resolved fixed
|
63e89a7
| 1,210,100,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
1,596 | 216,919 |
Bug 216919 Incompatibilities with MacOSX CMI (Context Menu Interface)
| null |
2008-01-29 10:29:45
| 1,201,620,000 |
resolved fixed
|
addc9b9
| 1,210,100,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Menu.java
|
SWT
|
1,597 | 229,776 |
Bug 229776 SWT.TOGGLE style bit stops setRegion from working on linux
|
swt.jar from the I20080429-0100 build setRegion still does not work on linux when you set the SWT.TOGGLE style bit on Canvas or Button import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SwtToggleTest { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setSize(300,400); shell.setText("Composite.setBackgroundMode()"); Image image = new Image(Display.getDefault(), 210, 100); GC gc = new GC(image); gc.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_BLUE)); gc.fillRectangle(image.getBounds()); gc.dispose(); Region region = new Region(); region.add(0, 0, 140, 50); region.add(70, 50, 140, 50); Canvas c1 = new Canvas(shell, SWT.TOGGLE); c1.setBounds(10, 50, 210, 100); c1.setBackgroundImage(image); c1.setRegion(region); Button b1 = new Button(shell, SWT.TOGGLE); b1.setBounds(10, 200, 210, 100); b1.setImage(image); b1.setRegion(region); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2008-05-01 09:32:17
| 1,209,650,000 |
resolved fixed
|
69fd5aa
| 1,210,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,598 | 229,680 |
Bug 229680 PRIMARY_MODAL Shell can make other Shell lose its menubar
|
- run the snippet below - note that the main Shell has menubar item "Menu" - push its Button to create a PRIMARY_MODAL child Shell - click away to some other running app - click back on the _original_ Shell (not the child Shell) - close the PRIMARY_MODAL child Shell - now the original Shell is all that's left, but its menubar item is not shown public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Button b = new Button(shell, SWT.PUSH); b.setText("Open dialog"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { Shell dialog = new Shell(shell, SWT.PRIMARY_MODAL | SWT.SHELL_TRIM); dialog.setSize(100, 50); dialog.open(); } }); Menu bar = new Menu(shell, SWT.BAR); shell.setMenuBar(bar); new MenuItem(bar, SWT.CASCADE).setText("Menu"); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2008-04-30 13:24:14
| 1,209,580,000 |
resolved fixed
|
78ef2a0
| 1,210,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,599 | 230,071 |
Bug 230071 Snippet223 requires an image
|
I just tried to run Snippet223 and it fails trying to acquire the 'eclipse.png' image...all the other snippets I've seen are self-contained (one of their best features...;-).
|
2008-05-03 10:49:14
| 1,209,830,000 |
resolved fixed
|
3eb1df8
| 1,210,000,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet223.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet225.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet258.java
|
SWT
|
1,600 | 229,841 |
Bug 229841 Widget is disposed in ControlExample
|
- run the ControlExample - press the Set/Get API Button --> shows a dialog - press this button again --> shows another dialog - close the second of these dialogs - in the first dialog choose anything in the Combo and you'll get the error at the bottom -> the problem is that Tab.resetLabels() is sending #getText() to the Text that was on the second of the dialogs; this happens because the two shown dialogs were sharing Tab's fields like setText, get/setButton, etc. Exception in thread "main" org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3773) at org.eclipse.swt.SWT.error(SWT.java:3691) at org.eclipse.swt.SWT.error(SWT.java:3662) at org.eclipse.swt.widgets.Widget.error(Widget.java:462) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:335) at org.eclipse.swt.widgets.Combo.getText(Combo.java:838) at org.eclipse.swt.examples.controlexample.Tab.resetLabels(Tab.java:1018) at org.eclipse.swt.examples.controlexample.Tab$35.widgetSelected(Tab.java:982) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3782) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3381) at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:210)
|
2008-05-01 14:34:05
| 1,209,670,000 |
resolved fixed
|
0c5b7c9
| 1,209,670,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/Tab.java
|
SWT
|
1,601 | 229,377 |
Bug 229377 No vertical scrollbars in the stacktrace console
| null |
2008-04-29 11:58:20
| 1,209,480,000 |
resolved fixed
|
c6e05bd
| 1,209,560,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java
|
SWT
|
1,602 | 148,094 |
Bug 148094 Control#setCapture() not working as expected
|
Eclipse 3.2 According to the JavaDoc of Control#setCapture(), "causes the receiver to have all mouse events delivered to it until the method is called with false". See this snippet: public class Main { static Tree t; public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Button b = new Button(shell, SWT.NONE); b.addSelectionListener(new SelectionAdapter() { public void widgetDefaultSelected(SelectionEvent e) { t.setCapture(true); } }); t = new Tree(shell, SWT.NONE); for (int i = 0; i < 100; i++) { new TreeItem(t, SWT.None).setText("Hello World"); } shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } Hitting the Button, I begin using my MouseWhell to scroll, but the Tree is not scrolling. From what the JavaDoc tells me, I had expected this behaviour. Since I more think that this is a platform-limitation than a bug in setCapture() , at least the JavaDoc should clarify what this API is about. Ben
|
2006-06-21 14:53:55
| 1,150,920,000 |
resolved fixed
|
ccfcf50
| 1,209,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,603 | 220,642 |
Bug 220642 [open type] Open Type dialog does not work in high contrast
| null |
2008-02-27 14:20:44
| 1,204,140,000 |
resolved fixed
|
5ada5ca
| 1,209,490,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,604 | 229,172 |
Bug 229172 [Win32] MessageBox gets stuck in event loop
| null |
2008-04-28 16:38:30
| 1,209,420,000 |
resolved fixed
|
b8e1e72
| 1,209,480,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,605 | 228,667 |
Bug 228667 ACC: SWT does not give focus to a context menu from a dialog
| null |
2008-04-24 09:25:26
| 1,209,040,000 |
resolved fixed
|
2396633
| 1,209,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java
|
SWT
|
1,606 | 228,968 |
Bug 228968 NPE in MozillaDelegate
|
I20080422-0800 Just found this in my logs. Sorry, no steps to reproduce. -- Error Log -- Date: Thu Apr 24 11:20:56 CEST 2008 Message: Unhandled event loop exception Severity: Error Plugin ID: org.eclipse.ui Stack Trace: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3773) at org.eclipse.swt.SWT.error(SWT.java:3691) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3374) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3032) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2315) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2181) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:477) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:472) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) Caused by: java.lang.NullPointerException at org.eclipse.swt.browser.MozillaDelegate$2.run(MozillaDelegate.java:134) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:132) ... 22 more
|
2008-04-25 19:23:55
| 1,209,170,000 |
resolved fixed
|
bf6f8d6
| 1,209,400,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java
|
SWT
|
1,607 | 228,770 |
Bug 228770 setRegion on Canvas not working on linux
|
using org.eclipse.swt_3.4.0.v3436a.jar and org.eclipse.swt.gtk.linux.x86_3.4.0.v3436.jar on a fedora core 5 machine The following snippet causes two canvases to be drawn whose bounds overlap, but their regions do not. The entire canvas is drawn, rather than just the regions. When I try the same snippet with Buttons instead of Canvases, the Buttons are drawn (and are selection sensitive) based on the regions. I also tested this on OSX and a Windows XP machine. The test behaved the same on OSX (separate bug filed) and on the windows box the canvases were drawn based on the regions. import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; public class OverlappedCanvas1 { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.CLOSE); shell.setText("FlatButtonTest"); shell.setBounds(0, 0, 300, 200); Region region = new Region(); region.add(0, 0, 150, 100); region.subtract(0,50,50,50); region.subtract(100,0,50,50); // shell.open(); Canvas b1 = new Canvas(shell, SWT.PUSH); b1.setBounds(0,0,150,100); b1.setRegion(region); b1.setBackground(display.getSystemColor(SWT.COLOR_BLUE)); Canvas b2 = new Canvas(shell, SWT.PUSH); b2.setBounds(100,0,150,100); b2.setRegion(region); b2.setBackground(display.getSystemColor(SWT.COLOR_RED)); Button b3 = new Button(shell, SWT.PUSH); b3.setBounds(150, 125, 100, 50); b3.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { shell.close(); } }); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2008-04-24 17:20:02
| 1,209,070,000 |
resolved fixed
|
0a6811e
| 1,209,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,608 | 214,381 |
Bug 214381 Tree hover help leaving cheese
| null |
2008-01-04 14:15:00
| 1,199,470,000 |
resolved fixed
|
13ddd9a
| 1,209,060,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,609 | 219,641 |
Bug 219641 Triple vertical scrollbar inside compare editor
|
Eclipse 3.4 M5: Sometimes I see 3 vertical scrollbars inside the compare editor. One of them is the normal scrollbar at the right side of editor. The other 2 are inside the left and right panes. I'll post a screenshot.
|
2008-02-20 13:23:31
| 1,203,530,000 |
resolved fixed
|
ce2f7e8
| 1,208,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java
|
SWT
|
1,610 | 228,287 |
Bug 228287 [Accessibility] Link is not accessible on Leopard
|
Link is not accessible on Leopard. The role comes through (hyperlink) but the text and the links are not read.
|
2008-04-22 17:14:05
| 1,208,900,000 |
resolved fixed
|
ab04bfe
| 1,208,970,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,611 | 226,016 |
Bug 226016 BIDI3.4: Last two characters in BIDI text are not shaped correctly
| null |
2008-04-07 14:10:56
| 1,207,590,000 |
closed fixed
|
c6273c6
| 1,208,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,612 | 225,677 |
Bug 225677 Random crashes attributable to Safari
|
Whenever I use the internal browser I often end up getting crashes at random moments. Most of the time these crashes occur after I have stopped using the browser and I've closed it, so I suspect there's some cleanup that's not happening properly. The stack traces are always similiar, WebDocumentLoaderMac::setDataSource is always the final native call in these crashes. I'm attaching a stack trace below...
|
2008-04-03 20:55:28
| 1,207,270,000 |
resolved fixed
|
b2efc2a
| 1,208,890,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT Browser/cocoa/org/eclipse/swt/browser/Safari.java
|
SWT
|
1,613 | 225,975 |
Bug 225975 SWT Table: PaintItem events not sent for items with empty text on Mac OS X
| null |
2008-04-07 10:51:31
| 1,207,580,000 |
resolved fixed
|
f1b82b7
| 1,208,550,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,614 | 227,597 |
Bug 227597 BIDI: owner draw: tool tips don't work with BIDI
|
N2008040417-2000. In the upcoming build JDT now has support to render BIDI string labels (with the special chars). This also works when colored labels are enabled, however, the tool tip is not honoring those special chars and hence the tool tip is still broken. Works if colored labels are disabled.
|
2008-04-17 12:42:03
| 1,208,450,000 |
resolved fixed
|
ef5c191
| 1,208,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,615 | 220,471 |
Bug 220471 [Accessibility] Editable Combo is not accessible on Leopard
|
I20080207-1530 - Carbon VoiceOver does not read editable Combos on OS X 10.5 Leopard. VO just says "combo box blank" when encountering an editable Combo that contains some text. Read-only Combos are read correctly.
|
2008-02-26 16:38:54
| 1,204,060,000 |
resolved fixed
|
381bf83
| 1,208,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java
|
SWT
|
1,616 | 210,028 |
Bug 210028 [mac] screenshot tool does not capture multiple displays properly
|
Using Mylyn's 'Capture Desktop' feature, one of my displays is drawn over top the other.
|
2007-11-15 16:20:22
| 1,195,160,000 |
resolved fixed
|
26a1f72
| 1,208,470,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,617 | 224,122 |
Bug 224122 Opening a modal dialog while an ON_TOP shell is active should activate the dialog
| null |
2008-03-26 11:17:29
| 1,206,540,000 |
resolved fixed
|
fe69c2c
| 1,208,460,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,618 | 226,363 |
Bug 226363 BIDI3.4:HCG TreeColumn has wrong BIDI alignment with style SWT.NONE
| null |
2008-04-09 16:30:08
| 1,207,770,000 |
resolved fixed
|
c0cb993
| 1,208,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java
|
SWT
|
1,619 | 227,411 |
Bug 227411 Controls in shell blocked by a modal shell still scroll via the scroll wheel
|
I20080415-1646 The following snippet shows the problem. When the shells are up, click on the shell underneith. Note that it doesn't get focus. Now (while the mouse is still over this bottom shell) use the scroll the scrollwheel. It should scroll. SYSTEM_MODAL causes the same behaviour. I cant reproduce this behaviour on Windows or in other OS X applications with Modal dialogs (Safari File->Export for instance) import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; public class ScrollTest { /** * @param args */ public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setSize(100, 100); Text t = new Text(shell, SWT.V_SCROLL); t.setText("Line\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\nLine\n"); shell.open(); Shell another = new Shell(shell, SWT.APPLICATION_MODAL); another.setLayout(new FillLayout()); another.pack(); Label l = new Label(another, SWT.NONE); l.setText("Yup."); another.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2008-04-16 15:32:17
| 1,208,370,000 |
resolved fixed
|
be6f344
| 1,208,390,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,620 | 174,014 |
Bug 174014 GC.isClipped() always returns false in advanced graphics mode
|
The GC.isClipped() method in Windows doesn't check if GDI+ is enabled as setClipping() and getClipping() do.
|
2007-02-13 11:11:51
| 1,171,380,000 |
resolved fixed
|
53ff3be
| 1,208,380,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,621 | 73,390 |
Bug 73390 Tooltips not shown for some widgets
|
On RedHat 9 and SuSE tooltips are not displayed in predictable or consistent manner in StyledText and Tree controls (possibly others). When mouse hovers over tree item whose text is too long to fit in the Tree control horizontally - tooltip must be displayed with full item's text. This happens only occasionaly on these platoforms. The same with StyledText. When there are some regions that must display tootips (not the entire Styledtext widget), these tooltips also displayed *very* rarely.
|
2004-09-07 13:39:03
| 1,094,580,000 |
resolved fixed
|
b3f5c32
| 1,208,370,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/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,622 | 223,512 |
Bug 223512 [CCombo] dropdown does not move when window is dragged
| null |
2008-03-21 13:21:50
| 1,206,120,000 |
resolved fixed
|
340ab48
| 1,208,290,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
1,623 | 226,229 |
Bug 226229 Carbon Text widgets cannot be properly center-aligned when style is SWT.SEARCH
|
It appears that when the style is SWT.SEARCH, there is extra padding that is applied to the height of the widget which doesn't seem to be very useful. I have a snippet and a patch.
|
2008-04-09 03:07:20
| 1,207,720,000 |
resolved fixed
|
7d1fcf9
| 1,208,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,624 | 223,015 |
Bug 223015 Combo height on Linux is too small
| null |
2008-03-17 17:38:04
| 1,205,790,000 |
resolved fixed
|
3c4a8b6
| 1,208,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
1,625 | 216,503 |
Bug 216503 MouseEnter always preceded by MouseMove
|
- run the ControlExample, go to any tab - turn on listeners for MouseEnter, MouseExit and MouseMove - move the pointer into an example control on the page -> the initial event sequence always goes MouseMove then MouseEnter, not vice versa
|
2008-01-24 16:03:42
| 1,201,210,000 |
resolved fixed
|
2c83c15
| 1,208,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,626 | 169,839 |
Bug 169839 [CellEditors] TableViewer Text controls don't scroll text on OSX
|
When entering long Strings into a Text control in a Table, the Text control always just shows the first characters instead of scrolling like the Text control does in other contexts (and in the TableViewer on other platforms).
|
2007-01-08 10:07:54
| 1,168,270,000 |
resolved fixed
|
d76a5ee
| 1,208,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,627 | 226,022 |
Bug 226022 Compiler warnings in N20080406-0200
|
1. WARNING in /builds/N200804062000/src/plugins/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java (at line 2811) public int EnumFontFamExProc(int lpelfe, int lpntme, int FontType, int lParam) { The method EnumFontFamExProc(int, int, int, int) from the type new Object(){} is never used locally
|
2008-04-07 14:26:15
| 1,207,590,000 |
resolved fixed
|
c0bbc0f
| 1,208,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,628 | 36,729 |
Bug 36729 File deleted by unexpected drag and drop
|
Here is a strange scenario in which a file is deleted when it is selected. 1) Open the Java Browsing Perspective 2) Open the Package Explorer and place it on the far right of the editor 3) In the Package Explorer, expand a project that is shared with CVS so a shared file is visible 4) Edit this file and make a change 5) Team>Sychronize the file. 6) Make the Sync view a fast view such that the file from step 3 is visible in the Package Explorer while the sync view is open 7) In the sync view, modify the file but DON'T save it. 8) Click on the file in the packages explorer. The sync view will lose focus and the user is prompted to save the changes in the sync view. 9) Say No when asked to save the changes 10) File selected in step 8 is deleted
|
2003-04-21 15:46:53
| 1,050,950,000 |
resolved fixed
|
e21dc3e
| 1,208,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,629 | 158,243 |
Bug 158243 Background for read only Text objects is wrong in dialogs.
|
Look at any of the error messages at the top of any Property Page, the background is white but should be the striped aqua background. The fix is simple really, since these controls use HITextView all you have to do is call HITextViewSetBackgroundColor with null as the color param. I would presume SWT could do this on the OS X implementation when setBackground is called with null as the color, and then the ImageAndMessageArea could call setBackground(null). I made the changes locally and it seems to fix the problem just fine.
|
2006-09-21 20:06:53
| 1,158,880,000 |
resolved fixed
|
c79dd09
| 1,207,950,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,630 | 225,527 |
Bug 225527 rendering problems after removing owner listeners
| null |
2008-04-03 06:54:29
| 1,207,220,000 |
resolved fixed
|
6f5c054
| 1,207,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
1,631 | 226,747 |
Bug 226747 CCombo arrow button not centered
| null |
2008-04-11 15:01:43
| 1,207,940,000 |
resolved fixed
|
9da76fa
| 1,207,940,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java
|
SWT
|
1,632 | 197,238 |
Bug 197238 UML causing stack overflow
|
Build ID: n/a Steps To Reproduce: use the latest UML distro from eclipse website and enable view. it will cause eclipse to have a stack overflow. a clean launch will not reset eclipse so you will have to uninstall eclipse and reinstall More information: stack overflow from terminal: mbp:~ chris$ Exception in thread "Thread-2" java.lang.StackOverflowError at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:216) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1495) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1519) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1504) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:825) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1029) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:137) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:363) at org.eclipse.swt.widgets.Display.controlProc(Display.java:835) at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:216) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1495) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1519)Invalid memory access of location 0000004d eip=917f4111 at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1504) at org.eclipse.swt.widgets.Control.drawWidget(Control.java:825) at org.eclipse.swt.widgets.Widget.kEventControlDraw(Widget.java:1029) at org.eclipse.swt.widgets.Canvas.kEventControlDraw(Canvas.java:137) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:363) at org.eclipse.swt.widgets.Display.controlProc(Display.java:835) at org.eclipse.swt.internal.carbon.OS.HIViewRender(Native Method) at org.eclipse.swt.widgets.Control.update(Control.java:3929) at org.eclipse.swt.widgets.Control.update(Control.java:3923) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.getDrawBuffer(SDWidget.java:1145) at org.eclipse.hyades.uml2sd.ui.view.SDWidget.drawContents(SDWidget.java:1242) at org.eclipse.hyades.uml2sd.ui.view.ScrollView$7.paintControl(ScrollView.java:143)
|
2007-07-20 00:35:18
| 1,184,910,000 |
resolved fixed
|
fc5ae94
| 1,207,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,633 | 177,368 |
Bug 177368 Display.getCursorControl returning null for complex Xlib widget on Eclipse/Gtk
|
Build ID: M20070212-1330 Steps To Reproduce: 1. We have a set of existing widgets created using Xlib which have child windows. 2. We create an SWT control representing the top-level widget and use GtkSocket/plug to parent our widget in the SWT control. 3. If we create a viewpart with this control and try dragging another view over this view, then the cursor will change to the cursor that appears when you drag a view over the desktop. Stepping through the code reveals that when Display.getCursorControl() is called from DragUtil.java, the result is null, so Eclipse thinks we've moved outside the bounds of the Eclipse window. More information: I did some investigation on the problem and noticed that getCursorControl is calling gdk_window_at_pointer to get the GdkWindow that the mouse pointer is currently over. Unfortunately, the child Xlib windows are "blocking" the parent GdkWindow from being seen, so gdk_window_at_pointer is returning 0. I experimented with using gdk_window_foreign_new on all the child windows, so that every window in the embedded widget is represented by a GdkWindow. However, this causes a problem when getCursorControl attempts to lookup a GtkWidget handle for the GdkWindow returned by gdk_window_at_pointer. It wouldn't be practical for us to create a GtkWidget for every child window. What I propose is: There is logic already for where the cursor is over a child GtkWidget but that widget isn't directly represented by an SWT control. In that case, getCursorControl will walk up the tree until it finds the top level GtkWidget that is represented by a Java control. It's this Java/SWT control that gets returned. We should extend the tree walking logic, so that we can work up the tree from an Xlib window until we find a parent GdkWindow that has an associated GtkWidget and then continue walking until we find the associated SWT control. That way, embedding foreign controls should work as well as it does in Windows. Here is some possible code that would do the above: org.eclipse.swt.Control getCursorControl() { int handle = OS.getCursorControlHandle(); //walk up the window tree to find the first one who's created by SWT. //We have to walk up here for that there are cases the application could create //child GtkWidget under an SWT control from JNI code, such as GtkSocket. for( ; handle != 0; handle = OS.GetParent( handle ) ) { org.eclipse.swt.Widget widget = Display.findWidget( handle ); if( widget != null )return (Control)widget; } return null; } C code for OS.getCursorControlHandle(): Window GetParentWindow( Display *display, Window xid ) { Window root = 0, parent = 0, *children = 0; unsigned int nchildren = 0; if( !XQueryTree( display, xid, &root, &parent, &children, &nchildren ) )return 0; if( children )XFree( children ); return parent; } GtkWidget *GtkWidgetFromWindow( Window xid ) { GdkWindow *gdk_window = gdk_window_lookup( xid ); if( !gdk_window )return NULL; GtkWidget *widget; gdk_window_get_user_data( gdk_window, (void **)&widget ); return widget; } extern "C" jint Java_com_ibm_yourpackage_yourclass_getCursorControlHandle() { unsigned int mask; GtkWidget *widget = NULL; int root_x, root_y, x, y; Window root = None, parent, child, grand_child; //1. to avoid crash from an X error gdk_error_trap_push(); //2. use XQueryPointer and XTranslateCoordinates to find the smallest cursor window root = XDefaultRootWindow(gdk_display); if( !XQueryPointer( gdk_display, root, &root, &child, &root_x, &root_y, &x, &y, &mask ) ) goto lExit; for( (parent = root, x = root_x, y = root_y); child != None ; parent = child, child = grand_child ) { if( !XTranslateCoordinates( gdk_display, parent, child, x, y, &x, &y, &grand_child ) ) goto lExit; } child = parent; //3, walk up the ancestors of the cursor window, to find the GtkWidget. for( ; child && child != root; child = GetParentWindow( gdk_display, child ) ) { widget = GtkWidgetFromWindow( child ); if( widget )break; } lExit: gdk_error_trap_pop(); return (jint)widget; }
|
2007-03-14 12:40:06
| 1,173,890,000 |
resolved fixed
|
11d9126
| 1,207,930,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
|
1,634 | 187,036 |
Bug 187036 [Workbench] TVT33:TCT[Workbench] 159: ar: 13.001120 Tool tips text does not have RTL reading order
|
OS: Windows Build date: 05112007 Component Name: CDT Blocking: No Tester Name: Noha Steps to recreate the problem: Create a new workspace. Switch to the C/C++ Perspective: from the main menu go to Window -> Open Perspective -> Other and select C/C++ Problem description: The tool tips text such as 'New C/C++ Project' does not have RTL reading order, however when I click anywhere else such as clicking on any of the main menus and then go back to the tool tips they become RTL enabled. As discussed, this is probably a Platform/Base problem. Thanks! Vivian Hi, Updating with screen shots. This is a general problem for all tooltips (including workbench toolbar buttons and view's local toolbar buttons). The switching reading order behavior happens to all strings with Engish mixed in Bidi words. Platform UI please take a look. This article was reassigned from Category:''TVT Testcases''.
|
2007-05-15 11:51:02
| 1,179,240,000 |
resolved fixed
|
7957e07
| 1,207,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
1,635 | 143,358 |
Bug 143358 Tree items array don't shrink correctly
|
build 3.2 RC5 In Tree.setItemCount (TreeItem parentItem, int count) the code computes a new shrinked array but doesn't assgined it. Here: //TODO - move shrink to paint event // shrink items array int lastIndex = items.length; for (int i=items.length; i>0; i--) { if (items [i-1] != null) { lastIndex = i; break; } } if (lastIndex < items.length - 4) { int length = Math.max (4, (lastIndex + 3) / 4 * 4); TreeItem [] newItems = new TreeItem [length]; System.arraycopy(items, 0, newItems, 0, Math.min(items.length, lastIndex)); } Is is missing a item = newItems; after the last system array copy. The GTK apparently doesn't shrink the array at all.
|
2006-05-23 18:54:54
| 1,148,420,000 |
resolved fixed
|
764d043
| 1,207,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,636 | 125,866 |
Bug 125866 need more parent.indexOf() == -1 checks in TableItem
|
There's only one place in TableItem that checks the results of parent.indexOf(..) to see whether it's valid before using it, and that's setImage(..). The three other calls to the method do not check if it's valid. These methods are: getBounds(int) getImageBounds(int) redraw(int) This is bad because, in theory, indexOf could return -1. These functions increment the index returned by one and use it to call the OS. I've had getBounds(int) return bounds of the column header on OSX on occasion and have guessed it's due to this (I don't have OSX to test on, only reports from users) Using SWT Build 3221
|
2006-01-31 11:52:44
| 1,138,730,000 |
resolved fixed
|
de3efc6
| 1,207,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TableItem.java
|
SWT
|
1,637 | 116,748 |
Bug 116748 Custom Combo: drop down menu is hard to use
|
The drop down menu of the Custom Combo uses a List widget which has a selection behavior that is not suitable for menus because you have to hit the text in order to select an item. Clicking in the white space after the text just dismissed the menu but doesn't select the item. I suggest to use a Table instead of a List widget.
|
2005-11-16 18:29:48
| 1,132,180,000 |
resolved fixed
|
61c9c3d
| 1,207,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java
|
SWT
|
1,638 | 226,469 |
Bug 226469 Successfully to setFocus to a control while getFocusControl return null
| null |
2008-04-10 06:11:01
| 1,207,820,000 |
resolved fixed
|
62648eb
| 1,207,850,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,639 | 42,485 |
Bug 42485 Mouse cursor does not hide when typing on Mac OS X
|
Eclipse 3.0 M3 Build id: 200308281813 Mac OS X 10.2.6 Open any text editing view and start typing. The mouse cursor still remains visible. The correct behavior on Mac OS is to hide the mouse cursor while you are typing so that the cursor doesn't get in the way.
|
2003-09-03 17:04:58
| 1,062,620,000 |
resolved fixed
|
613aaf4
| 1,207,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,640 | 130,470 |
Bug 130470 [Tree] Selection-Rect changes on expanding TreeItem causes pixel corruption
|
I am not sure wether this is a Windows Bug. When expanding the Root treeitem on this snippet, I can see the Selection-Rectangle expand by some pixels: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Tree tree = new Tree(shell, SWT.BORDER); TreeItem root = new TreeItem(tree, SWT.NONE); root.setText("Root"); TreeItem child = new TreeItem(root, SWT.NONE); child.setText("Hello World"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } I am running with Manifest. Can also reproduce with M4. Ben
|
2006-03-05 14:02:06
| 1,141,590,000 |
resolved fixed
|
5bb9869
| 1,207,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,641 | 153,365 |
Bug 153365 DirectoryDialog's setFilterPath() has no effect
|
The DirectoryDialog's setFilterPath() has no effect on the Mac (Eclipse 3.1.1 and 3.2). Instead of showing the specified directory, the dialog presents the previously chosen directory. An SWT newsgroup poster reported the same situation on Linux. However, things seem fine on Windows. Steve Northover replied on the newsgroup saying that it looked like the method was never implemented on the Mac.
|
2006-08-09 17:55:32
| 1,155,160,000 |
resolved fixed
|
2e1b2b2
| 1,207,760,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
1,642 | 196,676 |
Bug 196676 [consistency] Link does not fire double-click events
|
3.3 - see this in the ControlExample - on other platforms this event does fire
|
2007-07-16 12:00:02
| 1,184,600,000 |
resolved fixed
|
5869dd8
| 1,207,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
1,643 | 225,973 |
Bug 225973 Cant attach Menu to a Link widget
|
setMenu() has no effect, listeners to catch mouse events to display the menu that way are never called
|
2008-04-07 10:47:27
| 1,207,580,000 |
resolved fixed
|
4f9bd13
| 1,207,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
1,644 | 224,941 |
Bug 224941 Esc deactivates parent shell if SWT.TOOL is used
|
I20080330-1350 - press Ctrl+Shift+L (Key Assist) - press Esc => expected: workbench window becomes active again => was: the next OS window on the MRU stack comes to front (as if I pressed Alt+Tab)
|
2008-03-31 12:45:14
| 1,206,980,000 |
resolved fixed
|
90fa3bc
| 1,207,680,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,645 | 211,181 |
Bug 211181 Help Browser crashes on Windows 2000
|
Build ID: M20071023-1652 Steps To Reproduce: 1. Start Eclipse on Windows 2000 (inside VMWare Player on Linux) 2. Select Help -> Help Contents 3. As soon as the mouse enter the browser it will crash. This error message is printed on the Console: [INFO] HttpServer - Version Jetty/5.1.x [INFO] Container - Started org.mortbay.jetty.servlet.ServletHandler@4b9101 [INFO] Container - Started HttpContext[/help,/help] [INFO] SocketListener - Started SocketListener on 0.0.0.0:51545 [INFO] Container - Started org.mortbay.http.HttpServer@ee5d13 Exception in thread "Help Browser UI" java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.browser.IE.handleMouseEvent(IE.java:807) at org.eclipse.swt.browser.IE$2.handleEvent(IE.java:155) at org.eclipse.swt.ole.win32.OleEventTable.sendEvent(OleEventTable.java:55) at org.eclipse.swt.ole.win32.OleEventSink.notifyListener(OleEventSink.java:144) at org.eclipse.swt.ole.win32.OleEventSink.Invoke(OleEventSink.java:119) at org.eclipse.swt.ole.win32.OleEventSink.access$1(OleEventSink.java:96) at org.eclipse.swt.ole.win32.OleEventSink$1.method6(OleEventSink.java:70) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:119) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2265) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3291) at org.eclipse.help.ui.internal.browser.embedded.EmbeddedBrowserAdapter$UIThread2.run(EmbeddedBrowserAdapter.java:40) I made a quick fix in IE.java: void handleMouseEvent (OleEvent e) { + if (e.arguments == null || e.arguments.length < 1) + return; Variant arg = e.arguments[0]; Which seems to work but there is probably a better fix.
|
2007-11-28 04:45:42
| 1,196,240,000 |
resolved fixed
|
428dd2f
| 1,207,680,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
1,646 | 225,946 |
Bug 225946 TOGGLE Buttons inherit background with SWT.INHERIT_DEFAULT
|
Set a custom background color and background mode SWT.INHERIT_DEFAULT on a composite that contains PUSH and TOGGLE buttons. Although both button types look the same, the TOGGLE buttons inherit the background color of the composite but PUSH buttons do not. This will probably not happen with Windows, as Windows buttons can not take a background color.
|
2008-04-07 06:11:53
| 1,207,560,000 |
resolved fixed
|
6fed2ee
| 1,207,680,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
|
SWT
|
1,647 | 220,465 |
Bug 220465 [Accessibility] StyledText is not accessible on Leopard
|
I20080207-1530 - Carbon VoiceOver does not read StyledText on OS X 10.5 Leopard. VO just says "text blank" when encountering a StyledText.
|
2008-02-26 16:24:34
| 1,204,060,000 |
resolved fixed
|
490158b
| 1,207,600,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
1,648 | 225,997 |
Bug 225997 TextLayout font seems not the be the system font
|
3.4 M6. When custom drawing table items it seems that the font used in the TextLayout isn't the same as originally used by the Table (item). This is hard to verify as both, TextLayout.getFont() and Table(Item).getFont() return 'null'. However, if a paint listener is added and the item string painted, then a different font is used. It works on Windows but not on Linux-GTK.
|
2008-04-07 12:55:40
| 1,207,590,000 |
resolved fixed
|
e2edffd
| 1,207,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,649 | 192,646 |
Bug 192646 TextLayout implementation on VISTA platform cannot correctly render some gb18030 characters(Mongolian Baiti, Microsoft Yi Baiti etc)
|
Build ID: M20060629-1905 Steps To Reproduce: 1.Create a shell. 2.Create a TextLayout instance and set some gb18030 characters as its text. 3.Run the application and find that these characters cannot display correctly. More information: The code snippet used to reproduce this problem: /** * @param args */ public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setSize(358, 217); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { TextLayout layout = new TextLayout(display); event.gc.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); String text = "sss \u1820, \u1821, \ua000, \ua001"; // event.gc.drawText(text, 0, 0); layout.setText(text); layout.setWidth(shell.getBounds().width); layout.draw(event.gc, 0, 0); layout.dispose(); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); }
|
2007-06-14 08:04:05
| 1,181,820,000 |
resolved fixed
|
5f75e2d
| 1,207,340,000 |
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
|
1,650 | 225,593 |
Bug 225593 org.eclipse.swt.events.LineStyleEvent doesn't keep the style when multiple listener are listening
|
Build ID: M20071023-1652 Steps To Reproduce: 1. Create a StyleText widget 2. Add more than 1 LineStyleListener 3. The event.styles attribute is always null but should keep styles that have been set by other listener triggered before. Without that, it seems difficult to add several styleRanges from several listeners. More information: in LineStyleEvent constructor, we should have 1 more line : styles = e.styles;
|
2008-04-03 12:12:10
| 1,207,240,000 |
resolved fixed
|
40fe2b7
| 1,207,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java
|
SWT
|
1,651 | 225,329 |
Bug 225329 Owner draw: gc in paint doesn't have foreground color set
| null |
2008-04-02 09:52:12
| 1,207,140,000 |
resolved fixed
|
56f156a
| 1,207,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
1,652 | 207,909 |
Bug 207909 [carbon SWT] ON_TOP shell can not be hidden when parent shell is minimized
|
Build ID: Eclipse 3.3.1, Mac OS X 10.5, No test on Eclipse 3.4. Steps To Reproduce: 1. Run the snippet code from Eclipse PDE; 2. Click the green shell, be sure the focus on the "ON_TOP" shell (green background color); 3. Mouse hovering onto the minimized button of bottom shell (this is parent shell); 4. Click the minimize button, The parent shell is minimized to Dock bar; 5. But the "ON_TOP" shell is still stay on the screen. Run this code on Windows, the "ON_TOP" shell will be hidden following the parent shell if it's minimized. If remove the ON_TOP style while create the topShell in the below code, this shell will be hidden since parent is minimized. More information: Snippet code: public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display, SWT.BORDER | SWT.MAX |SWT.MIN | SWT.CLOSE); shell.setSize(500,300); shell.setLayout(new FillLayout()); Shell topShell = new Shell(shell,SWT.ON_TOP | SWT.NO_TRIM); topShell.pack(); topShell.setBounds(50,50,50,300); topShell.setVisible(true); topShell.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_GREEN)); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); }
|
2007-10-30 02:10:30
| 1,193,720,000 |
resolved fixed
|
7c5ffc1
| 1,207,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
|
SWT
|
1,653 | 225,440 |
Bug 225440 MenuDetect events sent with (0, 0) coordinates
| null |
2008-04-02 17:50:21
| 1,207,170,000 |
resolved fixed
|
85b9814
| 1,207,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,654 | 225,263 |
Bug 225263 Opening a fast view crashes Eclipse
|
1. Make a view a fast view. 2. Click on the new fast view's icon to expand the view. 3. Eclipse crashes with a dump to the console similiar to this: 2008-04-02 00:29:27.910 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x23a50680 of class NSException autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x954f7378 0x90a1162e 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.915 java[35545:80f] An uncaught exception was raised 2008-04-02 00:29:27.915 java[35545:80f] *** -[NSCFArray insertObject:atIndex:]: index (17) beyond bounds (17) 2008-04-02 00:29:27.915 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x23a506f0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x954fb02a 0x90a8b1ce 0x9539d0fb 0x90a11aec 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.916 java[35545:80f] *** _NSAutoreleaseNoPool(): Object 0x168bc0 of class NSCFData autoreleased with no pool in place - just leaking Stack: (0x955e312f 0x954efec2 0x955042a5 0x95503e81 0x90a8b1e2 0x9539d0fb 0x90a11aec 0x90a11d18 0x513e 0x258a) 2008-04-02 00:29:27.916 java[35545:80f] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFArray insertObject:atIndex:]: index (17) beyond bounds (17)' 2008-04-02 00:29:27.917 java[35545:80f] Stack: ( 2426974795, 2503594235, 2426974251, 2426974314, 2505520095, 2504987356, 2448524299, 511010808, 56121777 )
|
2008-04-02 03:44:01
| 1,207,120,000 |
resolved fixed
|
dff17e9
| 1,207,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,655 | 221,411 |
Bug 221411 [Accessibility] Leopard: VoiceOver doesn't follow focus if Browser is in Shell
| null |
2008-03-04 16:58:48
| 1,204,670,000 |
resolved fixed
|
3d06bb7
| 1,207,160,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java
|
SWT
|
1,656 | 210,854 |
Bug 210854 setSize on Spinner doesn't have an effect
|
As Spinner is a composite, setSize doesn't appear to resize the view. However, setting FILL_HORIZONTAL and FILL_VERTICAL do appear to work. Steps to reproduce: Run ControlExample Go to Spinner tab Click on '10x10', '50x50' or '100x100' - no effect seen Cilck on Horizontal Fill or Vertical Fill - spinner expands to full size of view
|
2007-11-25 07:28:09
| 1,195,990,000 |
resolved fixed
|
d0b78d7
| 1,207,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
1,657 | 224,642 |
Bug 224642 Scrolled form does not resize child controls when the form is resized
|
Build ID: I20070625-1500 Steps To Reproduce: 1. Use MultiPageEditorPart 2. In a form page create a few controls on a composite that is parented by the scrolled form. 3. Resize the editor. The controls do not get resized , but rather the editor covers them up as you shrink it. 4. Would expect the controls to be resized to fit the new size of the scrolled composite. More information: It seems to be in the ScolledCompositeLayout and ScrolledComposite classes. The minHeight gets calculated when the composite gets drawn and gets cached and never gets changed. So once the minHeight of the editor becomes < the min height composite , scroll bars appear on the editor. The layout takes the Math#max() of the minHeight of sc or the actual height. If the min height is > , then the scroll bars appear. I think that the composite should resize all of the children appropriately. This produces a 508 accessibility problem. For example , if you are using a table , and it is being partially covered up by the editor , and scroll down through it via keyboard. The focus leaves the viewable area.
|
2008-03-28 11:13:31
| 1,206,720,000 |
resolved wontfix
|
f18e9dd
| 1,207,110,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet296.java
|
SWT
|
1,658 | 221,268 |
Bug 221268 Running operation that continuously refreshes/updates SWT Browser it does not stay minimized
|
Build ID: 3.3 Steps To Reproduce: When Running operation that continuously refreshes/updates SWT Browser it does not stay minimized. When you minimize it , it again pops up no matter how many times you minimize. It happens when the refresh operation is continously happening in screen. The instance of browse is created by following:- Browser browser = new Browser(composite, SWT.MOZILLA); This issue is only happening in windows. More information:
|
2008-03-04 01:53:53
| 1,204,610,000 |
resolved fixed
|
e60a3ad
| 1,207,090,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,659 | 181,864 |
Bug 181864 [Browser] crash when disposed in changing callback
| null |
2007-04-10 19:11:24
| 1,176,250,000 |
resolved fixed
|
26b9045
| 1,207,080,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
1,660 | 224,462 |
Bug 224462 [Browser-Mozilla] Save-as window shown when disposing the browser during a location changing event
| null |
2008-03-27 16:18:39
| 1,206,650,000 |
resolved fixed
|
70407a3
| 1,207,080,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.