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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
33,046 | Bug 33046 DBCS: Can type into read-only Text | RC1 - Window -> Preferences - Workbench - Fonts page - click in bottom "Description" Text area - type typical english text: nothing is shown, good - type a 2- or 4-byte chinese character: it's shown, bad I can't get a stand-alone example to do this, so perhaps this specific Text has some obscure set of style bits that is allowing this to happen. | resolved fixed | 10b55e9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-03-04T17:39:07Z" | "2003-02-25T16:20:00Z" |
33,580 | Bug 33580 Scrollable.WM_MOUSEWHEEL uses wrong variable for horizontal scroll | In the source code for org.eclipse.swt.widgets.Scrollable.WM_MOUSEWHEEL the statement that determines whether the horizontal SWT.PAGE_UP or SWT.PAGE_DOWN event is called uses the vertical vPosition rather than the horizontal hPosition. if (verticalBar != null) { int position = verticalBar.getSelection (); if (position != vPosition) { Event event = new Event (); event.detail = position < vPosition ? SWT.PAGE_UP : SWT.PAGE_DOWN; verticalBar.sendEvent (SWT.Selection, event); } } if (horizontalBar != null) { int position = horizontalBar.getSelection (); if (position != hPosition) { Event event = new Event (); event.detail = position < vPosition ? SWT.PAGE_UP : SWT.PAGE_DOWN; horizontalBar.sendEvent (SWT.Selection, event); } } | resolved fixed | b9ef36c | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Scrollable.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-03-04T03:06:29Z" | "2003-02-28T19:20:00Z" |
33,590 | Bug 33590 RC1: "Application Modal" shell style behaves incorrectly | Observed while testing the SWT Controls view within Examples. After creating a shell with Application Modal style, it is still possible to change focus to a parent shell without closing the new child. | resolved fixed | ea1e0c1 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-03-04T03:04:17Z" | "2003-02-28T22:06:40Z" |
23,419 | Bug 23419 [OLE] Do not get scrollbars in Excel | You do not get the scrollbars in an embedded Excel editor. You do for Word. STEPS 1) Copy headingtext.xls from the attachment to this PR 2) Open it in an OLEEditor 3) Resize to get it to show up properly and select Sheet2 4) There will be no scrollbars even though there is data you need to scroll to | resolved fixed | 33998f7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-03-03T20:38:06Z" | "2002-09-11T16:00:00Z" |
32,855 | Bug 32855 [Coolbar] Unnecessary flash when remove/add last item | RC1 Run the attached test case. Press the Delete/Add button, which removes the last coolitem, then adds a new coolitem at the end. Notice that the 3 coolitems before the deleted/added item are erased and redrawn. This causes unnecessary flash and is quite apparent in Eclipse. Note that the test case includes a delay to illustrate the point. If you take out the delay you will see flash. | resolved fixed | 0b01cef | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/CoolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-28T22:50:11Z" | "2003-02-24T23:40:00Z" |
28,514 | Bug 28514 Character positions differ between selected and unselected text | I20021216 - range select text in Java editor Observe: characters jump when being redraw The problem is rounding errors introduced when converting CG coordinates into SWT's integer coordinates while performing an incremental line update. | resolved fixed | c3ff7e3 | ["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 | "2003-02-28T21:25:08Z" | "2002-12-17T15:46:40Z" |
32,122 | Bug 32122 Cannot insert lines into new file code template (regression failure) | I can edit the templates for new Java files (Java -> Code Generation -> Code and Comments -> Code -> New Java Files) but I cannot insert a new blank line. Whilst I am editing, the [OK] button is still highlighted with the result that when I press return, the [OK] button is pressed and no new line appears. I believe that this functionality has been broken in M4->M5, since in M4 the default [OK] button did not respond to return characters. | verified fixed | 88b4b83 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Composite.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-28T15:41:41Z" | "2003-02-18T14:53:20Z" |
32,856 | Bug 32856 [Cell Editors] Can not see what value I am typing in the Properties | The "Value" field in property sheets does not scroll properly when entering a value longer than the column size. It does scroll but it's behind, e.g. if I type "org.eclipse.longtestcase.abcd", after I type "d" it may only scroll up to "a" - so I don't see what I am typing. This happens on WinXP, but on GTK it scrolls correctly. | resolved fixed | 5ee70b3 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/TableTree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-28T15:14:04Z" | "2003-02-24T23:40:00Z" |
33,057 | Bug 33057 RC1 No caret in editor | I've just started using RC1, and the text editors (such as the Java editor) no longer show a caret indicating the insertion point (on Solaris; things seem fine in Win2K). I do have the caret in dialog boxes, such as the Find dialog. Is there some preference I have set worong? | resolved fixed | 87e7066 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Caret.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-27T21:19:01Z" | "2003-02-25T19:06:40Z" |
33,022 | Bug 33022 NPE in FontDialog | - invoke a FontDialog through Eclipse - in the first Combo add a "k" to "Western" - get the attached NPE | resolved fixed | 2ad35a7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/FontDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-26T20:00:49Z" | "2003-02-25T16:20:00Z" |
31,187 | Bug 31187 Selection by mouse drag is out of kilter | Running on MacOSX 10.2.3 Using eclipse-SDK-I20030129-macosx-carbon.zip Create a new plugin, say one of the defaults. Then attempt to edit the file plugin.xml by selection lines with the mouse. Have fun as the selection area goes out of alignment with the mouse position. | resolved fixed | 79d12ae | ["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 | "2003-02-26T19:00:22Z" | "2003-02-07T01:06:40Z" |
33,119 | Bug 33119 nullpointer dispose table column | When I dispose a table column I get a nullpointer at line 518 in table.java. My table model is only text (no column images). Since I am not using images in my table, public Image getColumnImage(Object obj, int index), returns null which causes the nullpointer. If I return a "bogus" image, the problem is resolved. This did not happen in 2.0.x and is new in 2.1.x (M5 is the first 2.1 version I have used). | resolved fixed | 011cd4e | ["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 | "2003-02-25T21:47:00Z" | "2003-02-25T21:53:20Z" |
31,946 | Bug 31946 Moving CoolBarItems leaves temporary cheese | I20030214 - start Eclipse - move CoolBarItems Observe: while dragging CoolbarItems leave temporary cheese which is cleared when releasing the mouse | resolved fixed | b9ecbb7 | ["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 | "2003-02-20T23:22:22Z" | "2003-02-15T17:26:40Z" |
29,887 | Bug 29887 [GTK] Classes 'browser' not initialized in 'Add Type' and 'Add Task' dialogs | Build 20030115+ Linux-GTK The classes 'browser' (tree viewer of the folders and list viewer of the classes) of the 'Add Type' and 'Add Task' dialogs are empty when the dialog are displayed. I have to select a jar file in the drop down list to display something in the 'browser', even if the jar file I want to use is the one which is already selected (or maybe it is not selected). The 'browser' should be initialized with the content of the jar file selected by default. | verified fixed | 3ec53a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-20T22:22:04Z" | "2003-01-21T14:40:00Z" |
29,837 | Bug 29837 [Contributions] Combo control does not show on GTK toolbar, works fine on Win and Motif | I created a combo control on the toolbar by extending ControlContribution and creating the control content with a Label and Combo. Via my editor MultiPageEditorActionBarContributor, I add this control to the platform toolbar. This works great on Windows, and works pretty well on motif (except that the combo is not properly vertically centered on motif. But on Linux GTK, all I get is a blank space big enough to hold the label+combo, but no display. The same problem shows on GTK for 2.0.2 and 2.1M4. I am running RedHat 8.0, with basic new installation of the OS config. Also JDK 1.4.1. Here is a copy of the offending code: import org.eclipse.jface.action.ControlContribution; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.ToolBar; import org.eclipse.ui.IEditorPart; public class ZoomComboAction extends ControlContribution { public static final String FIT_TO_SCREEN = "Fit"; private String[] zoomValues= new String[] { FIT_TO_SCREEN, "30", "50", "80", "100", "120" }; private Label label; private Combo zoomCombo = null; public ZoomComboAction() { super("ZoomComboAction"); } public void setEnabled( boolean enabled ) { if( label != null ) { label.setEnabled(enabled); zoomCombo.setEnabled(enabled); } } protected Control createControl( Composite parent ) { Composite wrapper = new Composite(parent, SWT.NONE); GridLayout layout = new GridLayout(); layout.numColumns = 2; layout.marginHeight = 1; wrapper.setLayout(layout); label = new Label(wrapper, SWT.NONE); label.setText("Zoom"); zoomCombo = new Combo(wrapper, SWT.DROP_DOWN | SWT.BORDER); GridData gd = new GridData(GridData.FILL_HORIZONTAL); zoomCombo.setLayoutData(gd); zoomCombo.setTextLimit(3); zoomCombo.setItems(zoomValues); return wrapper; } } | resolved fixed | 06f4740 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/ToolItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-20T18:51:35Z" | "2003-01-20T22:00:00Z" |
29,198 | Bug 29198 Difficult to change character case of cached input values | I used the incorrect case for a character in a cvs repository path that I was defining. It is subsiquently impossible to enter the correct path because Eclipse insists on inserting the incorrect value into the field and does not allow me to type over the incorrect character (when I replace the character it is immediatly reverted back to the incorrect character and the cursor is thrown to the end of the field). In the end I managed to get it to work by manually editing the file org.eclipse.team.cvs.core/.cvsProviderState, but this was inconvenient to say the least. | resolved fixed | 545b41d | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-19T18:32:08Z" | "2003-01-09T11:00:00Z" |
31,627 | Bug 31627 DBCS: Perspective change caused core dump after adding DBCS project to the workspace | Language: Japanese Build driver: eclipse-SDK-I20030211-linux-gtk OS: RedHat8(Japanese: locale ja_JP.eucJP), gtk 2.2 JDK Ver.: IBM JDK1.3.1 + SR3 Summary: DBCS: Perspective change caused core dump after adding DBCS project to the workspace Description: Steps to recreate problem: 1. Create a project using DBCS characters ((\u3042\u3044\u3046\u3048 \u304A)) 2. Right-click the project and select Team -> Share project... 3. Select the CVS repository 4. Select the "Use project name as module name" and Finish 5. Select the project at the Synchonize view 6. Right-click on the project and select "Add Version Control" 7. Right-click on the project and select "Commit" 8. Right-click on the project and select "Delete" (Select "also delete contents under /workspace folder name") 9. Change the perspective to CVS perspective 10. Expand the repository and HEAD 11. Right-click on the DBCS project and Select "Check Out As Project" 12. Click "Resource Perspective" icon at the shortcut bar. <<Error>> After step 12, the workbench core dump. Please refer the attachment (cvs_defect.zip) <<Expected Result>> It should change the perspective successfully without core dump. | closed fixed | 98381b1 | ["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 | "2003-02-18T23:30:14Z" | "2003-02-12T06:06:40Z" |
31,950 | Bug 31950 StyledText - Shift+UP broken in StyledText control | In 2.1, StyledText (I assume) was changed to remember the horizontal location of the cursor as the user presses UP and DOWN arrow keys. This is great for general navigation (thanks). But this remembered location should be forgotten when selecting text with the Keyboard. StyledText is not showing platform behavior. STEPS: <Given the following scenario, including blank lines> String <<CARET>>value = "abc"; </End scenario> With the caret in the location indicated, press UP key, then SHIFT+DOWN. The expectation is that only the blank line is selected. Instead, the blank line and the beginning of the next line up until the cached location is selected. | resolved fixed | 4e8b185 | ["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 | "2003-02-18T22:31:42Z" | "2003-02-15T20:13:20Z" |
31,857 | Bug 31857 No icons in Labels | I20030213 Error and Information dialogs don't show icons | resolved fixed | 9b4aa60 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Label.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-18T18:50:23Z" | "2003-02-14T08:06:40Z" |
30,905 | Bug 30905 Add Menu.setRedraw(boolean) API | On windows, when the workbench removes a number of menu item and adds a number of menu item, it causes the menu bar to flash a lot. I hack the Menu class to have a setRedraw(boolean) method, and by doing so, it eliminated the flash we were seeing. Is it possible to have this API? It is important to overall feel of the workbench. Can this be fixed for 2.1? | resolved fixed | b0f874d | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Decorations.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/Menu.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-18T17:26:03Z" | "2003-02-04T20:20:00Z" |
30,924 | Bug 30924 StyledText - StyleRange hashCode throws NullPointerException | The implementation of StyleRange's hashCode method assumes the object has a foreground and background color. This is a bad assumption. When trying to put StyleRanges without a foreground or background color into a java.util.Set, a NullPointerException is thrown. | resolved fixed | 62774f6 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyleRange.java", "tests/org.eclipse.swt.tests/JUnit", "Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_custom_StyleRange.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-18T16:41:38Z" | "2003-02-04T23:06:40Z" |
16,808 | Bug 16808 Icon in Windows taskbar incorrect | 20020521 XP 1. Run eclipse from within eclipse. 2. Note the window icon in the runtime workbench is correct but occasionally its icon in the windows taskbar is incorrect (its just the default windows icon) 3. Changing perspectives in the runtime workbench changes the icon to be correct (changing perspectives updates the window title but not the icon as far as I know). I don't know why this happens sometimes and not others but it seems to happen at least 20% of the time I launch. | resolved wontfix | da27e97 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/win32/org/eclipse/swt/internal/win32/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-18T14:18:12Z" | "2002-05-22T15:06:40Z" |
31,823 | Bug 31823 Clicking on partially obscured tab should scroll it into view | build I20030211 You commonly get the last visible editor tab partially obscured by the scroll arrows, making the close box inaccessible. You have to use the context menu to close the editor. Either the tabs should never get obscured (the preferred solution, but there was already a PR for this which was marked WONTFIX), or a single click on the tab should scroll to reveal it fully. | resolved fixed | 1f9b41d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-17T22:19:07Z" | "2003-02-13T21:00:00Z" |
22,767 | Bug 22767 toolbar looks very ugly with Win XP's lnf (using manifest file) | null | resolved fixed | 2e33865 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/ToolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-17T20:41:35Z" | "2002-08-23T13:40:00Z" |
31,568 | Bug 31568 TableLayoutComposite and Table.showItem don't mix | 20030206 in this test case, the item is not revealed import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; import org.eclipse.jface.viewers.ColumnWeightData; import org.eclipse.jdt.internal.ui.util.TableLayoutComposite; public class A { private static final int ROW_COUNT= 8; public static void main(String[] args) { Display display= new Display(); Shell shell= new Shell(display); shell.setLayout(new GridLayout()); TableLayoutComposite layouter= new TableLayoutComposite(shell, SWT.NONE); layouter.addColumnData(new ColumnWeightData(60, true)); layouter.addColumnData(new ColumnWeightData(40, true)); Table table= new Table(layouter, SWT.MULTI | SWT.BORDER | SWT.FULL_SELECTION | SWT.CHECK); GridData gd= new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_BEGINNING); gd.heightHint= table.getHeaderHeight() + (table.getGridLineWidth () + table.getItemHeight()) * ROW_COUNT; layouter.setLayoutData(gd); TableColumn column0= new TableColumn(table, SWT.NONE); column0.setText("first column"); TableColumn column1= new TableColumn(table, SWT.NONE); column1.setText("second column"); table.setHeaderVisible(true); table.setLinesVisible(true); TableItem[] items= new TableItem[19]; for (int i= 0; i < items.length; i++) { TableItem item= new TableItem(table, SWT.NONE); item.setText(new String[]{"Item " + i, "" + i}); items[i]= item; } table.showItem(items[18]); shell.setSize(300, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | 9071138 | ["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 | "2003-02-17T20:25:35Z" | "2003-02-11T19:00:00Z" |
21,469 | Bug 21469 Accessibility - Tabbing causes a button to become the default | I am currently running the F4 build of Eclipse 2.0. I have an editor with some push buttons on them. As I tab through my controls in my editor, I get to a push button which is not specified as being the default button. When tabbing into it, it gets the default. when tabbing out of it, it loses the default. This is working fine, but the next time I tab in, it gets the default, but when I tab out, the default remains. If I tab to another button and press enter, I get the action for the default button, which is wrong because it is not the one with the focus. Here is a proposed code fix. This fixes my problem. I am not sure if it breaks other things???: org.eclipse.swt.widgets.Decorations void setDefaultButton (Button button, boolean save) { if (button == null) { added==> if (defaultButton != null && !defaultButton.isDisposed()) added==> defaultButton.setDefault(false); if (defaultButton == saveDefault) return; } else { if (button.isDisposed()) error(SWT.ERROR_INVALID_ARGUMENT); if ((button.style & SWT.PUSH) == 0) return; if (button == defaultButton) return; } . . . I added two lines above. | resolved fixed | 2bae562 | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Decorations.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Decorations.java", "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 | "2003-02-17T16:53:35Z" | "2002-07-10T19:40:00Z" |
30,570 | Bug 30570 DBCS - GB18030: Input GB18030 characters as run arguments cause eclipse for motif crash. | Bug: Input GB18030 character as run arguments cause eclipse for motif crash. Language: Simplified Chinese Testcase: RD2 Build driver: 200212181304 Stable Build (M4) for Motif OS: RedHat 8.0 JRE Version: J2RE 1.3.1 IBM build cxia32131-20021102 (JIT enabled: jitc) J2RE 1.4.0 IBM build cxia32140-20020917a (JIT enabled:jitc)) Summary: When I begin to run a java class, and input GB18030 characters as project arguments, eclipse crashed. Steps to recreate problem: 1.creat a new project and build it correctly. 2.Click menu Run->Run..., then the "Run window" show up. 3.select "Arguments" tab, input some GB18030 characters as the Program arguments. 4.Click run button to run class. <<Error>> In step 3, I can wake up IME, but after I input a GB18030 character, the eclipse crashed.(As is shown in RunCrash.jpg) <<Expected Result>> Could run project correctly. Comments I can use GB2312 as program arguments correctly. In Eclipse with GTK build, this function is ok. | verified fixed | bc2188d | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-14T16:24:02Z" | "2003-01-30T04:13:20Z" |
23,370 | Bug 23370 CLabel needs to allow transparent background for Mac OS X | Buttons in views are drawing with a white box background. The main toolbar buttons seem to be drawing correctly. See attached screenshot. | resolved fixed | c287288 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CLabel.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-13T22:05:15Z" | "2002-09-10T15:00:00Z" |
17,057 | Bug 17057 Outliner: focus causes select causes horizontal scroll | Build: F1 Create a java project Create a java package named a.really.longish.name.that.exhibits.the.bug Create a java class named Foo in a.really.longish.name.that.exhibits.the.bug Notice that the outliner selects the package name, and scrolls it. Now I can't see the icons that help me determine the type of the element. This appears to only happen the first time I open an editor. I would expect the icons to be displayed as well as the name when the auto selection occurs. | resolved fixed | acd650a | ["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 | "2003-02-12T23:26:08Z" | "2002-05-22T20:40:00Z" |
31,566 | Bug 31566 FontData "equals()" and "hashcode()" methods do not consider height of the the fontdata | Checking the height of logfont is not enough. The height attribute should also be considered when equating two fontdatas and in hashcode. | resolved fixed | 8b1dd42 | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/graphics/FontData.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-12T18:50:45Z" | "2003-02-11T16:13:20Z" |
29,607 | Bug 29607 [Cell Editors] usability: ComboBoxCellEditor unusable on GTK | 20030114 i cannot select anything from any comboboxcelleditor on gtk - it either does not expand at all or expands and hides the list right away this affects the task list as well as java editor hovers pref page | resolved fixed | 958434e | ["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 | "2003-02-11T19:00:27Z" | "2003-01-16T09:40:00Z" |
25,446 | Bug 25446 Tree Shift-Click not working when item collapse changes selection | Build 2.1-M2 I noticed in various occasions that shift-clicking would not work (would just perform a selection of one item) mostly in the navigator/package view tree views. Redoing the selection is usually working fine, but it is painfull when this behavior cannot be trusted. | resolved fixed | 7a60d99 | ["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 | "2003-02-10T19:51:42Z" | "2002-10-28T10:13:20Z" |
31,267 | Bug 31267 label and text box get the wrong order | 20030207 win2000 1. Select a static method and choose 'Move Method' 2. In the wizard thatb opens, enter a letter: An error is shown 3. Use the mouse to drag the lower right corner to the top right, so the dialog has the smallest size possible. 4. Whit the mouse button still pressed, make the size large again. The label and the text field have swapped the location | resolved fixed | 5732534 | ["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 | "2003-02-07T20:46:31Z" | "2003-02-07T12:13:20Z" |
24,372 | Bug 24372 StyledText - StringIndexOutOfBoundsException in ControlExample | build 20021001 To reproduce: -Go to the text tab of the ControlExample -Enable SWT.WRAP style -In the StyledText widget select the word One (I double click) -Select bold for the word -Set the size to 100x100 ->StringIndexOutOfBoundsException in DefaultContent.getTextRange Stack trace: Stack trace: java/lang/Throwable.<init>()V java/lang/String.<init>([CII)V org/eclipse/swt/custom/DefaultContent.getTextRange(II)Ljava/lang/String; org/eclipse/swt/custom/WrappedContent.getLine(I)Ljava/lang/String; org/eclipse/swt/custom/StyledText.wordWrapResize(I)V org/eclipse/swt/custom/StyledText.handleResize (Lorg/eclipse/swt/widgets/Event;)V org/eclipse/swt/custom/StyledText$15.handleEvent (Lorg/eclipse/swt/widgets/Event;)V org/eclipse/swt/widgets/EventTable.sendEvent(Lorg/eclipse/swt/widgets/Event;) V org/eclipse/swt/widgets/Widget.sendEvent(ILorg/eclipse/swt/widgets/Event;)V org/eclipse/swt/widgets/Widget.sendEvent(I)V org/eclipse/swt/widgets/Control.WM_SIZE(II) Lorg/eclipse/swt/internal/win32/LRESULT; org/eclipse/swt/widgets/Scrollable.WM_SIZE(II) Lorg/eclipse/swt/internal/win32/LRESULT; org/eclipse/swt/widgets/Composite.WM_SIZE(II) Lorg/eclipse/swt/internal/win32/LRESULT; org/eclipse/swt/widgets/Control.windowProc(III)I org/eclipse/swt/widgets/Display.windowProc(IIII)I org/eclipse/swt/internal/win32/OS.DefWindowProcW(IIII)I org/eclipse/swt/internal/win32/OS.DefWindowProc(IIII)I org/eclipse/swt/widgets/Scrollable.callWindowProc(III)I org/eclipse/swt/widgets/Control.windowProc(III)I org/eclipse/swt/widgets/Display.windowProc(IIII)I org/eclipse/swt/internal/win32/OS.SetWindowPos(IIIIIII)Z org/eclipse/swt/widgets/Control.setBounds(IIIII)V org/eclipse/swt/widgets/Control.setBounds(IIII)V org/eclipse/swt/layout/GridLayout.layout (Lorg/eclipse/swt/widgets/Composite;Z)V org/eclipse/swt/widgets/Composite.WM_SIZE(II) Lorg/eclipse/swt/internal/win32/LRESULT; org/eclipse/swt/widgets/Group.WM_SIZE(II) Lorg/eclipse/swt/internal/win32/LRESULT; org/eclipse/swt/widgets/Control.windowProc(III)I org/eclipse/swt/widgets/Display.windowProc(IIII)I org/eclipse/swt/internal/win32/OS.CallWindowProcW(IIIII)I org/eclipse/swt/internal/win32/OS.CallWindowProc(IIIII)I org/eclipse/swt/widgets/Group.callWindowProc(III)I org/eclipse/swt/widgets/Control.windowProc(III)I org/eclipse/swt/widgets/Display.windowProc(IIII)I org/eclipse/swt/internal/win32/OS.EndDeferWindowPos(I)Z org/eclipse/swt/widgets/Composite.resizeChildren(Z [Lorg/eclipse/swt/internal/win32/WINDOWPOS;)Z org/eclipse/swt/widgets/Composite.resizeChildren()V org/eclipse/swt/widgets/Composite.setResizeChildren(Z)V org/eclipse/swt/widgets/Composite.layout(Z)V org/eclipse/swt/widgets/Composite.layout()V org/eclipse/swt/examples/controlexample/Tab.setExampleWidgetSize()V | resolved fixed | 4212fba | ["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 | "2003-02-06T21:16:42Z" | "2002-10-04T00:06:40Z" |
25,383 | Bug 25383 Variant needs a dispose method | IUnknown and IDispatch interfaces being leaked. | resolved fixed | 9dd23b4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "OLE", "Win32/win32/org/eclipse/swt/ole/win32/Variant.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-02-04T23:16:51Z" | "2002-10-25T15:33:20Z" |
30,537 | Bug 30537 setSelection(allItems) not working on GTK | Eclipse 20030129 GTK 2.0.2 Open two or more editors, then open the editor dropdown (ctrl-shift-w). Now right click on the dropdown and select 'select all'. Note only the first file is selected. Verified using stable M4 build that this functionality worked, and the code calling setSelection(allItems) (org.eclipse.ui.workbench editorList#SelectionAction#run) has not changed. Only an issue on GTK. Have not verified on GTK 2.0.6, need to update my linux machine. | resolved fixed | d1f793a | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-29T22:59:50Z" | "2003-01-29T19:53:20Z" |
29,546 | Bug 29546 Project rebuild cannot write over .class files | I have a classes directory full of files that come pre-shipped to me. My own class files live in the same tree as additional files. To make this work, I have to deselect the Project's "Allow to clean output folders" setting. However now the project does not clean output files, a rebuild cannot be performed. Steps to reproduce: - we'll basically create a new project with one class. 1) Make a "test" directory, with subdir "classes/otherpackage". Put a dummy "fred.class" file in the otherpackage directory (it can just be a text file in reality, doesn't matter) 2) In Eclipse, create a new project with project contents being the "test" directory from step 1. Browse to the "classes" directory as the default output dir. You immediately get an error on the project about "Problems encountered while deleting resources". Seems bogus to me (is this a bug in itself?), but there is a workaround. 3) Go to project properties->Java Compiler. Click Use Project Settings, go to the Other tab, and deselect "Allow to clean output folders..." (which isn't very good English! "Allow cleaning output folders" perhaps? ) Anyway... Click Apply, and Yes to rebuild, then OK from the project properties. All is well!! 4) Create a new class, Main.java, give it a main method. Builds great! 5) From the menu bar, click Project->Rebuild. You get an error "Class file not written". In order to workaround this, one must manually delete the .class file, Refresh the project, then rebuild. But that's a lot of trouble to go to. Be great if it would clean only the .class files relevant to the project's source but leave the rest of the classes directory alone. Or, at least compile if the class file already exists - basically fixing the "Allow to clean output folders..." checkbox is broken. Thanks! | verified fixed | bb063d4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/org/eclipse/swt/dnd/DropTarget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-29T20:32:39Z" | "2003-01-15T17:00:00Z" |
30,212 | Bug 30212 Read only text widget : can't copy selection | I20030121 Try Apple-C on read only text widget in Eclipse (e.g. the properties views from the popup on a node on the debugger). Does not work. Discussed with SN. In Text, we are running away and never handle the key event, in this case. | resolved fixed | 4b22a58 | ["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 | "2003-01-28T23:11:26Z" | "2003-01-24T23:13:20Z" |
20,755 | Bug 20755 TVT2: truncated text in dropdown for Dependencies tab in manifest editor | Description: Open a plugin.xml file in the editor, and click on the Dependencies tab. The string Loops in dependency graph appears by default in the Find field. In french, the first letter B (of Boucle) does not show. I have to select another option in the list and go back to the loop string to see it. Steps to recreate problem: 1-In the Navigator view, expand a project, select plugin.xml and open it in the editor. 2-Select the Dependencies tab I will attach a screencap of this problem. This bug was opened in response to TPRS ID=162 | resolved fixed | cfd82e6 | ["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 | "2003-01-28T19:16:39Z" | "2002-06-20T19:06:40Z" |
29,142 | Bug 29142 Hyperlinking from stackdump locks up Eclipse | I am trying to use the hyperlinking feature within the console. I an exception in my console view. I move the mouse pointer over, it turns to link. I click to the link, but then Eclipse never return from this. I have kill the Eclipse. | resolved fixed | 9912d0e | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Composite.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/Widget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-27T19:52:33Z" | "2003-01-08T15:33:20Z" |
27,629 | Bug 27629 THAI: Java Editor can not display \u0e33 (Thai character SARA UM) | Enablement testing: Thai language Build driver: eclipse-SDK-M3-win32.zip Severity: major OS: Windows XP Test case #: sniff test Summary : Thai: Java Editor can not display \u0e33 (Thai character SARA UM) Description: When I enter \u0e33 (Thai character SARA UM) to Java editor or Text editor in Eclipse, all characters in the same line are disappeared. The editor shows only a square character at that line. Note: This problem has not been found in Eclipse 2.02 Steps to create the problem 1) Create new text file or java file. 2) Copy the following Thai text (8 lines) to clipboard. ac1A1EAiE AaEAOaAOE3eO CeOoAA O12UENCia AN O1 12eON134N21OCOaOOA IAeOAeO14AOAaae1eOoOOaA aAeIaEaA aaeN IO IN eO EN IANAaEAI1OIOINaOENA OoNOA34AOOE1 a 34U OaEe e eO 1eONaIAI 3) Paste the text to Eclipse's Java editor. 4) The problem is that the line #7 that includes \u0e33 (Thai character SARA UM) are displayed as one square character. | closed fixed | c6781ea | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/internal/BidiUtil.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-23T21:00:53Z" | "2002-12-04T08:20:00Z" |
29,910 | Bug 29910 Checkbox not displayed until table scrolled | The example code below shows the problem: the checkboxes do not show up unless/until the table is scrolled. The issue is that the TableEditor is being set up before the shell is opened, meaning the Table doesn't have valid bounds yet. When the table does finally show, the cell editors are _not_ being asked to resize to the new, correct bounds of the table, causing them to not show up at all. To observe the problem, just start up the code and look for checkboxes: there are none. As soon as a scroll bar is clicked (and released, this bug is one of two I'm adding), they'll show up. ___CODE___ import org.eclipse.swt.SWT; import org.eclipse.swt.custom.TableEditor; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.swt.widgets.TableItem; public class TableEditorTest { private static int NUM_ROWS = 20; public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Table table = new Table(shell, SWT.BORDER | SWT.MULTI); table.setBounds(10, 10, 400, 200); table.setLinesVisible(true); new TableColumn(table, SWT.NONE).setWidth(100); new TableColumn(table, SWT.NONE).setWidth(100); new TableColumn(table, SWT.NONE).setWidth(100); for (int i = 0; i < NUM_ROWS; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] { "" + i, "", "" + i}); } TableItem[] items = table.getItems(); for (int i = 0; i < items.length; i++) { TableEditor editor = new TableEditor(table); Button check = new Button(table, SWT.CHECK); check.setBackground(table.getBackground()); editor.setEditor(check, items[i], 1); editor.grabHorizontal = true; } shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } | resolved fixed | b3ac5d5 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/ControlEditor.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-22T20:48:01Z" | "2003-01-21T17:26:40Z" |
24,815 | Bug 24815 cannot launch eclipse: javacore dump | I-20021015 linux-motif only (w2k and linux-motif work fine) javacore file will be attached. | resolved fixed | f607e49 | ["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 | "2003-01-22T16:26:32Z" | "2002-10-16T09:20:00Z" |
24,333 | Bug 24333 DCR - Tree.getTopItem/setTopItem | null | resolved fixed | e194e98 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.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 | "2003-01-21T22:08:04Z" | "2002-10-02T20:20:00Z" |
29,730 | Bug 29730 RowLayout.computeSize provides wrong parameter to layoutVertical | In the source code for org.eclipse.swt.layout.RowLayout.computeSize in the call to layoutVertical the 4th parameter "height" is provided wHint, where it should be hHint. protected Point computeSize (Composite composite, int wHint, int hHint, boolean flushCache) { Point extent; if (type == SWT.HORIZONTAL) { extent = layoutHorizontal (composite, false, (wHint != SWT.DEFAULT) && wrap, wHint, flushCache); } else { extent = layoutVertical (composite, false, (hHint != SWT.DEFAULT) && wrap, wHint, flushCache); } if (wHint != SWT.DEFAULT) extent.x = wHint; if (hHint != SWT.DEFAULT) extent.y = hHint; return extent; } This is still present in the source of the most recent build: N20030117 Fri, 17 Jan 2003 | resolved fixed | b7ee6f7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/common/org/eclipse/swt/layout/RowLayout.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-18T00:16:58Z" | "2003-01-17T19:00:00Z" |
29,503 | Bug 29503 DBCS:Can't sort by clicking "Description" on "Task View" | Tester:Richmond Language: (Korean/Simplfied Chinese/Traditional Chinese) Build driver: M4 Severity: normal OS: RedHat8_GTK JDK Ver.: IBM JDK1.3.1 + SR3 Test case #: Summary: DBCS:Can't sort by clicking "Description" on "Task View" Description: Steps to recreate problem: 1-From menu bar, click "Windows>Show View>Tasks" to open "Tasks View" 2-Right click on "Tasks View" and select "New Task" 3-Panel "New Task" popup and input some DBCS characters in the field "Description" 4-Click "OK" 5-Repeat step 2-4 about 3-5 times 6-Click the the title "Description" on the "Tasks View" to sort the tasks <<Error>> The tasks are not sorted. It is only happened in GTK build When clicking the title "Resource", "In Folder" and "Location", the tasks are not sorted, either. <<Expected Result>> The tasks should be sorted. | closed fixed | e5aa341 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/TableColumn.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-17T23:16:41Z" | "2003-01-15T08:40:00Z" |
29,685 | Bug 29685 DBCS: Candidate Selection Window will be disappeared at DBCS composition | Driver: M4 Platform: RedHat 8.0 locale: ja_JP.eucJP IME: kinput2 - canna STEPS 1) launch SWT Text Editor 2) go into DBCS input mode by Shift + Space key 3) input "k", "o", "u",then hit space key twice 4) Candidate Selection Window will be shown and disappered. User cannot select right DBCS words. This is serious Motif version does not have this problem. | closed fixed | f0838da | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-17T22:25:24Z" | "2003-01-17T05:06:40Z" |
29,599 | Bug 29599 DBCS: upper bar character will be padded | Driver M4 Platform RedHat 8.0, ja_JP.eucJP locale STEPS 1) set up SWT Examples manually, please refer 29509 2) copy Japanese property files that I will attache later 3) run hoverhelp, fileviewer and controlexample Some strings upper bar padded, some are not. This occurs on Motif only | closed fixed | 5d22575 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/internal/Converter.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-16T18:31:00Z" | "2003-01-16T06:53:20Z" |
28,062 | Bug 28062 Text field in dialog doesn't get focus | build 11-27, linux-gtk, ibm jre 1.3.1 - modify files locally within a project which is shared with a CVS server - Team -> Synchronize - select the file and use the context menu to choose Commit Note that the focus is not in the text part of the dialog. | resolved fixed | a0bba2d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java", "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 | "2003-01-15T18:59:18Z" | "2002-12-10T22:40:00Z" |
27,822 | Bug 27822 Package Explorer allways centers opened file | I've got build I20021204, and one annoying feature is that when a file (File1) is opened by double-clicking it in Package Explorer, it gets centered. The problem is that it takes some time to eclipse to open the file, and if I'm trying to open more than one file in the same package, I put the mouse over the next to be opened file (File2). Since the Package Explorer center File1, File2 changes place and I have to move the mouse again... I also find annoying when switching the file being edited Package Explorer center the selected file, when the file is viewable in the list. I think that the best behaviour would be: - When opening a file, Package Explorer shouldn't do anything (besides opening the file ;) ) - When switching from file in the editor, if the file is viewable in Package Explorer, change the selection to that file, without centering it - When switching from file in the editor, if file is not viewable in Package Explorer, change the selection to that file, centering it | resolved fixed | 5df79af | ["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 | "2003-01-15T17:04:49Z" | "2002-12-06T10:20:00Z" |
29,496 | Bug 29496 Cut & paste does not work in dialog text fields | Cut and paste works in the editor, but not in any text field that appears in a dialog box. I believe this was working prior to M4, but has not worked since then. When hitting one of the shortcuts (Command-C, X, or V) the help(!) menu flashes, but no cutting or pasting occurs. | verified fixed | 6f561f5 | ["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", "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 | "2003-01-15T15:20:02Z" | "2003-01-15T00:20:00Z" |
28,743 | Bug 28743 trying to see test hiearchy freezes eclipse [JUnit] | 20021218 after running a pde junit test i wanted to have a look at the hierarchy of tests (i have junit view as fast view) i opened the view and pressed on the tab the whole froze - either forever or for so long that i did not bother to wait and killed | resolved fixed | 23fa2b8 | ["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 | "2003-01-14T20:41:47Z" | "2002-12-20T16:00:00Z" |
29,427 | Bug 29427 DBCS: Can't input DBCS characters in Search dialog | Reporter: Tiffany Language: Korean/Simplfied Chinese/Traditional Chinese Build driver: eclipse-SDK-M4-linux-motif Severity: OS: RedHat 8 JDK Ver.: IBM JDK1.3.1 + SR3 Test case #: 3.1 Searching for DBCS text Summary: DBCS: Can't input DBCS characters in Search dialog. Description: Steps to recreate problem: 1. Launch workbench with motif build 2. Create a Java project step by step 3. Create a file in the project step by step 4. Enter some DBCS text in the file 5. Click Search button on the toolbar to launch the Search dialog 6. Press the File Search tab 7. In the "Containing Text" field, input some DBCS characters <<Error>> At step 7, can't input any DBCS characters in the "Containing Text" field <<Expected Result>> DBCS characters can be inputed in the "Containing Text" field successfully. | closed fixed | 98fe435 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Text.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-14T18:24:35Z" | "2003-01-14T10:26:40Z" |
28,745 | Bug 28745 Esc does not cancel tracker | 20021218 on gtk, pressing Esc does not seem to cancel drag and drop it does on windows | resolved fixed | 0cc8c83 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tracker.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-14T17:26:54Z" | "2002-12-20T16:00:00Z" |
28,967 | Bug 28967 [Editor Mgmt] no close button on last editor when editors drop-down is active | null | resolved fixed | f20889d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-14T14:49:43Z" | "2003-01-03T07:46:40Z" |
21,063 | Bug 21063 Can't drop views over some widgets | Build GM5 - Linux/GTK The GTK build of Eclipse does not seem to let you drop a view over top of a scroll bar or a table header. 1) Start a fresh copy of Eclipse. 2) From the resource perspective, drag the outline view over the Tasks view. - Notice that when the mouse cursor is over the header for the table in the tasks view, the no drop cursor is shown. Dropping the Outline view at this point will not reposition the view. 3) If the navigator view does not have a horizontal scroll bar, create a project with a very long name so that the navigator does show a scroll bar. 4) Drag the outline view from on top of the tasks view to the bottom of the navigator view. - Notice that when the mouse cursor is over the horizontal scroll bar, the no drop cursor is shown. - Notice also that the space on the screen where the dock below cursor is very small. - Notice that even when the Dock below cursor is being shown that dropping the view does not always reposition the view. This is not the behaviour that I have seen when using Motif, or when on Windows. | resolved fixed | 6b926f9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-13T17:15:24Z" | "2002-06-27T15:00:00Z" |
29,252 | Bug 29252 Accelerators are not disabled when the toolbars and menus are on GTK | When the toolbars and menus are disabled in the UI due to a UI blocking operation being run the accelerators are still active. STEPS 1) Open a java editor 2) Save it using Ctrl-S - the menu and toolbars are disabled 3) Hit Ctrl-B (the build) while the menu bars are disabled - this will get serviced even though the UI should not be accepting events. | resolved fixed | 2fae75b | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-10T22:21:52Z" | "2003-01-09T22:06:40Z" |
227,099 | Bug 227099 Package Explorer 'Hierarchical' package presentation | Up till eclipse 3.3, if i had a project with packages that start like - com.mycompany.product.core and all other packages below it, the hierarchical view would show an entire node for com.mycompany.product.core and all other packages below it in their own nodes. In 3.4m6 however, in hierarchical view, each of com, mycomapny, product,core get their own nodes. Since actions like 'format' and 'cleanup' cannot be applied to packages that dont contain any classes, like 'com' I am unable to apply formatting to the entire project without selecting each package under 'core' individually'. Why was this change made, the previous method of collapsing the empty packages into one node was far more intuitive. | resolved fixed | 838fecf | ["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 | "2003-01-10T18:15:49Z" | "2008-04-15T09:00:00Z" |
27,677 | Bug 27677 [Key Bindings] ctrl-f7 not working | build 2002-11-27-gtk, ibm jre 1.3.1 ctrl-f7 brings up a box but it is not populated with the view name entries. keep pressing ctrl-f7 multiple times does seems to cycle between the views, though | resolved fixed | 70abad6 | ["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 | "2003-01-09T19:13:13Z" | "2002-12-04T16:40:00Z" |
29,208 | Bug 29208 Gtk directory dialog behaves like a file dialog | - it's too easy to get a null result when a directory has been selected but a file hasn't - there are many spurious file-related widgets that are inappropriate | resolved fixed | c878e19 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/GtkFileSelection.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-09T16:44:03Z" | "2003-01-09T16:33:20Z" |
25,843 | Bug 25843 Info pops do not work for Red Hat 8.0. | While developing in Red Hat 8.0 using eclipse 2.0.1 with Version: 2.0.1 Build id: 200208291828 Whenever I open a help infopop by pressing F1, the infopop does not work. The links cannot be accessed, and the mouse does not even change cursors on hovering over them. Furthermore, I cannot return to the workbench to continue working, the infopop remains "on top" of my workbench and will not go away. The only way I can make the infopop go away is to switch Linux workspaces, either by clicking on one of the four available in the menu bar or by pressing <ctrl>+<alt>+<an arrow key> and then returning to the Linux workspace that contains my eclipse workbench. When I return using this manner the infopop is gone. | resolved fixed | e094a20 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Shell.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-08T22:32:36Z" | "2002-11-07T17:26:40Z" |
28,812 | Bug 28812 Mouse cursor changes to arrow after hovering a hyperlinked indentifier | This bug occurred only after installing M4. When using the new feature (from M3 I think) of pressing Ctrl and moving the mouse over a Java indentifier to activate it as a hyperlink, the mouse cursor changes from the usual text caret to a "hand". That is as expected. However, once you release the Ctrl-key, the mouse cursor changes to an arrow and not back to the text caret as expected. This arrow persists inside the same editor untill you close it. This bug can always be reproduced. I have seen the same bug in other situations than the one described above. But I have not figured out exactly what caused it. I know this may be a trivial bug to some people. But it simply annoys me so much that I avoid using the otherwise really cool hyperlink feature. | resolved fixed | 4b0c164 | ["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 | "2003-01-06T23:01:45Z" | "2002-12-23T02:20:00Z" |
28,833 | Bug 28833 Eclipse no longer responds to 'Quit' AppleEvent | M4 (regression from M3) Eclipse no longer responds to 'Quit' AppleEvents, as a consequence you cannot shutdown Mac OS X if Eclipse is running. To try without halting MacOSX: in dock open context menu on Eclipse app and select 'Quit' | resolved fixed | 32151cf | ["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 | "2003-01-03T21:02:52Z" | "2002-12-23T16:13:20Z" |
28,719 | Bug 28719 Scrolling in Welcome editor is not 'live' | M4 - open welcome editor - click on the scrollbar's 'down' button and keep mouse button pressed until scrollbar thumb reaches end of scrollbar Observe: editor's content doesn't scroll until you release the mouse button | resolved fixed | a3e2e44 | ["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"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2003-01-02T20:19:15Z" | "2002-12-20T10:26:40Z" |
27,869 | Bug 27869 StyledText overuse of Font.getFontData | Running eclipse, using the Java Editor: A single key stroke can cause the API Font.getFontData() to be called 13 times. I believe, and many people agree, that this API don't need to be used at all by the StyledText when it's been typed. This API is also overused when we are scrolling the StyledText and selecting text. Try to add system.out.println in the first line of method Font#getFontData, run a selfhosted eclipse, watch the console. I concerned about this problem cause in some platform the performance of this method is very pour if compared with Windows. For example, Motif running on UTF-8. Each Font has 7 FontData, therefore every time I type 'a' in the JavaEditor 91 (7*13) FontData will be loaded. Btw, UTF-8 is the default english encoding for Redhat 8. FontMetrics API is also very used by the StyledText, I believe that the metric information should be cached in the StyledText and update only when the font is changed. | resolved fixed | 4e22aa7 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/DisplayRenderer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/PrintRenderer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledText.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/WrappedContent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-23T19:33:26Z" | "2002-12-06T21:26:40Z" |
26,079 | Bug 26079 Use PfLoadMetrics() to speed up text extenting. | If you use PfLoadMetrics() when using PfExtentWideText() (which we are already doing) then you can avoid all transactions to the external font server. This provides a big drop in CPU usage when using Tables, Trees, and the StyledText editor. | resolved fixed | 2f92ef0 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/photon/org/eclipse/swt/internal/photon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/photon/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-20T16:42:00Z" | "2002-11-13T06:46:40Z" |
28,658 | Bug 28658 [Perspectives] No context menu in perspective bar | I2002-12-18 Bringing up the context menu on the perspective bar on the left does not work. Closing perspectives is thus only possible via the Window menu. | resolved fixed | 3430636 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/ToolItem.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 | "2002-12-19T22:18:46Z" | "2002-12-19T06:40:00Z" |
28,382 | Bug 28382 Extra separator line drawn in emulated CoolBar | It looks like the right-most CoolItem in an emulated CoolBar displays a separator line on the left hand edge. This is true regardless of whether or not the CoolBar is "locked". This behavior does not match the native look&feel on either windows or macosx. | resolved fixed | 3810f49 | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-18T17:34:19Z" | "2002-12-16T14:46:40Z" |
28,524 | Bug 28524 Inconsistent behaviour of tab in password fields | I20021216 Open the dialog to create a new CVS repository connection. Type in a password. Hit Tab. On Windows, tab takes you to the next field. On the Mac, tab enters another character in the password field. | resolved fixed | 9f6eab8 | ["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 | "2002-12-17T17:46:45Z" | "2002-12-17T15:46:40Z" |
22,759 | Bug 22759 Input method does not work on GTK/GTK2 | I'm using Ami as a Korean input method application on RedHat 7.2 Linux/GNOME 2. But I cannot input any Korean character with both GTK/GTK2 version of Eclipse. Could you please fix this problem? Thanks | resolved fixed | e1266ff | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/gtk/org/eclipse/swt/internal/gtk/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Control.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Menu.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-16T19:19:39Z" | "2002-08-23T10:53:20Z" |
27,977 | Bug 27977 drag drop threshold region not calculated properly | The Windows implementation of SWT does not correctly identify the threshold region (i.e., the area surrounding the mouse cursor outside of which movement should be regarded as the initiation of a drag and drop operation). This is because the threshold detection code expects screen coordinates while the mouse event uses client coordinates. It can be fixed by adding the following line to org/eclipse/swt/widgets/Control.java:3397. (I've tested this and it works for me.) OS.ClientToScreen(handle, pt); | resolved fixed | 74b44aa | ["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 | "2002-12-12T22:29:18Z" | "2002-12-09T21:40:00Z" |
27,526 | Bug 27526 Color selection dialog takes a long time to display in 8-bit mode | Overview Description: The color selection dialog takes up to 15 seconds to appear on Solaris, whereas, the dialog comes up almost instantaneously on HPUX. This behavior occurs on the first and subsequent color change requests. NOTE: It doesnt seem to matter where you originate the color Selection request, the delay is the same (i.e. Color selection from The Preferences dialog takes the same amount of time as a color Selection request from the SWT Examples software / SWT Controls View. Steps to reproduce: 1. Open the workbench Preferences dialog 2. Select the Java category, and open the Editor preferences page 3. Select the Appearance tab 4. Select the Color button !BUG! There is a long wait time for the color selection dialog (the amount of time is a usability issue!) ------ Build 2002-11-07-1448 on Sparc/Solaris | verified fixed | 901c0a3 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ColorDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-12T15:31:29Z" | "2002-12-02T20:13:20Z" |
28,035 | Bug 28035 Different callback behavior on Windows and Mac with Combo widget | I will attach the test class. On windows, org.eclipse.swt.widgets.Combo.setText(String) fires a modifyText callback to the registered modify listeners. The callback does not occur on Mac OSX. | resolved fixed | e1e3c4e | ["bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/widgets/Combo.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-11T09:14:14Z" | "2002-12-10T17:06:40Z" |
27,422 | Bug 27422 [SWT Examples] Progress bar reverts to 'black' color after Selection slider repositioning | Overview Description: In the 'SWT Controls' view of the SWT Examples software, under the Progress Bar tab, the effect of setting the Background color is reset to black after the Selection slider position is moved. NOTE: The background color setting is still set (the color box for the background color is still set to the custom color). Steps to recreate: 1. Open the 'SWT Controls' view of the 'SWT Examples' code 2. Open the Progress Bar tab in the SWT Controls view 3. Select the Background Color button and change to a non-black color 4. The color of the Progress Bar changes to the selected color 5. Move the Selection slider position !BUG! The progress bar color reverts to black ------ Build 2002-11-07-1448 on Solaris (also occurs on HPUX) | verified fixed | 3cd774d | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/motif/org/eclipse/swt/internal/motif/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/ProgressBar.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-06T19:36:34Z" | "2002-11-29T20:00:00Z" |
27,031 | Bug 27031 en_US.UTF-8 locale not supported on Motif | Ive noticed that some people had problems with accents in several languages. Here's a me-too. I'm using RedHat 8.0 and cannot type accents using dead keys in Eclipse's editor - nothing happens. Usually with other applications I can type tilde+a and get a a with tilde (a). In Eclipse's editor I get the tilde followed by the character a - it seems that it ignores the dead-key combination. My keyboard is a Brazilian ABNT-2 so it has a c-cedilla (c). None of the dead keys works. I've tried to set the LANG environment variable to the following values before running eclipse, without luck: en_US.UTF-8 en_US pt_BR.UTF-8 pt_BR C I've also tried to unsetenv LANG, no success. Had the same problem with the downloads eclipse-SDK-2.0.1-linux-motif.zip eclipse-SDK-2.0.2-linux-gtk.zip eclipse-SDK-2.0-linux-gtk.zip please advise. thanks Rafael | resolved fixed | b91b725 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Display.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-06T19:07:45Z" | "2002-11-23T22:20:00Z" |
27,410 | Bug 27410 [SWT Examples] Arrow buttons won't resize for 10x10,50x50,100x100 | Overview Description: In the 'SWT Controls' view of the SWT Examples software, the SWT.ARROW type buttons (in the 'Button' tab) will not resize to the 10x10, 50x50, and 100x100 sizes. Steps to recreate: 1. Open the 'SWT Controls' view of the 'SWT Examples' code 2. Open the 'Button' tab in the SWT Controls view 3. Try the 'Preferred' and 'Horizontal Fill' sizes, note that the arrow buttons resize 4. Select the SWT.ARROW style, and try sizes 10x10, 50x50, and 100x100 !BUG! The arrow buttons will not resize ------ Build 2002-11-07-1448 on Solaris (also occurs on HPUX) | verified fixed | 51a289a | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Button.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-12-04T20:02:06Z" | "2002-11-29T17:13:20Z" |
27,644 | Bug 27644 Dismissing open type dialog with Escape crashes Eclipse | - Open 'Open Type' dialog. - press 'Escape' -> Eclipse crashes: Current Java thread: at org.eclipse.swt.internal.carbon.OS.GetNextEvent(Native Method) at org.eclipse.swt.widgets.Display.update(Display.java:1669) at org.eclipse.swt.widgets.Control.update(Control.java:2718) at org.eclipse.ui.internal.EditorWorkbook.drawGradient(EditorWorkbook.java:339) at org.eclipse.ui.internal.EditorPane.shellActivated(EditorPane.java:142) at org.eclipse.ui.internal.WorkbenchWindow$12.shellActivated(WorkbenchWindow.java:14 11) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:157) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:77) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:485) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1275) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1123) at org.eclipse.jface.window.Window.runEventLoop(Window.java:561) at org.eclipse.jface.window.Window.open(Window.java:541) at org.eclipse.ui.dialogs.AbstractElementListSelectionDialog.access$superOpen(AbstractE lementListSelectionDialog.java:402) at org.eclipse.ui.dialogs.AbstractElementListSelectionDialog.access$2(AbstractElementList SelectionDialog.java:401) at org.eclipse.ui.dialogs.AbstractElementListSelectionDialog$4.run(AbstractElementListSel ectionDialog.java:395) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:65) at org.eclipse.ui.dialogs.AbstractElementListSelectionDialog.open(AbstractElementListSel ectionDialog.java:393) at org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog.open(TypeSelectionDialog.java:2 03) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:53) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:74) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:211) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:195) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributio nItem.java:411) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionIte m.java:365) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:35 6) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContri butionItem.java:48) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:77) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:485) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1275) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1123) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1370) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1353) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:841) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:432) at EclipseRuntimeLauncher.main(EclipseRuntimeLauncher.java:24) 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 apple.launcher.LaunchRunner.run(LaunchRunner.java:88) at apple.launcher.LaunchRunner.callMain(LaunchRunner.java:50) at apple.launcher.JavaApplicationLauncher.launch(JavaApplicationLauncher.java:52) | resolved fixed | f8b3e77 | ["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 | "2002-12-04T14:47:38Z" | "2002-12-04T11:06:40Z" |
24,436 | Bug 24436 Entering Asterisk crashs Eclipse | I20021001 Entering the asterisk symbol into any Eclipse input field immediately crashs Eclipse. | resolved fixed | f6eb9c0 | ["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 | "2002-12-04T11:18:47Z" | "2002-10-07T05:53:20Z" |
26,506 | Bug 26506 Importing External Plug-ins is slow | build 2002-11-15, Mac OS When you choose File -> Import -> External Plug-ins -> Next it takes a really long time to calculate the list of plug-ins to show in the list. I have not timed this but it is about 2 to 3 minutes. | resolved fixed | 0f4116d | ["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 | "2002-12-03T16:03:33Z" | "2002-11-15T19:53:20Z" |
27,331 | Bug 27331 CTabFolder right control request | The UI team would like to have a right control added to CTabFolder, allowing us to provide a popdown of all editors currently open. The proposed code is attatched. The editor work is planned for M4, we would like to get it in as soon as possible. | resolved fixed | 4fa97ee | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabFolder.java", "bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/CTabItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-29T16:29:11Z" | "2002-11-28T16:13:20Z" |
26,563 | Bug 26563 Crash in Carbon native CopyMask | Saved an edited file, causing an incremental compile. The drive the file was on was asleep so I got the spinning beach ball while it spun up. After the normal spin-up time, Eclipse crashed. partial Eclipse.crash.log contents: Thread 1 Crashed: #0 0x90074930 in memmove #1 0x91a573b8 in FixStretchVars #2 0x91a53d80 in CommonBits #3 0x91a65a78 in CopyMask #4 0x03b90fdc in Java_org_eclipse_swt_internal_carbon_OS_CopyMask #5 0x01920394 in 0x1920394 #6 0x019222bc in 0x19222bc #7 0x01939b0c in 0x1939b0c #8 0x01e6ee7c in 0x1e6ee7c #9 0x018ce7bc in 0x18ce7bc #10 0x01906474 in 0x1906474 #11 0x0153a168 in 0x153a168 #12 0x95c03e90 in findpc #13 0x95c03cf4 in findpc #14 0x95c2fe20 in JNI_GetCreatedJavaVMs_Impl #15 0x95c13768 in JNI_GetCreatedJavaVMs_Impl #16 0x03b9e7bc in callback #17 0x03b98f3c in fn5_2 #18 0x92c11d04 in DrawOurControl(UserPaneGlobals*) #19 0x92bd42b8 in UserPaneCDEF #20 0x92baf700 in DispatchMessage(HIView*, short, long, unsigned char, unsigned char) #21 0x92bca9b4 in Draw(HIView*, OpaqueEventRef*) #22 0x92bb681c in ClassicCDEFAdapter::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) #23 0x92ba25b4 in DispatchEventToHandlers #24 0x92ba291c in SendEventToEventTargetInternal #25 0x92ba5d28 in SendEventToEventTargetWithOptions #26 0x92bb2e20 in SendControlDefDraw(HIView*, short, OpaqueGrafPtr*, OpaqueRgnHandle*, CGContext*) #27 0x92baea3c in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #28 0x92bb02f0 in HIView::Draw(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long, HIView*, CGContext*) #29 0x03b94524 in Java_org_eclipse_swt_internal_carbon_OS_ShowControl I'm running the M1 Mac Eclipse build under jdk 1.4.1 dp5. I filed a similar bug for a different subroutine call yesterday. Since these look like calls into the Carbon libs, I can't tell if the fault is there (and should be reported to Apple) or if Eclipse should be handling the exception. In any case, it doesn't look like a jdk 1.4.1 issue to me. Hopefully I'm not revealing any of the NDA secrets. | resolved fixed | 9d55940 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "PI/carbon/org/eclipse/swt/internal/carbon/OS.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/GC.java", "bundles/org.eclipse.swt/Eclipse", "SWT/carbon/org/eclipse/swt/graphics/Image.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-29T10:45:30Z" | "2002-11-17T19:06:40Z" |
19,080 | Bug 19080 Chaff in table tree of property sheet | F2 1) Install the examlpes 2) Create a file test.usr 3) Select a user in the list (ex. richard) 4) Expand adress and click on province 5) Go back to the outline and select "Team1" 6) Note the extra horizontal lines in the property sheet. | resolved fixed | 9fe918b | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-27T15:57:48Z" | "2002-06-04T14:13:20Z" |
20,318 | Bug 20318 [StyledText] print selection prints whole page (atleast in <=f2) | i just saw that in at least f2, when you mark something in the editor and select print->print selection, then it still prints the whole page. (not sure if this is jdt or workbench though) | resolved fixed | 5daa4dc | ["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 | "2002-11-26T20:51:50Z" | "2002-06-14T07:33:20Z" |
25,653 | Bug 25653 DCR: StyledText do not activate the default button | The StyledText, if it's SWT.SINGLE, should activate the default button on a dialog. test code: public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setText("Dialog"); shell.setLayout(new GridLayout()); final StyledText st = new StyledText (shell, SWT.SINGLE | SWT.BORDER); GridData data = new GridData (); data.widthHint = 300; st.setLayoutData(data); final Text text = new Text (shell, SWT.SINGLE | SWT.BORDER); data = new GridData (); data.widthHint = 300; text.setLayoutData(data); final Button button = new Button (shell, SWT.PUSH); data = new GridData (); data.widthHint = 300; button.setLayoutData(data); shell.setDefaultButton(button); button.setText ("Default Button"); button.addListener (SWT.Selection, new Listener() { public void handleEvent (Event e) { button.setText (st.getText()); } }); shell.setSize(350, 120); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep (); } } display.dispose (); } | resolved fixed | 37205e5 | ["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 | "2002-11-25T19:50:34Z" | "2002-11-01T19:46:40Z" |
26,935 | Bug 26935 Exception in StyledText with WRAP flag. | Eclipse 2.1 M3, Windows 2000 The following exception occurs, when deleting some lines in a wrapped StyledText widget. It is important, that the selection starts at a real line wich is not the last one and ends at the last virtual line. (Real line is a line terminated with "\r\n", and the virtual line is a line shown by the StyledText widget.) It is also important that all selected lines are wrapped by the widget. java.lang.ArrayIndexOutOfBoundsException at org.eclipse.swt.custom.WrappedContent.reset(WrappedContent.java:336) at org.eclipse.swt.custom.WrappedContent.textChanged (WrappedContent.java:437) at org.eclipse.swt.custom.StyledText$WordWrapCache.textChanged (StyledText.java:1521) at org.eclipse.swt.custom.StyledText.handleTextChanged (StyledText.java:5146) at org.eclipse.swt.custom.StyledText$6.textChanged(StyledText.java:4759) at org.eclipse.swt.custom.StyledTextListener.handleEvent (StyledTextListener.java:57) at org.eclipse.swt.custom.DefaultContent.sendTextEvent (DefaultContent.java:795) at org.eclipse.swt.custom.DefaultContent.replaceTextRange (DefaultContent.java:787) at org.eclipse.swt.custom.WrappedContent.replaceTextRange (WrappedContent.java:380) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:5621) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:6545) at org.eclipse.swt.custom.StyledText.doBackspace(StyledText.java:2386) at org.eclipse.swt.custom.StyledText.invokeAction(StyledText.java:5427) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:5011) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5030) at org.eclipse.swt.custom.StyledText$8.handleEvent(StyledText.java:4800) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:77) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:825) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1692) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1410) With the following test class the problem can be reproduced simply. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class StyledTextProblem { public static void main(String[] args) { Display display = new Display (); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); StyledText text = new StyledText(shell, SWT.BORDER | SWT.WRAP); String string = "0123456789 "; StringBuffer sb = new StringBuffer(); for (int j = 0; j < 4; j++) { if (j != 0) { sb.append("\r\n"); } for (int i = 0; i < 30; i++) { sb.append(string); } } text.setText(sb.toString()); shell.setSize(600, 400); shell.open(); text.selectAll(); text.cut(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } } | resolved fixed | 1f0013c | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/WrappedContent.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-25T16:41:40Z" | "2002-11-22T13:00:00Z" |
26,997 | Bug 26997 StyledTextRenderer: creates too many Strings | 20021119 StyledTextRenderer.drawText the code says: String tabSegment = text.substring(i, tabIndex); if (bidi != null) { bidi.drawBidiText(i, tabIndex - i, leftMargin - horizontalScrollOffset, paintY); } else { gc.drawString(tabSegment, paintX - horizontalScrollOffset + leftMargin, paintY, true); paintX += gc.stringExtent(tabSegment).x; if (tabIndex != endOffset && tabWidth > 0) { paintX = getTabStop(paintX); } } so it creates 'tabSegment' even if it does not actually use it. calling 'substring' allocates new String objects everytime moving the declaration of 'tabsegment' inside the 'else' branch will make sure we don't create more strings that we want (now we create 7-12 Kb of Strings on every keystroke in the editor) | resolved fixed | e8b9965 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Custom", "Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-25T16:24:03Z" | "2002-11-22T18:33:20Z" |
24,969 | Bug 24969 JP GP: showing Java-Editor pref. page with editor open | 1016 integration build, only on Japanese aix I realize that we don't claim support for this yet, so I'm just logging it as a case to test once we think that DBCS Motif is ready. - open a java editor on a .java file - Window -> Preferences - go to page Java - Editor - press OK, will get the attached GP | resolved fixed | 1ac8e1e | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Control.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-23T00:01:07Z" | "2002-10-17T13:06:40Z" |
26,804 | Bug 26804 Gtk Label widget has focus decoration drawn too big | Under Gtk, GC.drawFocus() draws a decoration that is one pixel too wide and one pixel too high on Linux Gtk. This is particularly noticeable for the Label widget, since the bottom and right edge of the decoration are not visible. This draws properly on win32 and Linux Motif. | resolved fixed | 4e94327 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/graphics/GC.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-22T16:37:59Z" | "2002-11-20T19:20:00Z" |
19,735 | Bug 19735 No space between longest item in menu and accel keys | There is no space between longest item in a menu and the column of accelerator keys. This can be seen in the Edit menu where "Show tooltip description" and "F2" run together. | resolved fixed | 6940efa | ["bundles/org.eclipse.swt/Eclipse", "SWT/win32/org/eclipse/swt/widgets/MenuItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-22T15:07:15Z" | "2002-06-09T08:06:40Z" |
26,362 | Bug 26362 StyledText - investigate necessary state changes between handleTextChanging and handleTextChanged | According to the article, one should send handleTextChanging event, update styles, then send handleTextChanged event. If during the update styles step, one calls style range API (e.g., setStyleRange, replaceStyleRanges), the caretOffset could get out of sync. Also need to consider other state that could be out of sync. | resolved fixed | f400381 | ["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 | "2002-11-21T22:52:48Z" | "2002-11-14T16:06:40Z" |
21,626 | Bug 21626 TableItem.getImageBounds fails on Motif (Emulated Widget) | build Eclipse 2.0 The images bounds for a TableItem should not change if the grid line is visible or not (only the bounds for the TableItem itself should change according with the grid line visibility). That's how Windows behaves. Run the following test case on Windows and Motif and compare the difference: public static void main (String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Table control = new Table (shell, SWT.MULTI); TableColumn c0 = new TableColumn (control, 0); TableColumn c1 = new TableColumn (control, 0); TableColumn c2 = new TableColumn (control, 0); TableColumn c3 = new TableColumn (control, 0); Image image = new Image (display, 16, 16); GC gc = new GC (image); gc.setBackground (display.getSystemColor(SWT.COLOR_BLUE)); gc.fillRectangle (0, 0, 16, 16); gc.dispose(); for (int i = 0; i < 4; i++){ TableItem item = new TableItem (control, 0); item.setText(new String[] {"Item index 0","Item index 1", "Item index 2", "Item index 3"}); item.setImage(new Image[] {image, image, image, image }); } c0.pack();c1.pack();c2.pack();c3.pack(); Button button = new Button (shell, SWT.PUSH); button.setText("Click Here!!"); button.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { TableItem[] items = control.getItems(); for (int j = 0; j < items.length; j++) { for (int k = 0; k < 4; k++) { System.out.print("Item: " + items[j].getBounds(k)); System.out.println(" Image: " + items[j].getImageBounds(k)); } } control.setLinesVisible(!control.getLinesVisible()); } }); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); display.dispose(); } A fix for this PR is add a check before getImageBounds returns: public Rectangle getImageBounds(int index) { checkWidget(); Table parent = getParent(); int itemIndex = parent.indexOf (this); int imageWidth = 0; Point imageExtent = parent.getImageExtent(); Rectangle imageBounds = getBounds(index); if (itemIndex == -1) { imageBounds = new Rectangle(0, 0, 0, 0); } else if (imageExtent != null) { if (index == TableColumn.FIRST || getImage(index) != null) { imageWidth = imageExtent.x; } } imageBounds.width = imageWidth; if (imageBounds.height != 0 && parent.getLinesVisible() == false) { imageBounds.height -= parent.getGridLineWidth(); } return imageBounds; } | resolved fixed | ba64baf | ["bundles/org.eclipse.swt/Eclipse", "SWT/emulated/treetable/org/eclipse/swt/widgets/TableItem.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-20T20:54:34Z" | "2002-07-16T17:20:00Z" |
26,353 | Bug 26353 infopop broken on solaris | build 20021113 SunOS 5.8 Pressing the Help button on a view no longer bring up the context help info popup. Could this be related to the new keybindings engine implementation? | resolved fixed | a70c8a7 | ["bundles/org.eclipse.swt/Eclipse", "SWT/motif/org/eclipse/swt/widgets/Decorations.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-19T23:16:30Z" | "2002-11-14T16:06:40Z" |
24,835 | Bug 24835 GTK: Multiple selection and right click in tree | Build 20021015 Linux-GTK A right click on a multiple selection unselects everything and selects just the element on which the right click was performed. 1. In the package view, select multiple elements (with [CTRL]+left button or [SHIFT]+left button) 2. Right click on a selected element. The element on which the right click was performed is selected (all other elements are unselected). The context menu displayed contains the elements for the multiple selection. 3. Select an action. The action is executed on the selected element only. A workaround to the problem is to use the right button with [CTRL] or [SHIFT] for create the selection. | resolved fixed | e7aa92a | ["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 | "2002-11-18T21:13:36Z" | "2002-10-16T14:53:20Z" |
26,419 | Bug 26419 StyledText - print pages causes walkback | Build 20021114. Open a Java file. Print. Select the Pages option. The following walkback occurs: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:2166) at org.eclipse.swt.SWT.error(SWT.java:2110) at org.eclipse.swt.custom.WrappedContent.getLine(WrappedContent.java:95) at org.eclipse.swt.custom.StyledText$Printing.print(StyledText.java:444) at org.eclipse.swt.custom.StyledText$Printing.run(StyledText.java:569) at org.eclipse.jface.text.TextViewer$4.run(TextViewer.java:3102) For some reason startPage is getting initialize to -130 (i.e., -2 * 65). | resolved fixed | 04122a3 | ["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 | "2002-11-18T20:02:58Z" | "2002-11-14T21:40:00Z" |
26,434 | Bug 26434 PrinterData startPage/endPage invalid when page >32767 | build 20021114 -Run the code below -Leave the default page number 65535 -Press OK ->The startPage and endPage is -1 Any page value > 32767 entered in the dialog results in -1 in the PrinterOptions | resolved fixed | 85387e4 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Printing/win32/org/eclipse/swt/printing/PrintDialog.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-15T23:57:12Z" | "2002-11-15T00:26:40Z" |
26,421 | Bug 26421 List hangs on GTK | Eclipse 20021113 Using the SWT snippet combo#create a combo box (non-editable), change the line Combo combo = new Combo(..) to CCombo combo = new CCombo(..). Run the application and pull down the combo box. Select one of the entries, the application now hangs. import org.eclipse.swt.*; import org.eclipse.swt.widgets.*; public class Main { public static void main (String [] args) { Display display = new Display (); Shell shell = new Shell (display); Combo combo = new Combo (shell, SWT.READ_ONLY); combo.setItems (new String [] {"A", "B", "C"}); combo.setSize (200, 200); shell.pack (); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } } | resolved fixed | f3f12d9 | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Combo.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/List.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Table.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Text.java", "bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Tree.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-15T16:44:33Z" | "2002-11-14T21:40:00Z" |
26,151 | Bug 26151 SWT widget org.eclipse.swt.widgets.Sash is not properly constrained when in HORIZONTAL mode. | The SWT "Sash" widget creates a sash that may be dragged by a mouse and is either vertical or horizontal. When created in HORIZONTAL mode, the sash can only move down through its container as far as the container is wide (not high). | resolved fixed | c74c16a | ["bundles/org.eclipse.swt/Eclipse", "SWT/gtk/org/eclipse/swt/widgets/Sash.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-14T22:41:08Z" | "2002-11-13T17:53:20Z" |
26,367 | Bug 26367 NPE when debugging as java application | M3 build - in the java perspective create the following class: public class PrintNumbers { public static void main(String[] args) { System.out.println(1); System.out.println(2); } } - drop down the Debug tool item, Debug As -> Java Application - the program is run fine, but the perspective does not change to Java, and the attached NPE is dumped | resolved fixed | 9f80387 | ["bundles/org.eclipse.swt/Eclipse", "SWT", "Drag", "and", "Drop/motif/org/eclipse/swt/dnd/DropTarget.java"] | SWT | https://github.com/eclipse-platform/eclipse.platform.swt | eclipse-platform/eclipse.platform.swt | java | null | null | null | "2002-11-14T21:18:40Z" | "2002-11-14T16:06:40Z" |
26,008 | Bug 26008 [StyledText] setTopPixel limits argument to logical line count | build 20021111 setTopPixel uses the logical line count to limit the maximum range of the method argument. When StyledText is used in word wrap mode and the number of visual lines is greater than the number of logical lines (lines are wrapped) setTopPixel will not allow scrolling to the last possible top line. | resolved fixed | e4e6d2f | ["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 | "2002-11-14T17:34:28Z" | "2002-11-12T00:13:20Z" |
26,121 | Bug 26121 cannot launch eclipse #2: javacore dump | null | resolved fixed | c63eec3 | ["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 | "2002-11-13T22:50:16Z" | "2002-11-13T17:53:20Z" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.