id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
3,061
84,733
Bug 84733 TabFolder position change broken
1. Open the control example 2. Switch to the TabFolder pane 3. Switch between SWT.TOP and SWT.BOTTOM When using the SWT.BOTTOM style, the contents disappear.
2005-02-08 15:05:56
1,107,890,000
verified fixed
3e26cc4
1,108,160,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java
SWT
3,062
84,535
Bug 84535 TitleAreaDialog doesn't dismiss on <ENTER> if contains Combo(SWT.SIMPLE)
A TitleAreaDialog that contains a Combo in SWT.SIMPLE mode no longer responds to pressing ENTER by activating the default OK button and closing the dialog. When the test code below is run, click the button "Press Me". On the dialog invoked, press <ENTER>. The dialog should close, but doesn't. Using 3.1M4. -------8<------ package com.yoogalu.priceservice.client.ui; import org.eclipse.jface.dialogs.TitleAreaDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class DefaultButtonBugDemo { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Button b = new Button(shell, SWT.NONE); b.setText("Press Me"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { TitleAreaDialog dialog = new DefaultButtonBugDemo().new MyDialog(shell); dialog.setBlockOnOpen(true); dialog.open(); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } public class MyDialog extends TitleAreaDialog { public MyDialog(Shell shell) { super(shell); } protected Control createDialogArea(Composite parent) { Composite composite = (Composite) super.createDialogArea(parent); Combo combo = new Combo(composite, SWT.SIMPLE); combo.setItems(new String[]{"ITEM1", "ITEM2"}); return composite; } } } ----------8<--------
2005-02-07 00:11:54
1,107,750,000
resolved fixed
008439e
1,108,150,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
3,063
85,006
Bug 85006 TableColumn.pack() of column 0 wth SWT.CHECK is bad
In the following case, column 0 is not packing correctly: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new RowLayout(SWT.HORIZONTAL)); final Table table = new Table(shell, SWT.BORDER | SWT.CHECK); table.setLayoutData(new RowData(-1, 400)); table.setHeaderVisible(true); TableColumn column0 = new TableColumn(table, SWT.NONE); column0.setText("Column 0"); TableColumn column1 = new TableColumn(table, SWT.NONE); column1.setText("Column 1"); TableColumn column2 = new TableColumn(table, SWT.NONE); column2.setText("Column 2"); TableColumn column3 = new TableColumn(table, SWT.NONE); column3.setText("Column 3"); TableColumn column4 = new TableColumn(table, SWT.NONE); column4.setText("Column 4"); for (int i = 0; i < 20; i++) { TableItem item = new TableItem(table, SWT.NONE); String[] text = new String[]{"abc"+i, "def"+i, "ghi"+i, "jkl"+i, "mnop"+i}; item.setText(text); } column0.pack(); column1.pack(); column2.pack(); column3.pack(); column4.pack(); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
2005-02-11 10:53:08
1,108,140,000
resolved fixed
718bc9a
1,108,150,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
SWT
3,064
84,665
Bug 84665 Clarify Javadoc of Display.postEvent
I20050202-0800 The return value of Display.postEvent's Javadoc says: * @return true if the event was generated or false otherwise It is not clear whether this means that it's not supported i.e. will always return false for that event (type) or whether it means it did not work this time and I can try it again until I get true.
2005-02-08 05:56:20
1,107,860,000
resolved fixed
4e26a42
1,108,060,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
SWT
3,065
84,861
Bug 84861 Display.post(Event) not working for char key events SWT.TAB, SWT.ESC, SWT.DEL and SWT.BS
null
2005-02-10 02:21:56
1,108,020,000
verified fixed
7929c76
1,108,050,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
SWT
3,066
81,254
Bug 81254 ControlExample spews warnings
observed on Solaris and hpux - run the ControlExample with warnings turned on (do this in Device I think) - a scrollbar warning is spewed on each page that's shown - this is ugly when using the swt-only download since warning messages are not supressed in this context
2004-12-15 12:41:15
1,103,130,000
resolved fixed
e27de3e
1,107,970,000
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CanvasTab.java
SWT
3,067
84,630
Bug 84630 resizing a TreeColumn does not fire Resize or Move
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns and Header Visible checkboxes - turn on listening for SWT.Move and SWT.Resize events - use the mouse to resize the columns in the example Tree with columns and note that no Resize or Move events are fired - doing the equivalent steps on the Table tab does result in these events firing
2005-02-07 16:47:18
1,107,810,000
resolved fixed
dd1f487
1,107,970,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
SWT
3,068
84,783
Bug 84783 Directory dialog does not deal with non-UTF8 filenames
null
2005-02-09 10:27:34
1,107,960,000
verified fixed
4451ea4
1,107,960,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java
SWT
3,069
84,755
Bug 84755 Cannot open filenames with 8-bit characters
null
2005-02-08 21:55:10
1,107,920,000
verified fixed
24afc87
1,107,960,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
SWT
3,070
84,602
Bug 84602 scrolling Tree with columns horizontally fires Move and Resize events
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns checkbox - set the Tree's size to 100x100 so that a horizontal scrollbar is needed - turn on listening for SWT.Move and SWT.Resize events - scroll the example Tree on the page horizonally and note that Move and Resize events are fired - this does not match Tree on the other platforms, and does not match Table on win32
2005-02-07 12:58:56
1,107,800,000
resolved fixed
d73d99b
1,107,820,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,071
84,600
Bug 84600 resizing TreeColumn leaves cheese
- run the ControlExample, go to the Tree tab - turn on the Multiple Columns, Header Visible and Lines Visible checkboxes - in the first example Tree on the page, resize the Name column by dragging its right column line to span most of the available tree width (ie.- to roughly where the Modified column ends by default) - resize the Name column back to its original size, and the table contents will not redraw properly, as shown in the attached image
2005-02-07 12:48:23
1,107,800,000
resolved fixed
6162900
1,107,810,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,072
54,973
Bug 54973 [browser] Default WindowEvent to handle normal window open case - feature request
In the documenation for WindowEvent is about 50-lines of code that is noted as this is the way "..are typically handled". This makes an HTML link that opens another window such as &lt;a href="...url.." target="_blank"&gt; work. Since this is the typical use (as stated in the docs), why not make this the default behavior? It's a lot of code to get in and get right. What I actually want is for the browser to handle _blank target by opening the system browser, as it would if I loaded the HTML into IE, not to open another SWT browser. I was not able to get this to work.
2004-03-16 12:00:42
1,079,460,000
resolved fixed
ca98239
1,107,800,000
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/OpenWindowListener.java bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java bundles/org.eclipse.swt/Eclipse SWT Browser/motif/org/eclipse/swt/browser/WindowCreator.java bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/WindowCreator.java bundles/org.eclipse.swt/Eclipse SWT Browser/photon/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
SWT
3,073
84,581
Bug 84581 Check button size does not change when right aligned
Run the control example. - Button tab - SWT.CHECK - Alignment: Right - Horizontal Fill - Preferred Button does not return to its preferred size. The problem is that we have set the usize on the child, but not reset it when we ask for its preferred size.
2005-02-07 11:19:19
1,107,790,000
verified fixed
9b0ccc5
1,107,790,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
SWT
3,074
71,262
Bug 71262 Combo boxes ignoring visible item count
After setting the visible item count , the combo box ignores it and displays all items. To test pass the method a 0 , and it will still show all items. If you pass a 0 in the win32 impl. nothing shows.
2004-08-02 19:25:23
1,091,490,000
resolved wontfix
0441770
1,107,560,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
3,075
30,968
Bug 30968 DCR:Combo SWT.SIMPLE not implemented on GTK
Open ControlExample switch Combo style from DROP_DOWN to SIMPLE. Style is not supported. The Combobox by itself does not change but its location is modified, which is bizarre.
2003-02-05 11:01:35
1,044,460,000
resolved wontfix
6c55e6d
1,107,560,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
3,076
84,404
Bug 84404 Disabled button stops events
Run the following code. Setting button 2 to be disabled stops events from being sent to button 3, even though it is above. public static void main(String [] args) { Display display = new Display(); Shell shell = new Shell(display); Composite c = new Composite(shell, SWT.NONE); c.setSize(800,600); Button b1 = new Button(c, SWT.PUSH); b1.setText("Button 1"); b1.setSize(400,400); Button b2 = new Button(c, SWT.PUSH); b2.setText("Button 2"); b2.setSize(400,400); b2.setEnabled(false); Button b3 = new Button(c, SWT.PUSH); b3.setText("Button 3"); b3.setSize(400,400); b3.moveAbove(b1); c.addListener(SWT.MouseMove, new Listener() { public void handleEvent(Event event) { System.out.println("cheeze:" + event.x + "," + event.y); } }); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); }
2005-02-03 18:25:12
1,107,470,000
resolved fixed
43df143
1,107,470,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/Shell.java
SWT
3,077
84,383
Bug 84383 [browser] can't navigate to eclipse bugzilla
null
2005-02-03 16:04:18
1,107,460,000
resolved fixed
868a13a
1,107,470,000
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/Browser.java
SWT
3,078
84,085
Bug 84085 XP style not support with Button with SWT.ARROW
When you create a Button with the SWT.ARROW style and XP styling is enabled, the button still shows older beveled styling.
2005-01-31 15:25:09
1,107,200,000
resolved fixed
ee6b656
1,107,450,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/Button.java
SWT
3,079
82,739
Bug 82739 EXCEPTION_ACCESS_VIOLATION hovering over check in table with SWT.CHECK style
Version: 3.1.0 Build id: I20050112-1200 When i hover over the check mark of a table that was created with the SWT.CHECK style bit and have no text in the first column i get an EXCEPTION_ACCESS_VIOLATION. Will attach a snippet to reproduce. An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x773D4933 Function=Ordinal155+0x58 Library=C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1499) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:172) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3103) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3376) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1575) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2452) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.tigris.subversion.subclipse.ui.actions.CommitAction.confirmCommit(CommitAction.java:188) at org.tigris.subversion.subclipse.ui.actions.CommitAction$1.run(CommitAction.java:82) at org.tigris.subversion.subclipse.ui.repository.RepositoryManager.run(RepositoryManager.java:366) at org.tigris.subversion.subclipse.ui.actions.SVNAction$1.run(SVNAction.java:228) at org.tigris.subversion.subclipse.ui.actions.SVNAction$2.run(SVNAction.java:237) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.tigris.subversion.subclipse.ui.actions.SVNAction.run(SVNAction.java:234) at org.tigris.subversion.subclipse.ui.actions.CommitAction.execute(CommitAction.java:101) at org.tigris.subversion.subclipse.ui.actions.SVNAction.run(SVNAction.java:58) at org.eclipse.ui.actions.ActionDelegate.runWithEvent(ActionDelegate.java:70) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:234) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2454) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1577) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1543) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:287) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:274) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:255) at org.eclipse.core.launcher.Main.run(Main.java:811) at org.eclipse.core.launcher.Main.main(Main.java:795) Dynamic libraries: 0x00400000 - 0x00407000 C:\j2sdk1.4.2\bin\javaw.exe 0x7C900000 - 0x7C9B0000 C:\WINDOWS\system32\ntdll.dll 0x7C800000 - 0x7C8F4000 C:\WINDOWS\system32\kernel32.dll 0x77DD0000 - 0x77E6B000 C:\WINDOWS\system32\ADVAPI32.dll 0x77E70000 - 0x77F01000 C:\WINDOWS\system32\RPCRT4.dll 0x77D40000 - 0x77DD0000 C:\WINDOWS\system32\USER32.dll 0x77F10000 - 0x77F56000 C:\WINDOWS\system32\GDI32.dll 0x77C10000 - 0x77C68000 C:\WINDOWS\system32\MSVCRT.dll 0x08000000 - 0x08136000 C:\j2sdk1.4.2\jre\bin\client\jvm.dll 0x76B40000 - 0x76B6D000 C:\WINDOWS\system32\WINMM.dll 0x10000000 - 0x10007000 C:\j2sdk1.4.2\jre\bin\hpi.dll 0x00840000 - 0x0084E000 C:\j2sdk1.4.2\jre\bin\verify.dll 0x00850000 - 0x00868000 C:\j2sdk1.4.2\jre\bin\java.dll 0x00870000 - 0x0087D000 C:\j2sdk1.4.2\jre\bin\zip.dll 0x00940000 - 0x0094F000 C:\j2sdk1.4.2\jre\bin\net.dll 0x71AB0000 - 0x71AC7000 C:\WINDOWS\system32\WS2_32.dll 0x71AA0000 - 0x71AA8000 C:\WINDOWS\system32\WS2HELP.dll 0x03000000 - 0x03008000 C:\j2sdk1.4.2\jre\bin\nio.dll 0x03420000 - 0x0346F000 D:\eclipse-SDK-I20050112-1200-win32\plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86\swt-win32-3119.dll 0x774E0000 - 0x7761C000 C:\WINDOWS\system32\ole32.dll 0x773D0000 - 0x774D2000 C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\COMCTL32.dll 0x77F60000 - 0x77FD6000 C:\WINDOWS\system32\SHLWAPI.dll 0x763B0000 - 0x763F9000 C:\WINDOWS\system32\comdlg32.dll 0x7C9C0000 - 0x7D1D4000 C:\WINDOWS\system32\SHELL32.dll 0x77120000 - 0x771AC000 C:\WINDOWS\system32\OLEAUT32.dll 0x76390000 - 0x763AD000 C:\WINDOWS\system32\IMM32.dll 0x74D90000 - 0x74DFB000 C:\WINDOWS\system32\USP10.dll 0x035B0000 - 0x035B7000 C:\Program Files\Logitech\MouseWare\System\LgWndHk.dll 0x035F0000 - 0x035F8000 D:\eclipse-SDK-I20050112-1200-win32\plugins\org.eclipse.core.resources.win32_3.0.0\os\win32\x86\core_3_1_0.dll 0x03750000 - 0x03761000 C:\WINDOWS\system32\ctagent.dll 0x73F10000 - 0x73F6C000 C:\WINDOWS\system32\DSOUND.dll 0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll 0x5AD70000 - 0x5ADA8000 C:\WINDOWS\system32\uxtheme.dll 0x74C80000 - 0x74CAC000 C:\WINDOWS\system32\oleacc.dll 0x76080000 - 0x760E5000 C:\WINDOWS\system32\MSVCP60.dll 0x03830000 - 0x03AF5000 C:\WINDOWS\system32\xpsp2res.dll 0x77B40000 - 0x77B62000 C:\WINDOWS\system32\Apphelp.dll 0x76FD0000 - 0x7704F000 C:\WINDOWS\system32\CLBCATQ.DLL 0x77050000 - 0x77115000 C:\WINDOWS\system32\COMRes.dll 0x75CF0000 - 0x75D81000 C:\WINDOWS\System32\mlang.dll 0x6EEC0000 - 0x6EEEA000 D:\data\eclipse\workspace\javahl-win32\libapr.dll 0x71A50000 - 0x71A8F000 C:\WINDOWS\system32\MSWSOCK.dll 0x6EE50000 - 0x6EE59000 D:\data\eclipse\workspace\javahl-win32\libapriconv.dll 0x04470000 - 0x04569000 D:\data\eclipse\workspace\javahl-win32\libeay32.dll 0x71AD0000 - 0x71AD9000 C:\WINDOWS\system32\WSOCK32.dll 0x04570000 - 0x0460E000 D:\data\eclipse\workspace\javahl-win32\libdb42.dll 0x04610000 - 0x04640000 D:\data\eclipse\workspace\javahl-win32\ssleay32.dll 0x6EE60000 - 0x6EE99000 D:\data\eclipse\workspace\javahl-win32\libaprutil.dll 0x03C50000 - 0x03C60000 C:\Program Files\Subversion\bin\intl.dll 0x04640000 - 0x0470C000 D:\data\eclipse\workspace\javahl-win32\libsvnjavahl-1.dll 0x76780000 - 0x76789000 C:\WINDOWS\system32\SHFOLDER.dll 0x76380000 - 0x76385000 C:\WINDOWS\system32\msimg32.dll 0x037E0000 - 0x037EB000 C:\Program Files\Common Files\Logitech\Scrolling\LgMsgHk.dll 0x76C90000 - 0x76CB8000 C:\WINDOWS\system32\imagehlp.dll 0x59A60000 - 0x59B01000 C:\WINDOWS\system32\DBGHELP.dll 0x76BF0000 - 0x76BFB000 C:\WINDOWS\system32\PSAPI.DLL Heap at VM Abort: Heap def new generation total 9152K, used 1888K [0x10010000, 0x109f0000, 0x113e0000) eden space 8192K, 20% used [0x10010000, 0x101b0ab8, 0x10810000) from space 960K, 23% used [0x10900000, 0x10937648, 0x109f0000) to space 960K, 0% used [0x10810000, 0x10810000, 0x10900000) tenured generation total 121024K, used 77731K [0x113e0000, 0x18a10000, 0x20210000) the space 121024K, 64% used [0x113e0000, 0x15fc8da8, 0x15fc8e00, 0x18a10000) compacting perm gen total 28672K, used 28508K [0x20210000, 0x21e10000, 0x24210000) the space 28672K, 99% used [0x20210000, 0x21de72d8, 0x21de7400, 0x21e10000)
2005-01-13 05:19:27
1,105,610,000
resolved fixed
dd05f31
1,107,220,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
SWT
3,080
84,077
Bug 84077 Table.pack() extends last column to include scroll bar
The following code causes a shell to grow without bounds. The problem is that Windows expands the last column to include the scroll bar when Column.pack() is called. import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; public class EclipseCorner4 { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Table Column Pack"); GridLayout vertical = new GridLayout(); vertical.numColumns = 1; shell.setLayout(vertical); final Table table = new Table(shell, SWT.SINGLE); table.setHeaderVisible(true); table.setLinesVisible(true); final TableColumn col1 = new TableColumn(table, SWT.CENTER); col1.setText("Column 1"); final TableColumn col2 = new TableColumn(table, SWT.CENTER); col2.setText("Column 2"); col1.pack(); col2.pack(); Button button = new Button(shell, SWT.PUSH); button.setText("Fill Data"); button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent event) { // table.layout(true); table.setRedraw(false); table.removeAll(); String[] data1 = { "1", "2" }; String[] data2 = { "3", "4" }; TableItem item1 = new TableItem(table, SWT.NONE); item1.setText(data1); TableItem item2 = new TableItem(table, SWT.NONE); item2.setText(data2); col1.pack(); col2.pack(); shell.pack(); table.setRedraw(true); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
2005-01-31 14:25:51
1,107,200,000
resolved fixed
165e842
1,107,200,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
SWT
3,081
83,791
Bug 83791 Repaint problems for Combo using SWT.SIMPLE style
When a few Combo boxes using SWT.SIMPLE style are visible, a series of manual resizes of the containing composite leaves areas of the Combo littered with buffer noise. The first two attached screen-dumps show the result of running the test code below, both before and after resizing of the window. The third one shows a portion of a commercial interface I am attempting to build at the moment, where the same problem is evident. -----------------8<--------------------- package test; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class ComboRepaintBugDemo { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); FillLayout fillLayout = new FillLayout(SWT.VERTICAL); fillLayout.marginHeight = 20; fillLayout.marginWidth = 20; fillLayout.spacing = 20; shell.setLayout(fillLayout); Combo combo1 = new Combo(shell, SWT.SIMPLE); combo1.setBackground(display.getSystemColor(SWT.COLOR_RED)); Combo combo2 = new Combo(shell, SWT.SIMPLE); combo2.setBackground(display.getSystemColor(SWT.COLOR_GREEN)); Combo combo3 = new Combo(shell, SWT.SIMPLE); combo3.setBackground(display.getSystemColor(SWT.COLOR_BLUE)); Combo combo4 = new Combo(shell, SWT.SIMPLE); combo4.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } -------------------8<-----------------
2005-01-26 22:10:09
1,106,800,000
resolved fixed
1b41a98
1,106,940,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
3,082
83,699
Bug 83699 Font reset to default after screen saver
I20050125-0800 All editors and views using a StyledText widget have the font reset to default after coming back from my screen saver. Makes build I20050125-0800 unusable for me. Works if I replace org.eclipse.swt.win32_3.1.0 with the one from last I-build. This breakpoint gets hit when I return from the screen saver Thread [main] (Suspended (breakpoint at line 6820 in StyledText)) StyledText.setFont(Font) line: 6820 StyledText(Control).updateFont(Font, Font) line: 2913 StyledText(Composite).updateFont(Font, Font) line: 810 Canvas(Composite).updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Composite.updateFont(Font, Font) line: 807 Shell(Composite).updateFont(Font, Font) line: 807 Display.updateFont() line: 3379 Display.messageProc(int, int, int, int) line: 2276 OS.PeekMessageW(MSG, int, int, int, int) line: not available [native method] OS.PeekMessage(MSG, int, int, int, int) line: 2016 Display.readAndDispatch() line: 2510 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1584 Workbench.runUI() line: 1550 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 288 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 144 IDEApplication.run(Object) line: 102 1.run(Object) line: 225 EclipseStarter.run(Object) line: 274 EclipseStarter.run(String[], Runnable) line: 129 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object[]) line: 324 Main.basicRun(String[]) line: 255 Main.run(String[]) line: 811 Main.main(String[]) line: 795
2005-01-26 06:03:15
1,106,740,000
verified fixed
cc9a023
1,106,780,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
SWT
3,083
83,765
Bug 83765 DCR: add strikeout to TextLayout
add underline and strikeout to TextLayout on all platforms.
2005-01-26 16:38:10
1,106,780,000
resolved fixed
ff5cee0
1,106,780,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
SWT
3,084
57,068
Bug 57068 [browser] Curious behaviour on target=_blank links
Hi, I am using the SWT browser widget to display HTML and let the user navigate through the WWW in my application. Earlier the browser ignored clicking on links that would open in a new window (with having target="_blank"). I've now found out the OpenWindowListener which could solve my problem. Playing around with it, I came up to this snippet, which shows a very strange behaviour: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Main Window"); shell.setLayout(new FillLayout()); Browser browser = new Browser(shell, SWT.NONE); initialize(display, browser); shell.open(); browser.setUrl("C:/index.html"); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } static void initialize(final Display display, Browser browser) { browser.addOpenWindowListener(new OpenWindowListener() { public void open(WindowEvent event) { event.browser.getUrl(); //Comment / Uncomment this line! } }); } The file "index.html" is a local HTML file with a simple link that uses target="_blank". Having the "event.browser.getUrl();" commented, nothing happens. But when uncommented, after clicking on the URL it opens in my system default browser (IE). I am also wondering, why the WindowEvent event does not provide information about the URL that the new browser-window will load? Regards, Ben
2004-04-01 13:21:01
1,080,840,000
resolved fixed
7303839
1,106,780,000
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
SWT
3,085
82,346
Bug 82346 CLabel disappears when given SWT.CENTER flag in constructor
Not working (CLabel disappears): ... CLabel label = new CLabel(composite, SWT.SHADOW_IN | SWT.CENTER); label.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); ... Workaround: ... CLabel label = new CLabel(composite, SWT.SHADOW_IN); label.setAlignment(SWT.CENTER); label.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); ... Noticed this on Linux (gtk) , Eclipse 3.1M4
2005-01-06 14:27:47
1,105,040,000
resolved fixed
617caa1
1,106,770,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java
SWT
3,086
83,546
Bug 83546 Printing doesn't seem to work anymore in latest integration build
In I20050118-1015, I cannot print a document (text file) from Eclipse. I need to copy the contents, open a text editor, paste the contents into the text editor and then print it. Then it works fine.
2005-01-24 11:27:03
1,106,580,000
resolved fixed
1a5ca70
1,106,760,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
3,087
80,414
Bug 80414 ArrmListener for MenuItem generates submenu with invisible lables
I have an extension which extends "org.eclipse.ui.actionSets". This adds a menu in Eclipse main menu called "MyMenu". Under "MyMenu", there are a few second-level submenu items "submenu1", "submenu2" and "submenu3". "submenu2" is a IWorkbenchWindowPulldownDelegate2 object. It has a few third- level submenu items labelled "subsubmenu1", "subsubmenu2", "subsubmenu3". The creation of the third-level submenus are shown in the following code: MenuItem item = new MenuItem(submenu2, SWT.ICON | SWT.CASCADE); item.setText("subsubmenu1"); Menu menu = new Menu(WorkbenchUtils.getDefaultShell(), SWT.DROP_DOWN); item.setMenu(menu); MyDropDownSelectionListener listener = new MyDropDownSelectionListener(); item.addArmListener(listener); public MyDropDownSelectionListener() { public void widgetArmed(ArmEvent e) { if (e.getSource() instanceof MenuItem) { MenuItem menuItem = (MenuItem)e.getSource(); MenuManager menuManager = new MenuManager(); menuManager.add(new Action("Action 1") { }); menuManager.add(new Action("Action 2") { }); Menu cascadeMenu = menuItem.getMenu(); MenuItem[] oldItems = cascadeMenu.getItems(); for(int i = 0; i < oldItems.length;i++) { oldItems[i].dispose(); } IContributionItem[] newItems = menuManager.getItems(); for (int i = 0; i < newItems.length; i++) { newItems[i].fill(cascadeMenu, -1); } } } } The result is that only "Action 2" is visible. "Action 1" is not visible. The following is the structure of the menu: MyMenu ---> submenu1 submenu2 ---> subsubmenu1 submenu3 subsubmenu2 ---> |_______| // "Action 1" not visible subsubmenu3 Action 2 This problem only happens on Linux/Motif.
2004-12-07 15:24:48
1,102,450,000
resolved fixed
8d32a5e
1,106,680,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/MenuItem.java
SWT
3,088
49,426
Bug 49426 Layouts should support laying out only a subset of a composite's children
Currently all standard SWT layout managers always lay out all children of the composite they are managing. This includes children which are not visible. While this may be desired in some cases, it makes it difficult to manage dynamic layouts where the layout should change when a control is made visible or invisible. The SWT layout managers should allow the programmer to specify a subset of the managed controls for which a layout will be computed. I initially thought of having a "hideInvisibleControls" flag on all layout managers but that would not be sufficient. When hiding a control you could redo the layout and get the expected results but when showing a control, you first need to recompute the layout to make room for the control and then make the control visible after the layout has changed. If you were restricted to computing a layout for visible controls, you would first have to make the control visible, thus showing it with a wrong position and size, and then recompute the layout. So instead of such a flag I am proposing a "public Control[] controls" field for all layout managers where you can explicitly set the controls which will be considered for computing the layout. If this field is set to null (which should be the default), the composite will be queried for all children (the current behaviour). Simply replacing all calls to "composite.getChildren()" by "controls == null ? composite.getChildren() : controls" in all layout managers should do the trick. I have done these modifications to my own copies of the SWT layout managers (where I simply copied the original code; this cannot be done through inheritance because the calls to composite.getChildren() are not encapsulated in a protected method of the Layout class). So far I have tested the modified versions of FillLayout and FormLayout and they worked as expected.
2003-12-30 17:31:03
1,072,820,000
resolved fixed
ee0cb80
1,106,600,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java
SWT
3,089
83,532
Bug 83532 [browser] HTTPS link crashes Browser with Mozilla 1.7.5
null
2005-01-24 09:09:39
1,106,580,000
resolved fixed
73a144c
1,106,580,000
bundles/org.eclipse.swt/Eclipse SWT Browser/motif/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/Browser.java
SWT
3,090
82,640
Bug 82640 Setting style bits breaks SWT embedded Swing in Milestone M4
Creating an SWT container with Composite container = new Composite(shell, SWT.BORDER|SWT.EMBEDDED); for embedding swing no longer works under Linux for milestone 4. The embedded swing components aren't drawn when the SWT container appears. However it works if you create the container with Composite container = new Composite(shell, SWT.EMBEDDED);
2005-01-11 23:52:36
1,105,510,000
resolved fixed
c2991ac
1,106,340,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
SWT
3,091
83,305
Bug 83305 Javadoc of Display.addFilter could be improved
I20050118 The Javadoc of Display.addFilter doesn't tell anything about filtering, it only says that the added listener will be notified. As far as I understood it no event is filtered ever but the listener could set doit.false and hope that all other listeners check that flag.
2005-01-20 09:10:45
1,106,230,000
verified fixed
08c6b7c
1,106,270,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
SWT
3,092
82,905
Bug 82905 drawImage doesn't honor clip rect
I tried both I20050104-1600 and 3.1M4 on different linux versions with gtk 2.2 and gtk 2.4. It seems that GC#drawImage(Image,int,int,int,int,int,int.int,int) will not honor the GC's clipping but draw over the whole client area if and only if SWT.NO_BACKGROUND is set and the image has an alpha channel. This should not happen! Steps to reproduce: I've attached a demo application which displays two custom tab stripe created by a custom canvas subclass. The first stripe uses NO_BACKGROUND. I think, that's valid (and works on Windows) because the canvas draws its own background (the real application does more than just filling it with a simple color) and otherwise, it would flicker (unfortunately, blitting alpha-images is quite slow with SWT). You will notice that in the first stripe, the tab text will vanish if you move the mouse over the tabs. This seems happen because everything is redrawn is parts of the stripe are updated and the images are drawn always and the texts only inside the clipping region. So the images overwrite the text outside of the clipping region.
2005-01-15 07:29:37
1,105,790,000
verified fixed
77d1382
1,106,240,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/graphics/GC.java
SWT
3,093
64,923
Bug 64923 EC: need api to query for Tray support
Maybe something like Tray.isPresent() ? The motivation for wanting to know this, as opposed to just blindly using it, is pasted below. " if you want to close all windows and have your program run in the background with only a tray item to show status information and to (re-)open the main window, you need to be sure that the tray item is really displayed, or you risk leaving your application running without any means to control it. "
2004-06-01 08:26:45
1,086,090,000
resolved fixed
8d4295b
1,106,180,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
SWT
3,094
83,262
Bug 83262 rxvt pastes null terminator
When pasting using the middle mouse button from StyledText into an rxvt window, it contains a null terminator at the end. Pasting from other applications like gedit or mozilla into rxvt does not show this behaviour, and this is not reproducable when pasting into an xterm. This problem exists on both Motif and GTK+. Since the X clipboard protocol has a string length field, we do not need to be null terminating these strings.
2005-01-19 17:41:27
1,106,170,000
verified fixed
1f0c909
1,106,170,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/RTFTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/motif/org/eclipse/swt/dnd/RTFTransfer.java bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/motif/org/eclipse/swt/dnd/TextTransfer.java
SWT
3,095
42,632
Bug 42632 Clipboard becomes empty after shell closes
Selecting text from one of the properties page in Linux GTK and then copying has no effect despite the option being there. STEPS 1) Open a preference pahe on a project 2) Select the path 3)Pop up the menu and select copy or use Ctrl-C 4) Paste somewhere - the clipboard is empty or the previous contents.
2003-09-05 14:13:02
1,062,790,000
resolved fixed
3b1252a
1,106,170,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
SWT
3,096
82,828
Bug 82828 Table's SWT.FULL_SELECTION broken for empty table items
I20050112-1200 Empty cells do not get the selection bg color. Test Case: 1. start fresh Eclipse 2. Window > Preferences > Java > Editor > Hovers 3. Select a line in the table that has an empty cell ==> empty cell does not get selection bg color This used to work in previous builds.
2005-01-14 03:37:55
1,105,690,000
resolved fixed
0b8a14c
1,106,080,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
SWT
3,097
82,067
Bug 82067 BIDI:Printing of text files is not right aligned
Tested on Win2K Arabic default locale, build eclipse-SDK-3.1M3-win32 with Arabic Translation Fragments and launched with rtl direction. 1.Import the attached file into a new project 2.Open the document with the text editor and print it by choosing File>>print 3. Observe that the text in the hard copy is left aligned while it is supposed to be printed right aligned.
2005-01-02 03:31:56
1,104,650,000
closed fixed
cc6b3d6
1,105,740,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PrintRenderer.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
3,098
22,646
Bug 22646 Cheese appears in table when using mouse wheel
(Note, I'm using the Windows XP manifest file) When I use the wheel on my mouse to scroll down in the table in the tasks view, extra lines appear all over the table. When I scroll up, all of the horizontal lines disappear. The scrollbar does not demonstrate the same problem.
2002-08-21 11:59:01
1,029,950,000
resolved fixed
32ea2b4
1,105,670,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
SWT
3,099
82,657
Bug 82657 Help fails to open
In 3.1M4 Help is failing to open. I get a dialog saying: "An exception offured while lauching help. Refer to the log for more details". The log is as follows: !SESSION 2005-01-12 12:43:57.515 ----------------------------------------------- eclipse.buildId=I20041216-2000 java.version=1.5.0 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB Command-line arguments: -os win32 -ws win32 -arch x86 !ENTRY org.eclipse.help.base 4 0 2005-01-12 12:43:57.515 !MESSAGE An exception occurred while launching help. !STACK 0 java.lang.NullPointerException at org.eclipse.swt.browser.Browser.<init>(Browser.java:514) at org.eclipse.help.ui.internal.browser.embedded.EmbeddedBrowserFactory.test(EmbeddedBrowserFactory.java:69) at org.eclipse.help.ui.internal.browser.embedded.EmbeddedBrowserFactory.isAvailable(EmbeddedBrowserFactory.java:49) at org.eclipse.help.internal.browser.BrowserManager.createBrowserDescriptors(BrowserManager.java:215) at org.eclipse.help.internal.browser.BrowserManager.init(BrowserManager.java:75) at org.eclipse.help.internal.browser.BrowserManager.createBrowser(BrowserManager.java:330) at org.eclipse.help.internal.base.BaseHelpSystem.getHelpBrowser(BaseHelpSystem.java:110) at org.eclipse.help.internal.base.HelpDisplay.displayHelpURL(HelpDisplay.java:174) at org.eclipse.help.internal.base.HelpDisplay.displayHelp(HelpDisplay.java:54) at org.eclipse.help.ui.internal.DefaultHelpUI.displayHelp(DefaultHelpUI.java:43) at org.eclipse.ui.help.WorkbenchHelp.displayHelp(WorkbenchHelp.java:210) at org.eclipse.ui.internal.actions.HelpContentsAction$1.run(HelpContentsAction.java:80) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.actions.HelpContentsAction.run(HelpContentsAction.java:78) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694)
2005-01-12 07:55:20
1,105,530,000
resolved fixed
6b400f5
1,105,570,000
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
SWT
3,100
82,531
Bug 82531 Missing selectionEvent when disposing TreeItem
When I remove a TreeItem from my Tree by using TreeItem.dispose() another item is 'armed' (as in 'ready to be selected' - on Windows the item has normal font color and grey background) as opposed to 'selected' (on Windows inverted font color and dark blue background). The important part is this: When this happen in 3.0.1 a selectionEvent is sent. In 3.1M4 this event is missing. AFAICS this means you have no control over where the current selection is in the Tree before the user selects another item.
2005-01-11 00:56:42
1,105,420,000
resolved fixed
fd29b07
1,105,460,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,101
82,282
Bug 82282 Control.redraw() invalidates children on Linux-GTK
The code for redraw() on Linux-GTK calls redrawWidget (..., true) which causes the children to be repainted as well. This behaviour is not consistent with Windows, and seems to be in error: public void redraw () { checkWidget(); int /*long*/ paintHandle = paintHandle (); int width = OS.GTK_WIDGET_WIDTH (paintHandle); int height = OS.GTK_WIDGET_HEIGHT (paintHandle); redrawWidget (0, 0, width, height, true); } I think it should use redrawWidget (..., false) instead.
2005-01-05 15:58:48
1,104,960,000
verified fixed
26a2159
1,104,960,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
SWT
3,102
81,695
Bug 81695 [Linux GTK] SWT Text displays the wrong characters if call addModifyListener
SWT Text widget displays the different characters from the typed characters, if addModifyListener is called. os: RedHat Enterprise Linux 3.0 Update 3.0. ws: gtk
2004-12-20 17:34:55
1,103,580,000
verified fixed
c99daad
1,104,950,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
SWT
3,103
81,893
Bug 81893 IllegalArgumentException from StyledText Widget
Version: 3.1.0 Build id: 200412210800 While playing with Eclipse WTP 1.0M2 I noticed a few exceptions appearing in the log about IllegalArgumentWxceptions from styled text. There is no mention of WTP in the stack trace, so i entered this against SWT. It is possible that WTP are doing Bad Things, causing this error. Test: 1. Download WTP 1.0M2 2. Window->Preferences 3. Web & XML | CSS Files | CSS Styles 4. Click in the text preview and drag past the bottom of the widget 5. Exception should appear in the log java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2813) at org.eclipse.swt.SWT.error(SWT.java:2752) at org.eclipse.swt.SWT.error(SWT.java:2723) at org.eclipse.swt.graphics.TextLayout.getLocation(TextLayout.java:994) at org.eclipse.swt.custom.StyledText.getXAtOffset(StyledText.java:4674) at org.eclipse.swt.custom.StyledText.showCaret(StyledText.java:7648) at org.eclipse.swt.custom.StyledText.doSelectionLineDown(StyledText.java:3080) at org.eclipse.swt.custom.StyledText$3.run(StyledText.java:2425) at org.eclipse.swt.widgets.Display.runTimer(Display.java:2851) at org.eclipse.swt.widgets.Display.messageProc(Display.java:2218) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1570) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2452) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:64) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2454) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694)
2004-12-24 01:52:19
1,103,870,000
resolved fixed
f725f66
1,104,870,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
SWT
3,104
80,830
Bug 80830 implement GC.drawFocus
null
2004-12-13 11:50:28
1,102,960,000
verified fixed
a9e5fac
1,104,870,000
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
SWT
3,105
81,759
Bug 81759 Can't select tool items when tool bar has a DragDetect listener
Version: 3.1.0 Build id: 200412210800 Clicking on the buttons of the perspective or fast view bar does nothing. Instead of opening a view/perspective, it looks like it is attempting to start a drag operation. The click after pressing the button is ignored and if you click and drag after pressing a button you get a "no go" cursor. You can work around this by opening the views/perspectives using the menu.
2004-12-21 17:41:42
1,103,670,000
resolved fixed
115fa0d
1,103,730,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
SWT
3,106
81,265
Bug 81265 background of tree is incorrect when disabled
In Control Example, go to tree tab 1. change the background colour. 2. uncheck the enabled checbox The background of the node names changes to the default background, while the rest of the background remains the new background. In tabletree, the entire background of the table tree goes back to the default colour.
2004-12-15 13:33:44
1,103,140,000
resolved fixed
e3a2840
1,103,730,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,107
80,622
Bug 80622 Removing the last item from a read-only combo does not clear the selection
This problem happens on Linux-GTK, Linux-motif and Solaris-motif I have a read-only combo on a dialog. The combo is created in the following way: Combo combo = new Combo(composite, SWT.SINGLE | SWT.READ_ONLY | SWT.DROP_DOWN); An action is related to the combo. The action removes the currently selected item from the combo. When the user triggers that action, I call combo.remove (int index) to remove the item. If the item is the only item left, then after it has been removed, the combo does not clear the selection. I tried calling combo.clearSelection() and combo.redraw(), but nothing worked. The combo does not get repainted. The item which has been removed is still the current selection.
2004-12-09 13:58:59
1,102,620,000
closed fixed
ad7cf78
1,103,660,000
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Combo.java
SWT
3,108
81,399
Bug 81399 Pixel Corruption caused by Tracker on a Composite with children
(Platform: WinXP-SP2, SWT 3.0.1 (swt-win32-3063.dll)) The following Snippet uses a Tracker(SWT.RESIZE) for rubber-band selections of the Composite's children. The selection occurs in terms of changing the background color of the children. If yo select some of the chilren with the tracker, and then downsize the tracker so that they are again deselected, the pixel coruption occurs. (The tracker leaves trace-marks on the children). On the Snippet below, children[i].redraw in void changeSelections(Rectangle) has no effect and does not redraw the whole area of the child. Possible work-around: Changing the above mentioned line to : children[i].redraw(0, 0, children[i].getBounds().width, children[i].getBounds().height, true); fixes the problem. Yet, I think that the Tracker does not show the expected behaviour in the first place... /* ******** TrackerSnippet.java ********* */ import org.eclipse.swt.widgets.*; import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; public class TrackerSnippet { private boolean isDragging = false; private Shell shell; public static void main(String[] args) { TrackerSnippet trackerSnippet = new TrackerSnippet(); } public TrackerSnippet() { Display display = new Display(); shell = new Shell(display, SWT.SHELL_TRIM); shell.setText("TrackerSnippet"); shell.setBounds(50, 50, 500, 300); RowLayout rl = new RowLayout(SWT.HORIZONTAL); rl.pack = true; rl.wrap = true; shell.setLayout(rl); for (int i=0; i<10; i++) createChild(shell); shell.addMouseListener(new MouseAdapter() { public void mouseDown(MouseEvent e) { isDragging = true; } public void mouseUp(MouseEvent e) { isDragging = false; } }); shell.addMouseMoveListener(new MouseMoveListener() { public void mouseMove(MouseEvent e) { if (isDragging) trackIt(e.x, e.y); } }); shell.layout(true); shell.open(); while(!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } private void createChild(Composite parent) { final Composite child = new Composite(parent, SWT.NONE); child.setLayout(new FillLayout()); final Canvas iconCanvas = new Canvas(child, SWT.NO_FOCUS | SWT.NO_REDRAW_RESIZE | SWT.NO_BACKGROUND | SWT.NO_MERGE_PAINTS); final Image icon = parent.getDisplay().getSystemImage(SWT.ICON_WARNING); iconCanvas.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { Rectangle canvasSize = iconCanvas.getBounds(); Image offscreen = new Image(iconCanvas.getDisplay(), canvasSize.width, canvasSize.height); GC gc = new GC(offscreen); gc.setBackground(iconCanvas.getParent().getBackground()); gc.fillRectangle(0, 0, canvasSize.width, canvasSize.height); gc.drawImage(icon, (int)(canvasSize.width - icon.getBounds().width)/2, (int)(canvasSize.height - icon.getBounds().height)/2); e.gc.drawImage(offscreen, 0, 0); gc.dispose(); offscreen.dispose(); } }); // make the composite 20 pixels larger than the icon image RowData data = new RowData(icon.getBounds().width + 20, icon.getBounds().height + 20); child.setLayoutData(data); setSelected(child, false); } private void setSelected(Control child, boolean selected) { Color c = (selected)? child.getDisplay().getSystemColor(SWT.COLOR_LIST_SELECTION): child.getParent().getBackground(); child.setBackground(c); if (child.getClass().equals(Composite.class)) { // change the background of the children (generally, the canvas) Control[] controls = ((Composite)child).getChildren(); for (int i=0; i<controls.length; i++) controls[i].setBackground(c); } } private void trackIt(int x, int y) { Tracker tracker = new Tracker(shell, SWT.RESIZE); tracker.setRectangles (new Rectangle [] {new Rectangle (x, y, 1, 1)}); tracker.setStippled(false); tracker.addControlListener(new ControlAdapter() { public void controlResized(ControlEvent e) { changeSelections(((Tracker)e.getSource()).getRectangles()[0]); } }); tracker.open (); changeSelections(tracker.getRectangles()[0]); tracker.dispose(); isDragging = false; } private void changeSelections(Rectangle selection) { Control[] children = shell.getChildren(); for (int i=0; i<children.length; i++) { if (selection.intersects(children[i].getBounds()) || children[i].getBounds().contains(selection.x, selection.y)) { setSelected(children[i], true); } else { setSelected(children[i], false); } // children[i].redraw(0, 0, // WORK-AROUND // children[i].getBounds().width, // children[i].getBounds().height, true); children[i].redraw(); //HAS NO EFFECT } } } /* ******** EOF TrackerSnippet.java ***** */
2004-12-16 09:37:20
1,103,210,000
resolved fixed
033cc2a
1,103,580,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
SWT
3,109
80,276
Bug 80276 CBannerLayout calls Control.update too often
CBannerLayout.layout() calls Control.update() all the time. Using update() is good for interactive resizing, but otherwise it is slow and should not be used. This code should be fixed to only call update() during resize, if at all.
2004-12-06 11:52:58
1,102,350,000
resolved fixed
99846ed
1,103,230,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBannerLayout.java
SWT
3,110
81,357
Bug 81357 TableColumn.setText("") results in screen cheese
Passing the empty string to TableColumn.setText on windows inserts a bunch of gibberish characters into the table heading. This appears to be because TCHAR is not null-terminating zero length strings when given the terminate=true argument.
2004-12-15 18:36:14
1,103,150,000
resolved fixed
213dfe2
1,103,210,000
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/TCHAR.java
SWT
3,111
81,137
Bug 81137 TableEditors shifted to the right when table has image
null
2004-12-15 09:07:05
1,103,120,000
resolved fixed
e57a091
1,103,150,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java
SWT
3,112
81,214
Bug 81214 [JUNIT] Failure in post KeyDown test on Display
eclipse.buildId=I20041214-2000 test_postLorg_eclipse_swt_widgets_Event(org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Display) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertTrue(Assert.java:27) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Display.test_postLorg_eclipse_swt_widgets_Event(Test_org_eclipse_swt_widgets_Display.java:724) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Display.runTest(Test_org_eclipse_swt_widgets_Display.java:1174) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:468) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:343) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:195)
2004-12-15 11:30:15
1,103,130,000
closed wontfix
eb144ec
1,103,130,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java
SWT
3,113
80,216
Bug 80216 KERN_PROTECTION_FAILURE due to EXC_BAD_ACCESS on exit
Hi, when quitting RSSOwl on Mac using latest SWT from Integration Build I am getting a serious exception. There is no difference if running it via java_swt or Java: Date/Time: 1970-01-01 01:11:08 +0100 OS Version: 10.3 (Build 7B85) Command: java_swt (/Volumes/NO NAME/RSSOwl Release/MAC_BIN/rssowl_mac_1_0_bin/RSSOwl.app/Contents/MacOS/java_swt) PID: 324 Thread: 0 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000037 Thread 0 Crashed: #0 0x92d59d2c in SetupParamBlockForCIcon (SetupParamBlockForCIcon + 32) #1 0x92d41310 in PlotCIconHandle (PlotCIconHandle + 240) #2 0x9288c54c in _ZN10HIIconView8DrawSelfEsP15OpaqueRgnHandleP9CGContext (_ZN10HIIconView8DrawSelfEsP15OpaqueRgnHandleP9CGContext + 504) #3 0x927f5acc in _ZN6HIView15DrawCacheOrSelfEsP15OpaqueRgnHandleP9CGContext (_ZN6HIView15DrawCacheOrSelfEsP15OpaqueRgnHandleP9CGContext + 328) #4 0x927d5444 in _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv (_ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 4920) #5 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #6 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #7 0x927d6600 in SendEventToEventTargetWithOptions (SendEventToEventTargetWithOptions + 40) #8 0x927ddcac in _Z18SendControlDefDrawP6HIViewsP13OpaqueGrafPtrP15OpaqueRgnHandleP9CGContext (_Z18SendControlDefDrawP6HIViewsP13OpaqueGrafPtrP15OpaqueRgnHandleP9CGContext + 288) #9 0x927dbac4 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 584) #10 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #11 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #12 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #13 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #14 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #15 0x927dbbc0 in _ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext (_ZN6HIView12DrawInternalEsP13OpaqueGrafPtrP15OpaqueRgnHandlehhhPS_P9CGContext + 836) #16 0x927dcb68 in _ZN6HIView4DrawEsP13OpaqueGrafPtrP15OpaqueRgnHandlemPS_P9CGContext (_ZN6HIView4DrawEsP13OpaqueGrafPtrP15OpaqueRgnHandlemPS_P9CGContext + 792) #17 0x92882430 in DeactivateControl (DeactivateControl + 48) #18 0x92800120 in HandleWindowEvent (HandleWindowEvent + 1312) #19 0x92827cf0 in StandardWindowEventHandler (StandardWindowEventHandler + 180) #20 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #21 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #22 0x927d6600 in SendEventToEventTargetWithOptions (SendEventToEventTargetWithOptions + 40) #23 0x9287266c in SendWindowEvent (SendWindowEvent + 200) #24 0x92800140 in HandleWindowEvent (HandleWindowEvent + 1344) #25 0x92827cf0 in StandardWindowEventHandler (StandardWindowEventHandler + 180) #26 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #27 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #28 0x927d6600 in SendEventToEventTargetWithOptions (SendEventToEventTargetWithOptions + 40) #29 0x928206c4 in PostActivateEvent (PostActivateEvent + 336) #30 0x9281a05c in HiliteAndActivateWindow (HiliteAndActivateWindow + 392) #31 0x92833480 in _Z27AdjustToNewWindowActivationP10WindowDataP13WindowContextP15OpaqueWindowPtrS0_ (_Z27AdjustToNewWindowActivationP10WindowDataP13WindowContextP15OpaqueWindowPtrS0_ + 156) #32 0x014bdd30 in Java_org_eclipse_swt_internal_carbon_OS_HideWindow (Java_org_eclipse_swt_internal_carbon_OS_HideWindow + 40) #33 0x03d9e580 in 0x3d9e580 #34 0x03d97fb0 in 0x3d97fb0 #35 0x03d97fb0 in 0x3d97fb0 #36 0x03d97fb0 in 0x3d97fb0 #37 0x03d97fb0 in 0x3d97fb0 #38 0x03d98310 in 0x3d98310 #39 0x03eef570 in 0x3eef570 #40 0x03ef7934 in 0x3ef7934 #41 0x03d97fb0 in 0x3d97fb0 #42 0x03d97fb0 in 0x3d97fb0 #43 0x03d97fb0 in 0x3d97fb0 #44 0x03d97fb0 in 0x3d97fb0 #45 0x03d97fb0 in 0x3d97fb0 #46 0x03d97fb0 in 0x3d97fb0 #47 0x03d97fb0 in 0x3d97fb0 #48 0x03d97fb0 in 0x3d97fb0 #49 0x03d97fb0 in 0x3d97fb0 #50 0x03d97fb0 in 0x3d97fb0 #51 0x03d97fb0 in 0x3d97fb0 #52 0x03d97ef0 in 0x3d97ef0 #53 0x03d97ef0 in 0x3d97ef0 #54 0x03d9516c in 0x3d9516c #55 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #56 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #57 0x948d2cf0 in JVM_UnloadLibrary (JVM_UnloadLibrary + 72080) #58 0x94991974 in jio_vsnprintf (jio_vsnprintf + 13748) #59 0x01587ef4 in callback (callback + 1064) #60 0x01562b28 in fn17_3 (fn17_3 + 52) #61 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #62 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #63 0x927d6600 in SendEventToEventTargetWithOptions (SendEventToEventTargetWithOptions + 40) #64 0x9287266c in SendWindowEvent (SendWindowEvent + 200) #65 0x9280048c in HandleWindowEvent (HandleWindowEvent + 2188) #66 0x92827cf0 in StandardWindowEventHandler (StandardWindowEventHandler + 180) #67 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #68 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #69 0x927e4634 in SendEventToEventTarget (SendEventToEventTarget + 40) #70 0x928f4778 in SendEventFromMouseDown (SendEventFromMouseDown + 148) #71 0x92884a4c in HandleWindowClick (HandleWindowClick + 572) #72 0x92865dfc in HandleMouseEvent (HandleMouseEvent + 440) #73 0x92827ce4 in StandardWindowEventHandler (StandardWindowEventHandler + 168) #74 0x927d1f94 in DispatchEventToHandlers (DispatchEventToHandlers + 336) #75 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #76 0x927e4634 in SendEventToEventTarget (SendEventToEventTarget + 40) #77 0x927f2e08 in _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft (_Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 372) #78 0x927e8704 in _Z16HandleMouseEventP14OpaqueEventRef (_Z16HandleMouseEventP14OpaqueEventRef + 368) #79 0x927e2bd4 in _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv (_Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 488) #80 0x927d2050 in DispatchEventToHandlers (DispatchEventToHandlers + 524) #81 0x927d2208 in SendEventToEventTargetInternal (SendEventToEventTargetInternal + 372) #82 0x927e4634 in SendEventToEventTarget (SendEventToEventTarget + 40) #83 0x014c3cb0 in Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget (Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget + 56) #84 0x03d9e580 in 0x3d9e580 #85 0x03d97ef0 in 0x3d97ef0 #86 0x03d97e30 in 0x3d97e30 #87 0x03d97fb0 in 0x3d97fb0 #88 0x03d97fb0 in 0x3d97fb0 #89 0x03d98310 in 0x3d98310 #90 0x03d97fb0 in 0x3d97fb0 #91 0x03d97e30 in 0x3d97e30 #92 0x03d97e30 in 0x3d97e30 #93 0x03d97e30 in 0x3d97e30 #94 0x03d97fb0 in 0x3d97fb0 #95 0x03d9516c in 0x3d9516c #96 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #97 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #98 0x948d06fc in JVM_UnloadLibrary (JVM_UnloadLibrary + 62364) #99 0x9499e79c in jio_vsnprintf (jio_vsnprintf + 66524) #100 0x00003328 in main (main + 4396) #101 0x00001f2c in _start (crt.c:267) #102 0x00001da0 in start (start + 48) Thread 1: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x9487f80c in JNI_CreateJavaVM_Impl (JNI_CreateJavaVM_Impl + 17580) #3 0x9487f7a0 in JNI_CreateJavaVM_Impl (JNI_CreateJavaVM_Impl + 17472) #4 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #5 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 2: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7688 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4584) #3 0x947da944 in __divdi3 (__divdi3 + 20612) #4 0x947f0480 in JVM_GetMethodIxModifiers (JVM_GetMethodIxModifiers + 1264) #5 0x94897b8c in JVM_GetInterfaceVersion (JVM_GetInterfaceVersion + 97052) #6 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #7 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 3: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7608 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4456) #3 0x947a2034 in _mh_dylib_header (_mh_dylib_header + 8244) #4 0x947ab3a4 in __cmpdi2 (__cmpdi2 + 6820) #5 0x947a7ae8 in JVM_MonitorWait (JVM_MonitorWait + 264) #6 0x03d9e580 in 0x3d9e580 #7 0x03d97fb0 in 0x3d97fb0 #8 0x03d97fb0 in 0x3d97fb0 #9 0x03d9516c in 0x3d9516c #10 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #11 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #12 0x94818868 in JVM_Close (JVM_Close + 1208) #13 0x94829120 in JVM_Interrupt (JVM_Interrupt + 736) #14 0x948cdeac in JVM_UnloadLibrary (JVM_UnloadLibrary + 52044) #15 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #16 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #17 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 4: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7608 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4456) #3 0x947a2034 in _mh_dylib_header (_mh_dylib_header + 8244) #4 0x947ab3a4 in __cmpdi2 (__cmpdi2 + 6820) #5 0x947a7ae8 in JVM_MonitorWait (JVM_MonitorWait + 264) #6 0x03d9e580 in 0x3d9e580 #7 0x03d97fb0 in 0x3d97fb0 #8 0x03d97ec0 in 0x3d97ec0 #9 0x03d97ec0 in 0x3d97ec0 #10 0x03d9516c in 0x3d9516c #11 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #12 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #13 0x94818868 in JVM_Close (JVM_Close + 1208) #14 0x94829120 in JVM_Interrupt (JVM_Interrupt + 736) #15 0x948cdeac in JVM_UnloadLibrary (JVM_UnloadLibrary + 52044) #16 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #17 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #18 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 5: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7688 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4584) #3 0x947b7130 in JVM_GetCPMethodSignatureUTF (JVM_GetCPMethodSignatureUTF + 6160) #4 0x947b72d0 in JVM_GetCPMethodSignatureUTF (JVM_GetCPMethodSignatureUTF + 6576) #5 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #6 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 6: #0 0x90014628 in semaphore_wait_trap (semaphore_wait_trap + 8) #1 0x948d2e80 in JVM_UnloadLibrary (JVM_UnloadLibrary + 72480) #2 0x948d2044 in JVM_UnloadLibrary (JVM_UnloadLibrary + 68836) #3 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #4 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #5 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 7: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7608 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4456) #3 0x947da9a4 in __divdi3 (__divdi3 + 20708) #4 0x94811ce0 in JVM_GetFieldIxModifiers (JVM_GetFieldIxModifiers + 2912) #5 0x947fda2c in JVM_SocketAvailable (JVM_SocketAvailable + 4876) #6 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #7 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #8 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 8: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7688 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4584) #3 0x947b7044 in JVM_GetCPMethodSignatureUTF (JVM_GetCPMethodSignatureUTF + 5924) #4 0x948548f8 in JVM_Sleep (JVM_Sleep + 344) #5 0x03d9e580 in 0x3d9e580 #6 0x03d97fb0 in 0x3d97fb0 #7 0x03d9516c in 0x3d9516c #8 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #9 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #10 0x94818868 in JVM_Close (JVM_Close + 1208) #11 0x94829120 in JVM_Interrupt (JVM_Interrupt + 736) #12 0x948cdeac in JVM_UnloadLibrary (JVM_UnloadLibrary + 52044) #13 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #14 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #15 0x900247e8 in _pthread_body (_pthread_body + 40) Thread 9: #0 0x900075c8 in mach_msg_trap (mach_msg_trap + 8) #1 0x90007118 in mach_msg (mach_msg + 56) #2 0x947a7688 in JVM_GetClassAccessFlags (JVM_GetClassAccessFlags + 4584) #3 0x947b7044 in JVM_GetCPMethodSignatureUTF (JVM_GetCPMethodSignatureUTF + 5924) #4 0x948548f8 in JVM_Sleep (JVM_Sleep + 344) #5 0x03d9e580 in 0x3d9e580 #6 0x03d97fb0 in 0x3d97fb0 #7 0x03d9516c in 0x3d9516c #8 0x947ba0f8 in JVM_GetCPMethodClassNameUTF (JVM_GetCPMethodClassNameUTF + 2856) #9 0x947dbce8 in JVM_GetCPClassNameUTF (JVM_GetCPClassNameUTF + 2456) #10 0x94818868 in JVM_Close (JVM_Close + 1208) #11 0x94829120 in JVM_Interrupt (JVM_Interrupt + 736) #12 0x948cdeac in JVM_UnloadLibrary (JVM_UnloadLibrary + 52044) #13 0x948145d4 in JVM_FindClassFromClass (JVM_FindClassFromClass + 3092) #14 0x9496f9cc in JVM_UnloadLibrary (JVM_UnloadLibrary + 714348) #15 0x900247e8 in _pthread_body (_pthread_body + 40) PPC Thread State: srr0: 0x92d59d2c srr1: 0x0200f030 vrsave: 0x00000000 cr: 0x44022242 xer: 0x20000004 lr: 0x92d41310 ctr: 0x90286514 r0: 0x92d41310 r1: 0xbfffbc80 r2: 0x44022242 r3: 0xbfffbd30 r4: 0xbfffbcd0 r5: 0xffffff80 r6: 0x002ff89c r7: 0x000703ea r8: 0x001303f7 r9: 0xffffffff r10: 0x4420c000 r11: 0x00000000 r12: 0x90286514 r13: 0x00500dd0 r14: 0x0050aa50 r15: 0x014bdd08 r16: 0xbfffd590 r17: 0x6b06c388 r18: 0x00000000 r19: 0x00000000 r20: 0x00000002 r21: 0x00000000 r22: 0x0031aeb0 r23: 0x00360190 r24: 0xbfffc360 r25: 0x00000000 r26: 0xbfffbf10 r27: 0x00000000 r28: 0x24022244 r29: 0xbfffbd30 r30: 0xffffffff r31: 0x92d41230 Ben
2004-12-05 06:56:30
1,102,250,000
resolved fixed
55792ee
1,103,060,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
SWT
3,114
80,204
Bug 80204 Checkbox in Tree or Table ignores second click of double click
When clicking quickly and repeatedly on a checkbox of a Tree or Table control which was created with style SWT.CHECK, every second click is ignored if it is made within the double click timeout. This can be tested, for example, with Snippet113. Some native Table controls (or at least controls used by Windows) show the same behaviour (e.g. Control Panel -> Add or Remove Programs -> Add/Remove Windows Components), others do not (e.g. in Tweak UI). The only (seemingly) native Tree control that I could find (in Windows Explorer: Tools -> Folder Options -> View) does not ignore the second click. IMHO ignoring the second click in Table controls is a bug in Windows (at least in some parts of it; TweakUI gets it right) and SWT should work around it. The same goes for Tree controls (if it's really a bug in Windows; The only Tree control that I could find didn't have that bug).
2004-12-04 08:35:54
1,102,170,000
resolved fixed
5d8726b
1,103,060,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
SWT
3,115
80,867
Bug 80867 APPSTARTING cursor has colours reversed
On Linux, the CURSOR_APPSTARTING cursor is being correctly themed when using a cursor theme that supports it, but on systems without it, the cursor is showing up "reversed", that is, the body of the arrow is white instead of black. Changing the mask itself would break cursor theming. The correct fix is to use the "reverse" flag when creating the cursor. The following patch fixes this: Index: Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java =================================================================== RCS file: /home/eclipse/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java,v retrieving revision 1.32 diff -u -r1.32 Cursor.java --- Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java 23 Nov 2004 20:09:07 -0000 1.32 +++ Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java 13 Dec 2004 20:49:49 -0000 @@ -152,7 +152,7 @@ SWT.error(SWT.ERROR_INVALID_ARGUMENT); } if (shape == 0 && style == SWT.CURSOR_APPSTARTING) { - handle = createCursor(APPSTARTING_SRC, APPSTARTING_MASK, 32, 32, 2, 2, false); + handle = createCursor(APPSTARTING_SRC, APPSTARTING_MASK, 32, 32, 2, 2, true); } else { handle = OS.gdk_cursor_new(shape); }
2004-12-13 15:53:03
1,102,970,000
resolved fixed
d4db315
1,102,980,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Cursor.java
SWT
3,116
41,227
Bug 41227 [Workbench] Switching applications, there is lag displaying the menubar
Eclipse 3.0 I20030806 When switching from a different application to Eclipse, the menubar is empty for about one second before the meunitems appear.
2003-08-06 16:23:16
1,060,200,000
resolved fixed
7db8431
1,102,980,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
SWT
3,117
80,160
Bug 80160 Regression: Pressing Return/Esc does not close drop down list of editable combo
When the drop down list of an editable combo box is open, pressing Return or Esc will not close it in v3114. It used to in v3111 and earlier. --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class ComboTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Combo cmb = new Combo(shell, SWT.NONE); cmb.setText("Sample Text"); for (int idx = 0; idx < 10; idx++) { cmb.add("" + idx); } shell.setSize(200, 150); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
2004-12-03 14:50:22
1,102,100,000
resolved fixed
d677b52
1,102,560,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
SWT
3,118
14,297
Bug 14297 Add a Spinner widget to the SWT toolkit
One widget I am surpised is not in the standard set of SWT widgets is a Spinner. I'm sure you know what a spinner is, but to be absolutely clear, I am referring to a widget with a text area and two buttons (usually with up and down arrows), that is designed to allow easy input of (usually) numeric values, or to iterate over an ordered list. Spinners are certainly very common on Windows (I don't know if they are native widgets or not), and are a common enough GUI concept to have made it into Swing (as of JDK1.4 - javax.swing.JSpinner). It would be useful if SWT provided an implementation of a Spinner - at the very least one that operates on numeric values, although the ability to handle times and dates would be nice as well.
2002-04-21 23:54:19
1,019,450,000
resolved fixed
bc82fb6
1,102,520,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java
SWT
3,119
68,212
Bug 68212 Mac - can't drag from SWT application to another application
3.0 RC3: This is currently disabled until interaction with Finder can be made safe. See DragSource.drag: // until the interaction with Finder is understood, only allow data to be // transferred internally OS.SetDragAllowableActions(theDrag[0], OS.kDragActionNothing, false);
2004-06-22 15:00:42
1,087,930,000
resolved fixed
9897614
1,102,110,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/DragSource.java
SWT
3,120
79,934
Bug 79934 Incorrect SWT.Deactivate received
This bug makes it very difficult to select an editor or a view from the chevron in eclipse. Run the following example. Click on the "show list" button Move the mouse over the second shell. When the mouse exits the second shell, the second and third shell disappear. Note that if the third shell has the style DIALOG_TRIM, it does not get the Deactivate event when shell2 closes. public static void main(String[] args) { Display display = new Display(); final Shell shell1 = new Shell(display); shell1.setLayout(new RowLayout()); Button b = new Button(shell1, SWT.PUSH); b.setText("show list"); b.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { //final Shell shell2 = new Shell(shell1, SWT.ON_TOP); final Shell shell2 = new Shell(shell1, SWT.DIALOG_TRIM); shell2.addListener(SWT.MouseExit, new Listener() { public void handleEvent(Event e) { shell2.dispose(); //shell2.setVisible(false); // has same effect } }); final Shell shell3 = new Shell(shell1, SWT.ON_TOP); //final Shell shell3 = new Shell(shell1, SWT.DIALOG_TRIM); // shell3 does not get deactivated if DIALOG_TRIM shell3.setLayout(new RowLayout()); Text t = new Text(shell3, SWT.BORDER); shell3.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event e) { shell3.dispose(); } }); shell2.pack(); Rectangle r = shell1.getBounds(); shell2.setLocation(r.x, r.y + r.height + 10); shell2.open(); r = shell2.getBounds(); shell3.pack(); shell3.setLocation(r.x, r.y + r.height + 10); shell3.open(); } }); shell1.pack(); shell1.open(); while (!shell1.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
2004-12-01 16:49:11
1,101,940,000
resolved fixed
c5d7cc4
1,102,010,000
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
SWT
3,121
73,965
Bug 73965 [Layouts] add marginLeft, marginRight, marginTop and marginBottom to GridLayout
It would be nice to have these fields in GridLayout (note that similar ones already exist in RowLayout). To not break compatibility, they all could have the default value of 0.
2004-09-15 04:52:23
1,095,240,000
resolved fixed
b41a6d0
1,101,760,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java
SWT
3,122
79,557
Bug 79557 Display.getShells() optimization
Display.getShells() and Disply.getActiveShell() methods are called in eclipse very frequently. For example during opening of 40 Java editors Display.getShells () was called about 12 000 times and this method took 2.2% of total scenario execution time. This is due to widgetTable, which contains hundreds of widgets, is scanned each time. However amount of non-disposed shells is about 2-4 depending on amount of opened dialogs. So it is better to keep separate array of non-disposed shells rather than scan throw widgetTable. In next post I am going to attach this patch.
2004-11-26 09:37:21
1,101,480,000
resolved fixed
4525215
1,101,510,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
SWT
3,123
78,565
Bug 78565 [consistency] TabFolder fires two MenuDetect events
- run the ControlExample, TabFolder tab - turn on the MenuDetect listener - right-click on a tab in the example TabFolder -> on gtk there will be two MenuDetect events fired
2004-11-12 17:25:36
1,100,300,000
resolved fixed
8c81baa
1,101,500,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
SWT
3,124
69,304
Bug 69304 EC: disappearing table column headers
null
2004-07-05 12:45:46
1,089,050,000
resolved fixed
13de9cb
1,101,490,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
SWT
3,125
79,481
Bug 79481 Sash no longer draggable when too small
Hi, see this snippet: public class Main { public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); SashForm form = new SashForm(shell, SWT.HORIZONTAL | SWT.SMOOTH); form.setLayout(new FillLayout()); Composite child1 = new Composite(form, SWT.NONE); child1.setLayout(new FillLayout()); new Label(child1, SWT.NONE).setText("Label in pane 1"); Composite child2 = new Composite(form, SWT.NONE); child2.setLayout(new FillLayout()); new Button(child2, SWT.PUSH).setText("Button in pane2"); Composite child3 = new Composite(form, SWT.NONE); child3.setLayout(new FillLayout()); new Label(child3, SWT.PUSH).setText("Label in pane3"); form.setWeights(new int[] { 30, 40, 30 }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } Grab the second Sash (right to the button), move it as far as possible to the left (the button becomes very thin). Try to grab the same Sash again. Notice that its not possible. Note: Bug does not occur when not using SWT.SMOOTH Suggestion: Its possible to size the button thiner, as without SWT.SMOOTH. I guess when using SWT.SMOOTh the button becomes that thin, that the Sash itself becomes invisible. The SashForm should not allow to resize the Sash to a smaller value than possible when not using SWT.SMOOTH. Ben
2004-11-25 06:19:11
1,101,380,000
resolved fixed
5358993
1,101,490,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
SWT
3,126
79,191
Bug 79191 [consistency] Button KeyUp-Selection differences
- run the ControlExample, stay on the default Button tab - listen for KeyUp and Selection - give focus to an example Button on the page - press Space -> on win32 and gtk you'll get KeyUp - Selection -> on motif and mac you'll get Selection - KeyUp
2004-11-22 10:30:59
1,101,140,000
resolved fixed
fc6e2bf
1,101,340,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionListener.java
SWT
3,127
78,558
Bug 78558 [consistency] Slider fires two selection events on single click
- run the ControlExample, Slider/Scale tab - turn on the Selection listener - click on the thumb of the example Slider -> on win32 two selection events are fired (details 0 and 1 respectively) -> everywhere else one selection event (detail 0) is fired
2004-11-12 17:00:44
1,100,300,000
resolved wontfix
995bd4d
1,101,330,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java
SWT
3,128
79,186
Bug 79186 [consistency] pressing Enter on Button fires MouseUp on win32 only
- run the ControlExample, stay on the default Button tab - listen for MouseUp and Selection - give focus to one of the example Buttons and press Enter -> on win32 you'll get MouseUp, Selection -> everywhere else you'll only get Selection
2004-11-22 09:45:35
1,101,130,000
resolved fixed
d32cdc9
1,101,330,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
SWT
3,129
78,559
Bug 78559 [consistency] Slider fires two Selection events before MouseDown
null
2004-11-12 17:08:15
1,100,300,000
resolved fixed
c3babe7
1,101,330,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Slider.java
SWT
3,130
79,210
Bug 79210 [consistency] Combo does not fire some KeyDowns
- run the ControlExample, go to the Combo tab - listen for KeyDown and KeyUp - give focus to the example Combo on the page - press Arrow-Down and Arrow-Up to go through the Combo's items and note that no KeyDowns ever arrive, though the KeyUps do
2004-11-22 12:12:57
1,101,140,000
resolved fixed
4fd4d29
1,101,320,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java
SWT
3,131
49,057
Bug 49057 Inconsistency in layout handling during shell.setVisible
null
2003-12-17 13:20:50
1,071,690,000
resolved fixed
bfdcee4
1,101,320,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
SWT
3,132
79,215
Bug 79215 [consistency] ProgressBar does not fire some mouse events
null
2004-11-22 12:47:59
1,101,150,000
resolved fixed
65c1946
1,101,230,000
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/ProgressBar.java
SWT
3,133
78,568
Bug 78568 [consistency] Table fires DefaultSelection before KeyDown
- also happens on motif - run the ControlExample, Table tab - turn on the KeyDown and Selection listeners - select an item in the example Table, then press Enter -> on win32 and motif the following are fired: DefaultSelection, KeyDown -> everywhere else it's: KeyDown, DefaultSelection
2004-11-12 17:32:07
1,100,300,000
resolved fixed
ebfd059
1,101,170,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,134
79,064
Bug 79064 Strange NullPE in Widget.sendEvent(int eventType, Event event, boolean send)
Hi, from my users I am sometimes getting logs about a crash that I am not able to reproduce or interpret. The stack looks like: java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:809) at org.eclipse.swt.widgets.Widget.postEvent(Widget.java:621) at org.eclipse.swt.widgets.Control.sendMouseEvent(Control.java:1801) at org.eclipse.swt.widgets.Control.sendMouseEvent(Control.java:1797) at org.eclipse.swt.widgets.Table.sendMouseDownEvent(Table.java:2010) at org.eclipse.swt.widgets.Table.WM_LBUTTONDOWN(Table.java:2869) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3007) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1479) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at net.sourceforge.rssowl.controller.GUI.runEventLoop(Unknown Source) at net.sourceforge.rssowl.controller.GUI.showGui(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader$2.run(Unknown Source) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2760) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2445) at net.sourceforge.rssowl.controller.RSSOwlLoader.<init>(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader.main(Unknown Source) I browsed into the Widget.java to line 809 and the only part that could result in a NullPE is "display.filters (eventType)". But that would mean that display is NULL at that time, which is not clear to me. Users told me they clicked into the Newstable (a simple Table widget) with the left-mouse button. They are using WindowsXP. Any explanation why display could be NULL after that action? Thanks, Ben
2004-11-19 07:18:21
1,100,870,000
resolved fixed
00ed21c
1,101,150,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
SWT
3,135
78,873
Bug 78873 Combo box performance problem
When adding items into a combo box , the performance slows way down , depending on the number of items added. For example when adding 900 items in a windows app , it takes ~0.3 seconds when adding only 700 in a linux app it taks ~45 seconds.
2004-11-17 14:05:41
1,100,720,000
resolved fixed
8226320
1,100,900,000
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
SWT
3,136
78,727
Bug 78727 ToolItems on a wrapped ToolBar do not "unwrap" correctly
I am creating a window with a wrapping ToolBar. When I first make the window smaller so that some ToolItems wrap and then increase the window's width by one pixel after one of the ToolItems has just wrapped, that ToolItem disappears from the second (wrapped) line but is not shown on the first line. Covering and uncovering the window does not help, neither does maximizing and restoring. When I increase the width some more, the right edge of the ToolItem is shown. At this point covering and uncovering the window will make the ToolItem render correctly again. Here's the snippet (a modified version of Snippet58): import org.eclipse.swt.*; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.*; public class Snippet { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setLayout(new GridLayout()); ToolBar bar = new ToolBar (shell, SWT.BORDER|SWT.WRAP); bar.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, true)); for (int i=0; i<4; i++) { ToolItem item = new ToolItem (bar, 0); item.setText ("Item " + i); } int start = bar.getItemCount (); for (int i=start; i<start+4; i++) { ToolItem item = new ToolItem (bar, 0); item.setText ("Item " + i); } bar.pack (); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } This problem happens with 3.1M3 (haven't tried this with any other version) on Win XP Pro SP 1 with Windows Classic theme.
2004-11-16 09:21:17
1,100,610,000
resolved fixed
1692fbe
1,100,900,000
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
SWT
3,137
78,725
Bug 78725 Separator ToolItems with Controls do not wrap soon enough
When putting a separator ToolItem with an attached Control on a wrapping ToolBar, this item does not wrap correctly. This does not happen in all cases (I have a wrapping ToolBar with such a separator item in an application where it works) but the following snippet exhibits this behaviour. This is a modified version of Snippet58 (added SWT.WRAP to ToolBar, put separator at the end, added GridLayout to do the wrapping): import org.eclipse.swt.*; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.*; public class Snippet { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); shell.setLayout(new GridLayout()); ToolBar bar = new ToolBar (shell, SWT.BORDER|SWT.WRAP); bar.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, true)); for (int i=0; i<4; i++) { ToolItem item = new ToolItem (bar, 0); item.setText ("Item " + i); } int start = bar.getItemCount (); for (int i=start; i<start+4; i++) { ToolItem item = new ToolItem (bar, 0); item.setText ("Item " + i); } ToolItem sep = new ToolItem (bar, SWT.SEPARATOR); Combo combo = new Combo (bar, SWT.READ_ONLY); for (int i=0; i<4; i++) { combo.add ("Item " + i); } combo.pack (); sep.setWidth (combo.getSize ().x); sep.setControl (combo); bar.pack (); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } When I run this snippet and make the window taller and smaller (so that the ToolBar wraps and the wrapped line is visible), the separator with the Combo does not wrap when it doesn't fit on the first line anymore but only when it becomes completely invisible on the first line. I tried this with 3.0.1 and 3.1M3 on XP Pro SP1 (Windows Classic theme) with same results.
2004-11-16 09:06:19
1,100,610,000
resolved fixed
52ce859
1,100,730,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java
SWT
3,138
68,353
Bug 68353 Components in SWT_AWT are not displayed on Solaris
Swing components added to an AWT frame generated from SWT_AWT.new_Frame() are not being displayed. The code below works fine on Windows XP, but not on Solaris. I am using Eclipse 3.0RC3 and Java 1.5.0 Beta 2. /*** Begin Java Source ***/ package com.tsccos.eclipse.tools.mvs.timeline.views; import java.awt.Frame; import javax.swing.JLabel; import org.eclipse.swt.SWT; import org.eclipse.swt.awt.SWT_AWT; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import org.eclipse.ui.part.ViewPart; public class TimelineView extends ViewPart { private Composite awtComposite; public TimelineView() { } public void createPartControl(Composite parent) { awtComposite = new Composite(parent, SWT.EMBEDDED); Frame awtFrame = SWT_AWT.new_Frame(awtComposite); awtFrame.add(new JLabel("This is a Swing JLabel")); Label label = new Label(parent, SWT.NONE); label.setText("This is a SWT Label"); } public void setFocus() { this.awtComposite.setFocus(); } } /*** End Java Source ***/
2004-06-23 14:28:51
1,088,020,000
resolved fixed
f61bcdb
1,100,710,000
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
SWT
3,139
78,562
Bug 78562 [portability] Slider selection event fires before MouseDown
- run the ControlExample, Slider/Scale tab - turn on the MouseDown and Selection listeners - click in the Slider's trough (to the right of the thumb) -> on motif the Selection event fires before the MouseDown -> everywhere else the MouseDown fires first
2004-11-12 17:17:14
1,100,300,000
resolved fixed
b58704e
1,100,550,000
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Slider.java
SWT
3,140
78,239
Bug 78239 Label does not Wrap correctly
eclipse.buildId=I200411050810 java.version=1.4.2_06 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -showlocation If the bounds of a Label are set twice to the same thing, the wrapping stops working. Run the example below: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Label label = new Label(shell, SWT.BORDER | SWT.WRAP); label.setText("a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9"); label.setBounds(5, 5, 100, 100); label.setBounds(5, 5, 100, 100); // without this line the label wraps shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
2004-11-09 17:36:02
1,100,040,000
resolved fixed
a5aaa68
1,100,290,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
SWT
3,141
77,535
Bug 77535 Control example coolbar tab uses images in drop down
In the coolbar tab of the ControlExample, enable Item styles "SWT.DROP_DOWN". Now make the coolbar 100x100 so that a chevron is required to see some of the items. On WindowsNT, menus do not support images. When you select the menu from the chevron of the coolbar, it is blank because there are only images in the menu items.
2004-11-02 15:51:25
1,099,430,000
resolved fixed
0007fa3
1,100,280,000
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CoolBarTab.java
SWT
3,142
78,407
Bug 78407 Platform differences setting size while shell is maximized
Here is the some code: public static void main (String [] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setBounds (10, 10, 100, 100); shell.open (); shell.addListener (SWT.Resize, new Listener () { public void handleEvent (Event event) { System.out.println ("*** RESIZE: " + shell.getBounds ()); shell.setBounds (shell.getBounds ()); } }); shell.addListener (SWT.MouseDown, new Listener () { public void handleEvent (Event event) { shell.setBounds (100, 100, 200, 200); } }); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); }
2004-11-11 13:07:21
1,100,200,000
resolved fixed
0a534e2
1,100,210,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
SWT
3,143
43,684
Bug 43684 Setting cursor to SWT.CURSOR_APPSTARTING doesn't seem to work
The new sync view now shows the SWT.CURSOR_APPSTARTING cursor whenever background jobs are running that effect the contents of the view. This cursor appears on WinXP but does not appear on GTK. We are using setCursor on a tree or table control. To try it out, open the Team/Synchronize view and perform a refresh (left most toolbar button) in a workspace with some projects laoded from CVS.
2003-09-25 14:17:38
1,064,510,000
resolved fixed
f980f92
1,100,210,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Cursor.java
SWT
3,144
78,226
Bug 78226 [JFace] ImageCache.getImage failing to return an image for ico file (regression)
Having just installed 3.1 M3, we have discovered that this code Image image = null; String iconPath = "icons/someicon.ico"; File f = new File(iconPath); ImageDescriptor desc = ImageDescriptor.createFromFile (InfrastructurePlugin.class, f.getPath()); if (desc != null) { //obtain the cached image corresponding to the descriptor image = m_ImageCache.getImage(desc); } } return image; works in 3.1 M2 if iconPath references a gif or an ico file. But only works in 3.1 M3 if the iconPath is a gif. No longer working for icons.
2004-11-09 16:37:07
1,100,040,000
resolved fixed
c6a2c6f
1,100,210,000
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/WinBMPFileFormat.java
SWT
3,145
78,150
Bug 78150 eclipse 3.1x crashs on startup
An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x10009E31 Function=Java_org_eclipse_swt_internal_win32_OS_VtblCall__II+0x4 Library=Q:\opt\eclipse\3.1 M2\plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86 \swt-win32-3106.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.VtblCall(Native Method) at org.eclipse.swt.internal.ole.win32.IUnknown.AddRef(IUnknown.java:20) at org.eclipse.swt.accessibility.Accessible.<init>(Accessible.java:59) at org.eclipse.swt.accessibility.Accessible.internal_new_Accessible (Accessible.java:118) at org.eclipse.swt.widgets.Control.new_Accessible(Control.java:1349) at org.eclipse.swt.widgets.Control.getAccessible(Control.java:657) at org.eclipse.jface.action.ToolBarManager.createControl (ToolBarManager.java:103) at org.eclipse.jface.action.ToolBarContributionItem.fill (ToolBarContributionItem.java:190) at org.eclipse.jface.action.CoolBarManager.update (CoolBarManager.java:907) at org.eclipse.jface.action.CoolBarManager.createControl (CoolBarManager.java:244) at org.eclipse.jface.window.ApplicationWindow.createCoolBarControl (ApplicationWindow.java:446) at org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents (WorkbenchWindow.java:815) at org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents (WorkbenchWindowConfigurer.java:542) at org.eclipse.ui.application.WorkbenchAdvisor.createWindowContents (WorkbenchAdvisor.java:640) at org.eclipse.ui.internal.WorkbenchWindow.createContents (WorkbenchWindow.java:765) at org.eclipse.jface.window.Window.create(Window.java:363) at org.eclipse.ui.internal.Workbench.openFirstTimeWindow (Workbench.java:1041) at org.eclipse.ui.internal.WorkbenchConfigurer.openFirstTimeWindow (WorkbenchConfigurer.java:178) at org.eclipse.ui.application.WorkbenchAdvisor.openWindows (WorkbenchAdvisor.java:661) at org.eclipse.ui.internal.Workbench.init(Workbench.java:860) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1391) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:271) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Dynamic libraries: 0x00400000 - 0x00407000 C:\jdk1.4.1\bin\javaw.exe 0x77F70000 - 0x77FD0000 C:\WINNT\System32\ntdll.dll 0x77DC0000 - 0x77DFF000 C:\WINNT\system32\ADVAPI32.dll 0x77F00000 - 0x77F62000 C:\WINNT\system32\KERNEL32.dll 0x77E70000 - 0x77EC4000 C:\WINNT\system32\USER32.dll 0x77ED0000 - 0x77EFC000 C:\WINNT\system32\GDI32.dll 0x77E10000 - 0x77E67000 C:\WINNT\system32\RPCRT4.dll 0x78000000 - 0x78046000 C:\WINNT\system32\MSVCRT.dll 0x6D340000 - 0x6D46A000 C:\jdk1.4.1\jre\bin\client\jvm.dll 0x77FD0000 - 0x77FFB000 C:\WINNT\System32\WINMM.dll 0x6BC00000 - 0x6BC11000 C:\WINNT\System32\SMNT40.dll 0x69F00000 - 0x69FBA000 C:\WINNT\System32\adisynth.dll 0x6D1E0000 - 0x6D1E7000 C:\jdk1.4.1\jre\bin\hpi.dll 0x6D310000 - 0x6D31E000 C:\jdk1.4.1\jre\bin\verify.dll 0x6D220000 - 0x6D239000 C:\jdk1.4.1\jre\bin\java.dll 0x6D330000 - 0x6D33D000 C:\jdk1.4.1\jre\bin\zip.dll 0x6D2E0000 - 0x6D2EE000 C:\jdk1.4.1\jre\bin\net.dll 0x776C0000 - 0x776C8000 C:\WINNT\system32\WSOCK32.dll 0x776A0000 - 0x776B4000 C:\WINNT\system32\WS2_32.dll 0x77690000 - 0x77697000 C:\WINNT\system32\WS2HELP.dll 0x6D2F0000 - 0x6D2F8000 C:\jdk1.4.1\jre\bin\nio.dll 0x10000000 - 0x1004E000 Q:\opt\eclipse\3.1 M2 \plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86\swt-win32-3106.dll 0x77B80000 - 0x77C36000 C:\WINNT\system32\ole32.dll 0x71700000 - 0x7178A000 C:\WINNT\system32\COMCTL32.dll 0x77D80000 - 0x77DB3000 C:\WINNT\system32\comdlg32.dll 0x77C40000 - 0x77D80000 C:\WINNT\system32\SHELL32.dll 0x65340000 - 0x653D2000 C:\WINNT\system32\OLEAUT32.dll 0x76AD0000 - 0x76AD5000 C:\WINNT\System32\IMM32.dll 0x66650000 - 0x666A4000 C:\WINNT\System32\USP10.dll 0x0B980000 - 0x0B98F000 C:\WINNT\System32\pelhooks.dll 0x0B990000 - 0x0B999000 C:\WINNT\System32\PELCOMM.dll 0x52180000 - 0x5218B000 C:\WINNT\system32\VERSION.dll 0x779B0000 - 0x779B8000 C:\WINNT\system32\LZ32.dll 0x71290000 - 0x71296000 C:\WINNT\system32\MSIDLE.DLL 0x76AE0000 - 0x76AFD000 C:\WINNT\System32\imagehlp.dll 0x731B0000 - 0x731BA000 C:\WINNT\System32\PSAPI.DLL Local Time = Tue Nov 09 09:42:45 2004 Elapsed Time = 26 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.1_02-b06 mixed mode) # --- on this system 3.01 works fine 3.1x crashs also with jdk 1.4.2_06 and 1.5.0 ---
2004-11-09 04:18:25
1,099,990,000
resolved fixed
9159069
1,100,200,000
bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java
SWT
3,146
77,983
Bug 77983 Funny behaviour on Linux GTK with MessageBox with % character
Following displays hello 1,591491E-31442,3887746OK Instead of hello %E4 import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; public class PR { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("PR"); MessageBox messageBox = new MessageBox(shell, SWT.OK); messageBox.setText(""); messageBox.setMessage("hello %E4%F6OK"); messageBox.open(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
2004-11-05 14:25:34
1,099,680,000
resolved fixed
7515c07
1,100,040,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java
SWT
3,147
78,204
Bug 78204 Refresh problem in progress view or compare view
Using today's integration build, as soon as a view is resized, it doesn't refresh properly. This makes the build almost unusable.
2004-11-09 14:07:55
1,100,030,000
resolved fixed
0492caa
1,100,030,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java
SWT
3,148
67,237
Bug 67237 DND copy and link are allowed with default mouse gesture
RC2 - observed on all motif platforms - run the DND example - select the DragSource and DropTarget checkboxes - select the Text Transfer checkboxes for each - select the SWT.DROP_COPY checkboxes for each - deselect the SWT.DROP_MOVE checkboxes for each - drag from the left example widget to the right example widget and note that it is allowed, which should not be the case since CTRL was not pressed - a similar behaviour occurs with SWT.DROP_LINK
2004-06-15 10:35:25
1,087,310,000
resolved fixed
34c44c7
1,100,020,000
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/motif/org/eclipse/swt/dnd/DropTarget.java
SWT
3,149
77,527
Bug 77527 setting the background colour in one widget, sets it as the default
In the control example, if the background colour is set for table, and the example is closed and restarted, that background colour of the table is now the background colour of the listener output area. Version: 3.1.0 Build id: 200411020800
2004-11-02 15:32:32
1,099,430,000
resolved fixed
2729672
1,099,690,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
SWT
3,150
77,676
Bug 77676 TextLayout doesn't produce proper runs when newlines present
I'm trying to reproduce Bidi text rendering. The following two controls paint the same text in a different way. Felipe said the problem is related to the presence of the newline character. StyledText only renders lines. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(SWT.SHELL_TRIM | SWT.RIGHT_TO_LEFT); shell.setLayout(new GridLayout()); final String message = "ABC 890\n123 ABC def"; StyledText text = new StyledText(shell, SWT.MULTI | SWT.BORDER | SWT.RIGHT_TO_LEFT); text.setLayoutData(new GridData(GridData.FILL_BOTH)); text.setText(message); final Canvas canvas = new Canvas(shell, SWT.BORDER | SWT.RIGHT_TO_LEFT); canvas.setLayoutData(new GridData(GridData.FILL_BOTH)); canvas.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { TextLayout layout = new TextLayout(shell.getDisplay()); layout.setWidth(shell.getClientArea().width); layout.setOrientation(SWT.RIGHT_TO_LEFT); layout.setText(message); layout.draw(e.gc, 0, 0); layout.dispose(); } }); shell.setSize(400, 300); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); }
2004-11-03 11:39:54
1,099,500,000
resolved fixed
b486853
1,099,690,000
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
SWT
3,151
77,530
Bug 77530 Selection in open type dialog does not work
I200411010800, I200411021200, GTK+ 2.2.1 This problem is specific to GTK+ 2.2.1. It does not occur in GTK+ 2.2.4 or the GTK+ 2.4.0 series. Open the "Open Type" dialog, and type in part of a class name (not a complete class name). Normally, this should select the top item. Currently, it selects nothing.
2004-11-02 15:36:28
1,099,430,000
resolved fixed
33e1f4f
1,099,680,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
SWT
3,152
77,936
Bug 77936 Platform inconsistency: drawLine(X,Y,X,Y) does nothing on the Mac
On Windows and Linux drawLine(X,Y,X,Y) draws a single pixel, but on the Mac nothing is drawn. For example, add the following to the paintControl method of HelloWorld5.java from the SWT examples: gc.drawLine(100,100,100,100); I have since discovered there is a drawPoint() method, which does work, but this is still a bug - drawLine should work the same across the platforms.
2004-11-05 06:53:02
1,099,660,000
resolved fixed
d32130e
1,099,670,000
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
SWT
3,153
77,493
Bug 77493 No more handles error when running the Browser demo
3.1M3 first candidate build - run eclipse with the examples - Window -> Show View -> Other... - select SWT Examples - Browser Demo, OK - the following error is spewed: org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:2723) at org.eclipse.swt.SWT.error(SWT.java:2622) at org.eclipse.swt.SWT.error(SWT.java:2593) at org.eclipse.swt.browser.Browser.<init>(Browser.java:118) at org.eclipse.swt.examples.browser.demos.views.PawnTab.<init>(PawnTab.jav a:61) at org.eclipse.swt.examples.browser.demos.views.BrowserDemoView.createPart Control(BrowserDemoView.java:32) at org.eclipse.ui.internal.PartPane$2.run(PartPane.java:142) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform .java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.PartPane.doCreateChildControl(PartPane.java:138 ) at org.eclipse.ui.internal.ViewPane.doCreateChildControl(ViewPane.java:135 ) at org.eclipse.ui.internal.PartPane.createChildControl(PartPane.java:343) at org.eclipse.ui.internal.PartPane.createControl(PartPane.java:212) at org.eclipse.ui.internal.ViewPane.createControl(ViewPane.java:124) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:392) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform .java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.busyRestoreView(ViewFactory.java:28 4) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:578) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView(ViewFactory.java:575) at org.eclipse.ui.internal.Perspective.showView(Perspective.java:1697) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:7 95) at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:778) at org.eclipse.ui.internal.WorkbenchPage$13.run(WorkbenchPage.java:3105) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3102) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3081) at org.eclipse.ui.internal.ShowViewMenu.showOther(ShowViewMenu.java:209) at org.eclipse.ui.internal.ShowViewMenu$2.run(ShowViewMenu.java:71) at org.eclipse.jface.action.Action.runWithEvent(Action.java:988) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(A ctionContributionItem.java:946) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContribu tionItem.java:896) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionCon tributionItem.java:810) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:734) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2949) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2649) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1527) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1498) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java: 276) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActiv ator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java :273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java :129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:2723) at org.eclipse.swt.SWT.error(SWT.java:2622) at org.eclipse.swt.SWT.error(SWT.java:2593) at org.eclipse.swt.browser.Browser.<init>(Browser.java:118) at org.eclipse.swt.examples.browser.demos.views.EditorTab.<init>(EditorTab .java:53) at org.eclipse.swt.examples.browser.demos.views.BrowserDemoView.createPart Control(BrowserDemoView.java:35) at org.eclipse.ui.internal.PartPane$2.run(PartPane.java:142) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform .java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.PartPane.doCreateChildControl(PartPane.java:138 ) at org.eclipse.ui.internal.ViewPane.doCreateChildControl(ViewPane.java:135 ) at org.eclipse.ui.internal.PartPane.createChildControl(PartPane.java:343) at org.eclipse.ui.internal.PartPane.createControl(PartPane.java:212) at org.eclipse.ui.internal.ViewPane.createControl(ViewPane.java:124) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:392) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform .java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.busyRestoreView(ViewFactory.java:28 4) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:578) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView(ViewFactory.java:575) at org.eclipse.ui.internal.Perspective.showView(Perspective.java:1697) at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:7 95) at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:778) at org.eclipse.ui.internal.WorkbenchPage$13.run(WorkbenchPage.java:3105) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3102) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:3081) at org.eclipse.ui.internal.ShowViewMenu.showOther(ShowViewMenu.java:209) at org.eclipse.ui.internal.ShowViewMenu$2.run(ShowViewMenu.java:71) at org.eclipse.jface.action.Action.runWithEvent(Action.java:988) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(A ctionContributionItem.java:946) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContribu tionItem.java:896) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionCon tributionItem.java:810) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:734) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2949) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2649) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1527) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1498) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java: 276) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActiv ator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java :273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java :129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.ja va:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccesso rImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688)
2004-11-02 12:36:55
1,099,420,000
resolved fixed
b109106
1,099,600,000
examples/org.eclipse.swt.examples.browser.demos/src/org/eclipse/swt/examples/browser/demos/views/BrowserDemoView.java
SWT
3,154
77,492
Bug 77492 ToolBar example tab should have image+text example
This would demonstrate the RIGHT style, and emphasize that ToolItems are not subject to the same image-or-text-but-not-both constraint that Buttons and Labels must follow.
2004-11-02 12:26:29
1,099,420,000
resolved fixed
972d416
1,099,430,000
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/ToolBarTab.java
SWT
3,155
77,490
Bug 77490 setting background on single TableItem always shows grid lines
- run the control example, go to the Table tab - change the background color of item 0, and note that it shows grid lines even though they aren't turned on
2004-11-02 12:04:47
1,099,420,000
resolved fixed
ec4be5e
1,099,430,000
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java
SWT
3,156
72,244
Bug 72244 Posting mouse events locks up event handling
I20040817, WinXP Experiments with posting mouse events by Display#post(..) in the main thread locked up while running the event queue. The main thread would eventually not return from OS.DispatchMessage(..). Posting the events from a background thread works. Using an additional thread makes the code more complicated and potentially changes measurements of performance tests.
2004-08-19 06:45:38
1,092,910,000
resolved fixed
a9b9713
1,099,430,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
3,157
76,933
Bug 76933 MessageBox does not display default title when icon is specified
On Linux, providing an icon for a MessageBox also seems to supply a default tilte to the MessageBox. On Windows, this is not the case -- the MessageBox title is blank unless setText() is called. The following code displays a message box with a warning icon. On Linux, when this displays, it will automatically have a title of "Warning", whereas on Windows, no title will be shown unless setText(...) is called. This behavior happens for any icon styles. MessageBox messageBox = new MessageBox(window.getShell(), SWT.YES | SWT.NO | SWT.ICON_WARNING); messageBox.setMessage("This is a warning"); messageBox.open(); Not sure which of these is correct behavior, but should be consistent.
2004-10-25 10:17:59
1,098,710,000
resolved fixed
e9e7d8a
1,099,420,000
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java
SWT
3,158
49,722
Bug 49722 support mnemonics on CLabel
It would be useful to have CLabel support mnemonics just like a normal Label.
2004-01-08 14:28:32
1,073,590,000
resolved fixed
2f09d1a
1,099,340,000
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java
SWT
3,159
77,342
Bug 77342 getOffset () in emulated TextLayout.java wrong for proportional fonts
In SWT's emulated TextLayout (used in SWT/Photon and until recently in SWT/Fox), method 'public int getOffset (int x, int y, int[] trailing)' <snip> int charWidth = gc.stringExtent(String.valueOf(chars[0])).x; </snip> should be <snip> int charWidth = gc.stringExtent(String.valueOf(chars[offset])).x; </snip> This is on line 885, I think. For obvious reasons, this bug manifests itself only when proportional (non- monospaced) font is used, which is a rare case for the Eclipse-Java-Editor client of StyledText.
2004-10-30 13:54:39
1,099,160,000
resolved fixed
a210372
1,099,340,000
bundles/org.eclipse.swt/Eclipse SWT/emulated/textlayout/org/eclipse/swt/graphics/TextLayout.java
SWT
3,160
76,963
Bug 76963 [browser] Browser.java should not use nsIScriptContext
Currently, the execute() method in Browser.java uses the nsIScriptContext interface in order to run Javascript on the current document. However, this interface is a non-frozen, internal interface. We should switch to a more appropriate API.
2004-10-25 15:12:17
1,098,730,000
resolved fixed
701027e
1,099,060,000
bundles/org.eclipse.swt/Eclipse SWT Browser/motif/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/Browser.java
SWT