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 |
---|---|---|---|---|---|---|---|---|---|---|
661 | 282,229 |
Bug 282229 The scroll in any editor is painfully slow on OS X
|
Build ID: I20090611-1540 Steps To Reproduce: 1. Create Java project 2. Create long Java class 3. Try to scroll. More information:
|
2009-07-01 22:07:48
| 1,246,500,000 |
resolved fixed
|
bd06d2d
| 1,272,940,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
662 | 310,648 |
Bug 310648 Allow arrow up/down keys to open dropdown-menu in toolitem
|
Happens in 3.6 HEAD Cocoa 1) Run the snippet given below. 2) Traverse to the toolitem with a dropdown menu. 3) Now, use the arrow-down or arrow-up key to open the drop-down menu. result: the focus traverses to the next toolitem. expected: The drop-down menu opens in windows and gtk. Same behavior can be seen in the eclipse toolbar which has toolItems with dropdown menu. testcase: (modified snippet47) public class Snippet47 { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); Image image = new Image (display, 20, 20); Color color = display.getSystemColor (SWT.COLOR_BLUE); GC gc = new GC (image); gc.setBackground (color); gc.fillRectangle (image.getBounds ()); gc.dispose (); final ToolBar bar = new ToolBar (shell, SWT.BORDER | SWT.FLAT); bar.setSize (200, 32); for (int i=0; i<4; i++) { ToolItem item = new ToolItem (bar, 0); item.setImage (image); } final Menu menu = new Menu (shell, SWT.POP_UP); for (int i=0; i<8; i++) { MenuItem item = new MenuItem (menu, SWT.PUSH); item.setText ("Item " + i); } final ToolItem item = new ToolItem (bar, SWT.DROP_DOWN); item.setImage(image); item.addListener (SWT.Selection, new Listener () { public void handleEvent (Event event) { if (event.detail == SWT.ARROW) { Rectangle rect = item.getBounds (); Point pt = new Point (rect.x, rect.y + rect.height); pt = bar.toDisplay (pt); menu.setLocation (pt.x, pt.y); menu.setVisible (true); } } }); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } image.dispose (); display.dispose (); } }
|
2010-04-27 11:07:52
| 1,272,380,000 |
resolved fixed
|
dd6239b
| 1,272,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
663 | 305,433 |
Bug 305433 [Gtk] unexpected MouseExit event for Shell causes bad interaction with JFace ToolTip on 3.6
|
I have noticed that when I click the "i" button the displayed tooltip is often times hidden when I try to navigate to it to scroll or to press the Learn more link. Suggestion to improve interaction: * Only hide tooltip when moving the mouse over the tooltip and out again. Do not hide if the mouse is moved over other controls but has not entered the tooltip, yet. * Hide the tooltip on pressing ESC.
|
2010-03-10 19:06:19
| 1,268,270,000 |
resolved fixed
|
db03f12
| 1,272,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
664 | 310,932 |
Bug 310932 Poor table scrolling performance on motif aix ppc platform due to multiple XQueryColor calls per widget
|
Build Identifier: 20090619-0625 Using the OpenText's (www.opentext.com) remote connection technology called ExceedOnDemand, we run an eclipse rcp application which has scroll performance problems (15-30 seconds on a 5000 row table) which make it unusable. Even natively, the performance is much slower than linux/gtk. After analyzing some traces, the OpenText developers had the following comments: 1. QueryColors is being called far too often. I dug into the SWT code, and this is arguably a bug in SWT. Please open a bug report against SWT and try to get them to fix it -- at the very least, they should be caching XQueryColor replies instead of calling a fresh XQueryColor (two, actually) per widget (table cell in this case). 2. XSync is also being called too often, but it's not as bad as QueryColors. Again, SWT/Motif only. Any chance of Reproducible: Always Steps to Reproduce: 1. Create a plugin project - Eclipse 3.5 - create an RCP application - choose RCP application with view template 2. Replace the View.java with the class at the end of this description to create a large table 3. Run and compare scroll performance between motif/ppc and linux/gtk The performance gets even worse when remote technology is capturing the graphics commands and scroll performance is 15x worse due to the multiple XQueryColor calls. Code for View.java: package swtexample; import org.eclipse.jface.viewers.IStructuredContentProvider; import org.eclipse.jface.viewers.ITableLabelProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.jface.viewers.TableViewer; import org.eclipse.jface.viewers.Viewer; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.ui.part.ViewPart; public class View extends ViewPart { public static final String ID = "swtexample.view"; private TableViewer viewer; private int rows = 6000; private int columns = 50; /** * The content provider class is responsible for providing objects to the * view. It can wrap existing objects in adapters or simply return objects * as-is. These objects may be sensitive to the current input of the view, * or ignore it and always show the same content (like Task List, for * example). */ class ViewContentProvider implements IStructuredContentProvider { public void inputChanged(Viewer v, Object oldInput, Object newInput) { } public void dispose() { } public Object[] getElements(Object parent) { String[][] data = new String[rows][columns]; for (int r = 0; r < rows; r++) { for (int c = 0; c < columns; c++) { String rowText = new Integer(r).toString(); String columnText = new Integer(c).toString(); data[r][c]=new String("dataForRow"+rowText+"AndColumn"+columnText); } } return data; } } class ViewLabelProvider extends LabelProvider implements ITableLabelProvider { public String getColumnText(Object obj, int index) { Object[] o; if (obj instanceof Object[]) { o = (Object[]) obj; Object singleO = (String) o[index]; return getText(singleO); } return getText(obj); } public Image getColumnImage(Object obj, int index) { return getImage(obj); } public Image getImage(Object obj) { return null; // return PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT); } } /** * This is a callback that will allow us to create the viewer and initialize * it. */ public void createPartControl(Composite parent) { viewer = new TableViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL); for (int i = 0; i < columns; i++) { TableColumn tableColumn = new TableColumn(viewer.getTable(), SWT.LEFT); tableColumn.setText("Column "+i); tableColumn.setWidth(100); } viewer.getTable().setLinesVisible(true); viewer.getTable().setHeaderVisible(true); viewer.setContentProvider(new ViewContentProvider()); viewer.setLabelProvider(new ViewLabelProvider()); viewer.setInput(getViewSite()); } /** * Passing the focus request to the viewer's control. */ public void setFocus() { viewer.getControl().setFocus(); } } 3.
|
2010-04-28 19:18:32
| 1,272,500,000 |
resolved fixed
|
60a955b
| 1,272,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
|
SWT
|
665 | 311,129 |
Bug 311129 [Browser][Mozilla]Code refactoring of Parse method in nsID class
|
Build Identifier: I20080617-2000 The Parse method will create 36 new String objects for each new nsID object. So there will be thousands of temp String objects during the creation of a single browser instance. public nsID(String id) { Parse(id); } public void Parse (String aIDStr) { if (aIDStr == null) throw new Error (); int i = 0; for (; i < 8; i++) m0 = (m0 << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 13; i++) m1 = (short)((m1 << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 18; i++) m2 = (short)((m2 << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 21; i++) m3[0] = (byte)((m3[0] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 23; i++) m3[1] = (byte)((m3[1] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 26; i++) m3[2] = (byte)((m3[2] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 28; i++) m3[3] = (byte)((m3[3] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 30; i++) m3[4] = (byte)((m3[4] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 32; i++) m3[5] = (byte)((m3[5] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 34; i++) m3[6] = (byte)((m3[6] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); for (; i < 36; i++) m3[7] = (byte)((m3[7] << 4) + Integer.parseInt (aIDStr.substring (i, i + 1), 16)); } Could we change it like this? public void Parse(String aIDStr) { if(aIDStr == null) throw new Error (); int i = 0; Integer.parseInt (aIDStr.substring (i, i + 1), 16); for (; i < 8; i++) m0 = (m0 << 4) + Character.digit(aIDStr.charAt(i),16); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 13; i++) m1 = (short)((m1 << 4) + Character.digit(aIDStr.charAt(i),16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 18; i++) m2 = (short)((m2 << 4) + Character.digit(aIDStr.charAt(i),16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 21; i++) m3[0] = (byte)((m3[0] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 23; i++) m3[1] = (byte)((m3[1] << 4) + Character.digit(aIDStr.charAt(i),16)); if (aIDStr.charAt (i++) != '-') throw new Error (); for (; i < 26; i++) m3[2] = (byte)((m3[2] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 28; i++) m3[3] = (byte)((m3[3] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 30; i++) m3[4] = (byte)((m3[4] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 32; i++) m3[5] = (byte)((m3[5] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 34; i++) m3[6] = (byte)((m3[6] << 4) + Character.digit(aIDStr.charAt(i),16)); for (; i < 36; i++) m3[7] = (byte)((m3[7] << 4) + Character.digit(aIDStr.charAt(i),16)); } Reproducible: Always
|
2010-04-29 23:37:39
| 1,272,600,000 |
resolved fixed
|
8bf573e
| 1,272,920,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsID.java
|
SWT
|
666 | 311,216 |
Bug 311216 DirectoryDialog does not remember last selected directory
|
For 3.6m7 I fixed a bug where FileDialogs didn't remember the last selected directory on subsequent calls to open(). DirectoryDialogs have the same bug, and I missed it when I fixed FileDialog. See the original FileDialog bug for steps to reproduce. They apply here, too.
|
2010-04-30 13:15:25
| 1,272,650,000 |
resolved fixed
|
a6f6f0c
| 1,272,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
667 | 311,231 |
Bug 311231 Warnings printed to console when running AccessibleValueExample
| null |
2010-04-30 14:58:19
| 1,272,650,000 |
resolved fixed
|
9d1ef85
| 1,272,910,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java
|
SWT
|
668 | 311,228 |
Bug 311228 Orca always reads first page in CTabFolder
|
1) Open several editors in Eclipse 2) Give focus to the CTabFolder by pressing Ctrl+Shift+Tab 3) Move through the tabs using the arrow keys The title spoken is always for the first page.
|
2010-04-30 14:44:46
| 1,272,650,000 |
resolved fixed
|
7152a68
| 1,272,910,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleObject.java
|
SWT
|
669 | 310,912 |
Bug 310912 orca reads StyledText line twice
|
Ubuntu 10.04 with Assistive Technologies on. Eclipse 3.6M7 candidate. Open a java class. Move the caret from one line to another. Note that orca reads the line twice.
|
2010-04-28 16:44:23
| 1,272,490,000 |
resolved fixed
|
3743459
| 1,272,490,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
670 | 310,707 |
Bug 310707 [64] printing to file twice crashes
|
3.6M7 test build - observed on 64-bit Vista, does not happen on same machine with 32-bit eclipse - have not tried it on 64-bit Windows 7 or XP - open any file in eclipse - invoke File -> Print... - check "Print to File", press Print - enter any name, OK --> file is written, fine - invoke File -> Print... again - "Print to File" is already checked, so just press Print - crash usually happens here -> occasionally it can take a third round for the crash to occur I've repeated this several times but only one hs_* file was written out, I'm not sure why. Its content is: # # An unexpected error has been detected by HotSpot Virtual Machine: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fef91a3eee, pid=3544, tid=3268 # # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.5.0_22-b03 mixed mode) # Problematic frame: # C [WINSPOOL.DRV+0x23eee] # --------------- T H R E A D --------------- Current thread (0x0000000006cde6a0): JavaThread "Printing" [_thread_in_native, id=3268] siginfo: ExceptionCode=0xc0000005, reading address 0x000000000e2605a8 Registers: EAX=0x0000000000000001, EBX=0x000000000038cee0, ECX=0x000000000038cee8, EDX=0x000000000de36900 ESP=0x000000000ecef450, EBP=0x000000000de16d68, ESI=0x0000000000000001, EDI=0x000000000de16d68 EIP=0x000007fef91a3eee, EFLAGS=0x0000000000010206 Top of Stack: (sp=0x000000000ecef450) 0x000000000ecef450: 000000000de36910 000000000de36910 0x000000000ecef460: 0000000000000001 000000000ecef5f0 0x000000000ecef470: 000000000de16d68 000007fef91a64e7 0x000000000ecef480: 0000000000000000 0000000000000000 0x000000000ecef490: 000000000de36250 000000000de16d68 0x000000000ecef4a0: 0000000000000001 000007fef91a6315 0x000000000ecef4b0: 000000000de16d68 000000000de16d68 0x000000000ecef4c0: 0000000000000001 00000000771ef9da 0x000000000ecef4d0: ffffffffe7211227 000007fef91a624a 0x000000000ecef4e0: 000000000de16d68 0000000000000001 0x000000000ecef4f0: 000000000de16d68 0000000000000001 0x000000000ecef500: 000000000ddfe860 000007fefeef687a 0x000000000ecef510: 000000000ddfe860 00000000e4851327 0x000000000ecef520: 0000000000000000 ffffffffe7211227 0x000000000ecef530: 0000000000000000 0000000000000000 0x000000000ecef540: 0000000000000000 0000000000000000 Instructions: (pc=0x000007fef91a3eee) 0x000007fef91a3ede: 48 83 ec 20 48 85 c9 74 2b 48 8d 59 f8 4c 8b 03 0x000007fef91a3eee: 41 81 3c 08 ef be ad de 74 04 33 c0 eb 1b ba 65 Stack: [0x000000000ebf0000,0x000000000ecf0000), sp=0x000000000ecef450, free space=1021k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [WINSPOOL.DRV+0x23eee] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.win32.OS.DeleteDC(J)Z+0 j org.eclipse.swt.printing.Printer.destroy()V+13 j org.eclipse.swt.graphics.Device.dispose()V+54 j org.eclipse.jface.text.TextViewer$11.run()V+13 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) =>0x0000000006cde6a0 JavaThread "Printing" [_thread_in_native, id=3268] 0x0000000006cde950 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=3080] 0x0000000006cde140 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=2880] 0x0000000006cdde90 JavaThread "Worker-3" [_thread_blocked, id=1812] 0x0000000006cdd930 JavaThread "Worker-2" [_thread_blocked, id=4000] 0x0000000006fb4e40 JavaThread "Java indexing" daemon [_thread_blocked, id=3076] 0x0000000005c9f7c0 JavaThread "Worker-1" [_thread_blocked, id=1208] 0x0000000008594990 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=3920] 0x0000000006b409e0 JavaThread "Worker-0" [_thread_blocked, id=4084] 0x00000000068d4220 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=2896] 0x000000000686bc60 JavaThread "Worker-JM" [_thread_blocked, id=3540] 0x00000000068d25d0 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=3520] 0x00000000068d5190 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=2956] 0x00000000069ce020 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=4072] 0x00000000066d4bc0 JavaThread "State Data Manager" daemon [_thread_blocked, id=4032] 0x0000000005b97740 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2456] 0x0000000005b92d90 JavaThread "CompilerThread1" daemon [_thread_blocked, id=3452] 0x0000000005b922f0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3228] 0x0000000005b90280 JavaThread "AdapterThread" daemon [_thread_blocked, id=3848] 0x0000000005b8f510 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1908] 0x0000000000a1f500 JavaThread "Finalizer" daemon [_thread_blocked, id=4092] 0x0000000000a1dc60 JavaThread "Reference Handler" daemon [_thread_blocked, id=2584] 0x000000000021eef0 JavaThread "main" [_thread_in_native, id=2344] Other Threads: 0x0000000000a1db40 VMThread [id=3184] 0x0000000005b90140 WatcherThread [id=3708] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 32704K, used 8040K [0x0000000010120000, 0x0000000012490000, 0x0000000018120000) eden space 29120K, 27% used [0x0000000010120000, 0x00000000108fa278, 0x0000000011d90000) from space 3584K, 0% used [0x0000000011d90000, 0x0000000011d90000, 0x0000000012110000) to space 3584K, 0% used [0x0000000012110000, 0x0000000012110000, 0x0000000012490000) tenured generation total 72396K, used 43437K [0x0000000018120000, 0x000000001c7d3000, 0x0000000028120000) the space 72396K, 59% used [0x0000000018120000, 0x000000001ab8b618, 0x000000001ab8b800, 0x000000001c7d3000) compacting perm gen total 66688K, used 66428K [0x0000000028120000, 0x000000002c240000, 0x0000000038120000) the space 66688K, 99% used [0x0000000028120000, 0x000000002c1ff398, 0x000000002c1ff400, 0x000000002c240000) No shared spaces configured. Dynamic libraries: 0x0000000000400000 - 0x000000000040e000 C:\36M7-64\eclipse\eclipse.exe 0x00000000771c0000 - 0x0000000077346000 C:\Windows\system32\ntdll.dll 0x0000000076f60000 - 0x000000007708d000 C:\Windows\system32\kernel32.dll 0x00000000770f0000 - 0x00000000771bd000 C:\Windows\system32\USER32.dll 0x000007fefeee0000 - 0x000007fefef44000 C:\Windows\system32\GDI32.dll 0x000007fefe970000 - 0x000007fefea78000 C:\Windows\system32\ADVAPI32.dll 0x000007fefeb60000 - 0x000007fefeca3000 C:\Windows\system32\RPCRT4.dll 0x000007fefc0f0000 - 0x000007fefc2e9000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6002.18005_none_1509f8bef40ee4da\COMCTL32.dll 0x000007fefda20000 - 0x000007fefdabc000 C:\Windows\system32\msvcrt.dll 0x000007feff440000 - 0x000007feff4b3000 C:\Windows\system32\SHLWAPI.dll 0x000007fefd9e0000 - 0x000007fefda0d000 C:\Windows\system32\IMM32.DLL 0x000007feff1b0000 - 0x000007feff2b2000 C:\Windows\system32\MSCTF.dll 0x000007fefdca0000 - 0x000007fefdcad000 C:\Windows\system32\LPK.DLL 0x000007fefef50000 - 0x000007fefefea000 C:\Windows\system32\USP10.dll 0x0000000072000000 - 0x0000000072012000 C:\36M7-64\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.0.v20100322-1720\eclipse_1307.dll 0x000007fefcb00000 - 0x000007fefcb0b000 C:\Windows\system32\VERSION.dll 0x000007fefc090000 - 0x000007fefc0e1000 C:\Windows\system32\uxtheme.dll 0x0000000010100000 - 0x0000000010111000 C:\Program Files\Logitech\SetPoint\lgscroll.dll 0x0000000073c40000 - 0x0000000073d09000 C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4016_none_88dc01492fb256de\MSVCR80.dll 0x000007fefc740000 - 0x000007fefc76c000 C:\Windows\system32\NTMARTA.DLL 0x000007fefe910000 - 0x000007fefe965000 C:\Windows\system32\WLDAP32.dll 0x000007fefecb0000 - 0x000007fefecf4000 C:\Windows\system32\WS2_32.dll 0x000007fefda10000 - 0x000007fefda17000 C:\Windows\system32\NSI.dll 0x0000000077360000 - 0x0000000077369000 C:\Windows\system32\PSAPI.DLL 0x000007fefcfe0000 - 0x000007fefcffc000 C:\Windows\system32\SAMLIB.dll 0x000007fefed00000 - 0x000007fefeed8000 C:\Windows\system32\ole32.dll 0x000007fefea80000 - 0x000007fefeb53000 C:\Windows\system32\OLEAUT32.DLL 0x0000000008000000 - 0x0000000008562000 C:\36M7-64\eclipse\jre\bin\server\jvm.dll 0x000007fefbc10000 - 0x000007fefbc49000 C:\Windows\system32\WINMM.dll 0x000007fefbbc0000 - 0x000007fefbc0f000 C:\Windows\system32\OLEACC.dll 0x0000000010000000 - 0x000000001000b000 C:\36M7-64\eclipse\jre\bin\hpi.dll 0x00000000001f0000 - 0x0000000000201000 C:\36M7-64\eclipse\jre\bin\verify.dll 0x00000000003b0000 - 0x00000000003dd000 C:\36M7-64\eclipse\jre\bin\java.dll 0x00000000003e0000 - 0x00000000003f6000 C:\36M7-64\eclipse\jre\bin\zip.dll 0x000007fefc7d0000 - 0x000007fefc818000 C:\Windows\system32\rsaenh.dll 0x000007fefd6a0000 - 0x000007fefd6c6000 C:\Windows\system32\USERENV.dll 0x000007fefd680000 - 0x000007fefd69c000 C:\Windows\system32\Secur32.dll 0x0000000002330000 - 0x000000000234b000 C:\36M7-64\eclipse\jre\bin\net.dll 0x000007fefcab0000 - 0x000007fefcaff000 C:\Windows\system32\mswsock.dll 0x000007fefcb30000 - 0x000007fefcb37000 C:\Windows\System32\wship6.dll 0x000007fefb9b0000 - 0x000007fefb9c3000 C:\Windows\system32\NLAapi.dll 0x000007fefcd40000 - 0x000007fefcd63000 C:\Windows\system32\IPHLPAPI.DLL 0x000007fefccf0000 - 0x000007fefcd35000 C:\Windows\system32\dhcpcsvc.DLL 0x000007fefd000000 - 0x000007fefd03a000 C:\Windows\system32\DNSAPI.dll 0x000007fefd4d0000 - 0x000007fefd4da000 C:\Windows\system32\WINNSI.DLL 0x000007fefccc0000 - 0x000007fefcceb000 C:\Windows\system32\dhcpcsvc6.DLL 0x000007fefa110000 - 0x000007fefa123000 C:\Windows\system32\napinsp.dll 0x000007fef9d90000 - 0x000007fef9da7000 C:\Windows\system32\pnrpnsp.dll 0x000007fefa0c0000 - 0x000007fefa0cb000 C:\Windows\System32\winrnr.dll 0x000007fefc6f0000 - 0x000007fefc6f7000 C:\Windows\System32\wshtcpip.dll 0x000007fefa200000 - 0x000007fefa208000 C:\Windows\system32\rasadhlp.dll 0x0000000002350000 - 0x000000000235c000 C:\36M7-64\eclipse\jre\bin\nio.dll 0x000007fef9d50000 - 0x000007fef9d61000 C:\36M7-64\eclipse\configuration\org.eclipse.osgi\bundles\34\1\.cp\jWinHttp-1.0.0.dll 0x000007fefa840000 - 0x000007fefa8b0000 C:\Windows\system32\WINHTTP.dll 0x0000000007300000 - 0x000000000739b000 C:\36M7-64\eclipse\configuration\org.eclipse.osgi\bundles\152\1\.cp\swt-win32-3643.dll 0x000007fefd710000 - 0x000007fefd79c000 C:\Windows\system32\comdlg32.dll 0x000007fefdcb0000 - 0x000007fefe903000 C:\Windows\system32\SHELL32.dll 0x000007feff090000 - 0x000007feff1b0000 C:\Windows\system32\WININET.dll 0x0000000077370000 - 0x0000000077374000 C:\Windows\system32\Normaliz.dll 0x000007feff2c0000 - 0x000007feff437000 C:\Windows\system32\urlmon.dll 0x000007fefd7a0000 - 0x000007fefd9df000 C:\Windows\system32\iertutil.dll 0x0000000002610000 - 0x000000000262e000 C:\36M7-64\eclipse\configuration\org.eclipse.osgi\bundles\152\1\.cp\swt-gdip-win32-3643.dll 0x000007fefbc50000 - 0x000007fefbe6c000 C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6002.18005_none_56a37cbfb59b8501\gdiplus.dll 0x0000000007e40000 - 0x0000000007e52000 C:\36M7-64\eclipse\configuration\org.eclipse.osgi\bundles\31\1\.cp\os\win32\x86_64\localfile_1_0_0.dll 0x000007fefc700000 - 0x000007fefc707000 C:\Windows\system32\msimg32.dll 0x000007fefeff0000 - 0x000007feff089000 C:\Windows\system32\CLBCatQ.DLL 0x000007fef6f50000 - 0x000007fef6f8d000 C:\Windows\system32\mlang.dll 0x000007fef8450000 - 0x000007fef8524000 C:\Windows\system32\WindowsCodecs.dll 0x000007fefd490000 - 0x000007fefd4c5000 C:\Windows\system32\apphelp.dll 0x000007fefb370000 - 0x000007fefb392000 C:\Windows\system32\EhStorShell.dll 0x000007fefba30000 - 0x000007fefbb15000 C:\Windows\system32\PROPSYS.dll 0x000007fef7cf0000 - 0x000007fef7d98000 C:\Windows\System32\cscui.dll 0x000007fefb3d0000 - 0x000007fefb3dc000 C:\Windows\System32\CSCDLL.dll 0x000007fefb4a0000 - 0x000007fefb4ad000 C:\Windows\System32\CSCAPI.dll 0x000007fef9180000 - 0x000007fef91d8000 C:\Windows\system32\WINSPOOL.DRV 0x000007fef8810000 - 0x000007fef88eb000 C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL 0x000007fef71a0000 - 0x000007fef7338000 C:\Windows\system32\BROWSEUI.dll 0x000007fefc050000 - 0x000007fefc090000 C:\Windows\system32\DUser.dll 0x000007fef9d30000 - 0x000007fef9d4d000 C:\Windows\system32\thumbcache.dll 0x000007fef70a0000 - 0x000007fef7198000 C:\Windows\system32\ACTXPRXY.DLL 0x000007fef7340000 - 0x000007fef7468000 C:\Windows\system32\SHDOCVW.dll 0x000007fef5310000 - 0x000007fef5ef8000 C:\Windows\system32\ieframe.dll 0x000007fef0ef0000 - 0x000007fef0fe3000 C:\Windows\system32\PRINTUI.dll 0x000007fefa590000 - 0x000007fefa5d5000 C:\Windows\system32\ACTIVEDS.dll 0x000007fefa550000 - 0x000007fefa58c000 C:\Windows\system32\adsldpc.dll 0x000007fefd2c0000 - 0x000007fefd363000 C:\Windows\system32\NETAPI32.dll 0x000007fefa510000 - 0x000007fefa546000 C:\Windows\system32\credui.dll 0x000007fefb8d0000 - 0x000007fefb8e9000 C:\Windows\system32\ATL.DLL 0x000007fefa4a0000 - 0x000007fefa4a9000 C:\Windows\system32\CFGMGR32.dll 0x000007fefdac0000 - 0x000007fefdc9c000 C:\Windows\system32\setupapi.DLL 0x000007fefcf50000 - 0x000007fefcf69000 C:\Windows\system32\MPR.dll 0x000007fef1530000 - 0x000007fef1562000 C:\Windows\system32\puiapi.dll 0x000007fefc5e0000 - 0x000007fefc5ec000 C:\Windows\system32\WTSAPI32.dll 0x000007fefcde0000 - 0x000007fefce09000 C:\Windows\system32\slc.dll 0x000007fef6440000 - 0x000007fef64b6000 C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRV.DLL 0x000007fef44b0000 - 0x000007fef4532000 C:\Windows\system32\mscms.dll VM Arguments: jvm_args: -Xms40m -Xmx384m -XX:MaxPermSize=256m java_command: <unknown> Launcher Type: generic Environment Variables: PATH=C:/36M7-64/eclipse/jre/bin/server;C:/36M7-64/eclipse/jre/bin;C:/36M7-64/eclipse/jre/lib/amd64;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\Common Files\Lenovo USERNAME=ibmemployee OS=Windows_NT PROCESSOR_IDENTIFIER=Intel64 Family 15 Model 6 Stepping 2, GenuineIntel --------------- S Y S T E M --------------- OS: Windows Vista , 64 bit Build 6002 Service Pack 2 CPU:total 1 em64t ht Memory: 4k page, physical 2084876k(987036k free), swap 4425040k(2936708k free) vm_info: Java HotSpot(TM) 64-Bit Server VM (1.5.0_22-b03) for windows-amd64, built on Oct 9 2009 00:35:21 by "java_re" with unknown MS VC++:1400 time: Tue Apr 27 14:51:07 2010 elapsed time: 110 seconds
|
2010-04-27 16:08:45
| 1,272,400,000 |
resolved fixed
|
bfbf576
| 1,272,480,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java
|
SWT
|
671 | 310,660 |
Bug 310660 AIOOBE in TextLayout makes it impossible to commit to CVS
|
3.6M7 test build - observed on HPUX but likely happens on all motif platforms - should be fixed for 3.6M7 - open the Error Log view - check any resource out of CVS - modify and save it, right-click it, invoke Team->Commit - nothing happens, except that the following is written to the Error Log view: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.ArrayIndexOutOfBoundsException: 0) at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:137) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3188) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2886) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2601) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2565) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2399) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:669) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:662) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) 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:369) 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:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407) at org.eclipse.equinox.launcher.Main.main(Main.java:1383) Caused by: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.graphics.TextLayout.computeRuns(TextLayout.java:167) at org.eclipse.swt.graphics.TextLayout.getBounds(TextLayout.java:639) at org.eclipse.swt.custom.StyledTextRenderer.calculate(StyledTextRenderer.java:212) at org.eclipse.swt.custom.StyledTextRenderer$1.run(StyledTextRenderer.java:242) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) ... 23 more
|
2010-04-27 12:20:52
| 1,272,390,000 |
resolved fixed
|
4eace6e
| 1,272,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
672 | 283,503 |
Bug 283503 Eclipse crashes at org.eclipse.swt.internal.win32.OS.ScriptGetLogicalWidths
| null |
2009-07-15 04:40:33
| 1,247,650,000 |
resolved fixed
|
d202617
| 1,272,300,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
673 | 310,401 |
Bug 310401 Combo shows only 5 items if items are set after first layout
|
I20100424-2000 Combo shows only 5 items if items are set after first layout, see snippet below. This is visible in the SDK in the Find/Replace dialog (fields show only 5 items until you resize the dialog). import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; public class ModifiedSnippet26 { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); Combo combo = new Combo (shell, SWT.READ_ONLY); combo.setSize (200, 200); String[] items = new String [40]; for (int i = 0; i < items.length; i++) items[i]= String.valueOf(i); combo.setItems (items); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } }
|
2010-04-25 20:20:13
| 1,272,240,000 |
resolved fixed
|
47d0546
| 1,272,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
674 | 310,290 |
Bug 310290 [Browser] setting mozilla's proxy host/port values should not be persisted
|
The setting of these values via a java property should only be in effect for the current session, they should not be persisted in the mozilla preferences, as they may not apply to future sessions.
|
2010-04-23 10:26:17
| 1,272,030,000 |
resolved fixed
|
18ce373
| 1,272,050,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
675 | 310,083 |
Bug 310083 AccessibleTextEvent needs @since tags for new API fields
|
HEAD AccessibleTextEvent needs @since tags for the new API fields. An while you're at it: The @since tag in org.eclipse.swt.custom.BidiSegmentEvent.segmentsChars has a typo (@ missing).
|
2010-04-22 06:15:36
| 1,271,930,000 |
resolved fixed
|
1fe35b2
| 1,271,940,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextEvent.java
|
SWT
|
676 | 107,337 |
Bug 107337 SWT Browser.refresh() does not fire ProgressEvent
|
I am using Eclipse 3.1 on Windows XP Pro SP2. I have adapted the Web Browser SWT example for use in a plugin I am developing, and noticed that the Browser.refresh() method does not fire a ProgressEvent. However, using the native browser refresh hot key (F5) does fire the event.
|
2005-08-18 11:58:07
| 1,124,380,000 |
resolved fixed
|
589dae5
| 1,271,800,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
677 | 288,824 |
Bug 288824 [Widgets] Problems with repeating events of Spinner widgets on Linux/GTK
|
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1) Gecko/20090707 Iceweasel/3.5 (Debian-3.5-1) GTB5 Build Identifier: I20090611-1540 When the buttons on a spinner with digits are a selecting the spinner jumps quickly to its maximum or minimal values on Linux using GTK version. For Snipped190, it happens only if the increment is below 10. E.g., "spinner.setIncrement(1)" instead of "spinner.setIncrement(10)". Reproducible: Always Steps to Reproduce: 1. Click the "up" button in the Snippet190 (with spinner.setIncrement(1)) and hold it. 2. Same happens with the up arrow of the keyboards.
|
2009-09-08 09:49:24
| 1,252,420,000 |
resolved fixed
|
102d9e0
| 1,271,750,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/Spinner.java
|
SWT
|
678 | 308,270 |
Bug 308270 [Program] VM crash in SWT native code while importing preferences
|
Build Identifier: I20100312-1448 I created a new workspace and tried to import my preferences. This resulted in a VM crash. hs_err log and preferences file attached. Reproducible: Always Steps to Reproduce: 1. Create a new workspace 2. Attempt to import the attached preferences files
|
2010-04-06 16:53:27
| 1,270,590,000 |
verified fixed
|
83b6263
| 1,271,730,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
|
SWT
|
679 | 291,253 |
Bug 291253 [Widgets] setting minimum size on an ON_TOP Shell makes it unable to grow
|
From the swt newsgroup (post + snippet below), I also see it on RHEL4. If line "shell2.setMinimumSize(MIN_SIZE, MIN_SIZE);" is commented out then the ON_TOP Shell is able to grow. " I'm trying to create a borderless shell (NO_TRIM) with a minimum size on Linux. When I do this, resizing the window to be *larger* doesn't seem to work (though resizing smaller works until it hits the minimum size). I've attached a snippet which illustrates the problem I'm seeing. public class ResizeShellSnippet { private static final int INITIAL_SIZE = 525; public static final int MIN_SIZE = 500; public ResizeShellSnippet(final Shell shell) { Button grow = new Button(shell, SWT.PUSH); grow.setText("Grow"); //$NON-NLS-1$ grow.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Rectangle rect = shell.getBounds(); rect.height = rect.height + 5; rect.width = rect.width + 5; shell.setBounds(rect); } }); Button shrink = new Button(shell, SWT.PUSH); shrink.setText("Shrink"); //$NON-NLS-1$ shrink.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { Rectangle rect = shell.getBounds(); rect.height = rect.height - 5; rect.width = rect.width - 5; shell.setBounds(rect); } }); Button close = new Button(shell, SWT.PUSH); close.setText("Close"); //$NON-NLS-1$ close.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { shell.close(); } }); } public static void main(String[] args) { Display display = Display.getDefault(); try { //The regular shell will be able to grow final Shell shell = new Shell(); shell.setMinimumSize(MIN_SIZE, MIN_SIZE); shell.setLayout(new GridLayout()); new ResizeShellSnippet(shell); shell.pack(); shell.setBounds(0, 0, INITIAL_SIZE, INITIAL_SIZE); shell.open(); //The borderless shell with a minimum size won't be able to grow //(Though it can shrink to the minimum size) final Shell shell2 = new Shell(SWT.NO_TRIM); shell2.setMinimumSize(MIN_SIZE, MIN_SIZE); shell2.setLayout(new GridLayout()); new ResizeShellSnippet(shell2); shell2.pack(); shell2.setBounds(INITIAL_SIZE, 0, INITIAL_SIZE, INITIAL_SIZE); shell2.open(); while (!shell.isDisposed() && !shell2.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } finally { display.dispose(); } } } "
|
2009-10-02 16:38:30
| 1,254,520,000 |
resolved fixed
|
83a663e
| 1,271,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
680 | 303,818 |
Bug 303818 Spinner value hidden if having 2 Spinners in a Composite
|
Snippet: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Spinner spinner = new Spinner(shell, SWT.BORDER); spinner.setSelection(100); spinner = new Spinner(shell, SWT.BORDER); spinner.setSelection(100); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } Results: - the second spinner remains empty until focus is passed into This is especially bad if you have something like a TabFolder with N Tabs where the chance is bigger that you have more than one Spinner per composite in different TabItems.
|
2010-02-24 17:03:24
| 1,267,050,000 |
resolved fixed
|
cac6973
| 1,271,700,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
681 | 308,496 |
Bug 308496 NullPointerException at org.eclipse.swt.browser.IE.handleDOMEvent
|
Build Identifier: 3.6 M6 Release The SWT Browser generates a NullPointerException at org.eclipse.swt.browser.IE.handleDOMEvent when IE is the embedded browser. This behavior can be seen using the login page at www.facebook.com Reproducible: Always Steps to Reproduce: 1.Launch and instance of the SWT Browser 2.Navigate to www.facebook.com 3.Enter e-mail address and password (a real account is no required, just typing in the fields will trigger the exception)
|
2010-04-08 11:39:47
| 1,270,740,000 |
resolved fixed
|
73867f2
| 1,271,440,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
682 | 247,216 |
Bug 247216 Display.post(Event) - problem with ALT+SHIFT+INSERT
|
Build ID: I20080617-2000 Steps To Reproduce: The following snippets displays nothing on the system console. My platform is Windows XP Prof. version 2002 SP2. public class Snippet304 { static Display display = null; public static void main(String[] args) { display = new Display(); Shell shell = new Shell(display); shell.addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent e) { if (e.stateMask == (SWT.ALT | SWT.SHIFT) && e.keyCode == SWT.INSERT) { System.out.println(" e.stateMask == (SWT.ALT | SWT.SHIFT) && e.keyCode == SWT.INSERT"); } } }); shell.pack(); shell.open(); new Thread(){ public void run(){ postEvent(SWT.ALT, SWT.KeyDown); postEvent(SWT.SHIFT, SWT.KeyDown); postEvent(SWT.INSERT, SWT.KeyDown); postEvent(SWT.INSERT, SWT.KeyUp); postEvent(SWT.SHIFT, SWT.KeyUp); postEvent(SWT.ALT, SWT.KeyUp); } }.start(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } public static void postEvent(int keyCode, int type) { Event event = new Event(); event.type = type; event.keyCode = keyCode; display.post(event); } } More information: The strange things are: a) The snippet worked at my friend's computer with same OS version (Windows XP Prof. version 2002 SP2). I tried to eliminate from my OS all running system processes that I could, but it did not help. b) When I press ALT+SHIFT+INSERT the text is still printed on the console. c) The snippet works fine with ALT+SHIFT+CR and ALT+CONTROL+INSERT combinations.
|
2008-09-13 07:25:09
| 1,221,310,000 |
resolved fixed
|
2b47911
| 1,271,260,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
683 | 308,329 |
Bug 308329 [TUR3.6]: ArrayIndexoutOfBoundsException occurred when paste TR characters in Console when Run C++ project
|
Build Identifier: I20100403-1602 ===== Description ===== It is happened in SUSE11/TR. Run C++ project. Paste EN characters in Console, the console return hello EN characters. Paste TR characters in Console, the "ArrayIndexoutOfBoundsException" message is displayed. We had tried this on RHEL environment and this was working OK. Just seems to be SLES problem only. ==== Environment ===== Build Level: I20100403-1602 Component: CDT Platform: SUSE11 JRE: IBM Java 5 SR11 Affected Locale(s): Turkish ===== Expected Result ===== The TR character is displayed in console correctly. ===== Actual Result ===== "ArrayIndexoutOfBoundsException" message is displayed. Reproducible: Always Steps to Reproduce: ===== Steps To Reproduce ===== 1. Create a new C++ project 2. Enter a project name in NL characters in the input field. Select Executable project > Empty project as project type. If youre testing in Windows, choose the MinGW toolchain in the wizard. For RHEL, use the Linux GCC toolchain. For Mac OS X, use the MacOSX GCC toolchain. Click Next, Click Finish. 3. Create a new C++ source file: Name the source file main.cpp 4. Click Finish. The editor will be opened. Type the following into main.cpp. #include <iostream> #include <string> using namespace std; //This is a comment. Hello World! int main() { string yourName; cout << "Enter your name: "; cin >> yourName; cout << "Hello " + yourName << endl; return 0; } 5. Create a new C++ class using the New Class Wizard: 6. Make sure the checkbox beside the Namespace input field is checked. Create Class1 in Namespace1. 7. Click Finish. 8. Right click on it and select Build Project to build your project. Go to the toolbar and select Run -> Run Configurations... 9. Click on C/C++ Local Application. 10. Youll be prompted to specify a C/C++ Application to run. 11. Click on the Run button. 12. The Console View is now in focus and your programs output is displayed. Enter a name in TR characters and press Enter.
|
2010-04-07 10:04:33
| 1,270,650,000 |
closed fixed
|
d858349
| 1,271,100,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
684 | 304,780 |
Bug 304780 Eclipse hangs while using FileDialog
|
Eclipse always hangs when I attempt to import any project/archive. Infact, UI freezes when any filedialog is opened. Suprisingly, when I tried to recreate the problem using standalone SWT (referencing to SWT jar files of the eclipse installation), FileDialog does not cause eclipse to hang. Build id: N20100303-2000 Reproducible : Always
|
2010-03-05 03:36:29
| 1,267,780,000 |
resolved fixed
|
00d5736
| 1,271,090,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/AccessibleFactory.java
|
SWT
|
685 | 308,445 |
Bug 308445 DBCS3.6: DragSource and DropTarget can not handle surrogate pairs in Windows 7
| null |
2010-04-08 03:35:00
| 1,270,710,000 |
verified fixed
|
4a54739
| 1,271,080,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/URLTransfer.java
|
SWT
|
686 | 308,724 |
Bug 308724 Compiler warnings in N20100409-2000
|
1. WARNING in /temp.folder/@dot.src/org/eclipse/swt/widgets/Text.java (at line 16) import org.eclipse.swt.internal.*; The import org.eclipse.swt.internal is never used
|
2010-04-10 09:13:45
| 1,270,910,000 |
resolved fixed
|
10cff95
| 1,271,080,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
687 | 298,143 |
Bug 298143 [PropertiesView] Property view hover text has odd behavior in Cocoa compared with Carbon or Windows
|
Build Identifier: M20090917-0800 When a property is multiple lines, it hovers correctly in Carbon or Windows, showing the entire property value. In Cocoa, only a single line is visible. Reproducible: Always Steps to Reproduce: Not sure how to show so have figures to upload to illustrate.
|
2009-12-17 20:24:38
| 1,261,100,000 |
resolved fixed
|
54a339f
| 1,270,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
688 | 290,373 |
Bug 290373 [Graphics] Lines not honoring print margins
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_1; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9 Build Identifier: Version: 3.6.0 Build id: I20090917-0100 The Java source editor is not honouring the print margins that are set (see the screenshot). You will have to take my word for it that the insertion point is abutting the right hand edge of the print margin line when the screenshot was taken (the insertion point is not shown when the dialog is open in front of it) I have checked and all three margin settings are 120 (i.e. two in the formatter and the general text editors default). Reproducible: Always Steps to Reproduce: 1. Create a java source file with long lines that extend to 120 chars 2. Set print margins to 120 3. Open the file in the java editor
|
2009-09-24 04:53:31
| 1,253,780,000 |
resolved fixed
|
d0cfa98
| 1,270,750,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java
|
SWT
|
689 | 308,500 |
Bug 308500 [Browser] hook key/mouse event listeners earlier on Safari
| null |
2010-04-08 11:44:15
| 1,270,740,000 |
resolved fixed
|
f7cff71
| 1,270,740,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
|
690 | 308,057 |
Bug 308057 StyledText reporting wrong accessibility information when deleting data with backspace
| null |
2010-04-04 22:26:24
| 1,270,430,000 |
resolved fixed
|
7ae6c7a
| 1,270,670,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
691 | 308,381 |
Bug 308381 [Accessibility] Scrollviews ignored in accessibility hierarchy
|
In SWT apps, scroll views are being ignored in an accessibility hierarchy. Other Cocoa apps do not ignore the scroll view. 1. Launch Accessibility Inspector. 2. Launch Text Edit. 3. Move the mouse over the editor window. 4. Look at the hierarchy in the Accessibility Inspector. <AXApplication: "TextEdit"> <AXWindow: "Untitled"> <AXScrollArea> <AXTextArea: "..."> 5. Now, launch Eclipse and open a text editor. 6. Mouse over editor area. 7. Look at the hierarchy in the Accessibility Inspector. <AXApplication: "Eclipse"> <AXWindow: "Java - org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets..."> <AXTextArea: " * Copyright (c) 2000, 2009 IBM Corporation and others. package ..."> We jump over the AXScrollArea and go right to the AXWindow.
|
2010-04-07 14:41:22
| 1,270,670,000 |
resolved fixed
|
86a6f41
| 1,270,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java
|
SWT
|
692 | 292,665 |
Bug 292665 File open dialog doesn't remember last opened folder.
|
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: Snow Leopard 10.6.x It remembered last open directory on Tiger/Leopard 10.5 but doesn't in Snow Leopard. Reproducible: Always Steps to Reproduce: 1. Open File Dialog and choose some file in some specific directory. 2. Open it again but the last directory will not be shown.
|
2009-10-19 08:43:47
| 1,255,960,000 |
resolved fixed
|
a591c30
| 1,270,590,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
693 | 307,681 |
Bug 307681 StyledText: Incorrect style.length in paintObject events
|
Build Identifier: M20100211-1343 After setting a StyleRange with a length of 1 and a non null glyph metrics on a StyledText, the paint events received by paint listeners have an event such that event.style.length = 0. This seems to come from the way int array ranges are computed and interpreted in StyledTextRenderer vs TextLayout: - in TextLayout.getRanges() the int[] array is said (javadoc) to contain the "start and end of each text style", and for a style with a length of 1 the array contains [..., <start>,<start>, ...]. Also the setStyle implementation shows that those offsets are inclusive. - however in StyledTextRenderer.drawLine (end of the method when styles[i].metrics != null) the int[] array obtained from the layout is assumed to contain <start>,<start+1> since the style length is computed as int length = ranges[(i << 1) + 1] - ranges[i << 1]; Reproducible: Always Steps to Reproduce: 1. StyledText styledText = new StyledText(parent, SWT.MULTI); StyleRange range = new StyleRange(10, 1, fg, bg); range.metrics = new GlyphMetrics(ascent, descent,25 ); styledText.setStylesRanges(new StyleRange[] { range }; 2. Observe that event.style.length == 0 when the listener is invoked
|
2010-03-31 06:04:59
| 1,270,030,000 |
resolved fixed
|
aca4917
| 1,270,560,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java
|
SWT
|
694 | 307,947 |
Bug 307947 VoiceOver broken when an Accessible object is set
|
If you turn on VoiceOver in 10.6 and move the mouse over a widget with an Accessible object set for it, VoiceOver can't see the control and therefore can't read its contents. To reproduce: 1. In Eclipse 3.6m6, run org.eclipse.swt.examples.accessibility.ControlsWithAccessibleNamesExample 2. Turn on VoiceOver (cmd-F5) 3. Move the mouse over the controls in the window. ---> Nothing happens. The VoiceOver focus is on the close button of the window.
|
2010-04-01 19:42:46
| 1,270,170,000 |
resolved fixed
|
849aa1b
| 1,270,170,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
695 | 305,795 |
Bug 305795 unexpected quit of Eclipse using eclipse-SDK-3.6M6-macosx-cocoa-x86_64
| null |
2010-03-14 14:48:11
| 1,268,590,000 |
resolved fixed
|
c362fc0
| 1,270,160,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java
|
SWT
|
696 | 305,096 |
Bug 305096 Fullscreen mode doesn't cover the windows taskbar on Windows 7
|
Build Identifier: version 3.631 When a shell is set to Fullscreen on Windows 7, it doesn't cover the Windows 7 taskbar. Here's a snippet to reproduce : import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestFS { public static void main(String[] args) { Display display = new Display(); Shell s = new Shell(); s.open(); s.setFullScreen(true); while(!s.isDisposed()) { if(!display.readAndDispatch()) { display.sleep(); } } } } Reproducible: Always Steps to Reproduce: 1. run the snippet from above, or bring any shell to fullscreen
|
2010-03-08 22:58:32
| 1,268,110,000 |
resolved fixed
|
e0bfce0
| 1,270,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
697 | 212,594 |
Bug 212594 [Printer] Printer.dispose() after cancelJob() yields lifetime supply of GLib-CRITICAL
| null |
2007-12-11 11:21:29
| 1,197,390,000 |
resolved fixed
|
45dccff
| 1,270,130,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java
|
SWT
|
698 | 213,050 |
Bug 213050 Mouse cursor disappears when Combo.setListVisible(true) is called
|
When I call Combo.setListVisible(true), the mouse disappears. This makes it difficult to select something in the drop down list. STEPS: - run attached code - select the text area in the Combo and type - the mouse disappears when the drop down list is visible Expect: The mouse to be visible so that we select the items in the drop down. I use the code below to show the difference in behaviour between Combo and CCombo. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.CCombo; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.*; public class CComboDropDownTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); GridData data = new GridData(SWT.FILL, SWT.FILL, true, true); shell.setLayoutData(data); final CCombo cCombo = new CCombo(shell, SWT.DROP_DOWN | SWT.BORDER); for (int i = 0; i < 10; i++) { cCombo.add("CCombo " + i); } cCombo.select(0); cCombo.addListener (SWT.Modify, new Listener () { public void handleEvent (Event e) { cCombo.setListVisible(true); } }); final Combo combo = new Combo(shell, SWT.DROP_DOWN | SWT.BORDER); for (int i = 0; i < 10; i++) { combo.add("Combo " + i); } combo.select(0); combo.addListener (SWT.Modify, new Listener () { public void handleEvent (Event e) { combo.setListVisible(true); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2007-12-14 14:15:37
| 1,197,660,000 |
resolved fixed
|
d8ada86
| 1,270,040,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
699 | 307,403 |
Bug 307403 [Accessibility] NPE creating FilteredList on Linux
|
Build Identifier: 3.6M6 TwoPaneElementSelector is no longer usable in 3.6M6. Reproducible: Always Steps to Reproduce: The attached project works fine in 3.6M5. It is OK in 3.6M6 on Windows, but fails on Linux (and I suspect it will fail on Solaris as well). Thread [main] (Suspended (exception NullPointerException)) FilteredList.getAccessible() line: 777 Label.addRelation(Control) line: 112 FilteredList(Control).setRelations() line: 1034 FilteredList(Control).createWidget(int) line: 549 FilteredList(Scrollable).createWidget(int) line: 152 FilteredList(Control).<init>(Composite, int) line: 96 FilteredList(Scrollable).<init>(Composite, int) line: 74 FilteredList(Composite).<init>(Composite, int) line: 95 FilteredList.<init>(Composite, int, ILabelProvider, boolean, boolean, boolean) line: 236 TwoPaneElementSelector(AbstractElementListSelectionDialog).createFilteredList(Composite) line: 334 TwoPaneElementSelector.createDialogArea(Composite) line: 138 TwoPaneElementSelector(Dialog).createContents(Composite) line: 760 TwoPaneElementSelector(Window).create() line: 431 TwoPaneElementSelector(Dialog).create() line: 1089 TwoPaneElementSelector(SelectionStatusDialog).create() line: 153 TwoPaneElementSelector(AbstractElementListSelectionDialog).access$superCreate() line: 427 AbstractElementListSelectionDialog.access$2(AbstractElementListSelectionDialog) line: 426 AbstractElementListSelectionDialog$4.run() line: 438 BusyIndicator.showWhile(Display, Runnable) line: 70 TwoPaneElementSelector(AbstractElementListSelectionDialog).create() line: 436 TwoPaneElementSelector(Window).open() line: 790 TwoPaneElementSelector(AbstractElementListSelectionDialog).open() line: 422 TwoPaneElementSelectorBug.twoPainTest(Shell) line: 30 TwoPaneElementSelectorBug.run(IAction) line: 44 ...
|
2010-03-29 10:49:54
| 1,269,870,000 |
resolved fixed
|
8c5510a
| 1,269,960,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/Label.java
|
SWT
|
700 | 295,482 |
Bug 295482 [Widgets] file search history and regexp code assistance scroll BOTH using cursor up/down keys (page up/down resp.)
|
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.1.3) Gecko/20090909 SUSE/3.5.3-1.2 Firefox/3.5.3 Build Identifier: I20080617-2000 The file search provides a search history. Using the cursor up/down keys you can scroll through the history. After activating the "Regular expression" checkbox, you can use the "Content Assist", e.g. by pressing <ctrl>-<space>. Now, using the the cursor up/down keys, you can scroll through the completion proposals. But, this also scrolls through the search history. Your new search query gets messed up ... Same happens with page up/down, but not with the <end> or <pos1> keys or with the mouse. Reproducible: Always Steps to Reproduce: 1. fill the file search history with some (different) search strings 2. activate the "Regular Expression" checkbox 3. activate the "code assist" using <ctrl>-<space> 4. use the cursor up or down key to scroll through the different proposals
|
2009-11-18 11:13:34
| 1,258,560,000 |
resolved fixed
|
0efd209
| 1,269,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
701 | 305,224 |
Bug 305224 Browser Widget is always showing scrollbars
|
I20100307-2000 The Select Scope and New Scope dialogs are showing scrollbars. This only happens with the built in help browser, when opened in an external browser the scrollbars are not there.
|
2010-03-09 14:35:22
| 1,268,160,000 |
verified fixed
|
f248d27
| 1,269,890,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
702 | 303,263 |
Bug 303263 Need to expose CFRunLoopRunInMode and CFRunLoopStop for Adobe
|
Adobe Flash Catalyst will eventually be adopting Cocoa, but to do so they need to do run loop manipulation. Specifically, the methods CFRunLoopRunInMode and CFRunLoopStop were defined in the Carbon SWT but are not defined in the Cocoa SWT. These should be exposed so they can use them without having to rebuild the Cocoa SWT themselves.
|
2010-02-18 19:05:17
| 1,266,540,000 |
resolved fixed
|
7e632fe
| 1,269,880,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
|
SWT
|
703 | 294,737 |
Bug 294737 FileDialog setFilterExtensions() does not work with extensions containing more than one point in the extension name
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.9 (KHTML, like Gecko) Version/4.0.3 Safari/531.9 Build Identifier: SWT 3.4.0v3448f and SWT.3.5.1v3555a * it is not possible to select files with extensions that contain more than one point, if this extension is set via setFilterExtensions() for the FileDialog - therefore files of the desired type cannot be opened * works fine on windows * see attached screenshot - the .profile.xml files are not selectable Reproducible: Always
|
2009-11-10 09:07:01
| 1,257,860,000 |
resolved fixed
|
27f7331
| 1,269,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/FileDialog.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
704 | 297,480 |
Bug 297480 [Widgets] Cocoa:Lines not visible in Table/Tree
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Build Identifier: I20091207-1800 When we set the lines in Table/tree using setLinesVisible(true), lines are not visible in the background. Verified that it works fine in 3.6M1 Reproducible: Always Steps to Reproduce: 1.Run a snippet which has setLinesVisible(true) for table/tree. Eg: run Snippet110. 2.Table doesn't show the alternating lines in the background. Same with Tree.
|
2009-12-10 09:18:43
| 1,260,450,000 |
resolved fixed
|
4b15396
| 1,269,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
705 | 36,806 |
Bug 36806 Eclipse on AIX 4.3.3 hangs
|
There is no repsonse to user events like clicks or closing the application. I am running the 2.1 version of Eclipse on AIX 4.3.3 with APAR IY27694 applied. I have X11.motif.lib at service level 4.3.3.80, so the release notes says not to install IY41939. The Eclipse application installed well. The splash screen comes out funny -- the two lower GIFs are switched. When the application finally displays (seemingly correctly) then nothing happens if I click anywhere in the window. I am also using this with ViewNow X -- a Windows X windows Server. This works well with other X11 and java applications on AIX, so I have no reason to believe it would be the cause of the problems.
|
2003-04-23 14:16:21
| 1,051,120,000 |
resolved fixed
|
ce45876
| 1,268,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
|
SWT
|
706 | 305,095 |
Bug 305095 Shell in fullscreen has incorrect client area
|
Build Identifier: version 3.631 If you put a shell in fullscreen mode on OSX, a portion of the screen (a band towards the bottom) is actually not part of the client area (but it does cover the screen with the shell background). You can see it in action by simply adding a FillLayout to your Shell, adding 1 composite to the shell, and setting the background color to a non standard color. You'll see that in fullscreen mode, the composite doesn't scale to the entire shell. OSX 10.6.2 Here's a snippet : package org.eclipse.swt.snippets; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestFS { public static void main(String[] args) { Display display = new Display(); Shell s = new Shell(); s.setFullScreen(true); s.setLayout(new FillLayout()); Composite composite = new Composite(s,SWT.NONE); composite.setBackground(display.getSystemColor(SWT.COLOR_BLACK)); s.open(); while(!s.isDisposed()) { if(!display.readAndDispatch()) { display.sleep(); } } } } Reproducible: Always Steps to Reproduce: 1. run the snippet above on 10.6.2
|
2010-03-08 22:47:00
| 1,268,110,000 |
resolved fixed
|
149e29d
| 1,268,900,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSStatusBar.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
707 | 305,186 |
Bug 305186 [Browser] Child shell with browser doesn't close on Esc
| null |
2010-03-09 11:32:54
| 1,268,150,000 |
verified fixed
|
60838e2
| 1,268,760,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/cocoa/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
|
SWT
|
708 | 305,230 |
Bug 305230 Browser should specify encoding of LocationEvent#location and align implementations
|
I20100309-0100 Cocoa Links to other types in Javadoc hovers don't work any more on Cocoa. That's because I get a URISyntaxException in: org.eclipse.jdt.internal.ui.viewsupport.JavaElementLinks$1.changing(JavaElementLinks.java:199) On other platforms (IE on WinXP, Mozilla on GTK), the URI in LocationEvent#location is URI-encoded, but on Cocoa/Safari, the location is coming in its raw (unencoded) form. LocationEvent#location should specify that the string is an encoded URI. If you don't have the encoded form of the URI, you can encode the raw location like this: new URI(null, null, rawLocation).toASCIIString()
|
2010-03-09 15:00:59
| 1,268,160,000 |
verified fixed
|
48d9677
| 1,268,670,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 bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java
|
SWT
|
709 | 305,332 |
Bug 305332 taskitem resets image to null
|
public static void main335(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setImage(new Image(display, "/Users/Felipe/Desktop/workspaceCocoa/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Eclipse.icns")); TaskItem item = display.getSystemTaskBar().getItem(null); item.setOverlayText("hi"); item.setOverlayText(""); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } result app shows the default icon (console) expect app shows Eclipse.icns icon fix ### Eclipse Workspace Patch 1.0 #P org.eclipse.swt Index: Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java,v retrieving revision 1.2 diff -u -r1.2 TaskItem.java --- Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java 2 Mar 2010 21:30:16 -0000 1.2 +++ Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java 10 Mar 2010 15:09:27 -0000 @@ -210,7 +210,7 @@ NSDockTile dock = app.dockTile (); boolean drawImage = overlayImage != null && dock.badgeLabel () == null; if (!drawImage && !drawProgress && !drawIntermidiate) { - app.setApplicationIconImage (null); + app.setApplicationIconImage (defaultImage); return; }
|
2010-03-10 10:10:02
| 1,268,230,000 |
resolved fixed
|
c065ad0
| 1,268,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java
|
SWT
|
710 | 305,294 |
Bug 305294 Control.print(GC) causes side effects in Windows 7 Aero
|
Build Identifier: 3.5.1 M20090917-0800 I have a composite with a "StackLayout" and two controls to flip between. When I perform Control.print(GC) on the two controls, the bottom control can nolonger be seen on the screen. This doesn't effect the code when run on Windows XP or when Windows 7 is switched to Classic mode. Reproducible: Always Steps to Reproduce: 1. Create a new java project 2. Copy the following code and create a class SWTImagePrintTest: ----START------------------------------ ----END-------------------------------- 3. You will need to have SWT libraries available for this project (project properties->Java Build Path->Libraries 4. Run the application 5. Click flip/flop button. You can see that the composite changes 6. Click "Print" 7. Click the flip/flop button, notice that the other composite is now blank/not being redrawn 8. Show the blank composite 9. Click Print again 10. Note that the top is now blank for both composites.
|
2010-03-10 04:01:41
| 1,268,210,000 |
resolved fixed
|
4412c19
| 1,268,660,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java
|
SWT
|
711 | 305,335 |
Bug 305335 taskitem doesnt work before shell.open()
|
public static void main335(String[] args) { Display display = new Display(); Shell shell = new Shell(display); TaskItem item = display.getSystemTaskBar().getItem(shell); item.setOverlayText("hi"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } expected: overlay text "hi" to show over the application icon result: "hi" is not shown note: it all works if shell.open() is called before item.setOverlayText("hi")
|
2010-03-10 10:30:58
| 1,268,240,000 |
resolved fixed
|
1797728
| 1,268,660,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.java
|
SWT
|
712 | 305,704 |
Bug 305704 (Mac) FontDialog does not return color
| null |
2010-03-12 11:48:08
| 1,268,410,000 |
resolved fixed
|
14d8180
| 1,268,660,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java
|
SWT
|
713 | 304,093 |
Bug 304093 Mac/Carbon DnD: DragSourceListener.dragSetData fired when File drag started.
|
Build Identifier: SWT v3635 This is a performance problem in DragSource class in SWT Carbon only. The problem is SWT Carbon fires DragSourceListener.dragSetData when drag started, as a result, the application code starts to create DnD files when drag started. If the file is big, this causes DnD performanuce issue. According to the Eclipse CVS history, Rev1.29, 1.30 change for DragSource.java caused this issue. Reproducible: Always
|
2010-02-26 15:41:37
| 1,267,220,000 |
resolved fixed
|
eba5e32
| 1,268,660,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
714 | 305,553 |
Bug 305553 Left border of CTabFolder tab is off by one
| null |
2010-03-11 12:58:15
| 1,268,330,000 |
resolved fixed
|
51c8499
| 1,268,340,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java
|
SWT
|
715 | 305,444 |
Bug 305444 View name in tabs truncated in RTL mode
|
I20100307-2000 Start Eclipse with the -dir rtl argument and a clean workbench Notice the intro part shows truncation of the tab. Go to the workbench, maximize the package explorer, similar result.
|
2010-03-10 19:50:27
| 1,268,270,000 |
resolved fixed
|
f5f393d
| 1,268,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
716 | 305,537 |
Bug 305537 CTabFolder Gradient background on unselected tabs draws incorrectly
|
Using the new CTabFolder API for setting a gradient on unselected tabs results in a box being drawn when the mouse exits a tab. The box is filled with a gradient that is not aligned with the gradient on the tab.
|
2010-03-11 11:54:22
| 1,268,330,000 |
resolved fixed
|
cd2233a
| 1,268,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java
|
SWT
|
717 | 305,536 |
Bug 305536 CTabFolder in single mode shows no text
|
With the new CTabFolder refactoring, the single mode no longer shows any text.
|
2010-03-11 11:50:21
| 1,268,330,000 |
resolved fixed
|
4f82af2
| 1,268,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
718 | 305,070 |
Bug 305070 CCombo should not throw away event.doit of forwarded events
|
One example if this is: CCombo forwards key events from its drop down list to key listeners on the combo, but creates a new event object for this. If a listener sets event.doit on this new event object to false, CCombo should set event.doit to false on the original event too. I'll attach a snippet.
|
2010-03-08 17:16:30
| 1,268,090,000 |
resolved fixed
|
9dd9bf7
| 1,268,090,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
719 | 302,972 |
Bug 302972 GIF with origin geometry wrongly render transparency on windows 7
|
Eclipse 3.5.1 Sorry if this is a dup, I didn't find anything similar. Some GIF images produce wrong transparency rendering on Windows 7. Apparently, the problematic images specify an "Origin geometry" to offset the real image contents from the top-left corner. For the affected images, ImageMagick::identify -verbose says something like the following: Geometry: 13x14+0+0 ... Page geometry: 16x16+0+2 Origin geometry: +0+2 For normal (working) images, the output is: Geometry: 16x16+0+0 ... Page geometry: 16x16+0+0 The images were created using GIMP. When used as icons in a label provider, the problematic images have their transparent pixels filled with another palette color. I will attach screenshots and example images.
|
2010-02-16 11:34:36
| 1,266,340,000 |
resolved fixed
|
d9fe69e
| 1,267,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java
|
SWT
|
720 | 303,487 |
Bug 303487 NPE in Program.getProgram(..)
|
Build Identifier: 3.6M5 I20100129-1300 I am getting errors in the error log from jface with the following stacktrace but I am not sure what exactly is causing it, i.e. what set of steps is required: null Error Mon Feb 22 14:37:37 GMT 2010 Problems occurred when invoking code from plug-in: "org.eclipse.jface". java.lang.NullPointerException at org.eclipse.swt.program.Program.getProgram(Program.java:150) at org.eclipse.swt.program.Program.findProgram(Program.java:76) at org.eclipse.ui.internal.registry.EditorRegistry.getSystemExternalEditorImageDescriptor(EditorRegistry.java:1249) at org.eclipse.ui.internal.registry.EditorRegistry.getImageDescriptor(EditorRegistry.java:1457) at org.eclipse.ui.internal.ide.model.WorkbenchFile.getBaseImage(WorkbenchFile.java:63) at org.eclipse.ui.internal.ide.model.WorkbenchResource.getImageDescriptor(WorkbenchResource.java:42) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getWorkbenchImageDescriptor(JavaElementImageProvider.java:181) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.computeDescriptor(JavaElementImageProvider.java:121) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getImageLabel(JavaElementImageProvider.java:96) at org.eclipse.jdt.internal.ui.viewsupport.JavaUILabelProvider.getImage(JavaUILabelProvider.java:144) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerLabelProvider.getImage(PackageExplorerLabelProvider.java:137) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.getImage(DelegatingStyledCellLabelProvider.java:184) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.getImage(DecoratingStyledCellLabelProvider.java:167) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.update(DelegatingStyledCellLabelProvider.java:118) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.update(DecoratingStyledCellLabelProvider.java:134) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:152) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:931) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:102) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:1011) at org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer.doUpdateItem(ProblemTreeViewer.java:73) at org.eclipse.jdt.internal.ui.viewsupport.ResourceToItemsMapper.updateItem(ResourceToItemsMapper.java:74) at org.eclipse.jdt.internal.ui.viewsupport.ResourceToItemsMapper.resourceChanged(ResourceToItemsMapper.java:63) at org.eclipse.jdt.internal.ui.viewsupport.ProblemTreeViewer.handleLabelProviderChanged(ProblemTreeViewer.java:200) at org.eclipse.jface.viewers.ContentViewer$1.labelProviderChanged(ContentViewer.java:97) at org.eclipse.jface.viewers.BaseLabelProvider$1.run(BaseLabelProvider.java:74) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.BaseLabelProvider.fireLabelProviderChanged(BaseLabelProvider.java:72) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider$1.labelProviderChanged(DecoratingStyledCellLabelProvider.java:77) at org.eclipse.ui.internal.decorators.DecoratorManager$1.run(DecoratorManager.java:430) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.decorators.DecoratorManager.fireListener(DecoratorManager.java:428) at org.eclipse.ui.internal.decorators.DecorationScheduler$3.runInUIThread(DecorationScheduler.java:530) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3530) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3226) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:367) 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:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) Reproducible: Always Steps to Reproduce: Not sure but happens a few times per session.
|
2010-02-22 09:42:23
| 1,266,850,000 |
resolved fixed
|
a183c89
| 1,267,820,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
721 | 304,606 |
Bug 304606 Table - EraseItem listener produces cheese when scrolling
|
To reproduce: 1. Launch attached snippet 2. Scroll horizontally to the right as much as possible 3. Scroll horizontally to the left (very slowly) The selected line has cheese coming in from the left (see screenshot). I observed this on Vista SP2, Eclipse Build Id I20100129-1300. What I found interesting is that this only happens when an SWT.EraseItem listener is attached to the table. However the listener itself does nothing (empty).
|
2010-03-03 19:58:34
| 1,267,660,000 |
verified fixed
|
2596dc6
| 1,267,810,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
722 | 304,802 |
Bug 304802 Useless default size for Text on Cocoa
|
Build Identifier: M20090917-0800 Text.computeSize(SWT.DEFAULT, SWT.DEFAULT) doesn't return a reasonable value on Cocoa. On Windows and Linux I get a width of 64+ pixels. On Cocoa I get 4 pixels. I'm on a MacBook4,1 with Mac OS X 10.5.8. Same behavior with current 3.6 HEAD Reproducible: Always Steps to Reproduce: 1. run test case 2. text field is only a few pixels wide
|
2010-03-05 06:54:47
| 1,267,790,000 |
resolved fixed
|
805981b
| 1,267,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
723 | 304,750 |
Bug 304750 IAE when setting menu on TaskItem with only a SWT.Cascade MenuItem
| null |
2010-03-04 16:19:26
| 1,267,740,000 |
resolved fixed
|
2333840
| 1,267,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java
|
SWT
|
724 | 304,677 |
Bug 304677 Javadoc warnings in N201003032000
| null |
2010-03-04 09:20:54
| 1,267,710,000 |
closed fixed
|
6694f7a
| 1,267,720,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java
|
SWT
|
725 | 303,499 |
Bug 303499 Editors can't display EUDC mapped to single font
| null |
2010-02-22 10:48:22
| 1,266,850,000 |
resolved fixed
|
70cd7ae
| 1,267,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
726 | 302,950 |
Bug 302950 CDDS_POSTPAINT event in org.eclipse.swt.widgets.Tree hangs Eclipse because of a loop inside.
|
Build Identifier: M20100120-0800 Test case is very specific. It's reproducible under next configuration: 1) WinXP 64, Windows Server 64. 2) eclipse.buildId=M20100120-0800 eclipse.commands=-os win32 -ws win32 -arch x86 3) dtp-1.7.2RC2-201001290500 4) emf-runtime-2.5.0 5) GEF-runtime-3.5.2RC1 6) wtp-sdk-M-3.1.2-20100128184250 7) xsd-runtime-2.5.0 Reproducible: Always Steps to Reproduce: 1. Run Eclipse with configuration described in details. 2. Extract attach archive and import 4 plug-ins from there to Eclipse workspace 3. Run new Eclipse configuration 4. Create web project and open jsp, html, xhtml page with "Visual Editor" ("Visual Editor" is editor from attached plug-ins. It's only initialize SWT Mozilla Browser with xulrunner specified in org.mozilla.xulrunner.win32.win32.x86) 5. Open properties view 6. Select any file file from Project Explorer but do not open it. 7. Select any property of this file in properties view 8. Set focus to source/visual part of opened editor P. S. See attached flash video for clarification.
|
2010-02-16 09:46:13
| 1,266,330,000 |
resolved fixed
|
cdad4a6
| 1,267,110,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
727 | 301,911 |
Bug 301911 Quit from "Mac dock Icon" does not detect dirty and save workspace
|
Summary says it all: it is possible to exit Eclipse 3.6 M5 64 bit Cocoa from the dock by selecting "Quit" and thereby bypassing the normal checks on exit - the IDE is simply killed without checking for dirty files, or saving the workspace. Repeatable: always
|
2010-02-04 22:00:39
| 1,265,340,000 |
resolved fixed
|
57996e9
| 1,267,020,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
728 | 300,995 |
Bug 300995 Cocoa: Leak messages while running the FileViewer example
|
Build: I20100126-0800 Running the SWT FileViewer example prints the following messages in the console. 2010-01-27 19:44:08.654 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x19bc70 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:14.262 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x14c0b0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:24.246 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x1a2f70 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07) 2010-01-27 19:49:24.446 java[75958:17603] *** _NSAutoreleaseNoPool(): Object 0x192ca0 of class NSCFString autoreleased with no pool in place - just leaking Stack: (0x92ab4f4f 0x929c1432 0xe0628a3 0x35a0d07)
|
2010-01-27 09:33:53
| 1,264,600,000 |
resolved fixed
|
4152cdd
| 1,266,520,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
729 | 260,533 |
Bug 260533 [Contributions] menuAboutToShow is inadvertently(?) called when using a shortcut while a Browser has focus
| null |
2009-01-09 07:09:40
| 1,231,500,000 |
resolved fixed
|
9e4aa4f
| 1,266,510,000 |
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
730 | 285,223 |
Bug 285223 [Browser] authentication listener not called when navigating directly to site
| null |
2009-07-30 15:36:27
| 1,248,980,000 |
resolved fixed
|
41bdae3
| 1,266,440,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 bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
731 | 298,435 |
Bug 298435 Problem with Fullscreen in SWT.
|
On MacOS the fullscreen mode (shell.setFullScreen(true)) only works on the primary monitor, on all the other monitors the window doesn't go fullscreen. I tested this on Windows XP too but there it didn't go fullscreen on any monitor.
|
2009-12-22 15:37:08
| 1,261,510,000 |
resolved fixed
|
1d43a2b
| 1,266,410,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
732 | 302,861 |
Bug 302861 [Program] JVM crash in gio_getPrograms()
|
Hi, I think since Helios M5 (I20100129-1300) I have the problem that (too) often my eclipse instance crashes. The error is always the same which you can find in the attached dump. bye Mich;
|
2010-02-15 09:31:33
| 1,266,240,000 |
closed fixed
|
953ca18
| 1,266,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
|
SWT
|
733 | 225,401 |
Bug 225401 [SWT_AWT] Removing the AWT Canvas generates a Gtk-CRITICAL message
| null |
2008-04-02 15:03:34
| 1,207,160,000 |
resolved fixed
|
5229bea
| 1,266,340,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
734 | 271,298 |
Bug 271298 [64] Label.setBackground(..) & Label.setForeground(..) doesn't work if parent is Splashscreen on Windows XP 64bit ( win32.win32.x86_64 )
|
It seems that the Label.setBackground(..) & Label.setForeground(..) doesn't work if parent is a Splashscreen on a Windows XP 64bit ( win32.win32.x86_64 ) Assuming we have following small SplashHandler with two Labels: ------------- public class SpashHandler extends AbstractSplashHandler { @Override public void init(Shell splash) { Display display = splash.getDisplay(); Label testBackgroundLabel = new Label(splash, SWT.NONE); testBackgroundLabel.setBackground(display.getSystemColor(SWT.COLOR_RED)); testBackgroundLabel.setText("Background color shall be RED"); testBackgroundLabel.setLocation(0, 0); testBackgroundLabel.pack(); Label testForegroundLabel = new Label(splash, SWT.NONE); testForegroundLabel.setForeground(display.getSystemColor(SWT.COLOR_BLUE)); testForegroundLabel.setText("Foreground color shall be BLUE"); testForegroundLabel.setLocation(0, 20); testForegroundLabel.pack(); } } --------------- registered by: -------------- <extension point="org.eclipse.ui.splashHandlers"> <splashHandler class="com.versant.tools.rcp.handlers.SpashHandler" id="com.versant.tools.rcp.handlers.splashHandler"> </splashHandler> <splashHandlerProductBinding productId="com.versant.tools.rcp.product" splashId="com.versant.tools.rcp.handlers.splashHandler"> </splashHandlerProductBinding> </extension> ----------------- than both Label's are always painted in the default Colors like black on grey. This works fine with Windows 32bit (win32.win32.x86), Linux 32bit (linux.gtk.x86) and Linux 64bit ( linux.gtk.x86_64 ) only on a Windows 64bit like Windows XP 64 ( win32.win32.x86_64 ) it seems to be broken. ( Other platforms we haven't tested )
|
2009-04-06 06:58:32
| 1,239,020,000 |
resolved fixed
|
810eb25
| 1,265,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
735 | 301,212 |
Bug 301212 on Mac OS only: RTFTransfer does not support german umlaut
|
German umlauts () are not properly encoded when copied to the clipboard as RTF-text (from StyledText): Clipboard rtf: {\rtf1\ansi\uc1\deff0{\fonttbl{\f0\fnil Lucida Grande;}} {\colortbl\red0\green0\blue0;\red255\green255\blue255;} {\f0\fs26 \fi3\ql }}
|
2010-01-29 03:03:31
| 1,264,750,000 |
resolved fixed
|
ffcfa7d
| 1,265,820,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
736 | 69,814 |
Bug 69814 [StyledText] Surrogate -- cannot delete a complete surrogate character in java editor using backspace
|
Reporter: Huang Xing Jiang Language: Simplfied Chinese Build driver: eclipse-sourceBuild-srcIncluded-3.0M9 JDK Version: IBM JDK 1.41 Steps to recreate problem: 1. Open a text file in the text editor 2. Input a surrogate character \ud840\udc00 in the text file 2.Try to delete character \ud840\udc00 using backspace <<Error>> Only half of the character was deleted. Another half appears as blank in the text editor, you can select the character using keyboard or mouse, but cannot see it <<Expected Result>> The whole surrogate character \ud840\udc00 should be deleted <<Cause>> The text editor supposes that "Backspace" action will only delete "char" (16bit) in the editor, while surrogate character uses "two chars" (32 bit). <<Solution>> Modify "plugins\org.eclipse.swt\Eclipse SWT Custom Widgets\common\org\eclipse\swt\custom\StyledText.java" to take Backspace as a string cluster delete action
|
2004-07-12 05:22:46
| 1,089,620,000 |
resolved fixed
|
ef60ea2
| 1,265,750,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
737 | 302,053 |
Bug 302053 CLabel onDispose not called
|
Build Identifier: M20090917-0800 It appears from the source code that in CLabel, onDispose() is never called. It appears that the intention is to do so during the disposal of the control, because disposeListener is initialized to do so, but it does not seem that the listener is actually used. Reproducible: Always Steps to Reproduce: 1. Examine source code for CLabel 2. note that disposeListener is initialized, but not used 3.
|
2010-02-07 01:08:18
| 1,265,520,000 |
resolved fixed
|
ba7db5f
| 1,265,750,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java
|
SWT
|
738 | 301,684 |
Bug 301684 Fatal crash when creating Cursor
| null |
2010-02-03 06:28:27
| 1,265,200,000 |
resolved fixed
|
e4cdd0c
| 1,265,310,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java
|
SWT
|
739 | 301,863 |
Bug 301863 NPE in PrintDialog
|
Windows has code in setPrinterData to ensure that the printerData instanceVariable is never null. This code is missing on every other platform. missing line is in setPrinterData -> if (data == null) data = new PrinterData(); example of NPE from trying to print on Cocoa. java.lang.NullPointerException at org.eclipse.swt.printing.PrintDialog.open(PrintDialog.java:157) at org.eclipse.jface.text.TextViewer.print(TextViewer.java:4516) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor$11.run(AbstractDecoratedTextEditor.java:1334) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:185) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.execute(LegacyHandlerWrapper.java:109) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:470) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:824) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:510) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:125) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1026) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3705) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1314) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1337) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1322) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1351) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1347) at org.eclipse.swt.widgets.Canvas.sendKeyEvent(Canvas.java:440) at org.eclipse.swt.widgets.Control.doCommandBySelector(Control.java:914) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4929) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSResponder.interpretKeyEvents(NSResponder.java:56) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:515) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4839) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:209) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1890) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:1983) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4901) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4467) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4544) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:105) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3221) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) 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:367) 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:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363)
|
2010-02-04 12:28:00
| 1,265,300,000 |
resolved fixed
|
be703a4
| 1,265,300,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/emulated/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/motif/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/photon/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/wpf/org/eclipse/swt/printing/PrintDialog.java
|
SWT
|
740 | 294,986 |
Bug 294986 [Image Loading] What about wrong colours while saving IMAGE_BMP images via ImageLoader?
|
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 Build Identifier: There are some really old bug reports according the ImageLoader for different platforms (Linux/GTK, OS X) - and their status is still NEW: <a name="b6172" href="show_bug.cgi?id=6172">6172</a> <a name="b37494" href="show_bug.cgi?id=37494">37494</a> <a name="b228831" href="show_bug.cgi?id=228831">228831</a> BTW: this one is also still open for Win2K: <a name="b134663" href="show_bug.cgi?id=134663">134663</a> Reproducible: Always Steps to Reproduce: Display display = Display.getDefault(); GC gc = new GC(display); Image snapshot = new Image(display, display.getBounds()); gc.copyArea(snapshot, 0, 0); ImageLoader loader = new ImageLoader(); loader.data = new ImageData[]{snapshot.getImageData()}; loader.save("snapshot.bmp", SWT.IMAGE_BMP); gc.dispose(); image.dispose(); //display.dispose();
|
2009-11-12 11:30:32
| 1,258,040,000 |
resolved fixed
|
cfa228c
| 1,265,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/WinBMPFileFormat.java
|
SWT
|
741 | 185,934 |
Bug 185934 TRAVERSAL-Events not delivered to InteractiveSplashHandler
|
i have extended the extensionpoint org.eclipse.ui.splashHandlers to provide a custom splashscreen for my rcp application. it works right now on mac os x, but when i start it on a linux machine it seems that no one of the traversal-events, e.g. SWT.TRAVERSAL_TAB_NEXT and SWT.TRAVERSAL_TAB_PREVIOUS are delivered. to reproduce you can simply try the 'simulated login session', the TAB-key is not working to change the focus to the password-field. i have tried to add an TraverseListener and it was never triggered. -Eclipse 3.3M7 -Linux Ubuntu Feisty Fawn (latest Release) -Java 1.5 (Sun JDK) this bug seems linux/gtk specific because it works without problems on mac os x using eclipse 3.3M7 too.
|
2007-05-08 07:15:34
| 1,178,620,000 |
resolved fixed
|
4a237f8
| 1,265,110,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
742 | 279,454 |
Bug 279454 Javadoc of CTabItem#setToolTipText(String) should tell that & is stripped
|
I20090605-1444 Javadoc of CTabItem#setToolTipText(String) should tell that the mnemonic indicator (&) is not rendered. Cf. blurb in Control#setToolTipText(..) and TabItem#setToolTipText(..): * <p> * The mnemonic indicator (character '&') is not displayed in a tool tip. * To display a single '&' in the tool tip, the character '&' can be * escaped by doubling it in the string. * </p>
|
2009-06-08 08:40:06
| 1,244,460,000 |
resolved fixed
|
5ada77d
| 1,265,040,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
|
SWT
|
743 | 298,942 |
Bug 298942 XPCOM error after refreshing Browser widget
|
Build Identifier: 20090920-1017 My mozilla version: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.6) Gecko/20091216 Fedora/3.5.6-1.fc12 Firefox/3.5.6 Reproducible: Always Steps to Reproduce: 1. Open some URI, which contains web form 2. Fill and submit the form with some values, to get errors by web page 3. Click refresh 4. Browser should ask you 'To display this page, application must send information that will repeat any action (such as a search or order information) that was performed earlier' 5. Select 'Cancel'
|
2010-01-06 08:16:30
| 1,262,780,000 |
resolved fixed
|
448b24b
| 1,264,780,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
744 | 301,018 |
Bug 301018 [browser] Mozilla browser instances held in memory forever due to dispose listener on display
|
Build Identifier: M20090917-0800 After you create an org.eclipse.swt.browser.Mozilla it will never be garbage collected since it adds a dispose listener to the Display and never removes it. The listener is added as shown below... 1186: display.addListener (SWT.Dispose, new Listener () { ...etc This seems like an obvious memory leak and caused me some confusion whilst debugging. AFAICT the org.eclipse.swt.browser.IE browser doesn't hang around like this. Reproducible: Always
|
2010-01-27 11:23:19
| 1,264,610,000 |
resolved fixed
|
a7e4b97
| 1,264,780,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
745 | 301,091 |
Bug 301091 Compile warnings in official build I20100127-1800
|
I20100127-1800. 1. WARNING in _64/temp.folder/@dot.src/org/eclipse/swt/accessibility/Accessible.java (at line 2685) Object [] siblings = event.children; The local variable siblings is never read Note that you can set the project specific settings for the SWT projects so that those things are flagged in the developer workspace. Maybe they are already set to 'Warning' but the developers tend to ignore them? If so, you can boost the severity to 'Error' so that those things get noticed easily in the workspace.
|
2010-01-28 02:44:53
| 1,264,660,000 |
resolved fixed
|
2394d38
| 1,264,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
746 | 300,641 |
Bug 300641 Compile warnings in official build I20100124-0800
|
I20100124-0800. 1. WARNING in /temp.folder/@dot.src/org/eclipse/swt/accessibility/Accessible.java (at line 14) import org.eclipse.swt.SWT; The import org.eclipse.swt.SWT is never used
|
2010-01-25 02:53:27
| 1,264,410,000 |
verified fixed
|
ed928c7
| 1,264,550,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/carbon/org/eclipse/swt/accessibility/Accessible.java bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java bundles/org.eclipse.swt/Eclipse SWT Accessibility/emulated/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
747 | 252,390 |
Bug 252390 Check boxes are movable when Tree/Table has movable columns
|
Create a Tree or Table with check boxes and movable columns. Move one of the columns to the far left. The check boxes move right.
|
2008-10-28 11:15:58
| 1,225,210,000 |
resolved fixed
|
76da615
| 1,264,070,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSNotificationCenter.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
748 | 293,931 |
Bug 293931 Javadoc of PrinterData.startPage/endPage is wrong
|
3.6 M3. The Javadoc for PrinterData.startPage says: * the start page of a page range, used when scope is PAGE_RANGE. * This value can be from 1 to the maximum number of pages for the platform. However, the default value is '0'. Either the default needs to be changed to '1' or the Javadoc has to mention '0'. Same applies to endPage.
|
2009-11-02 10:18:21
| 1,257,180,000 |
verified fixed
|
7c0b266
| 1,264,000,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java
|
SWT
|
749 | 295,483 |
Bug 295483 3.5.x regression: UI randomly freezes
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 Build Identifier: 3555 Creating an ApplicationWindow which is updated by many threads can cause a stall within the display main loop. All UI events will freeze until a Windows event occurs (keyboard/mouse/window activity). The test code (see below) works fine on 3.4.x but not on 3.5.x. Using a modified version of 3.5.x with the Display.foregroundIdleProc method from 3.4.x works. This appears to be an SWT problem - my test case uses a JFace ApplicationWindow as I couldn't get a vanilla Shell to fail in a simple test. Reproducible: Always Steps to Reproduce: Run the code below against 3.5.x SWT/JFace Leave the keyboard and mouse alone, and the application will (usually v. quickly) freeze. Moving the mouse over the window brings the application back to life. Test Code: import org.eclipse.jface.window.ApplicationWindow; import org.eclipse.swt.SWT; import org.eclipse.swt.events.DisposeEvent; import org.eclipse.swt.events.DisposeListener; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; /** * @author jchown */ public class TestUIThread { private static final int NUM_THREADS = 4; public static void main(String[] args) { final Display display = new Display(); final Label[] labels = new Label[NUM_THREADS]; ApplicationWindow window = new ApplicationWindow(null) { @Override public Control createContents(Composite parent) { Shell shell = getShell(); shell.setText("UI Thread Test"); Composite contents = new Composite(parent, SWT.NONE); contents.setLayout(new GridLayout(1, false)); contents.setLayoutData(new GridData(GridData.FILL_VERTICAL | GridData.GRAB_VERTICAL)); for (int i = 0; i < labels.length; i++) { labels[i] = new Label(contents, 0); labels[i].setText("-----------------------------"); labels[i].setLayoutData(new GridData(GridData.FILL_VERTICAL | GridData.GRAB_VERTICAL)); } shell.addDisposeListener(new DisposeListener() { @Override public void widgetDisposed(DisposeEvent arg0) { display.dispose(); } }); return contents; } }; window.open(); for (int i = 0; i < labels.length; i++) { final Label label = labels[i]; final String id = "Thread " + (i + 1); Thread thread = new Thread() { int tick = 0; @Override public void run() { while (!label.isDisposed()) { try { sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } display.syncExec(new Runnable() { @Override public void run() { if (!label.isDisposed()) label.setText(id + ":" + tick); } }); tick++; } } }; thread.setDaemon(true); thread.setPriority(Thread.MIN_PRIORITY); thread.start(); } while (!display.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } }
|
2009-11-18 11:13:59
| 1,258,560,000 |
resolved fixed
|
8a5371c
| 1,263,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
750 | 300,070 |
Bug 300070 Compiler warning in I20100119-0800
|
1. WARNING in _64/temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read 1. WARNING in /temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read 1. WARNING in _ppc.arm/temp.folder/@dot.src/org/eclipse/swt/widgets/Display.java (at line 3220) String id = Integer.toHexString(pid)+"_"+Integer.toHexString(handle); The local variable id is never read
|
2010-01-19 11:59:29
| 1,263,920,000 |
resolved fixed
|
fc99761
| 1,263,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
751 | 299,241 |
Bug 299241 [OLE] Menus dissapear when opening/closing a RAC view with embedded MS Word 2007 (using OleControlSite)
|
Build Identifier: I20090611-1540 (Version: 3.5.0) Try creating a new RAC View with embedded MS Word 2007. Using the OleControlSite object in order to do that. In the application, when opening this view, the application menus dissapear. If trying to set the application menus on the OleFrame object, then when opening the view the menus are there. But when closing the view, the menus in the application dissapear as well. Problem: opening and closing the view, shouldn't dispose of the whole application menus. (example code in the attachments) Reproducible: Always Steps to Reproduce: 1. Create new View extending ViewPart 2. In createPartControl method, create the OleFrame object and the OleControlSite object with embedded word document. 3. Run the RAC application, open this view -> notice that the application menus have dissapeared. 4. Instead of step 3. -> set the application menus from the workbench on the OleFrame object. 5. Run the RAC application, open this view -> notice that the application menus are there and working. 6. Close the view -> notice that the application menus have dissapeared.
|
2010-01-11 04:06:03
| 1,263,200,000 |
resolved fixed
|
5401cd6
| 1,263,920,000 |
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java
|
SWT
|
752 | 300,056 |
Bug 300056 N20100117-2000 and up has screwed up layouts
| null |
2010-01-19 10:21:20
| 1,263,910,000 |
resolved fixed
|
ea1d575
| 1,263,920,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StackLayout.java
|
SWT
|
753 | 299,094 |
Bug 299094 [Program] org.eclipse.swt.program.Program.launch() will add prefix "file://" before fileName
| null |
2010-01-08 01:46:08
| 1,262,930,000 |
resolved fixed
|
c75fa2a
| 1,263,850,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java bundles/org.eclipse.swt/Eclipse SWT Program/carbon/org/eclipse/swt/program/Program.java bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
754 | 298,612 |
Bug 298612 'gio_getMimeInfo' seems to leak a file descriptor to "/usr/share/mime/globs" on every call
|
When running under CDT, I can use eclipse for a while. Eventually, (within 12-14 hours), I can no longer save modified files. I also cannot save the workspace state upon exiting. When looking at the "Details" area of the error box, the system complains that too many files are open. Indeed, when I do an 'ls -al' of /proc/<PID>/fd (where PID is the process ID associated with java/Eclipse), the system reports '/usr/share/mime/globs' is opened 878 times. I am running Fedora 11 on x86_64 and Sun's jre 1.6.0_16. I was able to reproduce this with a few different projects. -- Configuration Details -- Product: Eclipse 1.3.0.20091112-2040 (org.eclipse.epp.package.cpp.product) Installed Features: org.eclipse.platform 3.6.0.v20091109-9gF72GDmFufcs2XNpLRoGQ7j_VEb2CRgdc
|
2009-12-29 10:41:29
| 1,262,100,000 |
resolved fixed
|
b6666a5
| 1,263,840,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
|
SWT
|
755 | 299,686 |
Bug 299686 Control.print results in "unlockFocus called too many time"
|
Hi, I'm not sure whether this is an SWT bug, or a Coca problem, or simply a bug in my code. I've attached a simple test case that should hopefully enable you to reproduce the problem. I'm writing a visual designer that renders a series of widgets onto a Canvas. Some widgets are fully owner-drawn, while others should reflect native controls (buttons, check boxes, etc). For these "native-control-look-alike" widgets, my approach is to dynamically create SWT controls on demand, capture them into an SWT image by means of the Control.print() API, and use the captured image for rendering the widget's visual representation onto a canvas. Now, as soon as a widget uses the Control.print() approach, I start getting "unlockFocus called too many time" errors on Eclipse's console, and the images fail to render. The attached test case exhibits the same behavior. OS: MacOS 10.6.2 Eclipse version: eclipse-rcp-galileo-SR1-macosx-cocoa-x86_64, Build id: 20090920-1017 Java: java version "1.6.0_17" Java(TM) SE Runtime Environment (build 1.6.0_17-b04-248-10M3025) Java HotSpot(TM) 64-Bit Server VM (build 14.3-b01-101, mixed mode) thanks for your time, Karl
|
2010-01-14 14:18:20
| 1,263,500,000 |
resolved fixed
|
16bac3e
| 1,263,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
756 | 298,473 |
Bug 298473 Safari and WebKit should navigate to about:blank in setText()
|
I think the current implementation of setText() results in the current page being overwritten, so it doesn't get an entry in the history.
|
2009-12-23 10:02:22
| 1,261,580,000 |
resolved fixed
|
9837bb6
| 1,263,580,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 bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java
|
SWT
|
757 | 298,805 |
Bug 298805 [widgets] gtk2.18 - Blank pages in the install wizard
|
Using I20091230-0802 (the latest build from the API branch), there are pages missing from the Install Wizard. In particular, after I select something to install, hit next, the - Install Details - Review Licenses are blank. (Note: Finish is not enabled either because I cannot accept the license).
|
2010-01-04 19:54:57
| 1,262,650,000 |
resolved fixed
|
a3eda06
| 1,263,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
758 | 295,959 |
Bug 295959 [Widgets] Embedded native view can not receive Enter key event on Mac.
| null |
2009-11-23 23:11:11
| 1,259,040,000 |
resolved fixed
|
b6a9973
| 1,263,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
759 | 119,192 |
Bug 119192 [CCombo] CCombo Mouse problem (listeners not fired)
|
The CCombo does not responde to MouseMove or MouseTrack listener. Also, does not respond as Control throught Display (Gets Text and Button).
|
2005-12-04 13:30:20
| 1,133,720,000 |
resolved fixed
|
49d8ee9
| 1,263,540,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
760 | 280,005 |
Bug 280005 Crash due to call in SWT code for RHEL 4
|
Build ID: Eclipse 3.4.2 Steps To Reproduce: Our product, based on Eclipse 342 is crashing on RHEL 4 only for a particular scenario. The core dump below indicates the crash point is in the SWT code. 1XHEXCPMODULE Module: /usr/lib/libgtk-x11-2.0.so.0 1XHEXCPMODULE Module_base_address: 021C7000 The crash point is in swt code: 3XMTHREADINFO "main" TID:0x0983A000, j9thread_t:0x0981F464, state:R, prio=6 3XMTHREADINFO1 (native thread ID:0x4956, native priority:0x6, native policy:UNKNOWN) 4XESTACKTRACE at org/eclipse/swt/internal/gtk/OS._g_main_context_iteration(Native Method) 4XESTACKTRACE at org/eclipse/swt/internal/gtk/OS.g_main_context_iteration(Bytecode PC:9(Compiled Code)) 4XESTACKTRACE at org/eclipse/swt/widgets/Display.readAndDispatch(Bytecode PC:23(Compiled Code)) 4XESTACKTRACE at org/eclipse/ui/internal/Workbench.runEventLoop(Bytecode PC:9) More information: Contact me if you require more information.
|
2009-06-11 16:06:42
| 1,244,750,000 |
resolved fixed
|
1ad1350
| 1,263,510,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 bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.