issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
166,760 | Bug 166760 [browser]RedHat EL4Update4, swt.browser cannot show with installed xulrunner 1.8.0.1 | null | verified fixed | bf78cbe | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/GREVersionRange.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOMGlue.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOMInit.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-15T17:55:21Z" | "2006-12-05T09:13:20Z" |
169,784 | Bug 169784 org.eclipse.swt.widgets.Link does not fire SelectionEvents | null | resolved fixed | 14cded5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Link.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-10T01:10:10Z" | "2007-01-07T14:26:40Z" |
169,845 | Bug 169845 Mac OS X SWT: extremely slow behavior of Table with larger numbers of items | Build ID: I20061214-1445 Steps To Reproduce: 1.Modify Snippet38 to have count = 5000 2.Run it 3.On Linux, for example, it takes about 5 seconds for the initial window to come up, which is acceptable, but on Mac OS X it takes 9 full minutes. Tests performed on reasonably recent hardware. Tested using SWT drops: I20061214-1445 and M20060921-0945 on intel hardware. More information: I understand that virtual tables have better performance, but we have a large working app using normal tables (and many of them) that runs fine on all platforms except Mac OS X, due to this issue. Thanks in advance for your help. | resolved fixed | 62c9da7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-10T00:06:51Z" | "2007-01-08T15:26:40Z" |
147,518 | Bug 147518 StyledText down arrow (cursor) broken | In StyledText with wrapped text when the cursor is in the first column (before the first letter), when the one attempts to move the cursor down via the arrow keys it will only move down one visual line. If the cursor is moved to the second column (after the first letter) then the cursor can be moved down with the arrow keys as expected. Also, when the cursor is placed at the bottom of the text (in the first column) and then moved up (via the arrow keys) the cursor will remain in the first column UNTIL the first row (the first visual line) where it will appear at the end of the line. Steps to reproduce: 1. C&P the code below (it's snippet 213 with the first line *not* indented (the code is purposefully commented out) to make it as easy as possible to display the problem). 2. Run the snippet. 3. (Without otherwise moving the cursor before) Move the cursor down with the down arrow key. It will only move down one visual line regardless of the number of times that the down arrow is pressed. 4. Move the cursor right with the right arrow key. Pressing the down arrow will now move the cursor down. 5. Place the cursor at the start of that last visual line. 6. Using the up arrow key move the cursor to the first visual line. The cursor will remain "left justified" until the first visual line. (FYI: I'm using "visual line" to distinguish from a IDocument "line".) Version: 3.2.0 Build id: I20060602-1317 This *did* work in other 3.2RC's but I'm not sure at what point it stopped. =================================== public class Snippet213 { static String text = "The first paragraph has an indentation of fifty pixels. Indentation is the amount of white space in front of the first line of a paragraph. If this paragraph wraps to several lines you should see the indentation only on the first line.\n\n" + "The second paragraph is center aligned. Alignment only works when the StyledText is using word wrap. Alignment, as with all other line attributes, can be set for the whole widget or just for a set of lines.\n\n" + "The third paragraph is justified. Like alignment, justify only works when the StyledText is using word wrap. If the paragraph wraps to several lines, the justification is performed on all lines but the last one.\n\n" + "The last paragraph is justified and right aligned. In this case, the alignment is only noticeable in the final line."; public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); StyledText styledText = new StyledText(shell, SWT.WRAP | SWT.BORDER); styledText.setText(text); // styledText.setLineIndent(0, 1, 50); styledText.setLineAlignment(2, 1, SWT.CENTER); styledText.setLineJustify(4, 1, true); styledText.setLineAlignment(6, 1, SWT.RIGHT); styledText.setLineJustify(6, 1, true); shell.setSize(300, 400); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 04edb15 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-05T22:53:40Z" | "2006-06-16T20:33:20Z" |
167,391 | Bug 167391 Accessible.get_accSelection(int pvarChildren) has error when multiple items are selected | Build ID: 3.2 Steps To Reproduce: 1. add AccessibleControlListener to a custom control, and implement getSelection(AccessibleControlEvent e) method 2. Return CHILDID_MULTIPLE when multiple children are selected, and return an array of childIDs in the children field. 3. In inspect32, selection has error as below. It can not display the multiple selection Selection: [Error IEnumVARIANT::Clone(): hr=0x80004001 - Not Implement] More information: | resolved fixed | 4a4c1b3 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-05T21:00:14Z" | "2006-12-11T09:40:00Z" |
164,355 | Bug 164355 Horizontal scrolling occurs when calling Tree.setTopItem() | This can be seen in the Launch Configurations dialog. Will attach a snippet. | resolved fixed | 2cf6415 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-04T15:36:47Z" | "2006-11-13T17:46:40Z" |
168,043 | Bug 168043 SWT_AWT not working in CTabFolder with JDK 6 on Linux | If a SWT_AWT.newFrame is embedded into CTabFolder, the SWT_AWT frame is not rendered. It works if CTabFolder is replaced with TabFolder. In WinXP everything is ok. Works also fine in JDK 1.5.0_09. Failing Linux configuration: Java(TM) SE Runtime Environment (build 1.6.0-b105) Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing) SWT Build 3.3 020 - Tuesday December 12, 2006 Ubuntu 6.10 Code to test ---> import java.awt.Frame; import javax.swing.JButton; import org.eclipse.swt.SWT; import org.eclipse.swt.awt.SWT_AWT; import org.eclipse.swt.custom.CTabFolder; import org.eclipse.swt.custom.CTabItem; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.TabFolder; import org.eclipse.swt.widgets.TabItem; public class SWTCTabFolderTest { public static void main(String[] args) { try { new SWTCTabFolderTest(); } catch (Throwable t) { t.printStackTrace(); } } public SWTCTabFolderTest() { Display display = new Display(); Shell shell = new Shell(); shell.setSize(400, 400); shell.setLayout(new FillLayout()); // TabFolder tabFolder = new TabFolder(shell, SWT.TOP); // TabItem tabItem = new TabItem(tabFolder, SWT.NONE); CTabFolder tabFolder = new CTabFolder(shell, SWT.TOP); CTabItem tabItem = new CTabItem(tabFolder, SWT.NONE); tabItem.setText("TabItem"); Composite awtComposite = new Composite(tabFolder, SWT.EMBEDDED); tabItem.setControl(awtComposite); Frame awtFrame = SWT_AWT.new_Frame(awtComposite); awtFrame.setLayout(new java.awt.GridLayout(1, 1)); awtFrame.add(new JButton("Button")); shell.setVisible(true); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } } | resolved fixed | 0172f28 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "AWT/motif/org/eclipse/swt/awt/SWT_AWT.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-03T21:30:58Z" | "2006-12-14T12:40:00Z" |
186,043 | Bug 186043 Stochastic disease model needs to be modeled explicitly | The stochastic disease model needs to be modeled in the "standard" disease models. | closed fixed | 918e592 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "AWT/motif/org/eclipse/swt/awt/SWT_AWT.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-03T21:19:26Z" | "2007-05-08T21:33:20Z" |
169,413 | Bug 169413 [Viewers] SWT/JFace TableEditors don't work in 3.3M4 on OSX | Build ID: I20061214-1445 Steps To Reproduce: After upgrading to SWT and JFace 3.3M4, neither the JFace table editing snippets (Snippet019TableViewerAddRemoveColumnsWithEditingNewAPI, Snippet018TableViewerAddRemoveColumnsWithEditing) nor the SWT snippets (Snippet124) work on OS X anymore. This, of course, is not limited to the snippets, but also affects all other table editing code. More information: It seems the listeners are firing correctly, and the text controls are created, but fail to display or gain focus. In Snippet124, I was able to activate the text controls by changing focus to another window before double-clicking on the table cell. They will not activate if the Shell is already in focus. | resolved fixed | 47ec8ba | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2007-01-03T18:10:12Z" | "2007-01-03T10:26:40Z" |
168,821 | Bug 168821 Eclipse will crash with message "Widget is disposed". | Environment: MacOSX 10.4.8(PowerPC), java 1.5.0_06, Eclipse SDK 3.3M3 Steps to reproduce bug: 1. Eclipse > Preferences... > Team > CVS > SSH2 Connection Method > Key Management 2. Press "Generate DSA Key..." 3. Select the textfield for "Confirm passphrase:". 4. Press "Ok" button The error log has following line, !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3450) at org.eclipse.swt.SWT.error(SWT.java:3373) at org.eclipse.swt.SWT.error(SWT.java:3344) at org.eclipse.swt.widgets.Widget.error(Widget.java:663) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:332) at org.eclipse.swt.widgets.Control.setVisible(Control.java:3164) at org.eclipse.jface.dialogs.DialogMessageArea.restoreTitle(DialogMessageArea.java:129) at org.eclipse.jface.dialogs.DialogMessageArea.updateText(DialogMessageArea.java:151) at org.eclipse.jface.preference.PreferenceDialog.updateMessage(PreferenceDialog.java:1323) at org.eclipse.jface.preference.PreferencePage.setErrorMessage(PreferencePage.java:640) at org.eclipse.team.internal.ccvs.ssh2.CVSSSH2PreferencePage$6.focusLost(CVSSSH2PreferencePage.java:428) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:109) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1527) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1551) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1532) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:2367) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:827) at org.eclipse.swt.widgets.Control.setFocus(Control.java:2817) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:892) at org.eclipse.swt.widgets.Control.fixFocus(Control.java:775) at org.eclipse.swt.widgets.Control.setVisible(Control.java:3208) at org.eclipse.swt.widgets.TabItem.releaseWidget(TabItem.java:195) at org.eclipse.swt.widgets.Widget.release(Widget.java:1417) at org.eclipse.swt.widgets.TabFolder.releaseChildren(TabFolder.java:507) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:820) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:177) at org.eclipse.swt.widgets.Decorations.releaseChildren(Decorations.java:365) at org.eclipse.swt.widgets.Shell.releaseChildren(Shell.java:1201) at org.eclipse.swt.widgets.Widget.release(Widget.java:1408) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:652) at org.eclipse.jface.window.Window.close(Window.java:330) at org.eclipse.jface.dialogs.Dialog.close(Dialog.java:1001) at org.eclipse.jface.dialogs.TrayDialog.close(TrayDialog.java:143) at org.eclipse.jface.preference.PreferenceDialog.close(PreferenceDialog.java:291) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.close(FilteredPreferenceDialog.java:452) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.close(WorkbenchPreferenceDialog.java:140) at org.eclipse.jface.preference.PreferenceDialog.cancelPressed(PreferenceDialog.java:269) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:238) at org.eclipse.jface.dialogs.Dialog$3.widgetSelected(Dialog.java:638) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1527) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1551) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1536) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1310) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3369) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2994) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.ui.carbon.CarbonUIEnhancer.runAction(CarbonUIEnhancer.java:280) at org.eclipse.ui.carbon.CarbonUIEnhancer.access$0(CarbonUIEnhancer.java:274) at org.eclipse.ui.carbon.CarbonUIEnhancer$Target.commandProc(CarbonUIEnhancer.java:79) at org.eclipse.swt.internal.carbon.OS.MenuSelect(Native Method) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2786) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2963) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1945) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1909) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:425) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethod(EclipseAppContainer.java:522) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:147) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:170) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:339) at org.eclipse.core.launcher.Main.basicRun(Main.java:283) at org.eclipse.core.launcher.Main.run(Main.java:984) at org.eclipse.core.launcher.Main.main(Main.java:959) This crash also occurs on Eclipse SDK 3.2.1 on MacOSX, but I have not been able to reproduce this bug on WindowsXP and GNU/Linux. | resolved fixed | a98ddf7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/TabItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-21T19:02:20Z" | "2006-12-21T08:33:20Z" |
168,700 | Bug 168700 [OpenModes] Double clicks not working in N20061220-0010 | Double clicks no longer work in most views: Package explorer, Search view, Problems view, etc. It's in the nightly build N20061220-0010 PW | verified fixed | df62042 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-20T23:54:36Z" | "2006-12-20T15:53:20Z" |
168,444 | Bug 168444 NPE when using mouse to select next editor | Build ID: I20061214-1445 Steps To Reproduce: 1. Trigger next editor popoup (mapped to ctrl-tab for me) 2. Release Tab 3. Click one of the open editors in the popup (I only had two open) 4. NPE reported More information: java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.kEventControlTrack(Widget.java:1068) at org.eclipse.swt.widgets.Control.kEventControlTrack(Control.java:1773) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:366) at org.eclipse.swt.widgets.Display.controlProc(Display.java:847) at org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(Native Method) at org.eclipse.swt.widgets.Table.kEventMouseDown(Table.java:2151) at org.eclipse.swt.widgets.Widget.mouseProc(Widget.java:1277) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2825) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2963) at org.eclipse.ui.internal.CyclePartAction.openDialog(CyclePartAction.java:459) at org.eclipse.ui.internal.CyclePartAction.runWithEvent(CyclePartAction.java:514) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:119) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:461) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:424) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:160) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:465) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:791) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:838) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:563) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:505) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:122) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1118) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1526) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1551) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1536) at org.eclipse.swt.widgets.Control.traverse(Control.java:3515) at org.eclipse.swt.widgets.Control.translateTraversal(Control.java:3470) at org.eclipse.swt.widgets.Control.kEventTextInputUnicodeForKeyEvent(Control.java:1862) at org.eclipse.swt.widgets.Widget.textInputProc(Widget.java:2031) at org.eclipse.swt.widgets.Display.textInputProc(Display.java:3807) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2963) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1945) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1909) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:425) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethod(EclipseAppContainer.java:522) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:147) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:170) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:339) at org.eclipse.core.launcher.Main.basicRun(Main.java:283) at org.eclipse.core.launcher.Main.run(Main.java:984) at org.eclipse.core.launcher.Main.main(Main.java:959) | resolved fixed | 244083c | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-20T17:26:01Z" | "2006-12-18T19:26:40Z" |
166,548 | Bug 166548 SashForm no longer working on OSX | Build ID: I20061129-1340 Steps To Reproduce: The following snippet no longer works using the latest nightly builds. It did on SWT 3.3M3 and prior. Run the snippet and try to drag the sash. The sash does not move. 1/2 the time the cursor doesn't even change. public class SashFormTest { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setLayout(new FillLayout()); SashForm sf = new SashForm(shell, SWT.VERTICAL); sf.SASH_WIDTH = 10; sf.setLayout(new FillLayout()); new Composite(sf, SWT.BORDER); new Composite(sf, SWT.BORDER); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } More information: | resolved fixed | 0f2db3d | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Sash.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-18T22:22:51Z" | "2006-12-01T19:06:40Z" |
168,314 | Bug 168314 Snippet 252 a bit confusing | Snippet 252 (the one posted on the N&N for M4) sets a line width of 1/2. Since these are both integers, it does the division first and then the cast. This sets the line style to 0.0. I assume (since the N&N says something about fractional line width) you meant 1/2f. | resolved fixed | c6bc47d | ["examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet252.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-18T17:21:37Z" | "2006-12-16T09:06:40Z" |
167,872 | Bug 167872 HandleLeak in Font.getFontData() | Build ID: M20060921-0945 Steps To Reproduce: 1. Create a small SWT project 2. Open the windows task manager, make the GDI object column visible 3. Add FontData fontData = getFont().getFontData()[0]; to the code 4. Debug to the inserted line, when you step over the GDI object count is incremented but there is no possibility to free the temporary created GDI handle More information: The problem is the implementation of getFontData: if (isDisposed()) SWT.error(SWT.ERROR_GRAPHIC_DISPOSED); LOGFONT logFont = OS.IsUnicode ? (LOGFONT)new LOGFONTW() : new LOGFONTA(); OS.GetObject(handle, LOGFONT.sizeof, logFont); return new FontData[] {FontData.win32_new(logFont, device.computePoints(logFont, handle))}; The handle created by OS.GetObject is not disposed. | resolved fixed | c96aa82 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-14T16:42:09Z" | "2006-12-13T17:13:20Z" |
167,991 | Bug 167991 Javadoc warnings in I20061213-1800 | /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_CUSTOM /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_DASH /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_DASHDOT /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_DASHDOTDOT /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_DOT /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:46: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.LINE_SOLID /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:55: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.CAP_FLAT /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:55: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.CAP_ROUND /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:55: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.CAP_SQUARE /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:64: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.JOIN_BEVEL /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:64: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.JOIN_MITER /builds/I200612131800/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:64: warning - Tag @see: Class or Package not found: org.eclipse.swt.SWT.JOIN_ROUND | resolved fixed | dca6076 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/LineAttributes.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-14T15:13:44Z" | "2006-12-14T04:20:00Z" |
164,493 | Bug 164493 StyledText doesn't support advanced text services for Korean IME | null | resolved fixed | a635ae6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEX.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXA.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OSVERSIONINFOEXW.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-13T23:11:56Z" | "2006-11-14T16:00:00Z" |
166,547 | Bug 166547 disposing tree columns creates 2 vertical scrollbars | I20061129-1340 When I toggle "show columns" in the variables view and a vertical scroll bar is present - I end up with two vertical scroll bars when no columns are showing. | resolved fixed | 6fe1815 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-13T22:06:44Z" | "2006-12-01T19:06:40Z" |
167,476 | Bug 167476 Text verify event fields different between GTK and every other platform | - Run the following snippet on GTK - Type 1 to overwrite the selected xx - See the word "BOGUS" in the Console. If you run this on any other platform, "BOGUS" is not printed. import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.events.*; public class TextVerifyTest { static Shell shell; static Text text; static boolean ignore = false; public static void main(String[] args) { Display display = new Display(); shell = new Shell(display); shell.setLayout(new GridLayout()); shell.setText("Single-Line Text Test"); text = new Text(shell, SWT.SINGLE); text.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); text.setText("xx < type here"); text.setSelection(0, 2); text.addVerifyListener(new VerifyListener() { public void verifyText(VerifyEvent e) { System.out.println( "\nVerify, e.text=" + e.text + " e.start=" + e.start + " e.end=" + e.end + " ignore=" + ignore + (e.start == e.end && ignore == false ? " (BOGUS)" : "")); if (ignore) return; ignore = true; text.insert("yy"); ignore = false; text.setSelection(0, 2); e.doit = false; } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } } | resolved fixed | 4a34d65 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-11T22:38:24Z" | "2006-12-11T20:46:40Z" |
167,219 | Bug 167219 NPE in org.eclipse.swt.widgets.Menu._setVisible | Found the following in my log file. No steps to reproduce. java.lang.NullPointerException at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:199) at org.eclipse.swt.widgets.Display.runPopups(Display.java:3489) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3071) | resolved fixed | 9fb3536 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/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/win32/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-08T21:07:57Z" | "2006-12-08T09:26:40Z" |
166,971 | Bug 166971 Read only text widget renders background differently with WIN XP Theme | The text widget that describes the contents of the page on a properties page needs to be made transparent instead of just gray. Setting the background to gray does not work under Windows XP default theme which renders the tabs a lighter shade of gray. Will attach a screen shot. The text widget has the SWT.READ_ONLY bit set as well as using the .setEditable(false) method. Reproducer (sorry for the dependencies on WTP) 1. Install latest maintenance version of WTP 1.5 2. Create new J2EE Enterprise Application Project 3. Create new EJB Project 4. Create new Dynamic Web Project 5. Get Properties for Web Project 6. Click on J2EE Module Dependencies in tree. You should see two tabs (J2EE Modules and Web Libraries). The description in each tab will have a different background from the TabFolder. | resolved fixed | 2d17267 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-08T20:34:34Z" | "2006-12-06T15:46:40Z" |
166,942 | Bug 166942 Application does not start maximized if setMaximized called before Shell.open() | Build ID: 3.3.0 I20061102-1715 Steps To Reproduce: 1. Create a SWT application 2. call setMaximized(true) before shell.open() 3. Start the application, window does not ge maximized More information: The maximized state could be set before shell.open() and the application window was shown maximized when shell.open was called in version 3.2. This does not work in version 3.3. This can also be seen on eclipse itself, it does not start maximized anymore. Calling setMaximized after shell.open() works but produces flickering of the display. | resolved fixed | c72fdbd | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-06T19:03:54Z" | "2006-12-06T13:00:00Z" |
158,982 | Bug 158982 Table Headers getting random images on Vista | I20060926 Beta 2 The tasks view is getting random (i.e. they are not even in the ide plug-in) extra images assigned to the table headers. This is the only one of the marker views that has header images (it is fine in the ones we set explicitly) and it is not an issue in the others. I will attach a screenshot | verified fixed | 6369ca4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-05T22:18:48Z" | "2006-09-27T15:13:20Z" |
166,793 | Bug 166793 Custom-Drawing Selection-Color not working on col = 0 with sorting | SWT 3.3 M3 I noticed that its not possible to override the selection-color for the first column, when this column was set as sorting-column. In the following snippet, simply change the setSortColumn() to use the second column and its working as expected. Consider this snippet: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Color c = new Color(display, 255, 0, 0); final Tree tree = new Tree(shell, SWT.FULL_SELECTION | SWT.BORDER); tree.setHeaderVisible(true); new TreeColumn(tree, SWT.NONE).setWidth(200); new TreeColumn(tree, SWT.NONE).setWidth(200); tree.setSortColumn(tree.getColumn(0)); tree.setSortDirection(SWT.DOWN); for (int i = 0; i < 20; i++) { new TreeItem(tree, SWT.NONE).setText("Hello World"); } tree.addListener(SWT.EraseItem, new Listener() { public void handleEvent(Event event) { if ((event.detail & SWT.SELECTED) != 0) { GC gc = event.gc; Rectangle area = tree.getClientArea(); Rectangle rect = event.getBounds(); Color background = gc.getBackground(); /* Take Label-Color for Selection-Color */ gc.setBackground(c); gc.fillRectangle(0, rect.y, area.width, rect.height); /* Restore colors for subsequent drawing */ gc.setBackground(background); event.detail &= ~SWT.SELECTED; } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } | resolved fixed | 32ed251 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-05T18:29:07Z" | "2006-12-05T14:46:40Z" |
165,036 | Bug 165036 Strange table coloring on Vista | Build: I20061114 Tables in Vista are drawing strangely. The first column sometimes has a different background color, and the blue selection bar doesn't span to the first column. I'll attach a screen shot. | resolved fixed | 9d69793 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-01T23:21:12Z" | "2006-11-17T21:46:40Z" |
165,712 | Bug 165712 Create wrapper Shell around existing handle | In support of the new launcher (bug ) we need to be able to create a shell using an existing handle from a window that was created natively (in the same process and thread) | resolved fixed | fec0d69 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Widget.java", "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/motif/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Widget.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-01T22:10:09Z" | "2006-11-23T22:13:20Z" |
82,272 | Bug 82272 List returned by Device#getFontList(...) has a lot of repetition | I am trying to create a Font combo (like in MS Word), and am using getFontList (...) to get the font names. The first problem is that several FontDatas with the same name are returned. While most of these FontDatas vary slightly, some are identical (the first two in the following list, for instance). 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-18|3|2|1|34|Arial CE 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-18|3|2|1|34|Arial CE 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-52|3|2|1|34|Arial CE 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-95|3|2|1|34|Arial CE 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-94|3|2|1|34|Arial CE 1|Arial CE|24|0|WINDOWS|1|36|14|0|0|400|0|0|0|-70|3|2|1|34|Arial CE 1|Arial CE|23|1|WINDOWS|1|36|15|0|0|700|0|0|0|-18|3|2|1|34|Arial CE 1|Arial CE|23|1|WINDOWS|1|36|15|0|0|700|0|0|0|-18|3|2|1|34|Arial CE 1|Arial CE|23|1|WINDOWS|1|36|15|0|0|700|0|0|0|-52|3|2|1|34|Arial CE I am circumventing the above-mentioned problem by sticking the Strings in a set, and thus preventing repetition. The other problem is that fonts like Arial CE, Arial Baltic, Arial CYR, Arial TUR, Arial Greek, etc. are returned, when all I want is Arial. | resolved fixed | cded08d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Font.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/FontData.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/FontDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-01T18:54:25Z" | "2005-01-05T18:33:20Z" |
75,812 | Bug 75812 [browser] Cursor over Safari Browser does not change | Hi, using the browser snippet from the snippet section, hovering over a Link with the mouse does not change the Cursor to the Hand Cursor. Running Safari standalone however shows the hand cursor. Ben | resolved fixed | 2329406 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/carbon/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-01T18:22:32Z" | "2004-10-07T14:40:00Z" |
166,479 | Bug 166479 Javadoc warnings in N20061130-2300 | /builds/N200611302300/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java:97: warning - Parameter "join" is documented more than once. | resolved fixed | 07b913c | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/graphics/LineAttributes.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-12-01T15:03:18Z" | "2006-12-01T13:33:20Z" |
158,903 | Bug 158903 org.eclipse.swt.internal.Library needs a way to override java.library.path | Bundling SWT with your application is a good way to deploy an SWT-based app without requiring the user to do a bunch of install work. Unfortunately, there's a hole in the deployment story at the moment-- in order to get the SWT native libs to load, the user of your Java code has to supply a correct java.library.path. This can be worked around with wrapper scripts, but there isn't a clean general solution. I propose allowing an SWT client program to specifically override the location where the SWT native libraries should be looked for. The mechanism I am proposing is that if the system property "swt.library.path" is set, Library should look there instead of using "java.library.path" (which cannot be changed at runtime). I will attach an implementation that demonstrates this. | resolved fixed | 3f4f119 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/common_j2se/org/eclipse/swt/internal/Library.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-30T21:31:40Z" | "2006-09-27T01:20:00Z" |
166,264 | Bug 166264 CTabItem unnecessarily redraws entire Tab on setImage() | null | resolved fixed | 8d23aaa | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-30T17:59:51Z" | "2006-11-29T22:40:00Z" |
155,655 | Bug 155655 [DND] 'Alt' does not request DROP_LINK | null | resolved fixed | 3092848 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-21T20:06:58Z" | "2006-08-30T09:26:40Z" |
162,198 | Bug 162198 DnD removes selection and moves caret | I20061024-1200 StyledText DnD removes selection and moves caret if it acts as text DnD source and DnD target at the same time. 1. modify Snippet210.java to have only one text widget which acts as drag source and as drop target 2. start the snippet twice 3. select some text one window and copy+drag it to the other ==> selection in first window goes away and caret moves around 4. set focus back to window one ==> caret is at a totally different location Same happens if you start dragging some text outside of the window and abort. Maybe that's a user error and I have to write some additional code but I would expect that this works our of the box. | verified fixed | 023b007 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/common/org/eclipse/swt/dnd/DragAndDropEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/common/org/eclipse/swt/dnd/NoDragAndDropEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/DropTarget.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/StyledTextDragAndDropEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TableDragAndDropEffect.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/win32/org/eclipse/swt/dnd/TreeDragAndDropEffect.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-14T20:44:12Z" | "2006-10-25T12:40:00Z" |
163,824 | Bug 163824 When expanding tree in variables view, icon does not show expanded | 1) Variables View tree must have enough elements visible so that scrolling is needed. 2) Scroll so that an unexpanded tree item is at the very bottom of the visible area. 3) Try to expand the last visible item. 4) The + icon does not change to a - icon, but the item is expanded. Screenshots to follow. | resolved fixed | fa7846f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-10T16:13:26Z" | "2006-11-08T15:33:20Z" |
158,831 | Bug 158831 SWT Spinner selection value error | I am getting really strange values of Spinner.getSelection(). I set up the spinner in the following way (tested on Snippet190): spinner.setDigits(1); spinner.setMinimum(0); spinner.setMaximum(10000); spinner.setIncrement(1); spinner.setSelection(0); I get the result of selection 7 two times i.e. for 7th and 8th position (8 is never returned it jumps directly to 9). It gets even more interesting because again I get 9's twice (instead of 9 and 10). Then some numbers are returned correctly. The problem again starts at 47 - the values returned are basically "one step behind" of what they should be. I can't really see any pattern here... Obviously the actual number (selection / Math.pow(10, digits)) is incorrect as well. The same behaviour for SWT 3.2 and 3.3M2. I am using 3.2 Callisto GTK2 under Ubuntu. | resolved fixed | fa01908 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Spinner.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-08T20:32:20Z" | "2006-09-26T19:46:40Z" |
79,084 | Bug 79084 Load TrueType fonts directly from a file.. | In AWT a TrueType font file can be loaded directly into a Font object; File ttfFile = new File("MICR E13B Normal.ttf"); FileInputStream fis = new FileInputStream(ttfFile); Font font = Font.createFont(Font.TRUETYPE_FONT, fis); This functionality is important with applications that display financial documents because security fonts or MICR fonts are rarely installed on an end-user systems. The ability to load a TrueType font file into a org.eclipse.swt.graphics.Font object, or convert a AWT to a SWT is the feature request. | resolved fixed | 452fbe8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/Device.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/Device.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-08T20:29:56Z" | "2004-11-19T16:00:00Z" |
163,594 | Bug 163594 Program.launch doesn't work on OSX | The code for Program.launch for Mac wraps the file in a "file://" + param. The param is not encoded in any way, so it fails on files with spaces. The the very least, a replaceAll(" ", "%20") is needed. Possibly a URLEncoder.encode() as well. SWT 3.3M2 | resolved fixed | 01ac6ad | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/carbon/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-07T17:03:42Z" | "2006-11-06T21:53:20Z" |
36,070 | Bug 36070 no mouse move in button when dragging | Eclipse 2.1 Run the following example. Click down with the left mouse button in the button and drag the mouse. There are no mouse move events while the mouse button is down. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Button b = new Button(shell, SWT.BORDER); b.setBounds(10, 10, 100, 100); Listener l = new Listener() { public void handleEvent(Event e) { System.out.println(">>> mouse move event"); } }; b.addListener(SWT.MouseMove, l); shell.setSize(150, 150); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 981f2e3 | ["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/carbon/org/eclipse/swt/widgets/Link.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Sash.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Scale.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ScrollBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Slider.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tracker.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-06T22:21:09Z" | "2003-04-04T15:26:40Z" |
91,666 | Bug 91666 Emulated CCombo vs. native Combo | null | resolved wontfix | 6087c1f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-06T20:32:29Z" | "2005-04-16T22:20:00Z" |
161,550 | Bug 161550 Expanding a TreeItem on Mac OS X fires MouseUp-MouseDown in the wrong order | Run the snippet below. Click somewhere in the Tree NOT on an expansion handle. Notice the events come in the expected order of MouseDown, MouseUp. Now expand the root node of the tree. Notice the events come in the reverse order of MouseUp, MouseDown. public class SimpleTreeTest { public static void main(String args[]) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Tree tree = new Tree(shell, SWT.BORDER); TreeItem root = new TreeItem(tree, SWT.NONE); root.setText("Root"); TreeItem child = new TreeItem(root, SWT.NONE); child.setText("Child"); tree.addMouseListener(new MouseAdapter() { public void mouseDown(MouseEvent event) { System.out.println("mouseDown " + event); } public void mouseUp(MouseEvent event) { System.out.println("mouseUp " + event); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } | resolved fixed | b582abc | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Slider.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Spinner.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-03T19:05:06Z" | "2006-10-19T12:13:20Z" |
161,809 | Bug 161809 [OpenGL] Mac GLCanvas does not immediately update GL state upon resize | The fixBounds method gets asyncExec'ed when a resize, hide or show event occurs... is there any reason this can't be called immediately? The problem is that I receive notification of the resize and try to draw to the canvas, but the drawing becomes invalid as soon as the fixBounds method gets called... fixBounds should've already been called before I started drawing! I am trying to do selective updates instead of just redrawing the screen constantly, so it's crucial that when I'm told about a resize I can immediately draw and the GL state will already be up to date. Specifically, I am trying to plug in an OpenGL version of the Draw2D Graphics class, and resizing the window creates a bunch of screen garbage because of this problem. Looking at the source for the Windows and Linux implementations of GLCanvas, it looks like they update their GL state immediately when notified of a resize event. Shouldn't the behavior be uniform across platforms? | resolved fixed | 2f936f6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/carbon/org/eclipse/swt/opengl/GLCanvas.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-11-02T19:52:13Z" | "2006-10-20T21:33:20Z" |
162,967 | Bug 162967 Last element of a tree doesn't expand on double-click | Using I20061031-0656, when I double-click on the last element of a tree, nothing happens. But if I double-click on the previous element, both expands. This can be seen in the package explorer or the synchronize view. | resolved fixed | 043c304 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-31T19:15:53Z" | "2006-10-31T18:40:00Z" |
139,711 | Bug 139711 Eclipse loses keyboard shortcuts on OSX | Beginning (I think) with 3.2 M5, Eclipse seems to lose the keyboard shortcut keys in some instances. I have yet to determine how exactly that happens, but from what I see, it has to do with switching to Eclipse from other applications. This means that the markers for the keys in the main menu and context menues are gone, and pressing the shortcut keys like cmd-C and cmd-V does nothing. As you can imagine, it's a pain to not being able to copy and paste... Deselecting the center content area and again switching from and to Eclipse makes the shortcuts appear again. | resolved fixed | 0d27137 | ["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/carbon/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-30T22:33:25Z" | "2006-05-02T14:26:40Z" |
158,175 | Bug 158175 Java core [WM_BUTTONDOWN] when selecting a tree in Vista | Windows Vista Beta 2 Build I20060929 When I select the Outline View on Vista I periodically get a Java VM exception. I can't do this consistently (it happens every 2 hours or so). Here is the trace An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x750F9B16 Function=CreateMappedBitmap+0x14A8 Library=C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.5384.4_none_a8b0bff774788b5e\COMCTL32.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1883) at org.eclipse.swt.widgets.Tree.callWindowProc(Tree.java:1321) at org.eclipse.swt.widgets.Tree.WM_LBUTTONDOWN(Tree.java:5434) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3285) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:4889) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4072) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1964) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3007) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962) Dynamic libraries: 0x00400000 - 0x0040B000 C:\R33\0921\eclipse\jre\bin\java.exe 0x77B20000 - 0x77C2D000 C:\Windows\system32\ntdll.dll 0x777F0000 - 0x778BE000 C:\Windows\system32\kernel32.dll 0x77730000 - 0x777EA000 C:\Windows\system32\ADVAPI32.dll 0x77680000 - 0x77728000 C:\Windows\system32\RPCRT4.dll 0x76790000 - 0x76838000 C:\Windows\system32\MSVCRT.dll 0x08000000 - 0x08138000 C:\R33\0921\eclipse\jre\bin\client\jvm.dll 0x775E0000 - 0x7767C000 C:\Windows\system32\USER32.dll 0x77AD0000 - 0x77B1A000 C:\Windows\system32\GDI32.dll 0x74590000 - 0x745C1000 C:\Windows\system32\WINMM.dll 0x778C0000 - 0x779FF000 C:\Windows\system32\ole32.dll 0x76930000 - 0x769C0000 C:\Windows\system32\OLEAUT32.dll 0x74550000 - 0x74587000 C:\Windows\system32\OLEACC.dll 0x75760000 - 0x757C7000 C:\Windows\system32\msvcp60.dll 0x76910000 - 0x7692E000 C:\Windows\system32\IMM32.DLL 0x76840000 - 0x76909000 C:\Windows\system32\MSCTF.dll 0x75C00000 - 0x75C2B000 C:\Windows\system32\apphelp.dll 0x75CB0000 - 0x75CB9000 C:\Windows\system32\LPK.DLL 0x75C30000 - 0x75CAC000 C:\Windows\system32\USP10.dll 0x10000000 - 0x10007000 C:\R33\0921\eclipse\jre\bin\hpi.dll 0x00BE0000 - 0x00BEE000 C:\R33\0921\eclipse\jre\bin\verify.dll 0x00BF0000 - 0x00C09000 C:\R33\0921\eclipse\jre\bin\java.dll 0x00C10000 - 0x00C1E000 C:\R33\0921\eclipse\jre\bin\zip.dll 0x03550000 - 0x0355F000 C:\R33\0921\eclipse\jre\bin\net.dll 0x76760000 - 0x7678D000 C:\Windows\system32\WS2_32.dll 0x76410000 - 0x76416000 C:\Windows\system32\NSI.dll 0x035A0000 - 0x035A8000 C:\R33\0921\eclipse\jre\bin\nio.dll 0x03670000 - 0x036C3000 C:\R33\0921\eclipse\configuration\org.eclipse.osgi\bundles\79\1\.cp\swt-win32-3309.dll 0x750C0000 - 0x75247000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.5384.4_none_a8b0bff774788b5e\COMCTL32.dll 0x766D0000 - 0x76723000 C:\Windows\system32\SHLWAPI.dll 0x769C0000 - 0x76A1F000 C:\Windows\system32\comdlg32.dll 0x76BF0000 - 0x77588000 C:\Windows\system32\SHELL32.dll 0x76B30000 - 0x76BE6000 C:\Windows\system32\WININET.dll 0x764C0000 - 0x764C6000 C:\Windows\system32\Normaliz.dll 0x764D0000 - 0x76509000 C:\Windows\system32\iertutil.dll 0x764B0000 - 0x764B9000 C:\Windows\system32\VERSION.dll 0x76240000 - 0x7626B000 C:\Windows\system32\WINTRUST.dll 0x76150000 - 0x7623D000 C:\Windows\system32\CRYPT32.dll 0x75EB0000 - 0x75EC2000 C:\Windows\system32\MSASN1.dll 0x75E90000 - 0x75EAD000 C:\Windows\system32\USERENV.dll 0x75D50000 - 0x75D64000 C:\Windows\system32\Secur32.dll 0x75ED0000 - 0x75EFF000 C:\Windows\system32\ncrypt.dll 0x75D70000 - 0x75DAC000 C:\Windows\system32\bcrypt.dll 0x76A20000 - 0x76A49000 C:\Windows\system32\imagehlp.dll 0x763A0000 - 0x763DC000 C:\Windows\system32\uxtheme.dll 0x04F50000 - 0x04F58000 C:\R33\0921\eclipse\configuration\org.eclipse.osgi\bundles\17\1\.cp\os\win32\x86\localfile_1_0_0.dll 0x05120000 - 0x05133000 C:\R33\0921\eclipse\configuration\org.eclipse.osgi\bundles\79\1\.cp\swt-gdip-win32-3309.dll 0x74D00000 - 0x74EA8000 C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.5384.4_none_3926c030ef0acddf\gdiplus.dll 0x77A00000 - 0x77A84000 C:\Windows\system32\CLBCatQ.DLL 0x70D10000 - 0x70D40000 C:\Windows\system32\mlang.dll 0x752A0000 - 0x752A5000 C:\Windows\system32\msimg32.dll 0x76A50000 - 0x76B17000 C:\Windows\system32\urlmon.dll 0x75BA0000 - 0x75BFE000 C:\Windows\system32\SXS.DLL 0x75660000 - 0x756A3000 C:\Windows\System32\mswsock.dll 0x75650000 - 0x7565B000 C:\Windows\system32\nlaapi.dll 0x759A0000 - 0x759CA000 C:\Windows\system32\DNSAPI.dll 0x73520000 - 0x73528000 C:\Windows\System32\winrnr.dll 0x77590000 - 0x775D9000 C:\Windows\system32\WLDAP32.dll 0x76750000 - 0x76756000 C:\Windows\system32\PSAPI.DLL 0x73510000 - 0x7351F000 C:\Windows\system32\napinsp.dll 0x734F0000 - 0x73501000 C:\Windows\system32\pnrpnsp.dll 0x758B0000 - 0x758C7000 C:\Windows\system32\IPHLPAPI.DLL 0x75870000 - 0x758A1000 C:\Windows\system32\dhcpcsvc.DLL 0x75860000 - 0x75867000 C:\Windows\system32\WINNSI.DLL 0x73300000 - 0x73306000 C:\Windows\system32\rasadhlp.dll 0x752B0000 - 0x752B6000 C:\Windows\System32\wshtcpip.dll 0x6E2D0000 - 0x6E7B1000 C:\Windows\system32\ieframe.dll 0x76330000 - 0x7639B000 C:\Windows\system32\CRYPTUI.dll 0x75F00000 - 0x75F62000 C:\Windows\system32\NETAPI32.dll 0x75DB0000 - 0x75E8F000 C:\Windows\system32\WINBRAND.dll 0x70750000 - 0x70A8A000 C:\Windows\system32\MSHTML.dll 0x71000000 - 0x71029000 C:\Windows\system32\msls31.dll 0x70FD0000 - 0x70FFE000 C:\Windows\system32\MSRATING.dll 0x74850000 - 0x74857000 C:\Windows\system32\WSOCK32.dll 0x70F90000 - 0x70FC2000 C:\Windows\system32\IEUI.dll 0x723C0000 - 0x723CD000 C:\Windows\AppPatch\iebrshim.dll 0x73CC0000 - 0x73CCB000 C:\Windows\system32\msimtf.dll 0x74860000 - 0x7493F000 C:\Windows\system32\dbghelp.dll Heap at VM Abort: Heap def new generation total 6336K, used 1007K [0x10010000, 0x106e0000, 0x113c0000) eden space 5696K, 6% used [0x10010000, 0x1006bdc0, 0x105a0000) from space 640K, 99% used [0x10640000, 0x106dfff8, 0x106e0000) to space 640K, 0% used [0x105a0000, 0x105a0000, 0x10640000) tenured generation total 82852K, used 76965K [0x113c0000, 0x164a9000, 0x20010000) the space 82852K, 92% used [0x113c0000, 0x15ee97c8, 0x15ee9800, 0x164a9000) compacting perm gen total 39936K, used 39855K [0x20010000, 0x22710000, 0x24010000) the space 39936K, 99% used [0x20010000, 0x226fbd40, 0x226fbe00, 0x22710000) Local Time = Thu Sep 21 12:36:56 2006 Elapsed Time = 1195 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode) # | resolved fixed | 9ccf2b9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-30T16:12:31Z" | "2006-09-21T17:33:20Z" |
161,533 | Bug 161533 JVM crash [Tree.setSelection] because SWT (Vista?) error | null | resolved fixed | 3419474 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-27T20:02:17Z" | "2006-10-19T09:26:40Z" |
162,146 | Bug 162146 [Browser] Appending to stream hangs the SWT Browser | null | closed fixed | 037eee8 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-27T15:27:05Z" | "2006-10-24T20:00:00Z" |
162,411 | Bug 162411 setExpanded(false) doesn't work when tree item is not visible (regression) | Build: I20061024 1) Expand a project with many children in the Navigator or Package Explorer view 2) Scroll the view down so that the project root tree item is not visible, but the children are still visible 3) Click "Collapse All" in the view tool bar. -> Nothing happens. The root element only collapses if it is visible, or if none of its children are visible. Reproduced the problem on XP, Win2K, and Vista. I suspect this is a problem in AbstractTreeViewer.collapseAll. | resolved fixed | e305889 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-26T22:46:22Z" | "2006-10-26T16:26:40Z" |
162,084 | Bug 162084 Tree.setRedraw(true) doesn't redraw | I20061024-0800 The Package Explorer no longer refreshes in certain scenarios. This is a blocker since the Package Explorer is unusable. Test Case: 1. expand some elements 2. click on the 'Collapse All' local tool bar button ==> tree doesn't collapse | resolved fixed | dfdd831 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-24T15:39:32Z" | "2006-10-24T14:26:40Z" |
159,586 | Bug 159586 Need a way to expand TreeItems without causing scrolling | For the filtered tree that is showing up in more and more places in the UI (for example, in the preferences dialog, or the show view dialog), we would like to be able to expand the tree once it is filtered so that the user can see all matches. On Windows XP, TreeItem.setExpanded(true) scrolls the expanded item into view, which causes problems with what we are trying to do. We use redraw(false)/redraw(true) and setTopItem() to hide the scrolling, but the scrollbar can still be seen dancing around. Ideally, we would like to be able to expand an item without causing scrolling. If this is not possible, could the dancing scrollbar be fixed? I'll attach a snippet. | resolved fixed | c964a36 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-23T21:02:16Z" | "2006-10-03T12:53:20Z" |
153,448 | Bug 153448 Tree.setRedraw(true) causes the drawing operations to be ignored on solaris | The following code behaves like setRedraw(false) was called: Tree tree = new Tree(composite, SWT.BORDER | SWT.CHECK); ... (add tree items) tree.setRedraw(true); After call to setRedraw(true), user cannot check and/or select tree items (the check status can be readed using getChecked(); but is not displayed - as if redraw is turned off). Nested calls to Control.setRedraw() are stacked (as said in documentation); but I believe that extra "setRedraw(true)" calls should not turn redraw off. At least, on win32, that extra call does not cause problems (the bug appears on solaris-motif). Snippet will be attached in next comment. | resolved fixed | 106e75d | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TreeColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-18T17:18:45Z" | "2006-08-10T14:26:40Z" |
154,429 | Bug 154429 [64] HotSpot Virtual Machine error while starting eclipse3.3M1 | null | resolved fixed | d8d47f3 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-17T21:16:48Z" | "2006-08-19T09:33:20Z" |
153,196 | Bug 153196 Paint example draws lots of garbage on mac | When I try the paint example on the mac (double click on tab to maximize the view), I see all kinds of garbage being drawn while I'm using it. For example: - The shape tools (line, square, circle) draw two copies.. one at the pointer and another about 100 pixels up and 20 pixels left. - The pencil doesn't draw where the pointer is.. it draws up and to the left. - The text tool that stamps "Hello!" draws even if I don't click.. i.e. it's drawing a whole bunch of "Hello!"s as I move the mouse. If I restore then maximize the view again, everything appears as it should. The garbage is gone and the lines are where they should be. | resolved fixed | 858cbea | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-16T14:16:05Z" | "2006-08-08T20:46:40Z" |
151,142 | Bug 151142 pixel corruptions in table with Check flag and Images | swt 3.2 / head 20060719 windows vista beta 2 build 5384 the smaller the image the worse it looks, with image 32x32 you can not see the problem. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); Table table = new Table (shell, SWT.CHECK); int size = 32; Image image = new Image (display, 16, 16); GC gc = new GC (image); gc.setBackground(display.getSystemColor(SWT.COLOR_BLUE)); gc.fillRectangle(0, 0, size, size); gc.setForeground(display.getSystemColor(SWT.COLOR_RED)); gc.drawRectangle(0, 0, size-1, size-1); gc.dispose(); for (int i = 0; i < 60; i++) { TableItem item = new TableItem (table, SWT.NONE); item.setText("Text" +i); item.setImage(image); } shell.setLayout(new FillLayout()); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } image.dispose(); display.dispose(); } } | resolved fixed | 4690e71 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-13T15:13:40Z" | "2006-07-19T20:13:20Z" |
160,647 | Bug 160647 Table widget leaks | null | resolved fixed | 6bed35f | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-12T15:35:24Z" | "2006-10-12T10:46:40Z" |
105,764 | Bug 105764 org.eclipse.swt.custom.ControlEditor.computeBounds() is package private | Suppose I've developed a custom SWT control called Grid, which is an alternative to the Table control. To support in-place cell editing, I would like to also develop a GridEditor, which should be similar in spirit to the existing org.eclipse.swt.custom.TableEditor. My GridEditor should inherit from ControlEditor in order to reuse the code that tracks the scrollbars of the Grid control (which is a Composite, after all). However, I cannot do that, because in my GridEditor class I *have* to override ControlEditor.computeBounds(), which should calculate the bounds of the in- place editing control according to the Grid's notion of cell bounds. It looks like the single method in ControlEditor, computeBounds() which should be protected is package protected instead.. And yes, I know I have the option of not basing my GridEditor on ControlEditor at all, but why is then ControlEditor public at all? | resolved fixed | 8eb1bb4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ControlEditor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableEditor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TreeEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-10T22:24:46Z" | "2005-08-02T10:53:20Z" |
155,451 | Bug 155451 Bad drawing in Tree and Table | This happens in 3.2 and HEAD. 1) Run ControlExample 2) Select Tree or Table tab 3) select SWT.MULTI radio button First problem, the tree/table is gray instead of white 4) Ctrl+select items 0, 1, 2, 1 (again) in that order, note that item draws badly (no string). The Tree also draws badly if you expand after selecting. | resolved fixed | 0d74a1a | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TableItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TreeItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-10-02T15:55:10Z" | "2006-08-28T18:33:20Z" |
158,790 | Bug 158790 external browser can't be found on Redhat | Ciao :) Following situation: - RHEL4, U3: start eclipse - SWT style welcome shows up, but the css one should for linux! - Window->Preferences->General->Web Browser shows: "Default system Web browser" as only option for an external browser, internal browser is disabled. - An Error Log has been generated in the mean time: Internal browser is not available: No more handles [Unknown Mozilla path (MOZILLA_FIVE_HOME not set)] - Back in the preferences, if I click on the "Default system Web browser" to show me it's settings I get a NPE(see bottom) - Links from the welcome page into the web work just fine, i.e. they open firefox as browser and walk it to the link. Now, my system, Red Hat Enterprise Workstation 4, Update 3, is special, there is no mozilla installed. Firefox is also installed in a custom way, by linking the executable, firefox, into /usr/bin. It points to /opt/firefox/firefox. Now, I tried to set MOZILLA_FIVE_HOME to /opt/firefox to help Eclipse a bit, that's when the following error happened: Internal browser is not available: No more handles [NS_InitEmbedding /opt/firefox/ error -2147221164] Eclipse should: 1.) handle the error situation in a better way(more descriptive error msgs), 2.) use the /usr/bin/firefox link as external browser without the need to have firefox installed in /etc/gre.d or pointed to by MOZILLA_FIVE_HOME 3.) use my firefox (1.5.0.7) or tell me why it can't Please feel free to ask for more info if you need any.. NPE: java.lang.NullPointerException at org.eclipse.ui.internal.browser.BrowserDescriptorDialog.createDialogArea(BrowserDescriptorDialog.java:104) at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:802) at org.eclipse.jface.window.Window.create(Window.java:426) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1124) at org.eclipse.jface.window.Window.open(Window.java:785) at org.eclipse.ui.internal.browser.WebBrowserPreferencePage$3.doubleClick(WebBrowserPreferencePage.java:276) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:796) | resolved fixed | 0e5598c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/motif/org/eclipse/swt/browser/Browser.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Mozilla/gtk/org/eclipse/swt/browser/Browser.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-29T18:52:46Z" | "2006-09-26T17:00:00Z" |
158,970 | Bug 158970 Disabling parent Composite doesn't throw FocusOut for the focused child control | On OS X when disabling the parent of the focus control a FocusOut event doesn't get fired for the control losing focus. It looks like the issue is in the Control.forceFocus() and Display.getFocusControl(int). When the "oldFocus" control is attempted to be retrieved from the display the display will return null because of the following check in Display.getFocusControl(int)... if (widget != null && widget instanceof Control) { Control control = (Control) widget; >>>return control.isEnabled () ? control : null;<<< } The control is disabled so it's not returned as the focused control. Attaching test case... | verified fixed | 87e1d7f | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-27T21:59:01Z" | "2006-09-27T15:13:20Z" |
157,797 | Bug 157797 Improve javadoc of Control#addKeyListener(..) to tell about changed traversal behavior | I20060919-0010 - remove source attachment from rt.jar - open java.lang.Integer => Focus is nowhere => Tab, Ctrl+Tab, F12 all don't give the focus back In 3.2 the initial focus was on the editor tab. I would expect the focus to be on the Attach Source button (if it exists), or in the text area with the decompiled text. | resolved fixed | ceedcf5 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/events/KeyEvent.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-27T15:38:11Z" | "2006-09-19T12:46:40Z" |
103,809 | Bug 103809 WinCE: VM crash on Display.dispose() call | I have problem disposing a Display. When calling Display.dispose the VM crashes (unexpected exit or freeze). Im using swt-3.1-win32-wce_ppc-arm-j2se on a MDA2 PocketPC with IBM j9. A test with Gotive WinCE device and HHP device shows the same results. Here is my simple testcode: System.out.println("started"); Display display = new Display (); Shell shell = new Shell (display); shell.setText("demo!"); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } System.out.println("before dispose"); display.dispose (); System.out.println("end"); The crash happens here: display.dispose(); | resolved fixed | 31d850c | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Display.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Group.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ProgressBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scale.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-26T21:36:55Z" | "2005-07-14T14:06:40Z" |
157,544 | Bug 157544 List: preferred width incorrect after items are removed | If a win32/x86 List widget uses the SWT.H_SCROLL style, its horizontal scroll width is not recomputed when items are removed. This causes two problems: 1. computeSize(SWT.DEFAULT,SWT.DEFAULT,true) may return a width that is too big. 2. The list continues to display a horizontal scrollbar even when it is no longer necessary. The problem appears to be in List.setScrollWidth(int, boolean) : void setScrollWidth (int newWidth, boolean grow) { int width = OS.SendMessage (handle, OS.LB_GETHORIZONTALEXTENT, 0, 0); if (grow) { if (newWidth <= width) return; OS.SendMessage (handle, OS.LB_SETHORIZONTALEXTENT, newWidth + 3, 0); } else { if (newWidth < width) return; setScrollWidth (); } } This method compares the current horizontal extent to the maximum width of the items being added (grow=true) or removed (grow=false). If necessary it updates the horizontal extent (recalculating it from scratch when grow="false"). The problem is that the horizontal extent is always set to the maximum item width __plus 3 pixels__. Therefore, the current horizontal extent will _always_ be greater than the width of any of its items. In the case of removals, this means that the line: if (newWidth < width) return; is always true and the line: setScrollWidth (); is never executed. | resolved fixed | 8cc8a0e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/List.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-25T23:22:47Z" | "2006-09-16T01:26:40Z" |
158,462 | Bug 158462 cleanup VerifyEvent constructor | current code: public VerifyEvent(Event e) { super(e); this.character = e.character; this.keyCode = e.keyCode; this.stateMask = e.stateMask; this.start = e.start; this.end = e.end; this.text = e.text; } super is: public KeyEvent(Event e) { super(e); this.character = e.character; this.keyCode = e.keyCode; this.stateMask = e.stateMask; this.doit = e.doit; } if i don't mess it up the constructor of verifyevent could easyly be reduced to: public VerifyEvent(Event e) { super(e); this.start = e.start; this.end = e.end; this.text = e.text; } | resolved fixed | be914b6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/events/VerifyEvent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-25T18:32:48Z" | "2006-09-24T03:53:20Z" |
93,938 | Bug 93938 Combo displays selection range without focus | Editable Combos display their selection range even when they don't have focus. Text does not do this. Maybe this is just a bug in windows. It is confusing because it makes it hard to identify which control has keyboard focus. public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Combo combo = new Combo(shell, SWT.NONE); combo.setItems(new String[] {"foo","bar"}); combo.setBounds(10, 10, 90, 30); combo.setText("blah"); combo.setSelection(new Point(0, 3)); Tree tree = new Tree(shell, SWT.H_SCROLL | SWT.V_SCROLL | SWT.SINGLE); new TreeItem(tree, 0).setText("item1"); tree.setFocus(); tree.setBounds(5, 40, 100, 100); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } | resolved fixed | 863121f | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-25T17:11:55Z" | "2005-05-06T14:33:20Z" |
158,411 | Bug 158411 Regression: Alt+Numpad keystrokes broken (Part 2) | null | resolved fixed | eae7c08 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-25T15:20:56Z" | "2006-09-23T08:26:40Z" |
156,943 | Bug 156943 TootlTip display error for negative location | I currently have a Dual monitor display with my main seondary monitor to the left of my main monitor. In order to display an error balloon, I determine the location of the balloon by the following code: Point textLocation = text.getLocation(); Point textSize = text.getSize(); textLocation = new Point(textLocation.x, textLocation.y+textSize.y); Point tipLocation = Display.getCurrent().map(text.getParent(), null, textLocation); The resulting tipLocation is positive when the Eclipse product is running on my main monitor (or on the secondary monitor when it is oriented to the right of my main), but when the Eclipse app is on the secondary monitor (left of main), the balloon does not show up in the proper location. instead, it appears on the top of the screen. | resolved fixed | 3ad00be | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolTip.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-21T22:25:44Z" | "2006-09-11T21:26:40Z" |
157,865 | Bug 157865 moving column can lose sort indicator | 3.3M2, gtk+ 2.4.13 - run the ControlExample and go to either the Table or Tree tab - turn on: Multiple Columns Header Visible Sort Indicator Moveable Columns Resizable Columns - this puts the sort indicator in the first column - move the first column to follow the second column, this works fine - now move this column back to become the first ordered column and note that the sort indicator has disappeared | resolved fixed | 0a51a00 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-21T22:22:37Z" | "2006-09-19T18:20:00Z" |
149,774 | Bug 149774 [Program] Improve command handling of Program#execute(String) on Win32 | Program#execute(String) of the following extensions does not work. .bmp .zip .url | resolved fixed | 9a60b6b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/PROCESS_INFORMATION.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/STARTUPINFO.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/win32/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-20T22:43:09Z" | "2006-07-06T01:40:00Z" |
157,689 | Bug 157689 Problem loading BMP with negative height (bottom-up) | I will attach the image. | resolved fixed | 99e437f | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/WinBMPFileFormat.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/WinICOFileFormat.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-20T21:16:55Z" | "2006-09-18T20:06:40Z" |
157,914 | Bug 157914 Unable to open external Safari browser | null | verified fixed | 04d9b26 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Program/carbon/org/eclipse/swt/program/Program.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-20T14:59:18Z" | "2006-09-19T21:06:40Z" |
156,675 | Bug 156675 Repaint issue with radio buttons in preference page | Version: 3.3.0 Build id: I20060906-1200 1. Open the preference dialog 2. Select the Java preferecne page 3. resize the dialog horizontally as small as it will go 4. slowly increase the width of the dialog (from the right hand side) 5. The radio buttons in the "When opening a type heirarchy" section do not repaint correctly. hovering over the buttons forces them to replaint and the issue goes away. See screenshot for an example. | resolved fixed | 6afd0f7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Group.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-19T20:01:16Z" | "2006-09-08T10:06:40Z" |
157,292 | Bug 157292 MouseWheel event provides wrong coordinates in case of negative x coordinate (event outside widget) | FIX LRESULT org.eclipse.swt.widgets.Widget#wmMouseWheel (int hwnd, int wParam, int lParam) LINE 1975 BUG CODE: lParam = pt.x | (pt.y << 16); FIXED CODE: lParam = ((int)pt.x & 0xFFFF) | ((int)pt.y << 16); | resolved fixed | 9ffef92 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-18T21:38:59Z" | "2006-09-14T10:33:20Z" |
157,634 | Bug 157634 Sibling decorations traversed in wrong order when decorations disposed | When decorations is disposed, a list of sibling decorations is traversed in dispose method, towards the beginning of the list and then again from the end to find the one that will get focus. It seems however that the list should be traversed in the opposite direction (method traverseDecorations should be called with true instead of false) beacuse the current behaviour gives focus to the bottom decorations instead of the next-to-top-most one one the top-most one is disposed. Snippet showing the problem will follow shortly. | resolved fixed | 780634e | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-18T21:25:41Z" | "2006-09-18T14:33:20Z" |
157,478 | Bug 157478 Web services wizard scale and graph all weird | Driver: wtp-sdk-M-1.5.1-200609150551.zip When I bring up the Web service wizard with this driver, the client scale is all red and the graphic for the service and client scale is partiall grey. Andrew said he saw similar problem with the 0914 driver on SLES 9.0 yesterday but the problem went away with a different JDK. I'm using "J2RE 1.4.2 IBM Windows 32 build cn142ifx-20060209 (SR4-1)" when I saw that problem on Windows XP. I had been using the same JRE before on WTP drivers and did not see this problem. We'll do a bit more problem isolation to see which JDK seems to be causing the problem and which one don't. We did not make any change in this area in recent weeks. | closed fixed | 59fc77a | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/JPEGDecoder.java", "bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/internal/image/LEDataInputStream.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-18T17:09:37Z" | "2006-09-15T14:20:00Z" |
151,348 | Bug 151348 drop text in Text widget duplicates text | gtk 2.8.17 on FC5 swt HEAD Take snippet78, replace the Label by Text(shell, SWT.SINGLE). Run the snippet, selected the 'Text' from the first widget, drag and grop on the second widget. You will get 'TextText'. Now go on the other direction, You will get 'TextTextTextText'. I think we have our DropTarget *AND* the native drop target from the gtkentry in action here. VI: Correct me if I'm wrong. The framework you added to Control#gtk_button_press_event, Text#dragDetect is there specifically to stop the native drag, right ? (Isn't here any easy way to do it? Like return 1 in the drag_data_get or drag_start?) If you need code to stop the native drag. Where is the code to stop the native drop ? is it not need ? | resolved fixed | d38e8db | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/gtk/org/eclipse/swt/dnd/DropTarget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-15T21:48:15Z" | "2006-07-20T21:13:20Z" |
151,633 | Bug 151633 [KeyBindings] 2 popups displayed on Linux | In certain controls in the workbench (like a table control), when we press Shift+F10 to display the context menu, 2 popup menus (one for the control, another one for the OS) are displayed. steps to recreate problem: - start Eclipse on Linux - give focus to the Navigtor view - press Shift+F10 | closed fixed | 2579c3d | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-15T20:09:43Z" | "2006-07-24T19:40:00Z" |
157,404 | Bug 157404 ArrayIndexOutOfBoundsException during opening code assist proposals | Using latest integration build (20060912-0800), I got this in a code assist operation: java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at java.lang.String.getChars(String.java:726) at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5532) at org.eclipse.swt.widgets.Control.wmNotify(Control.java:4143) at org.eclipse.swt.widgets.Composite.wmNotify(Composite.java:1482) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3796) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3304) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1659) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4072) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1883) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:255) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4680) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4072) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1964) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3007) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962) Steps to reproduce: 1) Check out org.eclipse.jdt.core.tests.model project from CVS (you might need other jdt core tests project in order to compile). 2) Go to org.eclipse.jdt.core.tests.model.DeleteTests 3) Go to line 43 (contains createJavaProject("P"); ) 4) On this line, code assist at the location with "|" createJavaProject(|<-- CODE ASSIST HERE "P"); 5) Once the proposals are opened, slightly move the mouse. 6) I got the .log file full of the stack trace above. | resolved fixed | 2187afd | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-15T18:09:03Z" | "2006-09-15T00:26:40Z" |
155,389 | Bug 155389 Cursors don't show coloured if created from Image | Eclipse 3.2 If you create a Cursor from an Image, the result is a black/white Cursor, even if the Image is coloured. This was seen on Mac Intel. Ben | resolved fixed | be37fa8 | ["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/graphics/Cursor.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-14T20:35:07Z" | "2006-08-28T13:00:00Z" |
108,175 | Bug 108175 TableColumn sort indicator not updating to new Font properly | Run this Snippet: public class Main { static boolean twist = true; public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Font bigFont = new Font(display, display.getSystemFont().getFontData()[0].getName(), 20, SWT.NORMAL); final Table table = new Table(shell, SWT.BORDER); table.setHeaderVisible(true); final TableColumn col = new TableColumn(table, SWT.NONE); col.setText("Column"); table.setSortColumn(col); table.setSortDirection(SWT.DOWN); Button b = new Button(shell, SWT.PUSH); b.setText("Click Me"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { if (twist) table.setFont(bigFont); else table.setFont(display.getSystemFont()); col.pack(); twist = !twist; } }); col.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } The Sort-Indicator is becoming very big, while the Font is changed to the Default Font on the Table. Ben | resolved fixed | bff1739 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-13T21:51:03Z" | "2005-08-26T21:00:00Z" |
114,244 | Bug 114244 CCombo computeSize needs to max item width with text width | The following few lines of code create a CCombo that has too small a preferred size to display all of the text: cCombo = new CCombo(shell, SWT.BORDER); for (int i = 0; i < 5; i++) { cCombo.add("item" + i); } cCombo.setText("CCombo"); This is because the string "CCombo" is wider than "item0", "item1", etc. I believe the preferred width calculation needs to take the max width of the text (if set) and the items (if set). | resolved fixed | 86d77d9 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-12T15:01:10Z" | "2005-10-28T20:06:40Z" |
155,224 | Bug 155224 NPE in CCombo.setVisible(false) if some of affected listeners has disposed it | null | resolved fixed | b440095 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-11T19:04:04Z" | "2006-08-25T12:46:40Z" |
152,769 | Bug 152769 StackOverflowError (recursive callWindowProc) | I20060803-0835 I got the SOE below after pressing Ctrl+Space in a Java Editor. The proposals list quickly showed up, but then I got the workbench "Internal error" dialog. This happens reproducably in my workspace with the code below; but I could NOT reproduce in an empty workspace. package xy; public class Try { public static void main(String[] args) { System.out.println(IFace.CONST); // content assist after I of IFace } } interface IFace { int CONST= 1 << 3; } !ENTRY org.eclipse.ui 4 0 2006-08-03 19:38:08.860 !MESSAGE java.lang.StackOverflowError !STACK 0 java.lang.StackOverflowError at org.eclipse.swt.internal.win32.OS.SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:2519) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4524) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:258) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4581) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:2519) at org.eclipse.swt.widgets.Table.setScrollWidth(Table.java:3934) at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5370) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3812) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:1166) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3304) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1646) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:258) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4581) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:258) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4581) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:191) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4578) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:258) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4581) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:2519) at org.eclipse.swt.widgets.Table.setScrollWidth(Table.java:3936) at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5370) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3812) [..] at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:1166) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3304) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1646) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1847) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:258) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3340) at org.eclipse.swt.widgets.Table.windowProc(Table.java:4581) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.UpdateWindow(Native Method) at org.eclipse.swt.widgets.Decorations.setVisible(Decorations.java:1348) at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1493) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.displayProposals(CompletionProposalPopup.java:1053) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$24(CompletionProposalPopup.java:1018) at org.eclipse.jface.text.contentassist.CompletionProposalPopup$12.run(CompletionProposalPopup.java:1416) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.incrementalComplete(CompletionProposalPopup.java:1393) at org.eclipse.jface.text.contentassist.ContentAssistant.showPossibleCompletions(ContentAssistant.java:1581) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$AdaptedSourceViewer.doOperation(CompilationUnitEditor.java:173) at org.eclipse.ui.texteditor.ContentAssistAction$1.run(ContentAssistAction.java:82) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.texteditor.ContentAssistAction.run(ContentAssistAction.java:80) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:185) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.execute(LegacyHandlerWrapper.java:109) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:461) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:424) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:160) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:466) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:799) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:846) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:564) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:506) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:122) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:982) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:927) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:937) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:965) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:961) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1275) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3352) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3252) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4054) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1928) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2995) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:401) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 16d3df9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-08T20:37:52Z" | "2006-08-03T18:33:20Z" |
32,683 | Bug 32683 "up" arrow button displays as "right". | Run the control example. Select the Button tab. Select: Style = SWT.ARROW, Allignment = Up Notice that the arrows are pointing right. | resolved fixed | 6de25e1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-07T16:54:07Z" | "2003-02-24T15:20:00Z" |
151,150 | Bug 151150 Multi Selection Tree only last 2 items are 'really' selected | swt 3.2 / head 20060719 windows vista beta 2 build 5384 Multi Selection Tree only the 2 last items selected are really selected, note that the tree doesn't redraw right away to during selection. You will need to redraw the tree (or press F2 in the snippet) after every selection so it shows that items are really selected. Weird: the items selected using the shift key work. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Tree tree = new Tree(shell, SWT.MULTI); for (int i = 0; i < 60; i++) { TreeItem item = new TreeItem (tree, SWT.NONE); item.setText("Item " + i); } display.addFilter(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { if (event.keyCode == SWT.F2) { TreeItem[] items = tree.getSelection(); for (int i = 0; i < items.length; i++) { System.out.println(items[i].getText()); } } System.out.println("------------"); tree.redraw(); } }); shell.setLayout(new FillLayout()); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | c41f2cb | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T22:37:54Z" | "2006-07-19T23:00:00Z" |
153,841 | Bug 153841 Macintosh only: values in some text fields of launch configuration dialog are slightly shifted, obscuring first character | On my Mac (OSX 10.4.7), when I bring up the launch configuration dialog via Run>Run... or Run>Debug..., some text fields initially show up with the value in the text field shifted just a tiny bit so that all or part of the first character in that text field is hidden. When you click in the text field, the contents immediately shift so that the entire text is visible. Although the following repro steps involve the JDT, the actual bug is not in the JDT -- it is somewhere else. Perhaps the Eclipse core, or perhaps SWT or JFace, I don't know. Repro steps: 1. Run any plain Java project, e.g. a hello-world app or whatever. This will have the side effect of creating a launch configuration for that project, and making it the "default" launch config (the first one that will be shown next time you bring up the launch config dialog). 2. Bring up the launch config dialog, via Run>Debug... or Run>Run... Results: Notice that in the "Name:" field at the top of the dialog, the name of the launch configuration is shifted just a bit, so that all or part of the first character is hidden. Also, same thing in the "Project:" and "Main class:" fields in the Main tab. This bug only seems to reproduce when the dialog first appears. If you click over to any other launch config, or to any other tab of the current launch config, then the problem fixes itself. | resolved fixed | 34d7113 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T22:08:49Z" | "2006-08-15T00:00:00Z" |
154,928 | Bug 154928 CCombo should fire Verify events | Combo does it, so CCombo should too | resolved fixed | 2ddfa3b | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CCombo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T19:30:13Z" | "2006-08-23T19:06:40Z" |
154,732 | Bug 154732 GraphicsAntialiasingTab fails under both Motif and GTK | When selecting the GraphicsAntialiasingTab, the GraphicsExample application dies. Steps for reproducing: - Check out org.eclipse.swt.examples from CVS - Put the attached file in your workspace under org.eclipse.swt.examples.graphics - Run the graphics example - In the tree, expand "Antialiasing" and select "Graphics" On Motif, the following output is displayed: X connection to :0.0 broken (explicit kill or server shutdown). On GTK, the following output is displayed: The application 'SWT' lost its connection to the display :0.0; most likely the X server was shut down or you killed/destroyed the application. | resolved wontfix | 3456723 | ["examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/GraphicAntialiasTab.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T17:16:08Z" | "2006-08-22T18:06:40Z" |
154,736 | Bug 154736 All Fonts appear the same | When using fonts in the GraphicsExample application, there does not seem to be any difference in appearance among different fonts names. Steps for reproducing: - Check out org.eclipse.swt.examples from CVS - Put the attached file in your workspace under org.eclipse.swt.examples.graphics - Run the graphics example - In the tree, expand "Font" and select "Custom Font" - Select different fonts in the drop-down and pay attention to their appearance. - Problem: they all look the same | resolved fixed | 1d25cf4 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T16:50:32Z" | "2006-08-22T18:06:40Z" |
154,746 | Bug 154746 Path Clipping does not work properly on Mac, GTK and Motif | When applying a path clipping in the GraphicsExample application, the clipping does not appear as expected. Steps for reproducing: - Check out org.eclipse.swt.examples from CVS - Put the attached file in your workspace under org.eclipse.swt.examples.graphics - Run the graphics example - In the tree, expand "Clipping" and select "Path Clipping" - Select different items in the drop-down menu. - Note: that these clipping examples appear correctly on Windows. | resolved fixed | 0385a7e | ["bundles/org.eclipse.swt/Eclipse", "SWT/cairo/org/eclipse/swt/graphics/Path.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T16:22:26Z" | "2006-08-22T18:06:40Z" |
150,300 | Bug 150300 path.close() has no effect | In the attached file, path.close() has no effect. | resolved fixed | 884a6f8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Path.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T15:52:48Z" | "2006-07-11T20:33:20Z" |
156,213 | Bug 156213 BDI: Styledetxt setOrientation does not work, on the fly | I am trying to use the setOrientation function on the styledText widget. When using it, it does not show the carret at the correct position, and when changing from RTL -> LTR and back it draws the text on both sides (try selecting the text and on the othr side it is hidden , until u highlight it). In the example I add 3 styled texts. 1. initialized as LTR, 2. initialized as RTL 3. initialized without the flag A listener is put in place so when Ctrl+Shift is pressed, the GO changes. in widgets 1,2 the whole widget is disposed and a new one replaces it (this is the workaround). widget 3, only sets the setAligment, and setOrientation - this does not work ok. The workaround (create new widget) works, but is not good enough. <code> package test; import org.eclipse.jface.viewers.IStructuredContentProvider; import org.eclipse.jface.viewers.ITableLabelProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.jface.viewers.Viewer; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.custom.VerifyKeyListener; import org.eclipse.swt.events.VerifyEvent; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.FormAttachment; import org.eclipse.swt.layout.FormData; import org.eclipse.swt.layout.FormLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; import org.eclipse.ui.ISharedImages; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.part.ViewPart; public class View extends ViewPart { private StyledText styledTextNotWorking; private StyledText styledText; private StyledText styledTextRTl; public static final String ID = "test.view"; class VeryListener implements VerifyKeyListener { public void verifyKey(VerifyEvent e) { if ((e.stateMask & SWT.SHIFT) != 0 && e.keyCode == SWT.CTRL || ((e.stateMask & SWT.CTRL) != 0 && e.keyCode == SWT.SHIFT)) { StyledText widget = (StyledText) e.getSource(); Object ld = widget.getLayoutData(); String text = widget.getText(); Composite par = widget.getParent(); int offset = widget.getCaretOffset(); int newOrientation = widget.getOrientation() == SWT.RIGHT_TO_LEFT ? SWT.LEFT_TO_RIGHT : SWT.RIGHT_TO_LEFT; widget.removeVerifyKeyListener(listener); widget.dispose(); widget = new StyledText(par, SWT.MULTI | SWT.WRAP | SWT.BORDER | SWT.V_SCROLL | newOrientation); widget.addVerifyKeyListener(listener); widget.setText(text); widget.setLayoutData(ld); widget.setCaretOffset(offset); widget.setFocus(); par.layout(); } } } VeryListener listener = new VeryListener(); /** * The content provider class is responsible for providing objects to the * view. It can wrap existing objects in adapters or simply return objects * as-is. These objects may be sensitive to the current input of the view, * or ignore it and always show the same content (like Task List, for * example). */ class ViewContentProvider implements IStructuredContentProvider { public void inputChanged(Viewer v, Object oldInput, Object newInput) { } public void dispose() { } public Object[] getElements(Object parent) { return new String[] { "One", "Two", "Three" }; } } class ViewLabelProvider extends LabelProvider implements ITableLabelProvider { public String getColumnText(Object obj, int index) { return getText(obj); } public Image getColumnImage(Object obj, int index) { return getImage(obj); } public Image getImage(Object obj) { return PlatformUI.getWorkbench().getSharedImages().getImage( ISharedImages.IMG_OBJ_ELEMENT); } } /** * This is a callback that will allow us to create the viewer and initialize * it. */ public void createPartControl(Composite parent) { final Composite composite = new Composite(parent, SWT.NONE); composite.setLayout(new FormLayout()); FormData formData_1; { styledTextRTl = new StyledText(composite, SWT.V_SCROLL | SWT.BORDER | SWT.WRAP); formData_1 = new FormData(); formData_1.bottom = new FormAttachment(0, 115); formData_1.top = new FormAttachment(0, 40); formData_1.right = new FormAttachment(0, 195); formData_1.left = new FormAttachment(0, 15); styledTextRTl.setLayoutData(formData_1); styledTextRTl.setText(""); styledTextRTl.addVerifyKeyListener(listener); } Label ltrLabel; { ltrLabel = new Label(composite, SWT.CENTER); final FormData formData = new FormData(); formData.right = new FormAttachment(100, -5); formData.top = new FormAttachment(0, 5); formData.left = new FormAttachment(styledTextRTl, 0, SWT.LEFT); ltrLabel.setLayoutData(formData); ltrLabel.setText("LTR"); } Label rtlLabel; { rtlLabel = new Label(composite, SWT.CENTER); final FormData formData = new FormData(); formData.bottom = new FormAttachment(0, 160); formData.top = new FormAttachment(0, 137); formData.right = new FormAttachment(100, -5); formData.left = new FormAttachment(0, 25); rtlLabel.setLayoutData(formData); rtlLabel.setText("RTL"); } { styledText = new StyledText(composite, SWT.V_SCROLL | SWT.BORDER | SWT.WRAP | SWT.RIGHT_TO_LEFT); final FormData formData = new FormData(); formData.bottom = new FormAttachment(0, 260); formData.left = new FormAttachment(0, 25); formData.right = new FormAttachment(0, 245); formData.top = new FormAttachment(0, 195); styledText.setLayoutData(formData); styledText.addVerifyKeyListener(listener); } { styledTextNotWorking = new StyledText(composite, SWT.V_SCROLL | SWT.BORDER); styledTextNotWorking.addVerifyKeyListener(new VerifyKeyListener() { public void verifyKey(VerifyEvent e) { if ((e.stateMask & SWT.SHIFT) != 0 && e.keyCode == SWT.CTRL || ((e.stateMask & SWT.CTRL) != 0 && e.keyCode == SWT.SHIFT)) { styledTextNotWorking .setOrientation(styledTextNotWorking .getOrientation() == SWT.RIGHT_TO_LEFT ? SWT.LEFT_TO_RIGHT : SWT.RIGHT_TO_LEFT); // do we need aligment here? styledTextNotWorking.setAlignment(styledTextNotWorking .getAlignment() == SWT.RIGHT ? SWT.LEFT : SWT.RIGHT); } } }); final FormData formData = new FormData(); formData.bottom = new FormAttachment(0, 385); formData.right = new FormAttachment(0, 230); formData.top = new FormAttachment(0, 310); formData.left = new FormAttachment(0, 40); styledTextNotWorking.setLayoutData(formData); } } /** * Passing the focus request to the viewer's control. */ public void setFocus() { styledTextNotWorking.setFocus(); } } </code> | resolved fixed | d0ee461 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-06T14:57:00Z" | "2006-09-05T15:26:40Z" |
155,624 | Bug 155624 SWT Table column resize issue | If you double click the column resizer (line splitting two column in table column header) in a SWT Table with first column being numbers ,the column shrinks so that you cannot view the entire column data.This happens only for the first column with numbers. Usually the column should resize to show the datas properly .only the table column name is showed truncated.But here the column data is itself hidden. | resolved fixed | f6e507b | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/TableItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-05T22:40:27Z" | "2006-08-30T03:53:20Z" |
150,304 | Bug 150304 cubicTo and quadTo methods of Path not working | The cubicTo and quadTo methods don't seem to be drawing any lines. The attached file contains code that can be used to reproduce this situation. Steps for reproducing: - Check out org.eclipse.swt.examples from CVS - Put the attached file in your workspace under org.eclipse.swt.examples.graphics - Run the graphics example - In the tree, expand "Misc" and select "Curves" - The expected result is to see the word "SWT" spelled out using cubic and quadratic curves | resolved fixed | 1e4d9b7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Path.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-05T19:16:08Z" | "2006-07-11T20:33:20Z" |
156,027 | Bug 156027 VerifyEvent e.doit inconsistent behavior on Linux GTK | Try running the code below, type in some text, select the text, and type 'a' to trigger the e.doit=false. On Windows and Mac, after pressing 'a', the selection remains selected which is what I expect. On Linux, pressing 'a' causes the selection to go away and the caret to move to the end of the selection. Is this normal behavior? public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Shell"); shell.setSize(200, 200); shell.setLayout(new GridLayout()); Combo combo = new Combo(shell, SWT.NONE); combo.setLayoutData(new GridData(SWT.FILL, SWT.None, true, false)); combo.addVerifyListener(new VerifyListener() { public void verifyText(VerifyEvent e) { if (e.keyCode == 'a') { e.doit = false; } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } | resolved fixed | 8d021f6 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-05T19:13:17Z" | "2006-09-02T04:06:40Z" |
154,943 | Bug 154943 JavaScript error with generated content from GWT | 1) Screen cap of the JS error popup (attached in zip) 2) The page source that reproduces the problem (attached) - unzip com.ibm.threadanalyzer.zip onto any directory and open the tagui.html file 3) Eclipse 3.0.2, we can not move off this version (its required by WED) 4) Using GWT toolkit (generated html & JS). Issue only appears on SWT Browser Widget. IE and Firefox run the generated GWT code w/o any issues or status icons of JS errors. If you need anything else, just let me know. thank you. | resolved fixed | f60510e | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Browser/win32/org/eclipse/swt/browser/WebSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-05T18:51:44Z" | "2006-08-23T21:53:20Z" |
155,801 | Bug 155801 Table column tooltip disappears after scrolling | null | resolved fixed | 364f2b8 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-01T05:11:08Z" | "2006-08-31T13:13:20Z" |
155,916 | Bug 155916 Classes in org.eclipse.swt.opengl have warning comments in Javadoc | This package is public however the two classes in it GLCanvas and GLData have Javadoc comments that state the following: WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE Should these warnings be removed? | resolved fixed | 49c8a41 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-09-01T02:43:26Z" | "2006-09-01T00:20:00Z" |
154,052 | Bug 154052 Table tooltip does not show after selection of a table item | The tooltip for table item (per row based) stop showing as soon as you make a selection to a row. You will have to move the mouse outside of the table area (or to the column header) and then move back in, the tooltip will then be displayed. This problem only happens to the Linux OS. Same code on Windows works fine. Here is the example code for reproducing the problem: import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class TableTooltipTest { Table table; public static void main (String[] args) { final Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new FillLayout ()); final Table table = new Table(shell, SWT.BORDER | SWT.FULL_SELECTION | SWT.V_SCROLL | SWT.H_SCROLL | SWT.MULTI); table.setHeaderVisible(true); table.setLinesVisible (true); String[] titles = {"Description", "Command", "Time", "User"}; for (int i=0; i<titles.length; i++) { TableColumn column = new TableColumn (table, SWT.NONE); column.setText (titles [i]); } int count = 5; for (int i=0; i<count; i++) { TableItem item = new TableItem (table, SWT.NONE); item.setText (0, "Method List:"+i); item.setText (1, "AdminApp.List(xxxx-"+i+")"); item.setText (2, "12:01:0"+i); item.setText (3, "user-"+i); } for (int i=0; i<titles.length; i++) { table.getColumn (i).pack (); } table.setSize (table.computeSize (SWT.DEFAULT, 200)); Listener tableListener = new Listener () { public void handleEvent (Event event) { switch (event.type) { case SWT.MouseHover: { TableItem item = table.getItem (new Point (event.x, event.y)); if (item != null) { table.setToolTipText(item.getText (1)); } } } } }; table.addListener (SWT.Dispose, tableListener); table.addListener (SWT.KeyDown, tableListener); table.addListener (SWT.MouseMove, tableListener); table.addListener (SWT.MouseHover, tableListener); shell.pack (); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | dee160f | ["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/Shell.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/TableColumn.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolBar.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-08-31T22:38:32Z" | "2006-08-16T14:53:20Z" |
155,162 | Bug 155162 Alt+Numpad_Divide issues two key events | Pressing Alt+Numpad_Divide or Shift+Alt+Numpad_Divide seems to issue two key events. Easy to see in Preferences -> Keys -> press [Shift+]Alt+Numpad_Divide in the "Key Sequence" Name field. All's OK for the other control key combinations (Shift+Numpad_Divide, Ctrl+Numpad_Divide, Shift+Control+Numpad_Divide), Numpad_Divide by itself, and also Ctrl+Alt+Numpad_Divide. This appears to be the case for Eclipse R3.1 as well. | resolved fixed | 475fd80 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-08-30T15:24:43Z" | "2006-08-25T01:40:00Z" |
155,390 | Bug 155390 Cursor ignores horizontal hotspot location and uses vertical instead | On Mac in both Cursor constructors that take a hostpot location, the following line cursor.hotSpot_h = (short)Math.max(0, Math.min(15, hotspotY - minX)); should be fixed to this: cursor.hotSpot_h = (short)Math.max(0, Math.min(15, hotspotX - minX)); | resolved fixed | beb269b | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Cursor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-08-29T15:26:44Z" | "2006-08-28T13:00:00Z" |
155,212 | Bug 155212 Misprints in SWT Win32 code ? | null | resolved fixed | 7b0ca58 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scale.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2006-08-29T01:54:33Z" | "2006-08-25T12:46:40Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.