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 |
---|---|---|---|---|---|---|---|---|---|---|
361 | 352,291 |
Bug 352291 TextLayout ignores TextStyle rise if GC's antialias is different from SWT.DEFAULT
|
Build Identifier: Eclipse 3.5 and higher TextLayout ignores rise when drawing on a GC with antialias set to ON or OFF. It works with antialias set to SWT.DEFAULT. This happens only on Windows and from my tests it still works with Eclipse 3.4 but is broken from 3.5 and higher. I didn't test with Indigo but I am pretty sure it's broken there too. I am attaching the snippet and screenshots that show the difference in results. Reproducible: Always
|
2011-07-17 11:15:05
| 1,310,920,000 |
resolved fixed
|
68082ed
| 1,311,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
362 | 347,490 |
Bug 347490 Shell.setImeInputMode(int mode) does not always set IME flags as expected, and causes Chinese IME single space mode changes to double space.
|
Build Identifier: Eclipse 3.6.0 I20100608-0911 Shell.setImeInputMode(int mode) does not always set IME flags as expected, and causes Chinese IME single space mode changes to double space. The SWT constant for IME input mode are: SWT.DBCS (int value 2), if set, full shape SWT.ALPHA (int value 4), SWT.NATIVE (int value 8), if set, IME is on SWT.PHONETIC (int value 16), SWT.ROMAN (int value 32), When chinese IME is on and half shape, Shell.getImeInputMode() returns "8". Calling setImeInputMode(8) then calling Shell.getImeInputMode() on the same Shell, it will return "10" instead of expected value "8". 10 means IME is on and FullShape is set. This problem reproduces in Eclipse 3.4.0 through Eclipse 3.6.0. Code snippet to reproduce it: ----------------------- import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; public class Snippet1 { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Text text1 = new Text(shell, SWT.BORDER); text1.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); text1.setFocus(); text1.addKeyListener(new KeyListener() { @Override public void keyPressed(KeyEvent e) { // TODO Auto-generated method stub System.out.println("- Watch the character width (double or single space). Current imeInputMode is: " + shell.getImeInputMode()); } @Override public void keyReleased(KeyEvent e) { // TODO Auto-generated method stub } }); Button button1 = new Button(shell, SWT.PUSH); button1.setText("Change IME"); button1.addSelectionListener(new SelectionListener() { @Override public void widgetSelected(SelectionEvent e) { // TODO Auto-generated method stub shell.setImeInputMode(8); System.out.println("(3) After calling setImeInputMode(8), shell.getImeInputMode()=" + shell.getImeInputMode()); System.out.println(" Notice how the language bar changes to double space characters."); System.out.println(" Enter a digit in text input to compare with the previous one (single space digit now changes to double space digit)."); } @Override public void widgetDefaultSelected(SelectionEvent e) { // TODO Auto-generated method stub } }); shell.setSize(200, 200); shell.open(); System.out.println("(1) Initially shell imeInputMode is: " + shell.getImeInputMode()); System.out.println("(2) With foucs set in the text input area, manually change IME to Chinese IME and half space."); System.out.println(" Enter a digit in text input, verify imeInputMode is 8, and verify language bar showing half space character."); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } Reproducible: Always Steps to Reproduce: 1. With IME off a shell's getImeInputMode() returns 0. 2. Manually change IME to Chinese IME (such as Windows 7 Simplified Chinese QuanPin 6.0) and half space. shell.getImeInputMode() returns 8. 3. After calling shell.setImeInputMode(8), shell.getImeInputMode() now returns "10" instead of expected "8". Also, the language bar changes from single space mode to double space mode.
|
2011-05-27 13:43:42
| 1,306,520,000 |
resolved fixed
|
19497a8
| 1,310,650,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
363 | 348,761 |
Bug 348761 SWT.WRAP missing in Button JavaDoc
| null |
2011-06-08 11:03:59
| 1,307,550,000 |
resolved fixed
|
a662e41
| 1,309,360,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
|
SWT
|
364 | 340,297 |
Bug 340297 Tree : Selection Lost when collapsing unrelated item on Windows 7
|
Build Identifier: 3.5.0 When multiple tree items present under different parent nodes are selected, collapsing a parent causes loss of selection of tree items under another unrelated parent. Reproducible: Always Steps to Reproduce: - Run the snippet below - Multi-select item G, item F and then item D in given order. - Collapse item C by clicking on its [-] box - Expected result: Since item G and item F are not a descendant of item C, they should stay selected - Actual result: Item F is deselected --- Code Snippet --- import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeItem; public class TreeSelectionTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("" + SWT.getVersion()); shell.setLayout(new FillLayout()); Tree tree = new Tree(shell, SWT.MULTI); TreeItem itemA = new TreeItem(tree, SWT.NONE); itemA.setText("Item A"); TreeItem itemB = new TreeItem(itemA, SWT.NONE); itemB.setText("Item B"); TreeItem itemC = new TreeItem(itemB, SWT.NONE); itemC.setText("Item C"); TreeItem itemD = new TreeItem(itemC, SWT.NONE); itemD.setText("Item D"); TreeItem itemE = new TreeItem(itemB, SWT.NONE); itemE.setText("Item E"); TreeItem itemF = new TreeItem(itemE, SWT.NONE); itemF.setText("Item F"); TreeItem itemG = new TreeItem(itemE, SWT.NONE); itemG.setText("Item G"); itemA.setExpanded(true); itemB.setExpanded(true); itemC.setExpanded(true); itemE.setExpanded(true); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2011-03-17 06:12:55
| 1,300,360,000 |
resolved fixed
|
0c84a04
| 1,309,360,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
365 | 345,650 |
Bug 345650 FillGradientRectangle results in screen cheese on x86_64
|
On GTK > 2.18 with certain versions of X (seen on 1.10.1 and 1.9.5 to date), calling fillGradientRectangle will result in screen cheese.
|
2011-05-12 15:42:08
| 1,305,230,000 |
resolved fixed
|
3dc5d27
| 1,306,270,000 |
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
|
366 | 347,022 |
Bug 347022 Browser does not honor IE version setting on first navigate
| null |
2011-05-24 12:59:44
| 1,306,260,000 |
resolved fixed
|
17d7fa6
| 1,306,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
367 | 175,821 |
Bug 175821 GTK printer name for "Print to File" should not be NON-NLS
|
PrintDialog.open() on GTK uses the special printer name "Print to File" in two places. But: I'm on a German system and here it's called "In Datei drucken". I guess using that name is a workaround for having no other way to know if the user wants to print to a file. Maybe it will go away some time. But as long as it's there the code should take the user's language into account.
|
2007-02-28 07:48:59
| 1,172,670,000 |
resolved fixed
|
56d7296
| 1,305,740,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java
|
SWT
|
368 | 322,912 |
Bug 322912 [Browser] Browser fails when 32-bit XULRunner detected on 64-bit OS
|
Build Identifier: I20100608-0911 i have Helios (I20100608-0911) installed on OpenSUSE 11.3 / x86_64, with, rpm -qa | egrep -i "xulrunner|MozillaFirefox-3" mozilla-xulrunner192-devel-1.9.2.8-3.1.x86_64 mozilla-xulrunner191-1.9.1.11-1.3.x86_64 mozilla-xulrunner191-devel-1.9.1.11-1.3.x86_64 mozilla-xulrunner191-32bit-1.9.1.11-1.3.x86_64 mozilla-xulrunner192-1.9.2.8-3.1.x86_64 MozillaFirefox-3.6.8-1.3.x86_64 and, ls -ald /usr/lib*/*xul* lrwxrwxrwx 1 root root 18 2010-08-16 22:35 /usr/lib64/xulrunner-1.9.1 -> xulrunner-1.9.1.11 drwxr-xr-x 12 root root 4096 2010-08-16 22:37 /usr/lib64/xulrunner-1.9.1.11/ lrwxrwxrwx 1 root root 17 2010-08-16 22:36 /usr/lib64/xulrunner-1.9.2 -> xulrunner-1.9.2.8 drwxr-xr-x 12 root root 4096 2010-08-16 22:37 /usr/lib64/xulrunner-1.9.2.8/ drwxr-xr-x 3 root root 4096 2010-08-16 22:37 /usr/lib64/xulrunner-devel-1.9.1.11/ drwxr-xr-x 3 root root 4096 2010-08-16 22:37 /usr/lib64/xulrunner-devel-1.9.2.8/ lrwxrwxrwx 1 root root 18 2010-08-16 22:35 /usr/lib/xulrunner-1.9.1 -> xulrunner-1.9.1.11 drwxr-xr-x 12 root root 4096 2010-08-16 22:35 /usr/lib/xulrunner-1.9.1.11/ i've installed Mylyn + Bugzilla connector, 3.4.1.v20100804-0100-e3x-7D77-BgJ9DH9bIS4CIC i can log in to bugzilla, and see/retrieve reports, as expected. if/when I attempt to make changes & then "Submit", I get an "XULRunner not found" error: /home/dev001/.eclipse/org.eclipse.platform_3.5.0_185596441/configuration/org.eclipse.osgi/bundles/151/1/.cp/libswt-mozilla-gtk-3650.so: libxpcom.so: cannot open shared object file: No such file or directory no swt-mozilla-gtk in java.library.path /tmp/swtlib-64/libswt-mozilla-gtk-3650.so: libxpcom.so: cannot open shared object file: No such file or directory Can't load library: /tmp/swtlib-64/libswt-mozilla-gtk.so ) at org.eclipse.swt.SWT.error(SWT.java:4109) at org.eclipse.swt.browser.Mozilla.initMozilla(Mozilla.java:1703) at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:637) at org.eclipse.swt.browser.Browser.<init>(Browser.java:119) at org.eclipse.mylyn.internal.tasks.ui.util.WebBrowserDialog.createCustomArea(WebBrowserDialog.java:55) at org.eclipse.jface.dialogs.MessageDialog.createDialogArea(MessageDialog.java:273) at org.eclipse.jface.dialogs.IconAndMessageDialog.createDialogAndButtonArea(IconAndMessageDialog.java:221) at org.eclipse.jface.dialogs.IconAndMessageDialog.createContents(IconAndMessageDialog.java:200) at org.eclipse.jface.window.Window.create(Window.java:431) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1089) at org.eclipse.jface.window.Window.open(Window.java:790) at org.eclipse.jface.dialogs.MessageDialog.open(MessageDialog.java:334) at org.eclipse.mylyn.internal.tasks.ui.util.WebBrowserDialog.openAcceptAgreement(WebBrowserDialog.java:46) at org.eclipse.mylyn.internal.tasks.ui.util.TasksUiInternal.displayStatus(TasksUiInternal.java:544) at org.eclipse.mylyn.internal.tasks.ui.util.TasksUiInternal.displayStatus(TasksUiInternal.java:592) at org.eclipse.mylyn.tasks.ui.editors.AbstractTaskEditorPage$23.linkActivated(AbstractTaskEditorPage.java:1235) at org.eclipse.ui.forms.widgets.AbstractHyperlink.handleActivate(AbstractHyperlink.java:233) at org.eclipse.ui.forms.widgets.AbstractHyperlink.handleMouseUp(AbstractHyperlink.java:327) at org.eclipse.ui.forms.widgets.AbstractHyperlink.access$2(AbstractHyperlink.java:311) at org.eclipse.ui.forms.widgets.AbstractHyperlink$4.handleEvent(AbstractHyperlink.java:125) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3552) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3171) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407) at org.eclipse.equinox.launcher.Main.main(Main.java:1383) Caused by: java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /home/dev001/.eclipse/org.eclipse.platform_3.5.0_185596441/configuration/org.eclipse.osgi/bundles/151/1/.cp/libswt-mozilla-gtk-3650.so: libxpcom.so: cannot open shared object file: No such file or directory no swt-mozilla-gtk in java.library.path /tmp/swtlib-64/libswt-mozilla-gtk-3650.so: libxpcom.so: cannot open shared object file: No such file or directory Can't load library: /tmp/swtlib-64/libswt-mozilla-gtk.so at org.eclipse.swt.internal.Library.loadLibrary(Library.java:267) at org.eclipse.swt.internal.Library.loadLibrary(Library.java:174) at org.eclipse.swt.browser.Mozilla.initMozilla(Mozilla.java:1688) ... 43 more Reproducible on a couple of different users', similarly configured, machines. Reproducible: Always
|
2010-08-17 11:30:47
| 1,282,060,000 |
resolved fixed
|
a354edf
| 1,305,730,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/init/GREProperty.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/init/XPCOMInit.java bundles/org.eclipse.swt/Eclipse SWT PI/common_j2se/org/eclipse/swt/internal/Library.java
|
SWT
|
369 | 345,892 |
Bug 345892 Selection jumps in tree
| null |
2011-05-16 04:33:48
| 1,305,530,000 |
verified fixed
|
6398b35
| 1,305,640,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
370 | 345,924 |
Bug 345924 Key input not working after using expose
| null |
2011-05-16 07:52:33
| 1,305,550,000 |
verified fixed
|
a66b3dd
| 1,305,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
371 | 341,895 |
Bug 341895 DND actions in AbstractTreeViewer lead to NPE and application freeze [Carbon]
|
Build Identifier: M20110210-1200 I noticed lately that a big, serious, crashing Eclipse NPE occurs on DND actions in a SWT Tree in the Carbon version of our RCP application. I traced it to one point in AbstractTreeViewer. This wasn't happening before. So I checked if it was happening in Eclipse Carbon version itself. Yes it does. Reproducible: Always Steps to Reproduce: 1. In Package Explorer create some simple files and folders in a General Project. 2. DND some files between folders. Try and do this a few times. Leads to NPE.
|
2011-04-05 08:48:12
| 1,302,010,000 |
verified fixed
|
160dcd4
| 1,305,570,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
372 | 344,460 |
Bug 344460 Bidi 3.7: [Coolbar] Chrevon is not updated during setOrientation()
|
Build Identifier: 20110218-0911 REDHAT, SLES11: For the style : SWT.DROP_DOWN the arrow of shrink item is not mirrored when setOrientation() used, the arrow mirrored only if created in mirrored orientation (RTL). Reproducible: Always Steps to Reproduce: 1. Apply the attached patch on the "org.eclipse.swt.examples" project (project level). 2. Go to org.eclipse.swt.examples.mirroringTest package. 3. Run the ControlExamle. 4. Go to the "CoolBar" Tab. 5. In "Item Styles..." group the check the "SWT.DROP_DOWN" option. 6. In second line of the CoolBar stretch the radio CoolItem (group of items in the middle) to their left (till you get the drop down arrow). 7. In "Orientation..." group, click the "set orientation SWT.RIGHT_TO_LEFT" radio option. result : the arrow of the drop down not mirrored. Note: if you click "create new SWT.RIGHT_TO_LEFT" then the arrow is mirrored.
|
2011-05-02 10:19:56
| 1,304,350,000 |
resolved fixed
|
1000246
| 1,305,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java
|
SWT
|
373 | 344,487 |
Bug 344487 [Browser] WebKit and XULRunner-1.9.2.x crash due to incompatible SQLLite libs
|
- 3.7M7 - install XULRunner 1.9.2.x and Safari on Windows - run ControlExample, go to the Browser tab - choose the SWT.WEBKIT checkbox -> demo browser changes to WebKit renderer - choose the SWT.MOZILLA checkbox -> a prompter is shown with error message "...your version of SQLLite is too old..." -> after pressing OK the app crashes - only happens if XULRunner version is 1.9.2.x, and only if WebKit is loaded before it (choosing SWT.MOZILLA and then SWT.WEBKIT works fine) - XULRunner ships its own SQLLite lib, so it is likely getting sad when the one used by WebKit has already been loaded
|
2011-05-02 12:57:37
| 1,304,360,000 |
resolved fixed
|
c1cfa6e
| 1,305,150,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/BrowserFactory.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/cocoa/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java
|
SWT
|
374 | 344,392 |
Bug 344392 Bidi 3.7: Images in disabled ToolBar disappear when orientation changed (setOrientation) used.
| null |
2011-05-01 04:57:26
| 1,304,240,000 |
resolved fixed
|
844c3cb
| 1,305,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
375 | 344,878 |
Bug 344878 Unprotected call to PrintDlg in WebUIDelegate.printFrame
| null |
2011-05-05 13:54:48
| 1,304,620,000 |
resolved fixed
|
a99d0f7
| 1,305,140,000 |
bundles/org.eclipse.swt/Eclipse SWT WebKit/win32/org/eclipse/swt/browser/WebUIDelegate.java
|
SWT
|
376 | 306,941 |
Bug 306941 [Mac] Using expos and selecting Eclipse doesn't bring Eclipse window on top.
| null |
2010-03-24 09:56:08
| 1,269,440,000 |
resolved fixed
|
ee1312c
| 1,305,130,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
377 | 317,255 |
Bug 317255 Clipboard data is lost on exit (Should implement the freedesktop.org specification for clipboard management)
| null |
2010-06-17 20:31:58
| 1,276,820,000 |
verified fixed
|
35627c0
| 1,305,060,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/ClipboardProxy.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
|
SWT
|
378 | 336,485 |
Bug 336485 Parent shell wrongly focused via Expose (should activate primary modal child shell)
|
HEAD Cocoa - Open a child shell with PRIMARY_MODAL (e.g. in ControlExample) - Via Expose, select the parent shell => Parent shell gets activated, but keyboard interaction doesn't work => Expected: Child shell should be active I would also expect that the child shell is shown as a separate window in Expose, at least if it's MODELESS. Works fine with the native Open dialog. Works fine on Carbon (separate window in Expose, parent passes focus to child when activated).
|
2011-02-07 05:08:25
| 1,297,070,000 |
verified fixed
|
b84a7e4
| 1,304,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
379 | 343,454 |
Bug 343454 XULRunner 2.0 kills Eclipse when opening anything Browser related
| null |
2011-04-20 16:23:40
| 1,303,330,000 |
resolved fixed
|
d05fd93
| 1,304,960,000 |
bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/browser/WebKit.java
|
SWT
|
380 | 87,238 |
Bug 87238 [Graphics] TextLayout: Incorrect wrapping when text styles are used
|
SWT-win32, v3124 In the following example, the StyledText does not wrap its contents correctly (see attached screenshot). This only happens when a style range is set. --- import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class StyleRangeWrapTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Font font = new Font(display, "Tahoma", 14, SWT.NORMAL); StyledText text = new StyledText(shell, SWT.BORDER | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL); text.setFont(font); text.setText("The quick brown fox jumps over the lazy dog."); StyleRange style = new StyleRange(); style.start = 10; style.length = 5; style.background = display.getSystemColor(SWT.COLOR_DARK_YELLOW); text.setStyleRange(style); shell.setSize(171, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } font.dispose(); display.dispose(); } }
|
2005-03-06 17:00:39
| 1,110,150,000 |
resolved fixed
|
df9b5d5
| 1,304,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
381 | 344,686 |
Bug 344686 [GTK] Cannot enable/disable breakpoint by clicking checkbox
| null |
2011-05-04 06:15:33
| 1,304,500,000 |
resolved fixed
|
edc7c94
| 1,304,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
382 | 344,591 |
Bug 344591 potential crash in Printer
| null |
2011-05-03 10:52:20
| 1,304,430,000 |
resolved fixed
|
d10c16e
| 1,304,620,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java
|
SWT
|
383 | 344,642 |
Bug 344642 [Mac OS X] Cannot enable/disable breakpoint by clicking checkbox
|
Build id: I20110428-0848 (Eclipse 3.7 M7, Cocoa 32-bit) Running on Mac OS X 10.5.8 and Java 1.5.0_28 1. Open a Java file and add a breakpoint 2. Switch to the Debug perspective 3. Try to disable the breakpoint by clicking the checkbox in the Breakpoints view --> not possible Note that the breakpoint's table row will be deselected on mouse up. If previsouly not selected, it will be selected on mouse down and then deselected on mouse up. Interestingly, enabling and disabling works when holding down the alt/option key. The context menu actions also work. Marked as a blocker, because I think 3.7 should not be shipped with this bug.
|
2011-05-03 17:09:02
| 1,304,460,000 |
resolved fixed
|
0311d68
| 1,304,610,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
384 | 344,516 |
Bug 344516 GC with Transform crashes when rendering TextLayout with strikeout and selection
|
Build Identifier: 20110218-0911 On Windows (XP, Vista and 7), when trying to render a TextLayout with strikeout style and a selection on this style, the GC with a transform crashes the JVM with the following error: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x09d01f00, pid=3116, tid=2340 # # JRE version: 6.0_25-b06 # Java VM: Java HotSpot(TM) Client VM (20.0-b11 mixed mode, sharing windows-x86 ) # Problematic frame: # C 0x09d01f00 Apparently any transform will cause the problem, even if an empty transform. It doesn't happen to bold, italic, underline or any other style. Reproducible: Always Steps to Reproduce: 1. Create a TextLayout with some text and a strike out style. 2. On paint, set a transform on the GC. 3. Draw the text layout with selection containing the range which is struck out.
|
2011-05-02 20:46:44
| 1,304,380,000 |
resolved fixed
|
08baa46
| 1,304,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
385 | 344,597 |
Bug 344597 Error when returning null values from Javascript evaluations in IE 9 using SWT Browser
|
Build Identifier: M20110210-1200 Evaluating JavaScript expressions that return null or an undefined value using the SWT Browser control against Internet Explorer 9 (IE9) will result in an SWT Exception. I will attach a repro snippet or you can simply in an SWT Browser control execute something like: Object result = browser.evaluate("alert('evalute something that returns null')"); On Windows with IE9 RTM installed you get: org.eclipse.swt.SWTException: Return value not valid On all other platforms (including Windows with prior version of IE including IE9 Beta), a null value is returned. The reason for this is that IE 9 has a new Javascript engine with significantly improved performance, however they also changed some behaviour which has resulted in a change to the way the COM interface works for null or undefined values. GetIDsOfNames on an Javascript Arrays IDispatch pointer now returns valid ids for the items in the array. If you have a single item array with the one item in it that is undefined or null, the old engine would return DISP_E_UNKNOWNNAME for this item, and so the SWT Browser code in the WebSite class simply skips over this element. However, the item does exist (albeit it is undefined), and so IE9 now return a valid dispid. SWT then tries to query for the item, and IE9 returns a VARIANT with its type set to VT_EMPTY which were then not handling in the SWT Browser code. (As VT_EMPTY was never returned by the older versions of IE the SWT Browser code never had to handle this condition before). I believe the correct fix would be to have the org.eclipse.swt.browser.WebSite.convertToJava() method handle the new VT_EMPTY Variant, i.e. Object convertToJava (Variant variant) { switch (variant.getType ()) { case OLE.VT_EMPTY: // IE9 can return VT_EMPTY for null case OLE.VT_NULL: return null; case OLE.VT_BSTR: return variant.getString (); ... Let me know if you agree and I can send along a patch accordingly as it is a simple one-line fix. Ive checked with the folks this side and I have permission to contribute this simple fix to improve the interoperability of Eclipse and IE9. The only workaround I can find without the fix is to make sure that any Javascript you do execute never returns null or undefined (i.e. you can OR the result of the call that could return null with an empty string to ensure that the result coming back via IDispatch is always a non-null value) Let me know if there is anything else I can do to help. Reproducible: Always Steps to Reproduce: 1. Execute a browser.evaluate() call that returns null or undefined results from the Javascript expression when running with IE9 Actual result: SWTException Expected result: null value returned.
|
2011-05-03 11:22:15
| 1,304,440,000 |
resolved fixed
|
d1b3f8d
| 1,304,540,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
386 | 343,932 |
Bug 343932 crash happened during BrowserFunction invocation
|
Build Identifier: Eclipse RCP v3.6.2 While running an rcp application started in the eclipse swt browser, the complete applciation crashing and shut down the browser. Reproducible: Always Steps to Reproduce: 1.Dowbload eclipse RCP v3.6.2 and install 2.Install ie9 on windows server 2003 or windows 7 3. build an application that uses a swt browser and start the application to use the browser
|
2011-04-27 03:30:48
| 1,303,890,000 |
resolved fixed
|
959097b
| 1,304,540,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
387 | 317,219 |
Bug 317219 Shell.moveAbove() should not show widget if not visible
|
Shell.moveAbove() doesn't show child area, just the frame. See snippet below: ===== import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class Test { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout(1, false)); Button b = new Button(shell, SWT.PUSH); b.setText("PUSH ME"); shell.setVisible(false); shell.moveAbove(null); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2010-06-17 12:47:09
| 1,276,790,000 |
resolved fixed
|
20b46df
| 1,304,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
388 | 335,056 |
Bug 335056 Link widget shows IBeam cursor
|
HEAD Cocoa The Link widget is a bit distracting, since it shows the IBeam cursor when the mouse is in the widget, but not on text or on a link. Can easily be seen in the ControlExample with SWT.BORDER and size 100 x 100.
|
2011-01-21 16:00:49
| 1,295,640,000 |
resolved fixed
|
df07cfa
| 1,304,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java
|
SWT
|
389 | 344,324 |
Bug 344324 StyledText is no longer accessible on Mac Cocoa
|
I20110428-0848 Turn on VoiceOver. Give focus to a StyledText (either ControlExample or Eclipse editor). VoiceOver only says "text blank".
|
2011-04-29 13:52:40
| 1,304,100,000 |
resolved fixed
|
10998f0
| 1,304,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java
|
SWT
|
390 | 338,127 |
Bug 338127 Error NPE
|
-- Configuration Details -- Product: Eclipse 1.3.1.20100913-1228 (org.eclipse.epp.package.jee.product) Installed Features: org.eclipse.jdt 3.6.1.r361_v20100714-0800-7z8XFUSFLFlmgLc5z-Bvrt8-HVkH eclipse.buildId=M20100909-0800 java.version=1.6.0_22 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=it_IT Framework arguments: -product org.eclipse.epp.package.jee.product -keyring /Users/vittorio/.eclipse_keyring -showlocation Command-line arguments: -os macosx -ws cocoa -arch x86_64 -product org.eclipse.epp.package.jee.product -keyring /Users/vittorio/.eclipse_keyring -showlocation Error Thu Feb 24 18:08:15 CET 2011 Problems occurred when invoking code from plug-in: "org.eclipse.jface". java.lang.NullPointerException at org.eclipse.swt.program.Program.getProgram(Program.java:167) at org.eclipse.swt.program.Program.findProgram(Program.java:78) at org.eclipse.ui.internal.registry.EditorRegistry.getSystemExternalEditorImageDescriptor(EditorRegistry.java:1249) at org.eclipse.ui.internal.registry.EditorRegistry.getImageDescriptor(EditorRegistry.java:1457) at org.eclipse.ui.internal.ide.model.WorkbenchFile.getBaseImage(WorkbenchFile.java:63) at org.eclipse.ui.internal.ide.model.WorkbenchResource.getImageDescriptor(WorkbenchResource.java:42) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getWorkbenchImageDescriptor(JavaElementImageProvider.java:181) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.computeDescriptor(JavaElementImageProvider.java:121) at org.eclipse.jdt.internal.ui.viewsupport.JavaElementImageProvider.getImageLabel(JavaElementImageProvider.java:96) at org.eclipse.jdt.internal.ui.viewsupport.JavaUILabelProvider.getImage(JavaUILabelProvider.java:144) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerLabelProvider.getImage(PackageExplorerLabelProvider.java:137) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.getImage(DelegatingStyledCellLabelProvider.java:184) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.getImage(DecoratingStyledCellLabelProvider.java:167) at org.eclipse.jface.viewers.DelegatingStyledCellLabelProvider.update(DelegatingStyledCellLabelProvider.java:118) at org.eclipse.jface.viewers.DecoratingStyledCellLabelProvider.update(DecoratingStyledCellLabelProvider.java:134) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:152) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:934) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:102) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:1014) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:481) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:49) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2141) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem(AbstractTreeViewer.java:829) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:804) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:778) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:644) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:749) at org.eclipse.jface.viewers.AbstractTreeViewer.handleTreeExpand(AbstractTreeViewer.java:1444) at org.eclipse.jface.viewers.TreeViewer.handleTreeExpand(TreeViewer.java:952) at org.eclipse.jface.viewers.AbstractTreeViewer$4.treeExpanded(AbstractTreeViewer.java:1455) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:132) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375) at org.eclipse.swt.widgets.TreeItem.sendExpand(TreeItem.java:1024) at org.eclipse.swt.widgets.Tree.expandItem_expandChildren(Tree.java:1186) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5183) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1025) at org.eclipse.swt.widgets.Tree.mouseDownSuper(Tree.java:1974) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1021) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2258) at org.eclipse.swt.widgets.Tree.mouseDown(Tree.java:1942) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4976) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1943) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2025) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5040) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4582) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4659) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:115) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3274) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2640) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2604) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407)
|
2011-02-24 12:48:20
| 1,298,570,000 |
resolved fixed
|
20371ac
| 1,304,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
391 | 343,816 |
Bug 343816 NPE when item from the List is dragged
|
Cocoa x86_64 : I20110425-1800 1) Run the DNDExample. 2) Select List as the DragSource. 3) Drag any item from the List. NPE occurs. Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.widgets.Control.createString(Control.java:965) at org.eclipse.swt.widgets.List.tableView_objectValueForTableColumn_row(List.java:1448) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5752) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.drawRect(Widget.java:722) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5434) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:4864) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5211) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(NSApplication.java:94) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3596) at org.eclipse.swt.examples.dnd.DNDExample.open(DNDExample.java:1352) at org.eclipse.swt.examples.dnd.DNDExample.main(DNDExample.java:71)
|
2011-04-26 06:29:09
| 1,303,810,000 |
resolved fixed
|
b9cbee7
| 1,304,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java
|
SWT
|
392 | 339,138 |
Bug 339138 Text limit for Text widget doesn't work in some cases
|
Reproducible with Cocoa HEAD. Came across this while working on a different Text bug. Text.append(), insert(), paste() don't check for textlimit before changing the text. Test snippet: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setSize(200, 75); GridLayout layout = new GridLayout(1, false); shell.setLayout(layout); Text text = new Text(shell, SWT.BORDER|SWT.MULTI); text.setLayoutData(new GridData(GridData.FILL_BOTH)); text.setTextLimit(6); text.setText("124"); text.insert("456789"); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2011-03-07 14:27:24
| 1,299,530,000 |
resolved fixed
|
980c0b9
| 1,304,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
393 | 333,630 |
Bug 333630 EXCEPTION_ACCESS_VIOLATION SHELL32.dll TaskBar#getDirectory
| null |
2011-01-06 03:46:56
| 1,294,300,000 |
resolved fixed
|
720656c
| 1,303,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java
|
SWT
|
394 | 335,307 |
Bug 335307 Redraw problem with Table/Tree header after scrolling
|
Reproducible on Cocoa I20110124-1800 build. I first saw this in the preference dialog -> Installed JREs. Also reproducible with Tree and Table in Control Example. Steps: 1) Open preference dialog -> Installed JREs 2) Scroll towards the right in the Installed JREs table such that the checkbox column is not visible. 3) Now scroll back so that checkbox column is visible. 4) The text in the header of first column ("Name") is not redrawn correctly.
|
2011-01-25 08:25:44
| 1,295,960,000 |
resolved fixed
|
9d7753b
| 1,303,730,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java
|
SWT
|
395 | 342,648 |
Bug 342648 On Linux in RTL mode Tree.getItem(Point) gives incorrect results
|
N20110410-2000 Unzip the attached plug-in project and import as existing project Launch a new runtime workbench with the parameter -dir rtl Verify that Eclipse is in right to left mode Show the view TreeViewCategory/RTL tree view In the view click on an expander node Expected Result: Tree item.getItem() is null is written to the console Actual result: Tree item.getItem() is not null is written to the console This works correctly in ltr
|
2011-04-12 18:57:36
| 1,302,650,000 |
verified fixed
|
7ea2dcf
| 1,303,410,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
396 | 343,560 |
Bug 343560 Display.ayncExec(null) does not cause readAndDispatch() to return true.
|
Run this snippet and stop moving the mouse or typing. On all platforms but cocoa, you get a sequence like this printed to the console. loop=true loop=false loop=true loop=false import org.eclipse.swt.widgets.*; public class SyncThread { public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); new Thread() { public void run() { while (!display.isDisposed()) { //1 // display.asyncExec(new Runnable() { // public void run() { // } // }); //2 display.asyncExec(null); //3 // display.wake(); try { Thread.sleep(500); } catch (Throwable e) {} } } }.start(); shell.pack(); shell.open(); while (!shell.isDisposed()) { boolean events = display.readAndDispatch(); System.out.println("loop=" + events); if (!events) display.sleep(); } display.dispose(); } }
|
2011-04-21 10:48:58
| 1,303,400,000 |
resolved fixed
|
7afd221
| 1,303,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java
|
SWT
|
397 | 343,093 |
Bug 343093 DBCS4.1: Cannot input Japanese characters in Mac OS X using default IME.
|
Build Identifier: I20110412-2200 OS: Mac OS X Java environment:1.6.0_24-b07-334 Locale:ja_JP.UTF-8 When you enter japanese as hiragana you press space key to turn it into kanjis. After that you can press enter and start typing more hiraganas. But in case of eclipse 4.1 if you press enter and start typing new characters, the previously typed characters disappear, never to be seen again. Reproducible: Always Steps to Reproduce: 1.Click file->New->Java Project 2.Under project name try typing some Japanese characters using default MAC IME. 3. Convert those characters to Kanji using space key and press enter. Try typing more characters, the previously typed characters will all disappear and the new characters appear at the beginning of the line.
|
2011-04-18 03:37:13
| 1,303,110,000 |
resolved fixed
|
40db8b3
| 1,303,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
398 | 341,402 |
Bug 341402 SWT Cocoa crash in 3.7M6
|
I just captured the following crash with 3.7M6. The crash happened shortly after I saved an editor and not in direct response to an action. Process: eclipse [65988] Path: /Users/bhunt/Applications/Eclipse/3.7 M6/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.6 (3.6) Code Type: X86-64 (Native) Parent Process: ??? [1] Date/Time: 2011-03-30 12:35:12.370 -0500 OS Version: Mac OS X 10.6.7 (10J869) Report Version: 6 Interval Since Last Report: 444333 sec Crashes Since Last Report: 4 Per-App Interval Since Last Report: 393587 sec Per-App Crashes Since Last Report: 2 Anonymous UUID: 7397DCB5-F728-41C7-9027-04BA5F045F3C Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000028 Crashed Thread: 0 Dispatch queue: com.apple.main-thread Application Specific Information: objc_msgSend() selector name: respondsToSelector: Java information: Exception type: Bus Error (0xa) at pc=7fff8765b1d8 Java VM: Java HotSpot(TM) 64-Bit Server VM (19.1-b02-334 mixed mode macosx-amd64) Current thread (11f801000): JavaThread "main" [_thread_in_native, id=1893792928, stack(7fff5f400000,7fff5fc00000)] Stack: [7fff5f400000,7fff5fc00000] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Lorg/eclipse/swt/internal/cocoa/objc_super;JJJJZ)J+0 j org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(JJJJJJ)J+77 j org.eclipse.swt.widgets.Display.applicationProc(JJJJJJ)J+93 v ~StubRoutines::call_stub j org.eclipse.swt.internal.cocoa.OS.objc_msgSend(JJJJJZ)J+0 j org.eclipse.swt.internal.cocoa.NSApplication.nextEventMatchingMask(JLorg/eclipse/swt/internal/cocoa/NSDate;Lorg/eclipse/swt/internal/cocoa/NSString;Z)Lorg/eclipse/swt/internal/cocoa/NSEvent;+36 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+98 j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+555 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$7.run()V+55 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+108 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+126 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub Java Threads: ( => current thread ) 11fbf4800 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=881635328, stack(1347cb000,1348cb000)] 12b857000 JavaThread "Worker-16" [_thread_blocked, id=903159808, stack(135c52000,135d52000)] 12d8e1000 JavaThread "Worker-15" [_thread_blocked, id=902098944, stack(135b4f000,135c4f000)] 120a73000 JavaThread "Worker-14" [_thread_blocked, id=901038080, stack(135a4c000,135b4c000)] 11fc4f800 JavaThread "Worker-13" [_thread_blocked, id=899977216, stack(135949000,135a49000)] 132920800 JavaThread "Worker-12" [_thread_blocked, id=898916352, stack(135846000,135946000)] 11ffa8000 JavaThread "Worker-11" [_thread_blocked, id=896282624, stack(1355c3000,1356c3000)] 132920000 JavaThread "Worker-10" [_thread_blocked, id=893190144, stack(1352d0000,1353d0000)] 12e84d000 JavaThread "Worker-9" [_thread_blocked, id=892129280, stack(1351cd000,1352cd000)] 11ff29800 JavaThread "Worker-8" [_thread_blocked, id=889995264, stack(134fc4000,1350c4000)] 12d040000 JavaThread "Worker-7" [_thread_blocked, id=888934400, stack(134ec1000,134fc1000)] 12f8ea000 JavaThread "Worker-6" [_thread_blocked, id=887873536, stack(134dbe000,134ebe000)] 12f8cf800 JavaThread "Worker-5" [_thread_blocked, id=886075392, stack(134c07000,134d07000)] 12e842800 JavaThread "Worker-4" [_thread_blocked, id=885014528, stack(134b04000,134c04000)] 11faa2800 JavaThread "Worker-3" [_thread_blocked, id=883953664, stack(134a01000,134b01000)] 13291f000 JavaThread "Worker-2" [_thread_blocked, id=835252224, stack(131b8f000,131c8f000)] 12b8f4800 JavaThread "Worker-1" [_thread_blocked, id=796409856, stack(12f684000,12f784000)] 120db1800 JavaThread "Java indexing" daemon [_thread_blocked, id=868118528, stack(133ae7000,133be7000)] 11ffb7800 JavaThread "com.google.inject.internal.util.$Finalizer" daemon [_thread_blocked, id=865079296, stack(133801000,133901000)] 12a994800 JavaThread "Thread-6" [_thread_in_native, id=828026880, stack(1314ab000,1315ab000)] 1209d4800 JavaThread "Collaboration Service Job Manager" [_thread_blocked, id=836378624, stack(131ca2000,131da2000)] 120cc0800 JavaThread "Worker-0" [_thread_blocked, id=790630400, stack(12f101000,12f201000)] 1209ee000 JavaThread "Worker-JM" [_thread_blocked, id=825827328, stack(131292000,131392000)] 12b8f7000 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=794824704, stack(12f501000,12f601000)] 12b87a800 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=779063296, stack(12e5f9000,12e6f9000)] 11fb03800 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=777674752, stack(12e4a6000,12e5a6000)] 12b80a800 JavaThread "State Data Manager" daemon [_thread_blocked, id=776335360, stack(12e35f000,12e45f000)] 12b80f000 JavaThread "Framework Active Thread" [_thread_blocked, id=774774784, stack(12e1e2000,12e2e2000)] 12b810000 JavaThread "Poller SunPKCS11-Darwin" daemon [_thread_blocked, id=724570112, stack(12b201000,12b301000)] 11f97a800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=697307136, stack(129801000,129901000)] 11f979800 JavaThread "CompilerThread1" daemon [_thread_blocked, id=694198272, stack(12950a000,12960a000)] 11f979000 JavaThread "CompilerThread0" daemon [_thread_blocked, id=693137408, stack(129407000,129507000)] 11f978000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=692076544, stack(129304000,129404000)] 11f977800 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=691015680, stack(129201000,129301000)] 11f96e800 JavaThread "Finalizer" daemon [_thread_blocked, id=687923200, stack(128f0e000,12900e000)] 11f96e000 JavaThread "Reference Handler" daemon [_thread_blocked, id=686862336, stack(128e0b000,128f0b000)] =>11f801000 JavaThread "main" [_thread_in_native, id=1893792928, stack(7fff5f400000,7fff5fc00000)] Other Threads: 11f969800 VMThread [stack: 128d08000,128e08000] [id=685801472] 11f98c000 WatcherThread [stack: 129b01000,129c01000] [id=700452864] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap par new generation total 19136K, used 12722K [7d0000000, 7d14c0000, 7d4000000) eden space 17024K, 74% used [7d0000000, 7d0c6cb40, 7d10a0000) from space 2112K, 0% used [7d12b0000, 7d12b0000, 7d14c0000) to space 2112K, 0% used [7d10a0000, 7d10a0000, 7d12b0000) concurrent mark-sweep generation total 90476K, used 49442K [7d4000000, 7d985b000, 7f0000000) concurrent-mark-sweep perm gen total 205836K, used 123612K [7f0000000, 7fc903000, 800000000) Virtual Machine Arguments: JVM Args: -Xms40m -Xmx512m -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -XX:MaxPermSize=256m Java Command: <unknown> Launcher Type: generic Physical Memory: Page Size = 4k, Total = 8192M, Free = 981M Thread 0 Crashed: Dispatch queue: com.apple.main-thread 0 libobjc.A.dylib 0x00007fff8765b1d8 objc_msgSend_vtable5 + 16 1 com.apple.AppKit 0x00007fff84732e02 -[NSToolTipManager displayToolTip:] + 332 2 com.apple.AppKit 0x00007fff84731460 toolTipTimerFired + 114 3 com.apple.CoreFoundation 0x00007fff8225dbe8 __CFRunLoopRun + 6488 4 com.apple.CoreFoundation 0x00007fff8225bdbf CFRunLoopRunSpecific + 575 5 com.apple.HIToolbox 0x00007fff866197ee RunCurrentEventLoopInMode + 333 6 com.apple.HIToolbox 0x00007fff86619551 ReceiveNextEventCommon + 148 7 com.apple.HIToolbox 0x00007fff866194ac BlockUntilNextEventMatchingListInMode + 59 8 com.apple.AppKit 0x00007fff8419ce64 _DPSNextEvent + 718 9 com.apple.AppKit 0x00007fff8419c7a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155 10 libswt-pi-cocoa-3724.jnilib 0x000000012e19022e Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSendSuper__Lorg_eclipse_swt_internal_cocoa_objc_1super_2JJJJZ + 122 11 ??? 0x0000000121011cc8 0 + 4848688328 12 ??? 0x0000000121006929 0 + 4848642345 13 ??? 0x0000000121006929 0 + 4848642345 14 ??? 0x0000000121001438 0 + 4848620600 15 libclient64.dylib 0x000000011e1dfda7 JVM_Lseek + 181440 16 libclient64.dylib 0x000000011e1dfb7a JVM_Lseek + 180883 17 libclient64.dylib 0x000000011e202af1 JVM_FindLoadedClass + 3535 18 libclient64.dylib 0x000000011e34a067 JVM_Sync + 3034 19 libswt-cocoa-3724.jnilib 0x000000012908ef92 callback + 1344 20 libswt-cocoa-3724.jnilib 0x0000000129074525 fn3_6 + 90 21 libswt-pi-cocoa-3724.jnilib 0x000000012e18c0e0 Java_org_eclipse_swt_internal_cocoa_OS_objc_1msgSend__JJJJJZ + 79 22 ??? 0x0000000121011cc8 0 + 4848688328 23 ??? 0x0000000121006929 0 + 4848642345 24 ??? 0x00000001210069b3 0 + 4848642483 25 ??? 0x0000000121006a82 0 + 4848642690 26 ??? 0x000000012100685a 0 + 4848642138 27 ??? 0x000000012100696e 0 + 4848642414 28 ??? 0x000000012100696e 0 + 4848642414 29 ??? 0x0000000121006d34 0 + 4848643380 30 ??? 0x000000012100685a 0 + 4848642138 31 ??? 0x000000012100696e 0 + 4848642414 32 ??? 0x000000012100696e 0 + 4848642414 33 ??? 0x0000000121006e8d 0 + 4848643725 34 ??? 0x0000000121006e8d 0 + 4848643725 35 ??? 0x00000001210069b3 0 + 4848642483 36 ??? 0x00000001210069b3 0 + 4848642483 37 ??? 0x00000001210069b3 0 + 4848642483 38 ??? 0x0000000121001438 0 + 4848620600 39 libclient64.dylib 0x000000011e1dfda7 JVM_Lseek + 181440 40 libclient64.dylib 0x000000011e1dfb7a JVM_Lseek + 180883 41 libclient64.dylib 0x000000011e1f7e2e JVM_NewInstanceFromConstructor + 3265 42 libclient64.dylib 0x000000011e1f8fe2 JVM_InvokeMethod + 940 43 libclient64.dylib 0x000000011e1f8da9 JVM_InvokeMethod + 371 44 libjvmlinkage.dylib 0x000000010071de0e JVM_InvokeMethod + 78 45 ??? 0x0000000121011cc8 0 + 4848688328 46 ??? 0x00000001210069b3 0 + 4848642483 47 ??? 0x00000001210069b3 0 + 4848642483 48 ??? 0x0000000121006e8d 0 + 4848643725 49 ??? 0x00000001210069b3 0 + 4848642483 50 ??? 0x000000012100685a 0 + 4848642138 51 ??? 0x000000012100685a 0 + 4848642138 52 ??? 0x0000000121001438 0 + 4848620600 53 libclient64.dylib 0x000000011e1dfda7 JVM_Lseek + 181440 54 libclient64.dylib 0x000000011e1dfb7a JVM_Lseek + 180883 55 libclient64.dylib 0x000000011e1ecdfe JVM_MonitorWait + 10780 56 libclient64.dylib 0x000000011e2dadce JVM_GetClassInterfaces + 8145 57 eclipse_1403.so 0x000000010040e420 startJavaJNI + 2138 58 eclipse_1403.so 0x000000010040cf7e startJavaVM + 134 59 eclipse_1403.so 0x000000010040b74d run + 4645 60 org.eclipse.eclipse 0x000000010000192c original_main + 1679 61 org.eclipse.eclipse 0x0000000100001efe main + 1230 62 org.eclipse.eclipse 0x00000001000010e9 _start + 227 63 org.eclipse.eclipse 0x0000000100001005 start + 33 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000001344552c0 rbx: 0x00007fff848ab434 rcx: 0x0000000000000000 rdx: 0x00007fff848ab434 rdi: 0x00000001349ad0e0 rsi: 0x00007fff848e6c70 rbp: 0x00007fff5fbfbde0 rsp: 0x00007fff5fbfbc48 r8: 0x00007fff703f2760 r9: 0x0000000000000000 r10: 0x00000001349e79ce r11: 0x0000000000000000 r12: 0x0000000000000000 r13: 0x0000000134455260 r14: 0x0000000129e47d50 r15: 0x00000001349ad0e0 rip: 0x00007fff8765b1d8 rfl: 0x0000000000010202 cr2: 0x0000000000000028
|
2011-03-30 13:42:24
| 1,301,510,000 |
resolved fixed
|
8d66d24
| 1,303,150,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
399 | 341,190 |
Bug 341190 KEY CTRL+O is passed to IE8
|
Build Identifier: M20090211-1700 When a browser widget has the focus (with IE8 on the machine), the key CTRL+O is passe to it. This does not occur with IE6! As we use a key binding von CTRL+O to open an own dialog, now the standard open dialog from IE8 also opens. How can we suppress passing CTRL+O to IE8? Reproducible: Always Steps to Reproduce: 1. Open a view with a browser widget (IE8 on the machine) 2. Press CTRL+O 3. The standard open dialog opens (which does not with IE6)
|
2011-03-29 02:56:49
| 1,301,380,000 |
resolved fixed
|
b223c63
| 1,302,900,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
|
SWT
|
400 | 342,488 |
Bug 342488 Exception running webstart app
|
Tried to run a webstart app with latest code and failed with this exception in Display.java. 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart Exception in thread "AWT-AppKit" 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart java.lang.reflect.InvocationTargetException 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at java.lang.reflect.Method.invoke(Method.java:597) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at com.sun.javaws.Launcher.invokeMainMethod(Launcher.java:1557) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart Caused by: java.lang.NullPointerException 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at org.eclipse.swt.widgets.Display.init(Display.java:2178) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at org.eclipse.swt.graphics.Device.<init>(Device.java:131) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at org.eclipse.swt.widgets.Display.<init>(Display.java:699) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at org.eclipse.swt.widgets.Display.<init>(Display.java:690) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart at org.eclipse.swt.examples.controlexample.ControlExample.main(ControlExample.java:215) 11-04-11 4:09:36 PM [0x0-0x71071].com.apple.JavaWebStart ... 5 more
|
2011-04-11 16:04:55
| 1,302,550,000 |
resolved fixed
|
5e8ab96
| 1,302,550,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
401 | 342,192 |
Bug 342192 PrintDialog crashes on xp if no printers are installed
|
Build Identifier: I20100608-0911 If no printers are installed on xp, rcp application crashes when the following line is executed: PrintDialog dialog = new PringDialog(shell, SWT.NONE); Stack: [0x00030000,0x00130000], sp=0x0012ed6c, free space=3fb0012e8a0k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [swt-win32-3557.dll+0x2c263] C [swt-win32-3557.dll+0xa3b5] j org.eclipse.swt.internal.win32.OS.MoveMemory(Lorg/eclipse/swt/internal/win32/DEVMODEW;II)V+0 j org.eclipse.swt.internal.win32.OS.MoveMemory(Lorg/eclipse/swt/internal/win32/DEVMODE;II)V+12 j org.eclipse.swt.printing.PrintDialog.open()Lorg/eclipse/swt/printing/PrinterData;+168 j com.teamcenter.rac.services.PrintService.printImage(Lcom/teamcenter/rac/print/IGraphicInfo;)V+30 j com.teamcenter.rac.handlers.PrintGraphicsHandler.execute(Lorg/eclipse/core/commands/ExecutionEvent;)Ljava/lang/Object;+44 j org.eclipse.ui.internal.handlers.HandlerProxy.execute(Lorg/eclipse/core/commands/ExecutionEvent;)Ljava/lang/Object;+33 j org.eclipse.core.commands.Command.executeWithChecks(Lorg/eclipse/core/commands/ExecutionEvent;)Ljava/lang/Object;+115 j org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+21 j org.eclipse.ui.internal.handlers.HandlerService.executeCommand(Lorg/eclipse/core/commands/ParameterizedCommand;Lorg/eclipse/swt/widgets/Event;)Ljava/lang/Object;+6 j org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(Lorg/eclipse/core/commands/ParameterizedCommand;Lorg/eclipse/swt/widgets/Event;)Ljava/lang/Object;+6 j org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(Lorg/eclipse/core/commands/ParameterizedCommand;Lorg/eclipse/swt/widgets/Event;)Ljava/lang/Object;+6 j org.eclipse.ui.menus.CommandContributionItem.handleWidgetSelection(Lorg/eclipse/swt/widgets/Event;)V+79 j org.eclipse.ui.menus.CommandContributionItem.access$10(Lorg/eclipse/ui/menus/CommandContributionItem;Lorg/eclipse/swt/widgets/Event;)V+2 j org.eclipse.ui.menus.CommandContributionItem$5.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+51 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V J org.eclipse.swt.widgets.Display.runDeferredEvents()Z J org.eclipse.swt.widgets.Display.readAndDispatch()Z j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+393 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$5.run()V+55 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j com.teamcenter.rac.aifrcp.Application.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+71 j com.teamcenter.rac.aifrcp.Application.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+16 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub V [jvm.dll+0xf049c] V [jvm.dll+0x17fcf1] V [jvm.dll+0xf051d] V [jvm.dll+0x199ceb] V [jvm.dll+0x19a706] V [jvm.dll+0x11bc03] C [java.dll+0x714d] j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub V [jvm.dll+0xf049c] V [jvm.dll+0x17fcf1] V [jvm.dll+0xf051d] V [jvm.dll+0xf9e0f] V [jvm.dll+0xfbae4] C [eclipse_1206.dll+0x5196] C [eclipse_1206.dll+0x4721] C [eclipse_1206.dll+0x152c] C [Teamcenter.exe+0x1495] C [Teamcenter.exe+0x1181] C [Teamcenter.exe+0x4a3a] C [kernel32.dll+0x17077] It works on windows 7, and it also works on xp if one or more printer are installed. Reproducible: Always
|
2011-04-07 12:27:56
| 1,302,190,000 |
resolved fixed
|
814d9de
| 1,302,540,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java
|
SWT
|
402 | 341,958 |
Bug 341958 Arabic: SWT (version 3.659) ignores the font set over style ranges
|
Build Identifier: M20110210-1200 By every other word written in arabic letters, SWT ignores the fallback font I set over the style ranges to display the not ASCII-characters in a styled text, when the font used by widget doesn't contain the arabic glyphs. Reproducible: Always
|
2011-04-05 15:22:26
| 1,302,030,000 |
resolved fixed
|
ca2ab80
| 1,302,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
403 | 342,279 |
Bug 342279 Javadoc warning in N201104072000
|
/builds/N201104072000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java:27: warning - Tag @see: reference not found: TouchEvent 1 warning
|
2011-04-08 08:54:46
| 1,302,270,000 |
resolved fixed
|
0d07173
| 1,302,270,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java
|
SWT
|
404 | 336,379 |
Bug 336379 Snippet345 is using the wrong example text.
| null |
2011-02-04 12:40:34
| 1,296,840,000 |
resolved fixed
|
03fc865
| 1,302,190,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet345.java
|
SWT
|
405 | 341,134 |
Bug 341134 Tree#selectAll() should only select visible items (those without any collapsed parent)
|
I20110322-0800 Tree#selectAll() should only select visible items (i.e. roots and items whose parents are expanded and visible). Currently, it selects all items in the Tree, which is unexpected. The problem can be seen with Snippet61 if you add this listener and then press "A": tree.addListener(SWT.KeyDown, new Listener() { public void handleEvent(Event e) { if (e.keyCode == 'a') { e.doit= false; System.out.println("selectAll"); tree.selectAll(); tree.notifyListeners(SWT.Selection, new Event()); } } }); On GTK, only visible items are selected (as expected). This is a problem in the SDK, which calls selectAll() on Ctrl+A, so we see the wrong selections in many places. An example where this gets really weird is the tree in the Edit JRE dialog from the Installed JREs preference page: Right after opening the dialog, I can press Ctrl+A and then click Javadoc Location... . But after I've expanded and collapsed the first tree item, Ctrl+A disables the button.
|
2011-03-28 12:32:19
| 1,301,330,000 |
resolved fixed
|
8023917
| 1,301,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
406 | 341,361 |
Bug 341361 tests failures in TextLayout#getNextOffset
| null |
2011-03-30 09:56:05
| 1,301,490,000 |
resolved fixed
|
e32c535
| 1,301,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
407 | 341,212 |
Bug 341212 Tree item sort column background not drawn when item selected or hot
|
1) Run ControlExample 2) Select 'Tree' tab 3) Check 'Multiple Columms', 'Header Visible', 'Sort Indicator' 4) Select 'Node 1' 5) The sort indicator background is not drawn for selected or hot items
|
2011-03-29 07:36:59
| 1,301,400,000 |
resolved fixed
|
8be40f4
| 1,301,490,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
408 | 334,746 |
Bug 334746 [Presentations] [perfs] Performance regression in PresentationCreateTest* tests
|
On windows, there is 30-50% performance regression in tests of org.eclipse.ui.tests.performance.presentations.PresentationCreateTest#*. Linux looks good. The regression seems to have got introduced around 6th January. There was a regression in December first but it got good on 4th January build. Hence, I initially thought it was noise but it has been consistent since then.
|
2011-01-19 04:44:08
| 1,295,430,000 |
resolved fixed
|
8461218
| 1,301,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/ImageList.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
409 | 243,894 |
Bug 243894 Debug view should not scroll to right when breakpoint is hit
|
I20080807-1402, was OK in 3.3.2 and 3.4. Paste the class below to the Package Explorer, set the breakpoint, and then debug as Java application. When the breakpoint is hit (in both threads), make sure that the Debug view is so narrow that its toolbar just fits on one row (the view then shows a horizontal scroll bar). Press F8. => Was: Tree scrolls to the right => Expected: Tree should not scroll horizontally Even when you drag the thumb to the left, pressing F8 always scrolls to the right again. package xy; public class Try { public static void main(String[] args) { new Thread("Worker") { public void run() { goDeep(); } }.start(); goDeep(); } static void goDeep() { for (int i = 0; i < 10; i++) { deep(50); } } private static void deep(int i) { if (i > 0) { deep(i - 1); } else { try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("hi"); // breakpoint } } }
|
2008-08-12 11:22:29
| 1,218,550,000 |
resolved fixed
|
ff35a05
| 1,301,070,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
410 | 270,490 |
Bug 270490 A web page opened in embedded Mozilla Browser could move/resize Shell window
|
Use attached snippet to reproduce.
|
2009-03-30 13:39:43
| 1,238,430,000 |
resolved fixed
|
f88586e
| 1,301,000,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
411 | 327,260 |
Bug 327260 Often can't see focus ring in Trees on Windows 7
|
N20101003-2000, same in 3.6 and 3.5.2 I often can't see the focus ring in Trees on Windows 7. On WinXP, I could always see which item had the keyboard focus (dotted focus ring). On Win7, I only see the focus item on plain SWT.MULTI trees and only if the focus is on an unselected item. If the focus is on a selected item, it is not drawn. In trees with an SWT.EraseItem listener, the focus is never drawn.
|
2010-10-07 13:23:36
| 1,286,470,000 |
resolved fixed
|
f3716dc
| 1,300,980,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
412 | 65,899 |
Bug 65899 [StyledText] StyledText Supplementary/Surrogate character navigation
| null |
2004-06-06 04:49:23
| 1,086,510,000 |
resolved fixed
|
55a22ab
| 1,300,910,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
413 | 340,603 |
Bug 340603 Selection under cocoa draws wrong in wrapped TextLayout
|
Build Identifier: I20100608-0911 Using SWT cocoa, a TextLayout with wrapped text where the first line is smaller than the others, the selection is drawn as a box with the width of the first line. This causes text on the other lines to leak out of the selection background box. The attached screen shot shows the result of the attached java code with the selection bug. Reproducible: Always Steps to Reproduce: Run the attached Test.java under mac os x with cocoa window system.
|
2011-03-21 15:29:06
| 1,300,740,000 |
resolved fixed
|
8ec5769
| 1,300,810,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
414 | 340,248 |
Bug 340248 checkWidget() missing in Shell#getToolbar()
|
The new method Shell#getToolbar is missing the checkWidget() call although the Javadoc states that the usual restrictions apply (ERROR_WIDGET_DISPOSED, ERROR_THREAD_INVALID_ACCESS).
|
2011-03-16 17:26:10
| 1,300,310,000 |
resolved fixed
|
d93202e
| 1,300,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java 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/Shell.java
|
SWT
|
415 | 116,892 |
Bug 116892 Scroll clipped Tree/Table causes pixel corruption (drawing problem)
|
I20051116-1332 Obligatory Simple Guy. Will attach a screencap showing the bug in the wild. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.ScrolledComposite; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeItem; public class ScrolledWithinScrolled { /** * @param args */ public static void main(String[] args) { Shell shell = new Shell(); shell.setSize(100,100); shell.setLayout(new FillLayout()); ScrolledComposite composite = new ScrolledComposite(shell, SWT.V_SCROLL); composite.setSize(100, 100); Tree tree = new Tree(composite, SWT.V_SCROLL); tree.setSize(100,100); for (int i = 0 ; i < 20; i++) { TreeItem item = new TreeItem(tree, SWT.NONE); item.setText(i + ""); for (int j = 0; j < 20; j++) { TreeItem item2 = new TreeItem(item, SWT.NONE); item.setText(i + "-" + j); } } shell.open(); Display display = shell.getDisplay(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
|
2005-11-17 11:17:41
| 1,132,240,000 |
resolved fixed
|
1e6f41a
| 1,300,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scrollable.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
416 | 339,655 |
Bug 339655 Program#execute(String) broken for file:/ arguments containing #
|
I20110310-1119 Cocoa Program#execute(String) is broken for file:/ arguments containing #. When I generate Javadoc and then want to open the Javadoc of a method selected in the editor in the system browser, then # is wrongly escaped before the argument is passed to the browser (resulting in an URL with %23, which is wrong). Example: String urlText = "file:/Users/mk/Documents/runtime-New_configuration/javaP/doc/p/A.html#foo()"; Program program = Program.findProgram("html"); program.execute(urlText); The problems is in org.eclipse.swt.program.Program.getURL(String). If I add || lowercaseName.startsWith ("file:/") to the condition, then it works. And I can still open files with interesting names like "a,b#&c [%23].html".
|
2011-03-11 04:19:18
| 1,299,840,000 |
resolved fixed
|
e4b161a
| 1,300,190,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java
|
SWT
|
417 | 339,941 |
Bug 339941 Program.execute("") should launch app without args
|
Program.execute("") launches app with default dir as argument instead of just launching app.
|
2011-03-14 16:28:13
| 1,300,130,000 |
resolved fixed
|
97e3a20
| 1,300,130,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
|
SWT
|
418 | 333,759 |
Bug 333759 Allow SWT to use gvfs instead of gnome-vfs
| null |
2011-01-07 10:58:01
| 1,294,420,000 |
resolved fixed
|
914f615
| 1,300,120,000 |
bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java
|
SWT
|
419 | 333,323 |
Bug 333323 [SWT][Browser][Mozilla] memory leak in embeded mozilla browser widget
|
Build Identifier: 3.6 The Browser widget created with SWT.MOZILLA has big memory leak issue in below scenario: reload the page every 5 secondes and keep moving the mouse over the page. The memory goes from 90MB to 300MB in about 7 minutes, then the RCP application crashes. The Java heap size of the RCP application is very stable, so the leak must happen in Native code. Reproducible: Always Steps to Reproduce: A test application is attached, reproduce this issue with below steps: 1) Import XULRunnerTest.zip into Eclipse 2) Run xulrunnertest.Snippet267 with VM argument: -Dorg.eclipse.swt.browser.XULRunnerPath="your_xulrunner_path", I'm using XULRunner 1.9.2 3) The Yahoo home page will be refreshed every 5 seconds automatically. 4) Open Task Manager in XP to mornitor the memory usage of the RCP application. 5) Keeping moving the mouse over the Yahoo page. 6) You will see the memory keeps growing quickly The memory usage for this RCP is very stable if no mouse moving over the Yahoo home page.
|
2010-12-29 20:09:10
| 1,293,670,000 |
resolved fixed
|
37c4fcd
| 1,299,880,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
420 | 339,345 |
Bug 339345 ClassCast exception when drop target is List
|
Happens on Cocoa with 3.7 HEAD Run the DNDExample. Drag and drop to a the List as drop target. We get class cast exception. Exception in thread "main" java.lang.ClassCastException: org.eclipse.swt.widgets.List cannot be cast to org.eclipse.swt.widgets.Table at org.eclipse.swt.dnd.DropTarget.tableView_validateDrop_proposedRow_proposedDropOperation(DropTarget.java:965) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:475) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.dnd.DropTarget.dndCallSuper(DropTarget.java:208) at org.eclipse.swt.dnd.DropTarget.draggingEntered(DropTarget.java:270) at org.eclipse.swt.dnd.DropTarget.dropTargetProc(DropTarget.java:448) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1081) at org.eclipse.swt.widgets.Table.mouseDownSuper(Table.java:1979) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1073) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2494) at org.eclipse.swt.widgets.Table.mouseDown(Table.java:1951) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5453) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2082) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2243) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5517) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4971) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5120) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3596) at org.eclipse.swt.examples.dnd.DNDExample.open(DNDExample.java:1352) at org.eclipse.swt.examples.dnd.DNDExample.main(DNDExample.java:71)
|
2011-03-09 07:54:44
| 1,299,680,000 |
resolved fixed
|
3444eb9
| 1,299,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
421 | 338,981 |
Bug 338981 Text VerifyEvent; Changing inserted text field inserts nothing or damages content
|
Build Identifier: swt-3.7M5-cocoa-macosx-x86_64 The text field of a VerifyEvent received by a Text's VerifyListener contains the text about to be inserted. Changing this field is supposed to alter the inserted text. Instead nothing is inserted, or the changed text is inserted while following parts of the Text's contents are deleted. Reproducible: Always Steps to Reproduce: 1. Run attached code. Single typed characters should be converted to "X". 2. Observe that typing in the top paragraph substitutes X but deletes following paragraphs. 3. Observe that typing in later paragraphs inserts nothing.
|
2011-03-04 17:59:08
| 1,299,280,000 |
resolved fixed
|
927bee3
| 1,299,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java
|
SWT
|
422 | 339,116 |
Bug 339116 SWT.Hide not sent properly for menus
| null |
2011-03-07 11:22:13
| 1,299,510,000 |
resolved fixed
|
c39c3e6
| 1,299,520,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/Control.java
|
SWT
|
423 | 336,957 |
Bug 336957 Crash in SWT Carbon OS.ReceiveNextEvent / Display.trayItemProc
|
Build Identifier: 3.6.1.v3655c We are sometimes getting crashes in the Carbon SWT at shutdown. It is intermittent, and but does occur during the time that the application is shutting down, and the Display is being shutdown. I will attach the Apple Crash Report of when the event occurred. Unfortunately, I can not recreate it at will. It appears to be related to receiving another event, and the tray item. The Java stack at the time of the crash is: j org.eclipse.swt.widgets.Display.trayItemProc(IIII)I+4 v ~StubRoutines::call_stub J org.eclipse.swt.internal.carbon.OS.ReceiveNextEvent(I[IDZ[I)I j org.eclipse.swt.widgets.Display.readAndDispatch()Z+46 j org.eclipse.swt.widgets.Display.release()V+72 j org.eclipse.swt.graphics.Device.dispose()V+50 j com.ibm.rcp.personality.framework.internal.RCPApplication.run(Ljava/lang/ Object;)Ljava/lang/Object;+251 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/ lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/ Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/ Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ Object;+161 The native stack is quite deep into the Apple APIs, and will be in the attached report. Reproducible: Couldn't Reproduce
|
2011-02-11 11:16:01
| 1,297,440,000 |
resolved fixed
|
105f15f
| 1,299,280,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TrayItem.java
|
SWT
|
424 | 338,965 |
Bug 338965 Deadlock/Hang on UI Thread
| null |
2011-03-04 13:29:18
| 1,299,260,000 |
resolved fixed
|
ad1eb09
| 1,299,270,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/MessageBox.java
|
SWT
|
425 | 338,937 |
Bug 338937 Javadoc warnings in N201103032000
|
/builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:3987: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:3987: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4007: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4007: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4017: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4017: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:3997: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:3997: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4037: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4037: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4027: warning - Tag @see: can't find setId(int) in org.eclipse.swt.widgets.MenuItem /builds/N201103032000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:4027: warning - Tag @see: can't find getId() in org.eclipse.swt.widgets.MenuItem 12 warnings
|
2011-03-04 09:46:56
| 1,299,250,000 |
resolved fixed
|
6f81333
| 1,299,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
|
SWT
|
426 | 338,825 |
Bug 338825 Rename Display.getAppMenuBar() to getMenuBar().
| null |
2011-03-03 10:47:32
| 1,299,170,000 |
resolved fixed
|
d5938d7
| 1,299,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java 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/photon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Display.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet347.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet348.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet354.java
|
SWT
|
427 | 329,456 |
Bug 329456 Add API to access the application menu (Mac) and system menu (win32/gtk)
|
On the Mac developers want control over the application menu. They want to set the about menu text, enable/disable/hide the preferences item, and add items to the application menu. They also want to listen for selections on those items. In other words, treat it like any other Menu in the application. Likewise, on Win32 or Linux, you can access the system menu of a window and listen to each of its items, as well as add items to the menu. On the Mac the only way to do this right now is via the eAWT package from Apple. This works correctly now, in 3.7, but using it loads the AWT, which shouldn't be necessary just to listen to some menu items that the SWT creates anyway. On Windows or GTK the system menu is not accessible without going to the PI. I know it can be done on Win32 as we already modify it for TOOL and child windows. We don't do it in GTK but I'm pretty sure I saw API somewhere to get at the system menu.
|
2010-11-04 12:40:14
| 1,288,890,000 |
resolved fixed
|
f1fbb87
| 1,299,170,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMenu.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMenuItem.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
428 | 324,155 |
Bug 324155 Eclipse crash at quit when modal dialog opened
|
Build Identifier: eclipse-SDK-3.5.2-macosx-carbon 32 bit (Build id:M20100211-1343) Process: eclipse [47963] Path: /Users/notes/Downloads/eclipse-SDK-3.5.2-macosx-carbon/Eclipse.app/Contents/MacOS/eclipse Identifier: org.eclipse.eclipse Version: 3.5 (3.5) Code Type: X86 (Native) Parent Process: launchd [114] Date/Time: 2010-09-01 09:47:29.016 +0800 OS Version: Mac OS X 10.6.4 (10F569) Report Version: 6 Interval Since Last Report: 331914 sec Crashes Since Last Report: 24 Per-App Interval Since Last Report: 578 sec Per-App Crashes Since Last Report: 5 Anonymous UUID: B09C1AE0-E88B-45A9-8C19-F524ECEECD23 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 Crashed Thread: 0 Dispatch queue: com.apple.main-thread Application Specific Information: Java information: Exception type: Bus Error (0xa) at pc=000000001190c33f Java VM: Java HotSpot(TM) Client VM (16.3-b01-279 mixed mode macosx-x86) Current thread (0000000012001000): JavaThread "main" [_thread_in_vm, id=-1609112320, stack(00000000bf800000,00000000c0000000)] Stack: [00000000bf800000,00000000c0000000] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.carbon.OS.NavDialogRun(I)I+0 j org.eclipse.swt.widgets.FileDialog.open()Ljava/lang/String;+674 j org.eclipse.ui.internal.ide.actions.OpenLocalFileAction.run()V+36 j org.eclipse.ui.internal.ide.actions.OpenLocalFileAction.run(Lorg/eclipse/jface/action/IAction;)V+1 j org.eclipse.ui.internal.PluginAction.runWithEvent(Lorg/eclipse/swt/widgets/Event;)V+110 j org.eclipse.ui.internal.WWinPluginAction.runWithEvent(Lorg/eclipse/swt/widgets/Event;)V+9 j org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(Lorg/eclipse/swt/widgets/Event;Z)V+354 j org.eclipse.jface.action.ActionContributionItem.access$2(Lorg/eclipse/jface/action/ActionContributionItem;Lorg/eclipse/swt/widgets/Event;Z)V+3 j org.eclipse.jface.action.ActionContributionItem$5.handleEvent(Lorg/eclipse/swt/widgets/Event;)V+60 J org.eclipse.swt.widgets.EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;)V j org.eclipse.swt.widgets.Widget.sendEvent(Lorg/eclipse/swt/widgets/Event;)V+25 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;Z)V+73 j org.eclipse.swt.widgets.Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;)V+4 j org.eclipse.swt.widgets.Widget.notifyListeners(ILorg/eclipse/swt/widgets/Event;)V+19 j org.eclipse.swt.widgets.Display.runDeferredEvents()Z+96 j org.eclipse.swt.widgets.Display.readAndDispatch()Z+103 j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+393 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$5.run()V+55 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+84 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+135 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+161 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+211 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub Java Threads: ( => current thread ) 0000000012aa3000 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=-1312432128, stack(00000000b1b5e000,00000000b1c5e000)] 000000001298c000 JavaThread "Worker-4" [_thread_blocked, id=-1316659200, stack(00000000b1756000,00000000b1856000)] 000000001209b000 JavaThread "Worker-3" [_thread_blocked, id=-1318772736, stack(00000000b1552000,00000000b1652000)] 0000000012197400 JavaThread "Java indexing" daemon [_thread_blocked, id=-1317715968, stack(00000000b1654000,00000000b1754000)] 0000000012127800 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=-1320886272, stack(00000000b134e000,00000000b144e000)] 000000001289b400 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=-1324171264, stack(00000000b102c000,00000000b112c000)] 00000000120e5800 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=-1325228032, stack(00000000b0f2a000,00000000b102a000)] 00000000120e5000 JavaThread "State Data Manager" daemon [_thread_blocked, id=-1326284800, stack(00000000b0e28000,00000000b0f28000)] 00000000120c4c00 JavaThread "Poller SunPKCS11-Darwin" daemon [_thread_blocked, id=-1327378432, stack(00000000b0d1d000,00000000b0e1d000)] 0000000012050c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=-1329491968, stack(00000000b0b19000,00000000b0c19000)] 000000001286a400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=-1330548736, stack(00000000b0a17000,00000000b0b17000)] 000000001204f800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=-1331605504, stack(00000000b0915000,00000000b0a15000)] 0000000012869800 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=-1332662272, stack(00000000b0813000,00000000b0913000)] 0000000012866400 JavaThread "Finalizer" daemon [_thread_blocked, id=-1333719040, stack(00000000b0711000,00000000b0811000)] 0000000012043c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=-1334775808, stack(00000000b060f000,00000000b070f000)] =>0000000012001000 JavaThread "main" [_thread_in_vm, id=-1609112320, stack(00000000bf800000,00000000c0000000)] Other Threads: 0000000012042400 VMThread [stack: 00000000b050d000,00000000b060d000] [id=-1335832576] 000000001205a000 WatcherThread [stack: 00000000b0c1b000,00000000b0d1b000] [id=-1328435200] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap par new generation total 14784K, used 5164K [0000000015010000, 0000000016010000, 0000000017010000) eden space 13184K, 33% used [0000000015010000, 0000000015466ef8, 0000000015cf0000) from space 1600K, 45% used [0000000015cf0000, 0000000015da4390, 0000000015e80000) to space 1600K, 0% used [0000000015e80000, 0000000015e80000, 0000000016010000) concurrent mark-sweep generation total 51808K, used 32938K [0000000017010000, 000000001a2a8000, 0000000025010000) concurrent-mark-sweep perm gen total 68804K, used 41834K [0000000025010000, 0000000029341000, 0000000035010000) Virtual Machine Arguments: JVM Args: -Xms40m -Xmx256m -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -XX:MaxPermSize=256m Java Command: <unknown> Launcher Type: generic Physical Memory: Page Size = 4k, Total = 1792M, Free = 25M Thread 0 Crashed: Dispatch queue: com.apple.main-thread 0 libjvm.dylib 0x1190c33f JVM_Socket + 5647 1 libswt-carbon-3557.jnilib 0x3a15cf40 callback + 855 2 ??? 0x3a1da458 0 + 975021144 3 com.apple.HIToolbox 0x95b39f2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567 4 com.apple.HIToolbox 0x95b391f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411 5 com.apple.HIToolbox 0x95b5b9bb SendEventToEventTarget + 52 6 com.apple.HIToolbox 0x95b6d57b ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1417 7 com.apple.HIToolbox 0x95b3a380 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672 8 com.apple.HIToolbox 0x95b391f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411 9 com.apple.HIToolbox 0x95b5b9bb SendEventToEventTarget + 52 10 com.apple.HIToolbox 0x95ce4cc3 ToolboxEventDispatcher + 86 11 com.apple.HIToolbox 0x95ce4cfe HLTBEventDispatcher + 17 12 com.apple.HIToolbox 0x95ce523c _RunAppModalLoop + 158 13 com.apple.HIToolbox 0x95ce5697 RunAppModalLoopForWindow + 194 14 com.apple.AppKit 0x921e4a6a -[NSApplication _realDoModalLoop:peek:] + 961 15 com.apple.AppKit 0x921e40f5 -[NSApplication runModalForWindow:] + 273 16 com.apple.AppKit 0x92478107 -[NSSavePanel runModal] + 420 17 com.apple.AppKit 0x92652643 -[NSNavOpenPanel run] + 141 18 com.apple.AppKit 0x926541f7 _NSNavDialogRun + 223 19 libswt-pi-carbon-3557.jnilib 0x3a177484 Java_org_eclipse_swt_internal_carbon_OS_NavDialogRun + 24 20 ??? 0x1300b959 0 + 318814553 21 ??? 0x13003ed5 0 + 318783189 22 ??? 0x13003f17 0 + 318783255 23 ??? 0x13003db1 0 + 318782897 24 ??? 0x1300428d 0 + 318784141 25 ??? 0x13003db1 0 + 318782897 26 ??? 0x1300428d 0 + 318784141 27 ??? 0x13003db1 0 + 318782897 28 ??? 0x13003db1 0 + 318782897 29 ??? 0x1322ad84 0 + 321039748 30 ??? 0x13003db1 0 + 318782897 31 ??? 0x13003db1 0 + 318782897 32 ??? 0x13003db1 0 + 318782897 33 ??? 0x13003db1 0 + 318782897 34 ??? 0x13003db1 0 + 318782897 35 ??? 0x13003fdd 0 + 318783453 36 ??? 0x13003fdd 0 + 318783453 37 ??? 0x13003db1 0 + 318782897 38 ??? 0x13003ed5 0 + 318783189 39 ??? 0x13003ed5 0 + 318783189 40 ??? 0x1300428d 0 + 318784141 41 ??? 0x13003db1 0 + 318782897 42 ??? 0x13003ed5 0 + 318783189 43 ??? 0x13003ed5 0 + 318783189 44 ??? 0x130043f3 0 + 318784499 45 ??? 0x130043f3 0 + 318784499 46 ??? 0x13003f17 0 + 318783255 47 ??? 0x13003f17 0 + 318783255 48 ??? 0x13003f17 0 + 318783255 49 ??? 0x130012d3 0 + 318771923 50 libjvm.dylib 0x118a3500 JVM_Lseek + 139952 51 libjvm.dylib 0x118a32a6 JVM_Lseek + 139350 52 libjvm.dylib 0x118a3276 JVM_Lseek + 139302 53 libjvm.dylib 0x118c6008 JVM_NewInstanceFromConstructor + 3896 54 libjvm.dylib 0x118c7bfe JVM_InvokeMethod + 1342 55 libjvm.dylib 0x118c78b2 JVM_InvokeMethod + 498 56 libjvmlinkage.dylib 0x000ca72f JVM_InvokeMethod + 79 57 libjava.jnilib 0x00716132 Java_sun_reflect_NativeMethodAccessorImpl_invoke0 + 38 58 ??? 0x1300b959 0 + 318814553 59 ??? 0x13003f17 0 + 318783255 60 ??? 0x13003f17 0 + 318783255 61 ??? 0x130043f3 0 + 318784499 62 ??? 0x13003f17 0 + 318783255 63 ??? 0x13003db1 0 + 318782897 64 ??? 0x13003db1 0 + 318782897 65 ??? 0x130012d3 0 + 318771923 66 libjvm.dylib 0x118a3500 JVM_Lseek + 139952 67 libjvm.dylib 0x118a32a6 JVM_Lseek + 139350 68 libjvm.dylib 0x118a3276 JVM_Lseek + 139302 69 libjvm.dylib 0x118b9060 JVM_MonitorWait + 15104 70 libjvm.dylib 0x11906f84 JVM_EnableCompiler + 8596 71 eclipse_1206.so 0x0006b7d6 startJavaJNI + 1795 72 eclipse_1206.so 0x0006a1c3 startJavaVM + 120 73 eclipse_1206.so 0x000692e9 run + 4768 74 org.eclipse.eclipse 0x000024aa original_main + 1782 75 org.eclipse.eclipse 0x00002b96 main + 1517 76 org.eclipse.eclipse 0x00001c10 _start + 210 77 org.eclipse.eclipse 0x00001b3d start + 41 Reproducible: Always Steps to Reproduce: 1. Launch Eclipse.app; 2. Select menu "File" -> "Open File...", then open the "Open File" model dialog; 3. Go to the Eclipse icon in Desktop Dock and right click and click on Quit in popup menubar. ( or use Control + mouse left click on Eclipes Dock icon and select Quit in popup menubar) ; 4. Eclipse app got crash.
|
2010-08-31 21:57:08
| 1,283,310,000 |
resolved fixed
|
aba5fbf
| 1,299,100,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
429 | 338,448 |
Bug 338448 Control.setTouchEventsEnabled(boolean)/isTouchEnabled() not consistent
|
In the new API in Control.java to enabled touch events, the setter name is not consistent with the getter (TouchEvents instead of Touch). Also, traditionally if an API starts with is* in Control.java, it means that the state of the widget parent is checked. This is not the case for this API, so it should be getTouchEnabled() instead of isTouchEnabled().
|
2011-02-28 13:55:13
| 1,298,920,000 |
resolved fixed
|
8363b35
| 1,298,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.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/Control.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/qt/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Display.java
|
SWT
|
430 | 275,071 |
Bug 275071 possible NPE in printer
| null |
2009-05-05 17:19:53
| 1,241,560,000 |
resolved fixed
|
a73c797
| 1,298,920,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java
|
SWT
|
431 | 335,373 |
Bug 335373 NPE when changing iFrame url via SWT browser evaluate() method
|
Build Identifier: SWT 3.5.2.v3557f We are developing a an app that leverages iFrames to manage a collection of different pieces of browser content and are trying to dynamically manage the separate iFrame data with a call from the SWT browser evaluate() method to a javascript method we have created to change the iFrames in the browser. When testing this we ran into NPE's quite quickly after attempting to make the call several times in a row. Here is the stack we are getting: Exception in thread "main" java.lang.NullPointerException at org.eclipse.swt.browser.Mozilla.execute(Mozilla.java:1810) at org.eclipse.swt.browser.Mozilla.OnStateChange(Mozilla.java:2903) at org.eclipse.swt.browser.Mozilla$9.method3(Mozilla.java:1557) at org.eclipse.swt.internal.mozilla.XPCOMObject.callback3(XPCOMObject.java:266) at org.eclipse.swt.internal.mozilla.XPCOM._JS_EvaluateUCScriptForPrincipals(Native Method) at org.eclipse.swt.internal.mozilla.XPCOM.JS_EvaluateUCScriptForPrincipals(XPCOM.java:163) at org.eclipse.swt.browser.Mozilla.execute(Mozilla.java:1837) at org.eclipse.swt.browser.WebBrowser.evaluate(WebBrowser.java:378) at org.eclipse.swt.browser.Browser.evaluate(Browser.java:539) at org.eclipse.swt.snippets.Snippet308$1.widgetSelected(Snippet308.java:53) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3910) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3503) at org.eclipse.swt.snippets.Snippet308.main(Snippet308.java:62) The line generating the NPE is this a de-reference of the "script" variable that is passed into the Mozilla.execute() method. In this specific case execute it called by the OnStateChange method with a null due to the fact that the specific function that the code is attempting to "re-install" does not have a functionString defined because it appears to be an internal function and for whatever reason it was not assigned a functionString value when it was dynamically created. I will attach a simple testcase based on Snippet308 that can be used to recreate the problem. Reproducible: Always Steps to Reproduce: 1. Import the attached snippet project into your workspace 2. Place the offers.html file into a dir on your PC (defaults to c:/tempy ) 3. If the location of the offers.html is not c:/tempy then update the test code to point to the location on your PC where you placed it. 2. Run ( SWT snippet ) 3. When the UI appears click on the button on the right called "Change UrL". You will see that yahoo is loaded in to the browser frame on the left. 4. Click this button several more times and your application will crash with the exception provided. While this may seem to be a strange case, it is an important piece of our application and is critical for us. When this NPE is generated we have been unable to recover the browser instance.
|
2011-01-25 15:05:02
| 1,295,990,000 |
resolved fixed
|
87330b1
| 1,298,410,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
432 | 335,887 |
Bug 335887 SWT reports API breakage
|
I have SWT from HEAD with an API baseline of 3.6.0. Description Resource Path Location Type The method org.eclipse.swt.browser.WebKit.create(Composite, int) has been removed WebKit.java /org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/browser line 26 Compatibility Problem The major version should be incremented in version 3.7.0.qualifier, since API breakage occurred since version 3.6.0.v3650b MANIFEST.MF /org.eclipse.swt/META-INF line 5 Version Numbering Problem It reports that the create(*) method has been remove from WebKit and that 3.7.0 needs to be incremented to 4.0.0 PW
|
2011-01-31 13:42:36
| 1,296,500,000 |
resolved fixed
|
13ea970
| 1,298,400,000 |
bundles/org.eclipse.swt/Eclipse SWT WebKit/gtk/org/eclipse/swt/browser/WebKit.java
|
SWT
|
433 | 337,499 |
Bug 337499 Assorted NPEs in SWT_AWT when used in Plugin2
| null |
2011-02-17 17:57:04
| 1,297,980,000 |
resolved fixed
|
9559d48
| 1,297,980,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
434 | 337,263 |
Bug 337263 LineAttributes should implement equals()
|
LineAttributes does not implement equals(), which leaves proper comparison of LineAttributes to clients. Instead, LineAttributes should implement equals() (as well as hashCode()).
|
2011-02-15 18:25:29
| 1,297,810,000 |
resolved fixed
|
ea83c60
| 1,297,960,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java
|
SWT
|
435 | 337,203 |
Bug 337203 [refactoring] Cocoa only: Preview page in org.eclipse.ltk.ui.refactoring.RefactoringWizard shows no changes when empty space is clicked
|
Build Identifier: 20100917-0705 In Cocoa, when the refactoring preview dialog shows a tree and changes underneath, clicking on the white or empty area next to the tree causes selection to be reset and changes to go away. This is not the case in windows and it may not be immediately apparent to the user as to what happened. Reproducible: Always Steps to Reproduce: 1. Keep the cursor over a method name in a Java file. 2. Choose Source -> Change Method Signature. 3. Click on Add. 4. Click on Preview. 5. Click the white area under "Changes to be performed". Notice that selection of the tree went away and "No preview available" is shown. This is unexpected and confusing.
|
2011-02-15 07:19:44
| 1,297,770,000 |
resolved fixed
|
4b27ffd
| 1,297,870,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSIndexSet.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSMutableIndexSet.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
436 | 335,134 |
Bug 335134 [Custom Widgets] CCombo: floating list pop-up on ALT+TAB
| null |
2011-01-23 15:27:39
| 1,295,810,000 |
resolved fixed
|
3e1b012
| 1,297,840,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
437 | 325,241 |
Bug 325241 Table checkbox column moves on drag & drop
|
public class Snippet_bug { public static void main (String [] args) { Display display = new Display (); String[] titles = {"Information", "Error", "Question", "Warning"}; String[] questions = {"who?", "what?", "where?", "when?", "why?"}; Shell shell = new Shell (display); shell.setLayout(new GridLayout()); Table table = new Table (shell, SWT.MULTI | SWT.CHECK|SWT.BORDER); GridData data = new GridData (SWT.FILL, SWT.FILL, true, true); data.heightHint = 200; table.setLayoutData (data); table.setLinesVisible (true); table.setHeaderVisible (true); for (int i=0; i<titles.length; i++) { TableColumn column = new TableColumn (table, SWT.NONE); column.setText (titles [i]); column.setMoveable(true); } int count = 128; for (int i=0; i<count; i++) { TableItem item = new TableItem (table, SWT.NONE); item.setText (0, "some info"); item.setText (1, "error #" + i); item.setText (2, questions [i % questions.length]); item.setText (3, "look out!"); } for (int i=0; i<titles.length; i++) { table.getColumn (i).pack (); } shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } Steps: 1) Run the snippet 2) Try to drag the first column header (by clicking above check box column). I'm unable to drag, but the cursor changes to hand cursor. 3) Now try to drag & drop any column over the first column, the dropped column gets inserted before the checkbox column.
|
2010-09-14 08:50:12
| 1,284,470,000 |
resolved fixed
|
3b9aff1
| 1,297,440,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSObject.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
438 | 320,636 |
Bug 320636 [Custom Widgets] CCombo setFocus does not work
|
Build Identifier: M20100211-1343 When trying to set initial focus on a CCombo during creation of cotrols, it does not work. The reason is IMHO that it does not override forceFocus() method, which is used when restoring saved focus from shell. Reproducible: Always
|
2010-07-22 10:18:18
| 1,279,810,000 |
resolved fixed
|
99d7211
| 1,297,250,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
439 | 306,039 |
Bug 306039 [Widgets] Windows 7 Jump List items impose "standard" on arguments passed to new instance
|
Build Identifier: 3.6M6 Recently implemented Windows 7 Jump List (which is awesome) items impose "standard" on argumants that are passed to new instance with pattern like shown below: --launcher.openFile /SWTINTERNAL_ID101 It's used solely on Eclipse, but for applications that are not using Eclipse exe launcher are confusing and in some cases troublesome. I've made quick fix on my local build of SWT, but would like to suggest streamlined version of it, for use in other applications, I can provide patch for it, essentially I've used Widget's data property "argument" that overrides default argument passed to new instance. Reproducible: Always Steps to Reproduce: 1. Create Windows 7 Jump List items (TaskItem inside TaskBar) 2. Use newly created item to launch new instance of application
|
2010-03-16 12:13:34
| 1,268,760,000 |
resolved fixed
|
1a60623
| 1,297,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java
|
SWT
|
440 | 336,624 |
Bug 336624 Cannot get simultaneous left and right mouse button in SWT.MouseMoveevents on Mac
|
Build Identifier: 3.6.1.v3659 If I attach a Listener for SWT.MouseMove events to a SWT Canvas, on Windows I can success fully query the event state mask for simultaneous left and right mouse buttons. On Mac the state mask never contains both the flag for button1 and button3. If they are clicked the same time button1 is the only one in the statemask. Reproducible: Always Steps to Reproduce: 1. Execute the attached file 2. press left, right, and both mouse buttons while moving 3. On Windows it will print "Hit!" for the last case. Not so for Mac
|
2011-02-08 10:15:44
| 1,297,180,000 |
resolved fixed
|
e75f9a9
| 1,297,190,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSView.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSWindow.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
441 | 329,872 |
Bug 329872 Child dialog gets in infinite flicker loop while use SWT.PRIMARY_MODAL style
|
Build Identifier: Version:3.6.1 Build id:M20100909-0800 If a child dialog (a dialog with SWT.PRIMARY_MODAL) is displayed, and then focus is switched out of that dialog then back on to the parent shell, the child dialog goes into an infinite flicker. The best way I've been able to reproduce this is to use Expose to toggle away from application, then use Expose to send focus back to the parent shell. This issue come out with 3.6.1 carbon swt, cocoa swt has no problem. Reproducible: Always
|
2010-11-10 04:15:06
| 1,289,380,000 |
resolved fixed
|
02f0ef9
| 1,297,100,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
442 | 272,331 |
Bug 272331 Setting fileName in PrinterData for PrintDialog does nothing
|
3.5 M6 Run the following snippet: import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.printing.*; public class TestPrintDialogFileName { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); PrintDialog dialog = new PrintDialog(shell, SWT.NONE); PrinterData data = new PrinterData(); data.printToFile = true; // default is false data.fileName = "C:\\temp\\output"; // default is null dialog.setPrinterData(data); data = dialog.open(); System.out.println(data.toString()); // printer driver and name System.out.println("Print to file: " + data.printToFile); System.out.println("File name: " + data.fileName); shell.dispose(); display.dispose(); } } Notice that the data.fileName field is clobbered on output. Also, it is not set into the dialog on open. On Windows, this is done in the PRINTDLG.hDevNames struct, which is also used to set the printer driver and name. The best time to fix this bug is when the printer driver and name are also set into the dialog. The doc for the DEVNAMES struct does not specify whether the "output" (i.e. filename) can be set without setting the driver and device name.
|
2009-04-15 11:12:41
| 1,239,810,000 |
resolved fixed
|
df61f40
| 1,296,600,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java
|
SWT
|
443 | 335,928 |
Bug 335928 compile warnings in official build
|
N20110131-2000. 1. WARNING in _ppc.arm/temp.folder/@dot.src/org/eclipse/swt/internal/BidiUtil.java (at line 463) if (callback != null) callback.dispose(); Dead code
|
2011-02-01 02:42:04
| 1,296,550,000 |
verified fixed
|
914247e
| 1,296,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/BidiUtil.java
|
SWT
|
444 | 335,172 |
Bug 335172 Broken DND feedback indicator when dragging TableItems on Mac
| null |
2011-01-24 06:15:13
| 1,295,870,000 |
resolved fixed
|
f0d4660
| 1,296,520,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
445 | 335,304 |
Bug 335304 DateTime dropdown doesn't hide with arrow button
|
Reproducible on Cocoa I20110124-1800 build Steps: 1) Run the control example 2) In the DateTime control, select SWT.DATE and SWT.DROP_DOWN 3) Click on the arrow (dropdown) button in the control to open the dropdown calendar. 4) Click on the arrow button again, the dropdown calendar flashes but doesn't hide. The arrow button should toggle the show/hide of the dropdown.
|
2011-01-25 08:12:41
| 1,295,960,000 |
resolved fixed
|
5de89d7
| 1,296,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java
|
SWT
|
446 | 335,882 |
Bug 335882 bidi: overload SashForm#setOrientation to change bidi direction
|
bidi: overload SashForm#setOrientation to change bidi direction
|
2011-01-31 12:45:47
| 1,296,500,000 |
resolved fixed
|
f7f5054
| 1,296,500,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
|
SWT
|
447 | 329,216 |
Bug 329216 StyledText needs to implement AccessibleEditableTextListener
| null |
2010-11-01 14:52:11
| 1,288,640,000 |
resolved fixed
|
a1c3277
| 1,296,490,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
448 | 335,589 |
Bug 335589 No mouse move events on Cocoa64 unless you press left mouse button
|
It looks like some change in SWT broke mouse move listeners and hence a lot of things in the Eclipse UI (e.g. JavaDoc-Hovers). I currently don't have Eclipse 3.7 builds but this is reproduceable the latest Eclipse 4.1 build (I20110126-2200). The only possibility to get JavaDoc-Hovers is to press the left mouse button and move the mouse over an element without nothing happens. To find out what happened I've attached a hacked the move mouse listener in org.eclipse.e4.ui.workbench.renderers.swt.SashLayout and it only print debug statements when I press the left button and move the mouse in the area not occupied by the editors and views. I'd say this is a blocker because it make Eclipse 4.1 fairly unusable for development.
|
2011-01-27 11:29:44
| 1,296,150,000 |
resolved fixed
|
7aa83ef
| 1,296,180,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
449 | 335,382 |
Bug 335382 WebKitGTK can now throw exception with SWT.WEBKIT style
|
The current implementation of BrowserFactory on gtk will attempt to use the WebKitGTK Browser implementation for all Browsers created with style SWT.WEBKIT, even if it initially fails to load its swt-webkit library. Don't do this!
|
2011-01-25 15:50:17
| 1,295,990,000 |
resolved fixed
|
2d20e46
| 1,295,990,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/gtk/org/eclipse/swt/browser/BrowserFactory.java
|
SWT
|
450 | 334,865 |
Bug 334865 Save action in main toolbar is not enabled after Organize Imports
|
I20110118-0800 Cocoa, is OK in 3.6.2 candidate (M20110119-0834) The Save action in the main toolbar is not enabled after Organize Imports. The editor tab gets the *, the Save action is correctly enabled in the menus, and Command+S works.
|
2011-01-20 04:52:16
| 1,295,520,000 |
resolved fixed
|
4bfb2d4
| 1,295,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
451 | 332,096 |
Bug 332096 Browser.print() steals focus
|
I have two browsers, one which acts as a rich text editor, and the other which shows the result within a canvas widget. The result on canvas is actually an image of the browser, so as the user types into the editor, the browser which is not visible is printed and that image is drawn on the canvas widget. When the second browser is printed, it steals focus from the editor browser, which interrupts user input. I believe that a call to print() should not affect the current focus, as was the behaviour in SWT for platform 3.5. I do not see this behaviour in XP.
|
2010-12-07 18:37:36
| 1,291,760,000 |
resolved fixed
|
3737d97
| 1,295,560,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
452 | 334,624 |
Bug 334624 Macs and Display.post(...) problems on non-US keyboards
| null |
2011-01-18 06:16:46
| 1,295,350,000 |
resolved fixed
|
1f174a7
| 1,295,480,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java
|
SWT
|
453 | 322,293 |
Bug 322293 NPE when select Hyperlink from MultipleHyperlinkPresenter List
|
Here the Stack Trace from macosx-cocoa-x86_64 java.lang.NullPointerException at org.eclipse.swt.widgets.Shell.setWindowVisible(Shell.java:1782) at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1704) at org.eclipse.jface.text.AbstractInformationControl.setVisible(AbstractInformationControl.java:506) at org.eclipse.jface.text.AbstractInformationControlManager.hideInformationControl(AbstractInformationControlManager.java:1231) at org.eclipse.jface.text.hyperlink.MultipleHyperlinkPresenter$MultipleHyperlinkHoverManager.hideInformationControl(MultipleHyperlinkPresenter.java:628) at org.eclipse.jface.text.hyperlink.MultipleHyperlinkPresenter$LinkListInformationControl.openSelectedLink(MultipleHyperlinkPresenter.java:323) at org.eclipse.jface.text.hyperlink.MultipleHyperlinkPresenter$LinkListInformationControl.access$1(MultipleHyperlinkPresenter.java:317) at org.eclipse.jface.text.hyperlink.MultipleHyperlinkPresenter$3.widgetSelected(MultipleHyperlinkPresenter.java:278) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:234) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3776) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1367) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1390) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1375) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1187) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3622) at org.eclipse.swt.widgets.Display.applicationNextEventMatchingMask(Display.java:4479) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4739) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.mouseDownSuper(Widget.java:1025) at org.eclipse.swt.widgets.Table.mouseDownSuper(Table.java:1930) at org.eclipse.swt.widgets.Widget.mouseDown(Widget.java:1021) at org.eclipse.swt.widgets.Control.mouseDown(Control.java:2240) at org.eclipse.swt.widgets.Table.mouseDown(Table.java:1912) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4976) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:1943) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2008) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5040) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4582) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4659) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:115) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3274) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407) at org.eclipse.equinox.launcher.Main.main(Main.java:1383)
|
2010-08-10 17:11:07
| 1,281,470,000 |
verified fixed
|
7742fa8
| 1,295,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java
|
SWT
|
454 | 292,780 |
Bug 292780 failing to dispose GC can cause huge error message spew
| null |
2009-10-20 11:43:30
| 1,256,050,000 |
resolved fixed
|
30ed6af
| 1,295,460,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
|
SWT
|
455 | 334,723 |
Bug 334723 Javadoc warnings in I20110118-0800 build
|
/builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:989: warning - Tag @see: reference not found: org.eclipse.swt.widgets.Touch.state /builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:997: warning - Tag @see: reference not found: org.eclipse.swt.widgets.Touch.state /builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java:1005: warning - Tag @see: reference not found: org.eclipse.swt.widgets.Touch.state /builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureListener.java:33: warning - Tag @see: reference not found: GestureAdapter /builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchListener.java:33: warning - Tag @see: reference not found: TouchAdapter /builds/I201101180800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java:52: warning - Tag @see: can't find TOUCHSTATE_MOVED in org.eclipse.swt.SWT 6 warnings
|
2011-01-18 19:24:47
| 1,295,400,000 |
resolved fixed
|
be91c63
| 1,295,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureListener.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchListener.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TouchSource.java
|
SWT
|
456 | 324,662 |
Bug 324662 [Mac] Hand cursor does not appear on Link
| null |
2010-09-07 11:03:26
| 1,283,870,000 |
resolved fixed
|
656325b
| 1,295,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java
|
SWT
|
457 | 334,420 |
Bug 334420 Trying to reveal element in Table takes very long
| null |
2011-01-14 15:20:41
| 1,295,040,000 |
verified fixed
|
5ded542
| 1,295,050,000 |
bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java
|
SWT
|
458 | 319,188 |
Bug 319188 LocationProvider null when xulrunner is already initialized by another browser
|
Build Identifier: 3.5.2 If xulrunner is already initialized by another browser, the following line in Mozilla.java is not executed if (!Initialized) { LocationProvider = new AppFileLocProvider (mozillaPath); LocationProvider.AddRef (); The LocationProvider is not initialized and caused the exception when executes javascript in public boolean execute (String script) String mozillaPath = LocationProvider.mozillaPath + delegate.getJSLibraryName () + '\0'; Reproducible: Always
|
2010-07-07 16:11:33
| 1,278,530,000 |
resolved fixed
|
24ab347
| 1,294,850,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
459 | 334,067 |
Bug 334067 [browser]Avoid invoking _getUrl inside MapUrlToZone callback
|
Build Identifier: 3.6.1 In side WebSite.java, MapUrlToZone callback invokes _getUrl() each time as part of the condition of whether is in setText mode. This will lower the performance. We can set a flag instead. Path provided as a reference. Reproducible: Always
|
2011-01-12 06:11:12
| 1,294,830,000 |
resolved fixed
|
bba1c08
| 1,294,850,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
460 | 333,914 |
Bug 333914 Application menu is not localized correctly
|
Build Identifier: 3.6 Helios Release The Cocoa application menu obeys the "-nl" argument only for the "About", "Quit" and "Hide" menu items. The rest of the items, as well as the "Help>Search" menu item are shown in the preferred system language. Reproducible: Always Steps to Reproduce: 1. Set a language different from English (e.g. Greek) as system default from Preferences 2. Open Eclipse with -nl en_US 3. Notice the application menu
|
2011-01-10 15:57:23
| 1,294,690,000 |
resolved fixed
|
fe7f497
| 1,294,770,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSBundle.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSLocale.java bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/OS.java bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.