id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
2,561 | 124,208 |
Bug 124208 Virtual tree setItemCount(0) has no effect
|
When setting item count to 0 on windows on a tree item that currently has children, the children are never removed. TestCase: import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeItem; public class TreeTest { private static Display display; private static Tree tree; public static void main(String[] args) { display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); tree = new Tree(shell, SWT.VIRTUAL); tree.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TreeItem item = (TreeItem) event.item; int index = tree.indexOf(item); item.setText("item: " + (index + 1)); } }); tree.setItemCount(10); shell.open(); new Thread(new Runnable() { public void run() { try { Thread.sleep(5000); } catch (InterruptedException e) { } display.asyncExec(new Runnable() { public void run() { System.out.println("Setting item count to zero"); tree.setItemCount(0); } }); } }).start(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2006-01-17 16:39:37
| 1,137,530,000 |
resolved fixed
|
46f8989
| 1,137,610,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,562 | 112,791 |
Bug 112791 Tree.setBackground() does not full span multi-column Tree
|
- run the snippet below - note that the item background colours do not span from the right of the column 0 text to the end of the column - I'm assuming this isn't native behaviour (?) - creating the Tree with style SWT.FULL_SELECTION makes this work, though its expand/collapse images stand out public static void main(String[] args) { Display display = new Display(); Color red = display.getSystemColor(SWT.COLOR_RED); Color yellow = display.getSystemColor(SWT.COLOR_YELLOW); Shell shell = new Shell(display); shell.setBounds(10,10,400,200); Tree tree = new Tree(shell, SWT.NONE); tree.setBounds(10,10,300,100); tree.setHeaderVisible(true); new TreeColumn(tree, SWT.NONE).setWidth(100); new TreeColumn(tree, SWT.NONE).setWidth(100); new TreeColumn(tree, SWT.NONE).setWidth(100); TreeItem item0 = new TreeItem(tree, SWT.NONE); item0.setText(new String[] {"abc","def","ghi"}); item0.setBackground(yellow); TreeItem item1 = new TreeItem(tree, SWT.NONE); item1.setText(new String[] {"abc","def","ghi"}); item1.setBackground(red); TreeItem item2 = new TreeItem(item1, SWT.NONE); item2.setBackground(yellow); item2.setText(new String[] {"abc","def","ghi"}); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } red.dispose(); yellow.dispose(); display.dispose(); }
|
2005-10-17 10:45:21
| 1,129,560,000 |
resolved fixed
|
791bb30
| 1,137,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,563 | 124,092 |
Bug 124092 StyledText's RTF copy/paste broken
|
I20060110-1026 1. open a text file with the Text editor and add the following text: not.broken not.broken 2. select the two lines 3. copy 4. go into an application that allows RTF pasting 5. paset ==> .broken .broken Other anomalities of missing characters can be seen when playing with larger documents. Note: pasting as simple text works as expected.
|
2006-01-17 04:53:07
| 1,137,490,000 |
verified fixed
|
19cccaf
| 1,137,530,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,564 | 122,550 |
Bug 122550 GDI Object Leak
|
Eclipse 3.2 M4 Run the following example. Notice that each time the "test" button is pressed, the number of GDI Objects increases. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new RowLayout()); Button b = new Button(shell, SWT.PUSH); b.setText("test"); b.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { GC gc = new GC(shell); Region rg1 = new Region(display); gc.getClipping(rg1); gc.setAntialias(1); gc.setClipping(rg1); Region rg2 = new Region(display); gc.getClipping(rg2); rg1.dispose(); rg1 = null; rg2.dispose(); rg2 = null; gc.dispose(); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2006-01-03 14:22:52
| 1,136,320,000 |
resolved fixed
|
209440c
| 1,137,520,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,565 | 123,993 |
Bug 123993 SWT_AWT embedded frame doesn't get iconify/decionify events
| null |
2006-01-16 12:23:58
| 1,137,430,000 |
resolved fixed
|
acba665
| 1,137,430,000 |
bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java bundles/org.eclipse.swt/Eclipse SWT AWT/motif/org/eclipse/swt/awt/SWT_AWT.java
|
SWT
|
2,566 | 123,933 |
Bug 123933 drilled to report shows stale data.
|
I have to reports, report1 shows a list of items and from there I drill to report2, passing an item code. The link code is as follows: <cell id="231"> <data id="232"> <expression name="valueExpr">row["CODE"]</expression> <structure name="action"> <property name="formatType">html</property> <property name="linkType">drill-through</property> <property name="reportName">dimension.rptdesign</property> <property name="targetWindow">_self</property> <list-property name="paramBindings"> <structure> <property name="paramName">ip_tydf_code</property> <expression name="expression">row["CODE"]</expression> </structure> </list-property> </structure> </data> </cell> The first time I navigate to report2, passing in code1, it works OK, the second time I go there, clicking on another instance of the link, passing in another parameter, code2, I still see the old report data for code1, even though code2 is passed in the URL.
|
2006-01-16 03:21:33
| 1,137,400,000 |
resolved fixed
|
b474281
| 1,137,430,000 |
bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java
|
SWT
|
2,567 | 121,722 |
Bug 121722 HTML clipboard transfer does not work on Windows
|
I have a simple test case that puts both text and HTML onto the clipboard. According to the Windows clipboard viewer, and any application I type 'paste' at, only the text is ending up on the Windows clipboard, not the HTML.
|
2005-12-21 08:32:43
| 1,135,170,000 |
resolved fixed
|
4d4c8f1
| 1,137,430,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/HTMLTransfer.java
|
SWT
|
2,568 | 123,594 |
Bug 123594 Text.setForeground(Color) is ignored with SWT.INHERIT_FORCE
|
When creating a shell, setting a background color or a background image, and calling shell.setBackgroundMode(SWT.INHERIT_FORCE), child Text widgets ignore calls to setForeground(Color). Tested on WinXP with swt-N20060112, with and without manifest. See attached Snippet.
|
2006-01-12 09:20:21
| 1,137,080,000 |
resolved fixed
|
89b2a25
| 1,137,180,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
2,569 | 122,428 |
Bug 122428 Performance on OS X still degrades on 10.4.3
| null |
2005-12-31 15:27:06
| 1,136,060,000 |
resolved fixed
|
12e45fb
| 1,137,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,570 | 86,825 |
Bug 86825 CLabel not correctly captured by WM_PRINT
|
I use WM_PRINT to capture offscreen controls in one of my application. I notice that all the controls I use are well captured, except CLabel : the font is not taken in account (but images, background color and foreground color are). See my attached image and have a look at a sample java project I wrote to explain the problem.
|
2005-02-28 09:24:59
| 1,109,600,000 |
resolved fixed
|
b661df8
| 1,137,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
|
SWT
|
2,571 | 123,184 |
Bug 123184 Embedded image render error in StyledText
|
Run below snippet, and you can find that the second embedded image can't be seen. public class Snippet { static StyledText styledText; static String text = "Embedded Image: \u0014\u0014, The second image can't be seen"; static Image[] images; static int[] offsets; static void addImage(Image image, int offset) { StyleRange style = new StyleRange (); style.start = offset; style.length = 1; Rectangle rect = image.getBounds(); style.metrics = new GlyphMetrics(rect.height, 0, rect.width); styledText.setStyleRange(style); } public static void main(String [] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new GridLayout()); styledText = new StyledText(shell, SWT.WRAP | SWT.BORDER); styledText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); styledText.setText(text); images = new Image[] { display.getSystemImage(SWT.ICON_QUESTION), display.getSystemImage(SWT.ICON_INFORMATION), }; offsets = new int[images.length]; int lastOffset = 0; for (int i = 0; i < images.length; i++) { int offset = text.indexOf("\u0014", lastOffset); offsets[i] = offset; addImage(images[i], offset); lastOffset = offset + 1; } // use a verify listener to keep the offsets up to date styledText.addVerifyListener(new VerifyListener() { public void verifyText(VerifyEvent e) { int start = e.start; int replaceCharCount = e.end - e.start; int newCharCount = e.text.length(); for (int i = 0; i < offsets.length; i++) { int offset = offsets[i]; if (start <= offset && offset < start + replaceCharCount) { // this image is being deleted from the text if (images[i] != null && !images[i].isDisposed()) { images[i].dispose(); images[i] = null; } offset = -1; } if (offset != -1 && offset >= start) offset += newCharCount - replaceCharCount; offsets[i] = offset; } } }); styledText.addPaintObjectListener(new PaintObjectListener() { public void paintObject(PaintObjectEvent event) { GC gc = event.gc; StyleRange style = event.style; int start = style.start; for (int i = 0; i < offsets.length; i++) { int offset = offsets[i]; if (start == offset) { Image image = images[i]; int x = event.x; int y = event.y + event.ascent - style.metrics.ascent; gc.drawImage(image, x, y); } } } }); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } for (int i = 0; i < images.length; i++) { Image image = images[i]; if (image != null && !image.isDisposed()) { image.dispose(); } } display.dispose(); } }
|
2006-01-09 22:21:45
| 1,136,860,000 |
resolved fixed
|
7a44a1c
| 1,136,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java
|
SWT
|
2,572 | 123,143 |
Bug 123143 Drag handle changes to four-way on click
|
When I hover over a cool item drag handle, it appears as a two-way horizontal arrow. When I single click, the drag handle changes to a four-way arrow. It stays this way -- even after moving the mouse away and back again. It only reverts to the two-way arrow after a drag is started. This is most visible in the draggable trim elements of the workbench window, but it also happens in the top-level cool bar.
|
2006-01-09 14:40:16
| 1,136,840,000 |
resolved fixed
|
c1ed11f
| 1,136,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java
|
SWT
|
2,573 | 121,507 |
Bug 121507 font leading (line spacing) excessive for small fonts
|
The line spacing for small fonts in text editors is much larger in 3.2 builds than in 3.1. Lines are nearly twice as tall for a 9 point font in all builds of 3.2 I've tried; the extra space is blank. This is a definite productivity killer and gives the editors an awkward look. I've only seen this on OS X (doesn't happen under Linux x86/GTK using the same font). It happens with all the fixed width fonts I've tried (Courier, Monaco, various ProFont versions). This occurs in plain text editors and the Java editor. This happens regardless of Mac OS X's settings for the minimum size of antialiased text. The line spacing looks much more reasonable for fonts size 10 and above. I've attached two screenshots comparing the 3.2M4 appearance and the 3.1 apperance. In the 3.2M4 capture, you can see that line 7 is the current line, and the line highlight extends well above the ascenders in the text and well below the descenders.
|
2005-12-19 22:43:05
| 1,135,050,000 |
resolved fixed
|
b35f1ec
| 1,136,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
2,574 | 120,573 |
Bug 120573 [implementation] IllegalArgumentException in StyledText
|
I get IllegalArgumentExceptions from StyledText. I got a couple of them while running org.eclipse.ui.tests.multieditor.MultiEditorTest (see Test Exception). I used CTRL+SHIFT+T(x2) to go to the java file, and received one in the error log (see Error Log Exception). Test Exception: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Index out of bounds) at org.eclipse.swt.SWT.error(SWT.java:3283) at org.eclipse.swt.SWT.error(SWT.java:3206) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3037) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2751) at org.eclipse.ui.tests.util.UITestCase.processEvents(UITestCase.java:222) at org.eclipse.ui.tests.util.UITestCase.doTearDown(UITestCase.java:214) at org.eclipse.ui.tests.util.UITestCase.tearDown(UITestCase.java:203) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3037) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2751) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1762) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1726) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:397) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Caused by: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3267) at org.eclipse.swt.SWT.error(SWT.java:3206) at org.eclipse.swt.SWT.error(SWT.java:3177) at org.eclipse.swt.custom.StyledText.getOffsetAtLine(StyledText.java:3712) at org.eclipse.jface.internal.text.MigrationHelper.getBottomIndex(MigrationHelper.java:208) at org.eclipse.jface.text.source.AnnotationRulerColumn.getExclusiveBottomIndexEndOffset(AnnotationRulerColumn.java:548) at org.eclipse.jface.text.source.AnnotationRulerColumn.doPaint1(AnnotationRulerColumn.java:692) at org.eclipse.jface.text.source.AnnotationRulerColumn.doubleBufferPaint(AnnotationRulerColumn.java:511) at org.eclipse.jface.text.source.AnnotationRulerColumn.redraw(AnnotationRulerColumn.java:788) at org.eclipse.jface.text.source.AnnotationRulerColumn$6.run(AnnotationRulerColumn.java:775) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 43 more Error Log Exception: Error 2005-12-13 09:51:28.483 Unable to create editor ID org.eclipse.jdt.ui.CompilationUnitEditor: Index out of bounds java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3267) at org.eclipse.swt.SWT.error(SWT.java:3206) at org.eclipse.swt.SWT.error(SWT.java:3177) at org.eclipse.swt.custom.StyledText.getOffsetAtLine(StyledText.java:3712) at org.eclipse.jface.internal.text.MigrationHelper.getBottomIndex(MigrationHelper.java:208) at org.eclipse.jface.text.source.AnnotationPainter.getExclusiveBottomIndexEndOffset(AnnotationPainter.java:1124) at org.eclipse.jface.text.source.AnnotationPainter.computeClippingRegion(AnnotationPainter.java:1252) at org.eclipse.jface.text.source.AnnotationPainter.handleDrawRequest(AnnotationPainter.java:1159) at org.eclipse.jface.text.source.AnnotationPainter.enablePainting(AnnotationPainter.java:355) at org.eclipse.jface.text.source.AnnotationPainter.updatePainting(AnnotationPainter.java:790) at org.eclipse.jface.text.source.AnnotationPainter.paint(AnnotationPainter.java:1434) at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.updateAnnotationPainter(SourceViewerDecorationSupport.java:865) at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.updateTextDecorations(SourceViewerDecorationSupport.java:345) at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.install(SourceViewerDecorationSupport.java:303) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.createPartControl(JavaEditor.java:2641) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.createPartControl(CompilationUnitEditor.java:1660) at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:598) at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:374) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:285) at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:140) at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:264) at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:394) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1140) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1093) at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1312) at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1278) at org.eclipse.ui.internal.PartStack.add(PartStack.java:453) at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:101) at org.eclipse.ui.internal.PartStack.add(PartStack.java:440) at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:110) at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:60) at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:214) at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:204) at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:764) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:671) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:634) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2381) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2316) at org.eclipse.ui.internal.WorkbenchPage.access$10(WorkbenchPage.java:2308) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2294) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2289) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2274) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:266) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:143) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:65) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:78) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:117) at org.eclipse.core.commands.Command.execute(Command.java:306) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:401) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:461) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:786) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:833) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:555) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:498) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:118) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:888) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:775) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:797) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:783) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:889) at org.eclipse.swt.widgets.Widget.XKeyPress(Widget.java:1117) at org.eclipse.swt.widgets.Composite.XKeyPress(Composite.java:1300) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1063) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3640) at org.eclipse.swt.internal.motif.OS._XtDispatchEvent(Native Method) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(OS.java:3854) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2744) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1762) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1726) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:397) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Session Data: eclipse.buildId=I20051213-0010 java.version=1.4.2_09 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=solaris, ARCH=sparc, WS=motif, NL=en_CA Command-line arguments: -os solaris -ws motif -arch sparc PW
|
2005-12-13 09:57:13
| 1,134,490,000 |
resolved fixed
|
6c60eca
| 1,136,500,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,575 | 122,736 |
Bug 122736 StyledText - ArrayIndexOutOfBoundsException
|
Hello I have error when I'm trying to add text using append() method. Bad: for (int i = 0; i <= 5; i++) { int start = styledText.getLineCount() - 1; styledText.append("TITLE : "+ i +"\r\n"); //If you try to use methods like setLineBackground or setLineIndent you will get exceptions, if not - everything works fine styledText.setLineBackground(start,1,new Color(null,192,192,192)); styledText.append("INFO : "+ i +"\r\n\r\n"); } Good: for (int i = 0; i <= 5; i++) { int start = styledText.getLineCount() - 1; styledText.append("TITLE : "+ i +"\r\n"); styledText.append("INFO : "+ i +"\r\n\r\n"); } java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at org.eclipse.swt.custom.StyledTextRenderer.textChanging(StyledTextRenderer.java:1132) at org.eclipse.swt.custom.StyledText.handleTextChanging(StyledText.java:5354) at org.eclipse.swt.custom.StyledText$6.textChanging(StyledText.java:4793) at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:69) at org.eclipse.swt.custom.DefaultContent.sendTextEvent(DefaultContent.java:794) at org.eclipse.swt.custom.DefaultContent.replaceTextRange(DefaultContent.java:778) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:5768) at org.eclipse.swt.custom.StyledText.replaceTextRange(StyledText.java:6262) at org.eclipse.swt.custom.StyledText.append(StyledText.java:1438)
|
2006-01-05 05:17:31
| 1,136,460,000 |
resolved fixed
|
41379af
| 1,136,490,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java
|
SWT
|
2,576 | 122,496 |
Bug 122496 java.lang.ArrayIndexOutOfBoundsException in StyledTextRenderer.setStyleRanges
|
I found the Bug, because i looking for a printing problem in the Plugin "Eclipse Colorer". Then the function setStyleRanges is called from StyledText$Printing.cacheLineData(StyledText.java:262) and newStyles can be a empty array. Is newStyles a empty array ArrayIndexOutOfBoundsException is throw. old: void setStyleRanges (int[] newRanges, StyleRange[] newStyles) { if (newStyles == null) { stylesSetCount = styleCount = 0; must be: void setStyleRanges (int[] newRanges, StyleRange[] newStyles) { if (newStyles == null || newStyles.length == 0) { Stacktrace: java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.swt.custom.StyledTextRenderer.setStyleRanges(StyledTextRenderer.java:959) at org.eclipse.swt.custom.StyledText$Printing.cacheLineData(StyledText.java:262) at org.eclipse.swt.custom.StyledText$Printing.<init>(StyledText.java:228) at org.eclipse.swt.custom.StyledText.print(StyledText.java:5886)
|
2006-01-03 05:01:35
| 1,136,280,000 |
resolved fixed
|
4f678e6
| 1,136,410,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,577 | 49,267 |
Bug 49267 First characters in Text initially not displayed
|
Hi, In a newly drawed combobox, the first character of the displayed text doesn't appear. If I select the combobox and press Pos1, it looks fine. A place where this bug occurs is the feature.xml editor in the section information. I'll post a screenshot too.
|
2003-12-22 08:31:24
| 1,072,100,000 |
resolved fixed
|
00f5285
| 1,136,410,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
2,578 | 122,433 |
Bug 122433 Exception in ImagesList
|
Eclipse 3.2 M4 JDK 1.5.0_05 java.lang.ArrayIndexOutOfBoundsException: 8 at org.eclipse.swt.widgets.ImageList.indexOf(ImageList.java:314) at org.eclipse.swt.widgets.Tree.imageIndex(Tree.java:1951) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:1402) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:1432) at org.eclipse.jface.viewers.TreeViewer.doUpdateItem(TreeViewer.java:246) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:85) at org.eclipse.jface.util.SafeRunnable$1.run(SafeRunnable.java:112) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:621) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:434) at org.eclipse.jface.util.SafeRunnable$1.run(SafeRunnable.java:112) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:1763) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem(AbstractTreeViewer.java:535) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:514) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:494) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:794) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run(AbstractTreeViewer.java:985) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1201) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:975) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:249) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1417) at ru.home.Test.createContents(Test.java:108) at ru.home.Test.open(Test.java:86) at ru.home.Test.main(Test.java:75)
|
2006-01-01 12:05:57
| 1,136,140,000 |
resolved fixed
|
e4a74c1
| 1,136,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java
|
SWT
|
2,579 | 121,903 |
Bug 121903 OS.AlphaBlend causes "bddraw" stdout spew
| null |
2005-12-22 12:24:51
| 1,135,270,000 |
resolved fixed
|
af911e1
| 1,136,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,580 | 121,890 |
Bug 121890 Canvas and mouseMoveListener and MacOS
|
* I posted on eclipse.platform.swt: This problem is specific SWT on MacOS. It does not seem to be a problem on Windows or Linux. Here's a program that creates a Table, a Label, and a Canvas, and listens for MouseMoveEvents from all of them. Select a row in the Table, hold the mouse button down, and drag it to the label. The program keeps getting MouseEvents while the mouse moves across the label. Good. But move it across the Canvas. Neither the Table nor the Canvas will generate MouseEvents until you release the mouse button. Is there some way I can get those MouseEvents? Can this be considered a bug in the MacOS implementation? * And the response was: The event reported by the OS in this case is kEventMouseDragged and for some reason, SWT is deliberately not sending the MouseMove event for Table (and all subclasses of Composite). This sounds like a bug and should be reported against Platform SWT.
|
2005-12-22 10:34:08
| 1,135,270,000 |
resolved fixed
|
a7a4f8c
| 1,135,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java
|
SWT
|
2,581 | 120,954 |
Bug 120954 Background of Control with SWT.INHERIT_FORCE doesn't show through with ToolItems with transparent images
| null |
2005-12-14 15:44:56
| 1,134,590,000 |
resolved fixed
|
cb44d9b
| 1,135,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
2,582 | 120,524 |
Bug 120524 drawRoundRectangle draw bad round corner of rectangle.
|
Hi ! I'm using eclipse 3.1 on Windows XP, when I draw round rectangles sometimes the rounded corners are drawn badly specially when a Transform is used in gc. "badly" means rounded corner circle are not the right ones but "opposite". (see attached picture). Used snippet: package test1; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Transform; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class RoundRect { public static void main(String[] args) { Display disp = new Display(); Shell shell = new Shell( disp ); shell.setSize( 400, 300 ); shell.addPaintListener( new PaintListener() { public void paintControl(PaintEvent e) { Transform tr = new Transform( e.display ); //same effect: tr.translate( 0,0 ); tr.translate( 5,5 ); e.gc.setTransform( tr ); e.gc.setBackground( new Color(null,255,0,0)); e.gc.fillRoundRectangle( 0,0, 142, 90, 90,90 ); e.gc.drawRoundRectangle( 0,0, 142, 90, 90,90 ); e.gc.setTransform( null ); tr.dispose(); } }); shell.open (); while (!shell.isDisposed ()) { if (!disp.readAndDispatch ()) disp.sleep (); } disp.dispose (); } }
|
2005-12-13 03:33:33
| 1,134,460,000 |
resolved fixed
|
0f32525
| 1,135,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,583 | 121,729 |
Bug 121729 in SWT, javadoc for Table.getColumns does document order
|
The javadoc for Table.getColumns() should indicate what order the TableColumns are returned in. IE, are they in display order or creation order. Its a minor thing, but its a pain in the ass to have to track it down when you need to know.
|
2005-12-21 09:50:26
| 1,135,180,000 |
resolved fixed
|
075a498
| 1,135,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,584 | 121,741 |
Bug 121741 Disposing a StyledText disposes its menu?
|
I pass the same menu into many StyledText controls to get a common context menu. When I dispose one of these, it disposes my menu. I could easily be confused, but it seems to me that this is contrary to the contract of dispose protocols. The StyledText didn't create it, why should it dispose it?
|
2005-12-21 11:11:18
| 1,135,180,000 |
resolved fixed
|
7187333
| 1,135,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
2,585 | 120,914 |
Bug 120914 Warnings suppressed from GtkFileChooser creation
| null |
2005-12-14 12:34:21
| 1,134,580,000 |
resolved fixed
|
a5a8ba2
| 1,135,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
2,586 | 120,980 |
Bug 120980 Regression: Image on disabled button no longer greyed out
|
SWT-win32 v3218, Windows XP, Classic Theme, Manifest Run the testcase below. Even though the button is disabled, the icon is unchanged from its "enabled" look, giving no indication that you cannot press the button. In 3.1-final, the icon was greyed out. Not a problem when using the Luna Theme or running without the manifest file. --- import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class ButtonImageTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); Image icon = new Image(display, 16, 16); GC gc = new GC(icon); gc.setBackground(display.getSystemColor(SWT.COLOR_BLACK)); gc.drawRectangle(0, 0, 15, 15); gc.fillRectangle(4, 4, 8, 8); gc.dispose(); Button btn = new Button(shell, SWT.PUSH); btn.setImage(icon); btn.setEnabled(false); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } icon.dispose(); display.dispose(); } }
|
2005-12-14 19:50:23
| 1,134,610,000 |
resolved fixed
|
153d0bb
| 1,134,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
|
SWT
|
2,587 | 118,796 |
Bug 118796 DirectoryDialog.open does not return choosen directory
|
When I use DirectoryDialog.open() with Suse Linux 10.0 OSS and SWT-GTK, it does not return the selected directory. Instead it returns the directory I have changed to with the dialog. This behaviour is strange, since the motif dialog (SWT-Motif) does return a selected directory even when I have not changed to it. Also the original GtkFileChooser does return a selected directory even when I have not changed to it. The same behaviour applies for Windows: I don't have to change to the directory, I just have to mark it in the dialog and click ok. The bug is also in SWT 3.2M3
|
2005-12-01 05:54:22
| 1,133,430,000 |
resolved fixed
|
6c386a8
| 1,134,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
2,588 | 120,654 |
Bug 120654 Cheese in StyledText on Linux
|
I20051213-0010, GTK+ 2.2.4, pango 1.2.5. See attached screenshot. When clicking around in the Java editor, the lines "shimmer" and often jump up and down. The root cause seems to be the use of TextLayout.getLineHeight(int) to handle dynamic line heights. Special casing fixedLineHeight mode in StyledTextRenderer.drawLine() seems to work around the problem.
|
2005-12-13 13:19:39
| 1,134,500,000 |
resolved fixed
|
b4fa378
| 1,134,680,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
2,589 | 118,909 |
Bug 118909 Problems with accents using SWT_AWT
|
We have a big application wich uses Swing and SWT. In our app we have a big trouble with accents in Swing TextFields. When we try to punctuate a bowel, two accents appear in the TextField before the bowel is pressed. In this testcase, you can see our problem : import java.awt.BorderLayout; import java.awt.Panel; import org.eclipse.swt.SWT; import org.eclipse.swt.awt.SWT_AWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SwingAWTClass { public static void main(String[] args) { final Display display = new Display( ); final Shell shell = new Shell(display); shell.setText("Using Swing and AWT"); shell.setLayout(new FillLayout()); Composite c1 = new Composite(shell, SWT.NONE); Composite composite = new Composite(c1, SWT.EMBEDDED); java.awt.Frame frame = SWT_AWT.new_Frame(composite); Panel panel = new Panel( ); panel.setLayout(new BorderLayout()); frame.add(panel); final javax.swing.JTextField text = new javax.swing.JTextField(20); panel.add(text); shell.setSize(350, 280); shell.open( ); c1.setBounds(0, 0, 100, 100); composite.setBounds(0, 0, 100, 100); text.requestFocus(); while(!shell.isDisposed( )) { if (!display.readAndDispatch( )) display.sleep( ); } display.dispose( ); } } Eclipse 3.0.2 Build id: 200503110845 JDK 1.4.2 IBM Windows XP and Windows 2000
|
2005-12-01 14:49:57
| 1,133,470,000 |
resolved fixed
|
d349945
| 1,134,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,590 | 120,176 |
Bug 120176 Can't reliably change the cursor during Tracker.open()
|
Changing the cursor of a tracker requires that we break the X grab and re-grab with the new cursor. In the current code though, you can only do this once, as we seem to never update the "lastCursor" field.
|
2005-12-09 16:11:55
| 1,134,160,000 |
resolved fixed
|
73dff4b
| 1,134,160,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
2,591 | 116,121 |
Bug 116121 Invalid widget used for gtk_widget_get_accessible
|
gtk2-2.4.10-4 An SWT app using 3.2M2 (GTK) spits out a lot of these to console: Gtk-CRITICAL **: file gtktreeview.c: line 11861 (gtk_tree_view_set_search_column): assertion `column >= 0' failed 3.2M3 adds a few of these: Gtk-CRITICAL **: file gtkwidget.c: line 7260 (gtk_widget_get_accessible): assertion `GTK_IS_WIDGET (widget)' failed Don't know how to track down the cause in a large app using SWT.
|
2005-11-12 18:37:47
| 1,131,840,000 |
resolved fixed
|
02559d5
| 1,133,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
|
SWT
|
2,592 | 118,362 |
Bug 118362 StyledText: Top index wrong after selectAll
|
SWT-win32, N20051127-0010 - Run the testcase below - Expected result: both text lines are visible - Actual result: the first line is scrolled out of view - Does not happen in v3138-v3214 --- import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class StyledTextSelectAllTest { 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.WRAP | SWT.MULTI | SWT.V_SCROLL); text.setText("First line\r\nSecond line"); text.selectAll(); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2005-11-29 00:02:00
| 1,133,240,000 |
resolved fixed
|
1b04da3
| 1,133,390,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,593 | 116,746 |
Bug 116746 ToolItem text is clipped
|
Head SWT see attached screenshot from ControlExample
|
2005-11-16 18:18:18
| 1,132,180,000 |
resolved fixed
|
213b343
| 1,133,380,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
2,594 | 117,700 |
Bug 117700 [open type] Open Type table shows unmotivated ellipsis, disappears on redraw
|
I20051122-1300 - select text "CharSequence" in a JavaEditor - press Ctrl+Shift+T => An ellipsis (...) is drawn to the right of the first entry in the list. When I move another window on top of the dialog and then move it away, the ellipsis is not redrawn. Dirk, do you have an idea what's happening here? If not, please move to SWT.
|
2005-11-23 06:25:17
| 1,132,750,000 |
resolved fixed
|
bdb97e1
| 1,133,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,595 | 118,119 |
Bug 118119 Mac: Calling Tree.setItemCount() causes SWTError: Item not removed
|
[I20051123-1200] When you decrease the item count of a Tree with SWT.VIRTUAL, the following error occurs: Exception in thread "main" org.eclipse.swt.SWTError: Item not removed at org.eclipse.swt.SWT.error(SWT.java:3288) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at org.eclipse.swt.widgets.Widget.error(Widget.java:735) at org.eclipse.swt.widgets.Tree.setItemCount(Tree.java:2559) at org.eclipse.swt.widgets.Tree.setItemCount(Tree.java:2532) at org.eclipse.swt.snippets.Snippet202.main(Snippet202.java:53)
|
2005-11-25 19:48:53
| 1,132,970,000 |
resolved fixed
|
a69efc2
| 1,133,300,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,596 | 118,378 |
Bug 118378 StyledText#computeSize imposes artificial limit on return value
| null |
2005-11-29 03:01:13
| 1,133,250,000 |
resolved fixed
|
97bce29
| 1,133,300,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,597 | 118,241 |
Bug 118241 StyledText: getLineHeight(int) and getBaseline(int): code do not match spec
|
N20051127-0010 The Javadoc says: * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_RANGE when the offset is outside the valid range (< 0 or > getCharCount())</li> While the code tests: if (!(0 <= offset && offset < content.getCharCount())) { SWT.error(SWT.ERROR_INVALID_RANGE); Which one is correct?
|
2005-11-28 10:08:33
| 1,133,190,000 |
verified fixed
|
e43ea7f
| 1,133,200,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,598 | 118,240 |
Bug 118240 StyledText.getBaseline(StyledText.getCharCount()-1)) causes IAE
|
N20051127-0010 When having something like: 'xxx xxx ' calling StyledText.getBaseline(StyledText.getCharCount()-1)) causes an IAE: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3246) at org.eclipse.swt.SWT.error(SWT.java:3185) at org.eclipse.swt.SWT.error(SWT.java:3156) at org.eclipse.swt.graphics.TextLayout.getLineIndex(TextLayout.java:1010) at org.eclipse.swt.custom.StyledText.getBaseline(StyledText.java:3003)
|
2005-11-28 10:06:15
| 1,133,190,000 |
verified fixed
|
72acb45
| 1,133,200,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,599 | 117,928 |
Bug 117928 JDT Text test don't run anymore (out of handles) - works with SWT 3.2 M1
|
I20051123-1200 I have the following setup: 1. install I20051123-1200 2. start fresh workspace 3. load org.eclipse.jdt.text.tests checked out from HEAD 4. load all its required test projects from HEAD 5. load org.eclipse.jface.text from HEAD 6. *** only needed to run against SWT from 3.2 M1 - see later step *** - replace "gc.getDevice()" with "" in all *.java files - in AnnotationPainter.java replace "getLineHeight(offset)" with "getLineHeight()" 7. run JdtTextTestSuite as JUnit Plug-in Test (ignore the error in jdt.ui.tests) ==> no more handles occurrs (at different places on each run) ==> several tests fail as consequence Works on Linux and also on releng WinXP machine but fails on several of our machines here in the lab. Integrated SWT's sleak tool code into the test runner to dump object info for each test. Before the error the figures are about the following: 221 Color(s) 8 Cursor(s) 10 Font(s) 154 Image(s) The interesting part comes now: - use the PDE importer to import SWT from 3.2 M1 and repeat step 7. ==> no SWTError - use the PDE importer to import SWT from 3.2 M2 (or newer) and repeat step 7. ==> SWTError is back Here's one such stack trace: Error while informing user about event loop exception: org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:3277) at org.eclipse.swt.SWT.error(SWT.java:3174) at org.eclipse.swt.SWT.error(SWT.java:3145) at org.eclipse.swt.widgets.Widget.error(Widget.java:407) at org.eclipse.swt.widgets.Control.createHandle(Control.java:482) at org.eclipse.swt.widgets.Label.createHandle(Label.java:170) at org.eclipse.swt.widgets.Control.createWidget(Control.java:497) at org.eclipse.swt.widgets.Control.<init>(Control.java:97) at org.eclipse.swt.widgets.Label.<init>(Label.java:89) at org.eclipse.ui.internal.progress.NewProgressViewer$JobItem.<init>(NewProgressViewer.java:524) at org.eclipse.ui.internal.progress.NewProgressViewer.createItem(NewProgressViewer.java:1344) at org.eclipse.ui.internal.progress.NewProgressViewer.refresh(NewProgressViewer.java:1652) at org.eclipse.ui.internal.progress.NewProgressViewer.setInput(NewProgressViewer.java:1886) at org.eclipse.ui.internal.progress.BlockedJobsDialog.showJobDetails(BlockedJobsDialog.java:317) at org.eclipse.ui.internal.progress.BlockedJobsDialog.createDialogArea(BlockedJobsDialog.java:287) at org.eclipse.jface.dialogs.IconAndMessageDialog.createDialogAndButtonArea(IconAndMessageDialog.java:199) at org.eclipse.jface.dialogs.IconAndMessageDialog.createContents(IconAndMessageDialog.java:188) at org.eclipse.jface.window.Window.create(Window.java:417) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1051) at org.eclipse.jface.window.Window.open(Window.java:775) at org.eclipse.ui.internal.progress.BlockedJobsDialog$1.runInUIThread(BlockedJobsDialog.java:224) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:93) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3171) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2826) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:126) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:161) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:87) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:217) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1659) at org.eclipse.core.internal.resources.File.create(File.java:107) at org.eclipse.jdt.internal.core.JavaProject.setSharedProperty(JavaProject.java:2952) at org.eclipse.jdt.internal.core.JavaProject.saveClasspath(JavaProject.java:2722) at org.eclipse.jdt.internal.core.SetClasspathOperation.saveClasspathIfNecessary(SetClasspathOperation.java:610) at org.eclipse.jdt.internal.core.SetClasspathOperation.executeOperation(SetClasspathOperation.java:257) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:724) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1704) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:788) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2892) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2908) at org.eclipse.jdt.testplugin.JavaProjectHelper.createJavaProject(JavaProjectHelper.java:141) at org.eclipse.jdt.text.tests.contentassist.JavadocCompletionTest.setUp(JavadocCompletionTest.java:113) at junit.framework.TestCase.runBare(TestCase.java:125) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22) at junit.extensions.TestSetup$1.protect(TestSetup.java:19) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.extensions.TestSetup.run(TestSetup.java:23) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at junit.framework.TestSuite.runTest(TestSuite.java:236) at junit.framework.TestSuite.run(TestSuite.java:226) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3171) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2826) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1794) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:381) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
|
2005-11-24 12:16:27
| 1,132,850,000 |
verified fixed
|
40c0440
| 1,132,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java
|
SWT
|
2,600 | 117,816 |
Bug 117816 Crash while running JFace test suite
|
I20051123-1200, UI and SWT from HEAD, GTK+ 2.6.10, KDE 3.4.1, X.org 6.8.2, Linux 2.6.13 It starts with the following failure.... junit.framework.AssertionFailedError: first2 is visible at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:220) at org.eclipse.jface.tests.viewers.AbstractTreeViewerTest.testExpandToLevel(AbstractTreeViewerTest.java:110) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at junit.framework.TestCase.runTest(TestCase.java:154) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3038) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2746) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1722) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:391) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
|
2005-11-23 21:21:31
| 1,132,800,000 |
resolved fixed
|
66037f9
| 1,132,940,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
2,601 | 99,381 |
Bug 99381 [PerspectiveBar] Alignment of items in perspective switcher when switcher docked to the left is incorrect
|
Steps to reproduce: 1. Launch Eclipse 3.0.2 SDK 2. From perspective switcher, select Dock On > Left 3. Open a few perspectives - PDE, Java, CVS, etc... 3. On Windows, all the perspectives are left-aligned. However, on linux the perspectives are center-aligned. This looks pretty ugly. Behaviour of perspective switcher on linux should match the behaviour on Windows. To give you some background on why Im making this request - In the WebSphere Everyplace Deployment runtime, I've morphed the perspective switcher (org/eclipse/ui/internal/PerspectiveSwitcher) to a launcher which allows users to navigate between and run various applications deployed to the runtime. I'd like for the application (our perspectives) icons to be stacked one on top of the other and be left-aligned. For reference, this launcher is similar to what is used in Lotus Workplace Client. I am using the default style used by the workbench for the perspective switcher - SWT.FLAT | SWT.WRAP | SWT.RIGHT | SWT.HORIZONTAL. I tried various permutations and combinations of these style bits but I cant get the perspectives to left-align on Linux GTK.
|
2005-06-10 11:27:55
| 1,118,420,000 |
resolved fixed
|
a1e1381
| 1,132,900,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
2,602 | 117,990 |
Bug 117990 Reduce matching complexity of the SWT flat toolbar RC style
|
The documentation for GtkRC indicates that "*" characters in GTK+ RC files slow down widget creation. Currently we match against: "*swt-toolbar-flat*" This can be reduced to: "*.swt-toolbar-flat" and still work, but with reduced complexity.
|
2005-11-24 22:36:10
| 1,132,890,000 |
resolved fixed
|
3be2fdd
| 1,132,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,603 | 99,461 |
Bug 99461 resizing Table can have draw problems
|
3.1RC2 noon build, gtk 2.4.13 - run the snippet below, it opens a small window - grab the window's bottom-right corner and make it bigger - this will leave lots of cheese, as shown in the next screenshot - this problem does not happen if the table has no columns public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Table table = new Table(shell, SWT.NONE); new TableColumn(table, SWT.NONE); // <--- shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-06-10 16:13:08
| 1,118,430,000 |
resolved fixed
|
53c5711
| 1,132,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,604 | 117,807 |
Bug 117807 possible bug in TableItem.setImage (int index, Image image)
|
This function appears as though it would have a bug in it - basically there appears to be an underlying assumption that the setImage function is used to change an image from one to another. If you use this function to turn on or off an image, it won't redraw correctly. This line of code is the last in the function: redraw (index, false, true); I think it should be: redraw (index, true, true); So that the text will be redrawn. The text needs to be redrawn in (at least) 2 cases: 1. When the image was previously null and is change to be non-null 2. The converse.
|
2005-11-23 18:55:36
| 1,132,790,000 |
resolved fixed
|
1153c53
| 1,132,870,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
2,605 | 117,879 |
Bug 117879 NullPointerException from mouse move
|
Version: 3.2.0 Build id: I20051123-1200 I found this error in my console. No idea what i was doing and nothing bad seemed to happen. java.lang.NullPointerException at org.eclipse.swt.widgets.Widget.wmMouseMove(Widget.java:1919) at org.eclipse.swt.widgets.Control.WM_MOUSEMOVE(Control.java:3637) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3187) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3919) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1705) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2859) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1794) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1758) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.jav a:381) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:10 6) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformAct ivator.java:109) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runAppli cation(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ec lipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:167) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
|
2005-11-24 05:57:21
| 1,132,830,000 |
resolved fixed
|
ee86615
| 1,132,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,606 | 117,757 |
Bug 117757 Is TreeItem (.. int hParent, ..) supposed to be public?
|
I20051122-1300 Is the constructor public TreeItem (Tree parent, int style, int hParent, int hInsertAfter, int hItem) supposed to be public? I guess it should be package-private.
|
2005-11-23 12:45:49
| 1,132,770,000 |
resolved fixed
|
4176736
| 1,132,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
2,607 | 74,482 |
Bug 74482 Background colour not propagated inside group or tabfolder
| null |
2004-09-21 17:15:55
| 1,095,800,000 |
resolved fixed
|
2818ff5
| 1,132,700,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
2,608 | 117,195 |
Bug 117195 Regression: Shell ignores first mouse-click after dialog closed
|
SWT-win32, N20051119-0010 - Run the snippet below - Double-click the list - Close the dialog that pops up - Try to click the button or one of the minimize/maximize/close buttons - Note that the first mouse-click is ignored, it does not do anything --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class DialogMouseTest { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); List list = new List(shell, SWT.NONE); list.add("Double-click me"); list.addListener(SWT.MouseDoubleClick, new Listener() { public void handleEvent(Event e) { Shell dlg = new Shell(shell, SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL); dlg.setText("Close me"); dlg.pack(); dlg.open(); while (!dlg.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } }); Button btn = new Button(shell, SWT.PUSH); btn.setText("I'm a button"); shell.setSize(300, 100); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2005-11-19 14:09:59
| 1,132,430,000 |
resolved fixed
|
9747fcc
| 1,132,610,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,609 | 11,714 |
Bug 11714 Non error messages are logged.
|
After running help and browsring documents, the platform log contains entries with messages from web browser like "No running window found.", or "xmlencoding detect- ISO-8859-1". These are normal , and it would be better if they were not logged to the platform log.
|
2002-03-19 16:00:29
| 1,016,570,000 |
verified fixed
|
bf221f6
| 1,132,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
2,610 | 117,125 |
Bug 117125 Tree with columns shows horizontal scroll bar when it shouldn't
|
SWT-win32, v3214 The testcase below contains a tree with a single column. When the parent shell is resized, the width of the column is set to exactly fill the available space. It works, but a horizontal scroll bar will appear even though none is needed. For some reason the widget thinks that there is one additional pixel to the right. If you replace the tree with a table (and the tree column with a table column), you don't get a horizontal scroll bar. Note: To keep the snippet simple, it does not contain code for the case where a vertical scroll bar is visible. --- import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; public class TreeColumnTest { public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); final Tree tree = new Tree(shell, SWT.NONE); tree.setHeaderVisible(true); final TreeColumn column = new TreeColumn(tree, SWT.LEFT); shell.addControlListener(new ControlAdapter() { public void controlResized(ControlEvent e) { Rectangle area = shell.getClientArea(); int width = area.width - 2 * tree.getBorderWidth(); if (width < column.getWidth()) { column.setWidth(width); tree.setSize(area.width, area.height); } else { tree.setSize(area.width, area.height); column.setWidth(width); } } }); shell.setSize(300, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2005-11-18 13:55:24
| 1,132,340,000 |
resolved fixed
|
8e38846
| 1,132,350,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,611 | 104,284 |
Bug 104284 GTK warnings when setting item count on VIRTUAL Table before its open
|
3.1 - run the snippet below, which sets the item count to 500 - the SetData callback is not invoked for the items that should be initially visible, so the Table appears blank - scroll down and note that it works for item indices > 14 *** if the Table item count is set after the Shell has been opened then the initial 14 items are queried and shown fine public static void main (String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,400,300); final Table table = new Table(shell, SWT.VIRTUAL); table.setBounds(10,10,300,200); table.setItemCount(500); shell.open(); //table.setItemCount(500); // this works table.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TableItem item = (TableItem)event.item; int index = table.indexOf(item); item.setText("virtual item " + index); } }); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-07-18 17:08:19
| 1,121,720,000 |
resolved fixed
|
8a9f511
| 1,132,340,000 |
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
|
2,612 | 116,110 |
Bug 116110 FileDialog hangs SWT Application
| null |
2005-11-12 08:51:10
| 1,131,800,000 |
resolved fixed
|
937e40a
| 1,132,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
2,613 | 113,005 |
Bug 113005 Table Header stays depressed.
|
Create an SWT application with a Table and a push Button, the Table must have a column header. 1. Make the push Button receive keyboard focus. This can be achieved by pressing the mouse button inside of the push Button, dragging it outside of the push Button and then releasing the mouse button. 2. Press the mouse button over the Table header. Do not release the mouse button. 3. Press and hold the space bar. This will cause the push Button to depress. 4. Move the mouse outside of the Table header and release the mouse button. This causes the Table header to remain depressed. 5. Release the space bar. This is repeatable for the headers of all the Table's Columns.
|
2005-10-18 17:02:35
| 1,129,670,000 |
resolved fixed
|
83d76c7
| 1,132,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,614 | 116,720 |
Bug 116720 GLCanvas doesn't set hint for merging mouse motion events
|
At least on GTK, the GLCanvas doesn't merge multiple mouse motion events that might happen to be in the event queue. Instead, it floods the listener with lists of old events. Other widgets like Canvas do not show this behaviour. Test case exhibiting this bug is appended. It uses a waiting event handler to facilitate queuing of mouse motion events. You can see in the program output that the output keeps coming long after the mouse is resting again.
|
2005-11-16 15:37:05
| 1,132,170,000 |
resolved fixed
|
0cb2304
| 1,132,210,000 |
bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java
|
SWT
|
2,615 | 116,688 |
Bug 116688 editor cheese after code completion
|
Build id: I20051115-0800 I am occasionally getting cheese in the editor after inserting code using content assist and organize imports in this build. For example, if I type a class name, and then hit Ctrl+Shift+M to import it, I get some parts of the text pushed down by a line while other parts stay put. I will attach a screen shot as an example. In the screen shot, there is an invisible line about an inch from the left hand side - everything to the left of the line is fine, and everything to the right of the line has been pushed down so the two pieces don't line up.
|
2005-11-16 11:51:06
| 1,132,160,000 |
resolved fixed
|
414c5f5
| 1,132,180,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,616 | 115,675 |
Bug 115675 disappearing checkbox with Windows XP look and feel
| null |
2005-11-09 13:44:04
| 1,131,560,000 |
resolved fixed
|
fc9934e
| 1,131,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,617 | 79,894 |
Bug 79894 Control.update() method is too expensive
|
Our product intensively uses SWT to represent results to user. It may create hundred widgets. Sometimes it uses Control.update() method with "all" set to false. This method takes about 20% of entire time taken by SWT. I profiled the use case and noticed that Display.checkIfEvent() is called about 8 200 times however Control.update() was called only 16 times. I also noticed that Display.checkIfEvent() modifies event in the queue (Do not know whether this is a good practice). This is due to each event in the X queue is checked each time Control.update() is called. As far as I understand the goal of this function is to collect all pending Expose events for given widget and optionally for all its children and then process all updates at once. I tried to modify Control.update() method to use XCheckWindowEvent() and got good results. This method is slightly faster if "all" argument is true and takes almost no time if "all" is false. VisibilityNotify events are removed from the queue so they are not processed again by GTK. Could you please review the patch and give your opinion. Is it possible to replace current SWT implementation with proposed one?
|
2004-12-01 12:10:50
| 1,101,920,000 |
resolved fixed
|
4c759d3
| 1,131,840,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,618 | 100,659 |
Bug 100659 Dialog displays small sometimes in GTK
| null |
2005-06-17 16:12:14
| 1,119,040,000 |
resolved fixed
|
49869f2
| 1,131,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,619 | 116,005 |
Bug 116005 Cannot type in Text widget in an ON_TOP Shell
| null |
2005-11-11 09:29:29
| 1,131,720,000 |
resolved fixed
|
f8dfb27
| 1,131,730,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
|
SWT
|
2,620 | 115,230 |
Bug 115230 Font smooth does not work in Eclipse Forms
| null |
2005-11-06 05:33:01
| 1,131,270,000 |
resolved fixed
|
ff167b1
| 1,131,660,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,621 | 112,358 |
Bug 112358 Need a way to create a new Color based on an existing color
|
We need a way to create a new color from an existing color by varying the hue, saturation or brightness.
|
2005-10-12 12:07:16
| 1,129,130,000 |
resolved fixed
|
2503053
| 1,131,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java
|
SWT
|
2,622 | 107,219 |
Bug 107219 Redraw problems on resizing Tree column
|
Tree cell contents are not redrawing properly in 3.2M1 where: - the tree has visible column headers, and column resizing is enabled - only one column exists When the right hand edge of the column is dragged leftwards, it draws over the cell contents, but the cell is not redrawn. Some content is still visible outside the cell. This is a new bug which does not occur in v3.1. Illustrative screenshots to follow.
|
2005-08-17 11:03:03
| 1,124,290,000 |
resolved fixed
|
db37a37
| 1,131,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,623 | 112,454 |
Bug 112454 ColorSelector button does not display correctly when first visible
|
Version: 3.1.0 Build id: I20051012-1200 When the ColorSelector control is appears to show the background of the control behind it. Pressing the alt key or hovering over the button makes it display its correct colour. This can be seen on the ant preference page as well as a few others. See attached screenshot. This was working in I20050816-1235
|
2005-10-13 06:06:41
| 1,129,200,000 |
resolved fixed
|
004c286
| 1,131,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
|
SWT
|
2,624 | 115,667 |
Bug 115667 Handle leak in TextLayout
|
3.2 M3 I am not entirely sure of how handles get managed in SWT, but I think I found a leak in TextLayout.draw(TextLayout.java:324). I noticed that I get frequent "No more handles" SWTErrors in the last couple of weeks. Running Sleak reveals that after a while of editing, there are thousands of Region objects with the following allocation path: at org.eclipse.swt.graphics.Device.new_Object(Device.java:658) at org.eclipse.swt.graphics.Region.<init>(Region.java:76) at org.eclipse.swt.graphics.Region.<init>(Region.java:48) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:324) at org.eclipse.swt.custom.StyledTextRenderer.drawLine(StyledTextRenderer.java:147) at org.eclipse.swt.custom.StyledText.performPaint(StyledText.java:5927) at org.eclipse.swt.custom.StyledText.handlePaint(StyledText.java:5242) Looking at the code in TextLayout, it seems that the clipping Region is allocated but never disposed of.
|
2005-11-09 12:40:36
| 1,131,560,000 |
resolved fixed
|
f68d04f
| 1,131,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
2,625 | 113,105 |
Bug 113105 Table widget does not return table item when #getItem(Point) is called
|
I have a table that is created with SWT.FULL_SELECTION turned off. I have added a mouse track listener for providing hover support in my view. When the listener gets the event, I tried to locate the table item at which the hover event is fired. I used the method, Table.getItem(Point) to locate the item. My table has multiple columns. If the hover happens at column 0, #getItem(Point) is able to return the correct item. However, if the hover happens at any other column, #getItem(Point) always returns null which is not expected. If the table is created with the SWT.FULL_SELECTION flag on, then the table is always able to return the correct item. Expected behaviour: The table should be able to return the correct item at any column no matter if SWT.FULL_SELECTION is on or not. Actual behaviour: SWT.FULL_SELECTION off: Table is only able to return an item when the hover happens at column 0 when #getItem(Point) is called. SWT.FULL_SELECTION on: Table is able to return an item no matter where the hover happens. Testcase: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); // #getItem(point) returns null for any column other than column 0 // if FULL_SELECTION is off final Table table = new Table(shell, SWT.BORDER | SWT.MULTI); // #geItem(point) returns the correct item if FULL_SELECTION is on // final Table table = new Table(shell, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION); table.addMouseTrackListener(new MouseTrackAdapter() { public void mouseHover(MouseEvent e) { Point point = new Point(e.x, e.y); TableItem item = table.getItem(point); System.out.println(item); super.mouseHover(e); }}); table.setLayoutData(new GridData(GridData.FILL_BOTH)); TableColumn column1 = new TableColumn(table, SWT.NONE); TableColumn column2 = new TableColumn(table, SWT.NONE); TableColumn column3 = new TableColumn(table, SWT.NONE); for (int i = 0; i < 500; i++) { TableItem item = new TableItem(table, SWT.NONE); item.setText(new String[] { "cell "+i+" 0", "cell "+i+" 1", "cell "+i+" 2"}); } column1.pack(); column2.pack(); column3.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-10-19 11:57:07
| 1,129,740,000 |
resolved fixed
|
a3fbb62
| 1,131,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,626 | 115,292 |
Bug 115292 NullPE in Tree#_getItem(TreeItem parentItem, int index)
|
I just released a new version of my reader using latest SWT 3.2 M3 and now I am getting a lot logfiles, looking like this one: java.lang.NullPointerException at org.eclipse.swt.widgets.Tree._getItem(Tree.java:203) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1422) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:1414) at net.sourceforge.rssowl.controller.FavoritesTree.getTreePath(Unknown Source) at net.sourceforge.rssowl.controller.FavoritesTree.onSelection(Unknown Source) at net.sourceforge.rssowl.controller.FavoritesTree$7.widgetSelected(Unknown Source) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1546) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1555) at org.eclipse.swt.widgets.Tree.itemNotificationProc(Tree.java:2025) at org.eclipse.swt.widgets.Display.itemNotificationProc(Display.java:2220) at org.eclipse.swt.internal.carbon.OS.RemoveDataBrowserItems(Native Method) at org.eclipse.swt.widgets.Tree.removeAll(Tree.java:2261) at net.sourceforge.rssowl.controller.FavoritesTree.buildFavoritesTree(Unknown Source) at net.sourceforge.rssowl.controller.EventManager.actionNewCategory(Unknown Source) at net.sourceforge.rssowl.controller.EventManager.actionNewCategory(Unknown Source) at net.sourceforge.rssowl.controller.popup.FavoritePopup$6.widgetSelected(Unknown Source) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1546) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1555) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1332) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3248) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2899) at net.sourceforge.rssowl.controller.GUI.runEventLoop(Unknown Source) at net.sourceforge.rssowl.controller.GUI.showGui(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader.<init>(Unknown Source) at net.sourceforge.rssowl.controller.RSSOwlLoader.main(Unknown Source) Comparing Tree in CVS, there was a recent change on 28.10. which might be the reason? This exception looks quite new to me, I was not reported to me using a SWT version of 3 weeks ago. Ben
|
2005-11-07 06:53:06
| 1,131,360,000 |
resolved fixed
|
041ec3d
| 1,131,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,627 | 115,092 |
Bug 115092 Snippet 203 doesn't use all texts
|
I'd guess that the line layout.setText(texts[0]); in SWT snippet 203 should be layout.setText(texts[i]);
|
2005-11-04 11:39:04
| 1,131,120,000 |
resolved fixed
|
33051ac
| 1,131,160,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet203.java
|
SWT
|
2,628 | 115,176 |
Bug 115176 Regression: Disabling tool bar makes separator items disappear
|
SWT-win32, 3.2M3 When calling setEnabled(false) on a tool bar, items with SWT.SEPARATOR style disappear. This did not happen in 3.2M2 and earlier versions. Snippet to reproduce: === import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class ToolBarTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout(SWT.VERTICAL)); Image icon = new Image(display, 16, 16); GC gc = new GC(icon); gc.drawRectangle(0, 0, 15, 15); gc.dispose(); final ToolBar bar = new ToolBar(shell, SWT.HORIZONTAL | SWT.FLAT); new ToolItem(bar, SWT.PUSH).setImage(icon); new ToolItem(bar, SWT.SEPARATOR); new ToolItem(bar, SWT.PUSH).setImage(icon); new ToolItem(bar, SWT.SEPARATOR); new ToolItem(bar, SWT.PUSH).setImage(icon); Button btn = new Button(shell, SWT.PUSH); btn.setText("Click me"); btn.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { bar.setEnabled(!bar.getEnabled()); } }); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } icon.dispose(); display.dispose(); } }
|
2005-11-04 18:04:27
| 1,131,150,000 |
resolved fixed
|
ab1753c
| 1,131,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
2,629 | 113,244 |
Bug 113244 Accessibilty...When using JAWS on a StyledText widget the label is not recognized
|
Accessibilty...When using JAWS on a StyledText widget the label is not recognized like it is with a regular Text widget.
|
2005-10-20 11:17:03
| 1,129,820,000 |
resolved fixed
|
3a71e3f
| 1,131,140,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java 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/StyledText.java
|
SWT
|
2,630 | 93,380 |
Bug 93380 [DnD] 100% CPU usage when dragging files in the navigator or package explorer
|
Version: 3.1.0 Build id: I20050419-1200 When i drag and drop a file inside the package explorer or navigator views the CPU says at 100% (or 50% when hyperthreading is enabled). Since the CPU usage doesn't go above 50% my guess is that all of the processing time is spent in the event thread (windows doesn't seem to let the virtual CPU on the event thread, hence the 50% number). I do not see this massive use of CPU when dragging an external file into the navigator or when dragging a file out of the navigator. Dragging views/editor is also ok. I will try to get some thread dumps either tonight or tomorrow.
|
2005-05-01 22:12:38
| 1,115,000,000 |
resolved fixed
|
32dee67
| 1,131,040,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
2,631 | 112,463 |
Bug 112463 Tree.showColumn doesn't scroll column from left of viewport into view
|
- run the snippet below - note that the second column begins within the viewport but is too wide to be fully shown - press the button, which invokes Tree.showColumn(col2) -> this brings the second column fully into the viewport; good - now scroll to the right end of the tree and note that the second column now begins to the left of the viewport, but its right edge is visible - press the button, which invokes Tree.showColumn(col2), but this fails to bring the whole column into view public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell (display); shell.setBounds(10,10,200,200); final Tree tree = new Tree(shell, SWT.NONE); tree.setBounds(10,10,100,100); tree.setHeaderVisible(true); TreeColumn column1 = new TreeColumn(tree, SWT.NONE); column1.setWidth(75); column1.setText("col 1"); final TreeColumn column2 = new TreeColumn(tree, SWT.NONE); column2.setWidth(75); column2.setText("col 2"); TreeColumn column3 = new TreeColumn(tree, SWT.NONE); column3.setWidth(75); column3.setText("col 3"); Button button = new Button(shell, SWT.PUSH); button.setBounds(120,10,70,30); button.setText("Push"); button.addListener(SWT.Selection, new Listener() { public void handleEvent(Event event) { tree.showColumn(column2); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-10-13 08:57:29
| 1,129,210,000 |
resolved fixed
|
862ee59
| 1,131,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,632 | 112,345 |
Bug 112345 [LayoutExample] Toolbar replacing another widget causes cheese
|
Version: 3.1.0 Build id: I20050920-0010 - Download SWT examples. - Run LayoutExample as an SWT application. - On the 'control' column, click on one of the of the controls, a drop down list should appear. Choose 'ToolBar' from the list and press 'enter'. Note that the button that was there before is still there and the toolbar items show on top. - Minimize the application and maximize. Note that only on that Toolbar area the background is reflected from the screen before.
|
2005-10-12 11:09:03
| 1,129,130,000 |
resolved fixed
|
f7eb58f
| 1,131,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
2,633 | 113,802 |
Bug 113802 Dialogs block the execution of (a)syncExecs
|
Hello.. I surprisingly noticed that opening PrintDialog, FileDialog and DirectoryDialog block the execution of Runnables posted by syncExec() and asyncExec(). On the other hand, the ones posted by timerExec() are still executed! SWT(3138).. what's wrong? best regards Saibel PS: I haven't found any similar postings/bugs, so I think this one is new.
|
2005-10-26 09:23:55
| 1,130,330,000 |
resolved fixed
|
473d126
| 1,130,970,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,634 | 114,533 |
Bug 114533 Editor popup has wrong size
|
Build: 20051101-0010 All of the [editor/view/perspective] selection popups in this build are sized incorrectly, requiring a vertical scroll-bar no matter how many entries are in the popup. This only started happening with today's build. I will attach a screen shot showing the same editor selection popup with I20051101-0010 versus I20051031-0800 (which did not exhibit the problem).
|
2005-11-01 10:23:04
| 1,130,860,000 |
resolved fixed
|
7bf31dc
| 1,130,880,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,635 | 114,498 |
Bug 114498 Table doesn't send selection change events anymore when selecting elements with the mouse
|
Version: 3.2.0 Build id: I20051031-2000 In Open Type dialog when Show Status Line is enabled then the status line entry does change if one goes through the entries by pressing up/down key but not if an entry is selected with the mouse.
|
2005-11-01 05:54:39
| 1,130,840,000 |
resolved fixed
|
2617b7e
| 1,130,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,636 | 112,390 |
Bug 112390 [Viewers] JUnit error in JFacePerformanceSuite
| null |
2005-10-12 15:56:30
| 1,129,150,000 |
resolved fixed
|
c57ed90
| 1,130,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
2,637 | 111,798 |
Bug 111798 Text#getCaretLocation() replaces selected text by " " iff caret is after last character
|
I20051004-0800 - select the last few characters of a Text such that the caret is at the very end - call Text#getCaretLocation() => Selection is replaced by a space. => Neither selection nor text should be changed. This can easily be reproduced in Eclipse: - have: void m() { new java.util.ArrayList(); } - select "new java.util.ArrayList()" - Refactor > Extract Local Variable - press Ctrl+Space
|
2005-10-06 11:38:36
| 1,128,610,000 |
resolved fixed
|
da903d0
| 1,130,790,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
2,638 | 110,951 |
Bug 110951 Combo.setItem(int, String) does not preserve the selection index
|
Assume you have a combo with two items, "A" and "B", where "B" is currently selected (i.e. getSelectionIndex() returns 1). If you then call combo.setItem(1,"C"), the combo will be empty and getSelectionIndex will return -1. Why does it not preserve the "selection index"?
|
2005-09-28 11:58:24
| 1,127,920,000 |
resolved fixed
|
df5cf3f
| 1,130,790,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
2,639 | 114,039 |
Bug 114039 Table.computeSize returns bogus Point.y values under Win32 for large tables
|
Under win32, for tables with lots of rows (>20000), Table.computeSize seems to overrun a native short variable. Test snippet: public static void main(String[] args) { Display display = new Display (); final Shell shell = new Shell (display); shell.setLayout (new RowLayout (SWT.VERTICAL)); final Table table = new Table (shell, SWT.VIRTUAL | SWT.BORDER); table.addListener (SWT.SetData, new Listener () { public void handleEvent (Event event) { TableItem item = (TableItem) event.item; int index = table.indexOf (item); item.setText ("Item " + index); } }); shell.pack (); shell.open (); display.syncExec(new Runnable() { public void run() { for (int i=0; i<100000; i+=1000) { System.out.println(table.computeSize(SWT.DEFAULT, SWT.DEFAULT)); table.setItemCount(i); } } }); shell.dispose(); display.dispose (); } Output: Point {31, 23} Point {31, 23} Point {31, 15023} Point {31, 30023} Point {31, -20513} Point {31, -5513} Point {31, 9487} Point {31, 24487} Point {31, -26049} Point {31, -11049} Point {31, 3951} Point {31, 18951} Point {31, -31585} Point {31, -16585} Point {31, -1585} Point {31, 13415} Point {31, 28415} Point {31, -22121} Point {31, -7121} Point {31, 7879}
|
2005-10-27 18:44:13
| 1,130,450,000 |
resolved fixed
|
4e3d6fc
| 1,130,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,640 | 98,511 |
Bug 98511 Treeviewer doesn't de-select child when parent is closed
|
This bugs appears in Windows XP. It doesn't seem to occur in Linux. In the following sample code, do the following: 1) Open 'parent2' for example. 2) Click on 'child2'. It becomes selected (also reflected in the window on the right 3) Close 'parent2'. There is currently no selection. 4) Re-open 'parent2'. There is still no selection Repeat for 'parent3' When you close 'parent3', 'child3' remains selected. Re-open 'parent3' and 'child3' is still selected. The problem always happens with the last item in the tree. -------- Sample code follows ---------- import java.util.Arrays; import java.util.List; import org.eclipse.jface.viewers.ISelectionChangedListener; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.SelectionChangedEvent; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.window.ApplicationWindow; import org.eclipse.jface.window.Window; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.SashForm; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Shell; public class TreeBug extends ApplicationWindow { /** * @param parentShell */ public TreeBug(final Shell parentShell) { super(parentShell); } @Override protected Control createContents(final Composite parent) { final SashForm sash = new SashForm(parent, SWT.HORIZONTAL | SWT.BORDER); final TreeViewer myViewer = new TreeViewer(sash); myViewer.setContentProvider(new TreeContentProvider()); final Composite main = new Composite(sash, 0); main.setLayout(new FillLayout()); sash.setWeights(new int[]{1, 2}); final Label label = new Label(main, SWT.CENTER); myViewer.addSelectionChangedListener(new ISelectionChangedListener(){ public void selectionChanged(SelectionChangedEvent event) { IStructuredSelection selection = (IStructuredSelection) event.getSelection(); Object newSelection = selection.getFirstElement(); label.setText(newSelection == null ? "" : newSelection.toString()); } }); myViewer.setInput(Arrays.asList(new String[]{"parent1", "parent2", "parent3"})); return sash; } /** * @param args */ public static void main(String[] args) { Window gui = new TreeBug(null); gui.setBlockOnOpen(true); System.out.printf("Return code from open is %d\n", gui.open()); } public class TreeContentProvider implements ITreeContentProvider { public Object[] getChildren(Object parentElement) { String s = (String) parentElement; char lastChar = s.charAt(s.length()-1); return new String[]{"child"+lastChar}; } public Object getParent(Object element) { String s = (String) element; if (s.startsWith("parent")) return null; char lastChar = s.charAt(s.length()-1); return new String[]{"parent"+lastChar}; } public boolean hasChildren(Object element) { String s = (String) element; if (s.startsWith("parent")) return true; return false; } public Object[] getElements(Object inputElement) { return ((List)inputElement).toArray(); } public void dispose() { } public void inputChanged(Viewer viewer, Object oldInput, Object newInput) { } } }
|
2005-06-06 10:20:17
| 1,118,070,000 |
resolved fixed
|
448e367
| 1,130,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,641 | 111,303 |
Bug 111303 Cannot middle-button paste to rxvt from Eclipse
|
Some applications can only deal with XA_STRING when reading from the primary clipboard. Currently, Eclipse only privides UTF8_STRING and COMPOUND_TEXT results. A notable broken example is rxvt, another is xclip, and yet another is eterm. All of these applications only handle the STRING type for middle-button paste. The attached patch addresses this problem.
|
2005-10-02 13:37:51
| 1,128,270,000 |
resolved fixed
|
31c97db
| 1,130,530,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TextTransfer.java
|
SWT
|
2,642 | 88,724 |
Bug 88724 Provide 'since' javadoc in snippets
|
It would be a useful additional information in some snippets if there were an @since javadoc tag that tells from which version on the snippet will work. For instance, snippet 175 works only from Eclipse 3.1 on, since it uses the GridData.exclude field which was introduced in 3.1
|
2005-03-22 05:47:41
| 1,111,490,000 |
resolved fixed
|
8e56b85
| 1,130,360,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet10.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet118.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet119.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet120.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet122.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet128.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet129.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet131.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet134.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet135.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet136.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet137.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet138.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet142.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet143.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet144.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet145.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet146.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet148.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet150.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet151.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet152.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet154.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet155.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet157.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet159.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet160.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet161.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet165.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet166.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet168.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet170.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet171.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet172.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet173.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet174.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet175.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet176.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet177.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet180.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet181.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet182.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet183.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet184.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet188.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet189.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet190.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet192.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet193.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet195.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet197.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet198.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet2.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet200.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet201.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet25.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet6.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet62.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet79.java examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet82.java
|
SWT
|
2,643 | 113,895 |
Bug 113895 pango_layout_context_changed called too often
|
StyledTextRenderer often updates the tab size of the layouts cached by DisplayRenderer, even though they usually don't change. Each time this is called, it now triggers a call to pango_layout_context_changed() which invalidates pango's line cache. This causes pango to do a lot of work. A possible fix is to only update the tab sizes in pango if they have actually changed.
|
2005-10-26 16:50:50
| 1,130,360,000 |
resolved fixed
|
cea50da
| 1,130,360,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
2,644 | 113,172 |
Bug 113172 SWT Label widget trancates the text if it contains a long word
| null |
2005-10-19 18:51:30
| 1,129,760,000 |
resolved fixed
|
a456d1e
| 1,130,350,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java
|
SWT
|
2,645 | 87,883 |
Bug 87883 Remove title bar buttons from application-modal dialogs on Mac
| null |
2005-03-13 13:13:28
| 1,110,740,000 |
resolved fixed
|
1f2cbbd
| 1,130,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,646 | 101,331 |
Bug 101331 GC.drawFocus not implemented on the Mac
|
We need to somehow use DrawThemeFocusRect() or find the equivalent Core Graphics call.
|
2005-06-22 15:26:41
| 1,119,470,000 |
resolved fixed
|
8f7aad6
| 1,130,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,647 | 100,035 |
Bug 100035 Eclipse loses its dock icon when dock restarted
|
3.1RC2 The MacOS X dock crashed or restarted for some reason on my Mac laptop. When it reappeared, the icon for Eclipse in the dock and alt-tab list changed to being a boring black "exec" window.
|
2005-06-14 14:09:52
| 1,118,770,000 |
resolved fixed
|
44de4d9
| 1,130,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,648 | 34,612 |
Bug 34612 scroll problem in tree, table, and list
|
RC2 - open a Java Editor on some non-empty Java file - use Ctrl+O (Show Outline) -> even if the tree is so small that it fits into the widget it has vertical and horizontal scroll bars -> you can scroll the tree completely out of the visible area Closing the outline with ESC makes it reproducible.
|
2003-03-11 10:26:24
| 1,047,400,000 |
resolved fixed
|
25da20b
| 1,130,180,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,649 | 76,804 |
Bug 76804 Improve SWT performance over GTK window system
|
There are several places in SWT over GTK that may be improved w.r.t performance. I am going to attach a document describing such places and suggested improvements for them. I would like community to review the rpoposal, comment on it and add other problems that relate to the subject if any. Once modification proposals are finilized and approved our team would like to implement it in SWT 3.1.
|
2004-10-22 08:28:27
| 1,098,450,000 |
resolved fixed
|
365d9e3
| 1,130,170,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.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/Composite.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.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 bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Slider.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,650 | 113,485 |
Bug 113485 Don't flush X exposes for a SMOOTH Sash
|
For a Sash that uses SWT.SMOOTH, we don't need to flush the Expose events from the X server since we do no XOR drawing. This will also make view resizing smoother since we won't keep waiting for the X server. I tried this change and I like the effects, however it may show some temporary artifacts during resizing that may be more objectionable than the old behaviour in some configurations. I would like to make this change now to get feedback.
|
2005-10-23 16:25:50
| 1,130,100,000 |
resolved fixed
|
342e38d
| 1,130,100,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,651 | 41,466 |
Bug 41466 Panther: Check and Radio ToolItems don't use correct look
|
I20030806 Panther (10.3, 7B28) see attached screenshot
|
2003-08-13 06:19:58
| 1,060,770,000 |
resolved fixed
|
a33b627
| 1,129,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
2,652 | 68,657 |
Bug 68657 JUnit test fails for Image.setBackground
|
In 3.0 RC4: test_setBackgroundLorg_eclipse_swt_graphics_Color(org.eclipse.swt.tests.junit.Test_org_eclipse_swt_gr aphics_Image) junit.framework.AssertionFailedError: background color should have been set to green expected:<Color {0, 255, 0}> but was:<null> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.test_setBackgroundLorg_eclipse_swt_gr aphics_Color(Test_org_eclipse_swt_graphics_Image.java:403) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_graphics_Image.runTest(Test_org_eclipse_swt_graphics _Image.java:470) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:421) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:305) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:186)
|
2004-06-25 14:49:40
| 1,088,190,000 |
resolved fixed
|
7f9dc81
| 1,129,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Image.java
|
SWT
|
2,653 | 113,100 |
Bug 113100 Button size test failures in org.eclipse.ui.tests
|
Test failures have appeared in org.eclipse.ui.tests on MacOS X. The test failures all seem to deal with button sizing issues. These failures started appearing in I20051018-0800, and have continued into N20051019-0010. Note that several builds worth of MacOS X tests leading up I20051018-0800 didn't run. There were network issues.
|
2005-10-19 11:21:40
| 1,129,740,000 |
resolved fixed
|
4d7280c
| 1,129,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,654 | 51,736 |
Bug 51736 [JUnit] TreeItem test cases failing
|
I20040210 - candidate for M7 - on Panther The following test cases are failing: setSelection(int) setTopItem(TreeItem)
|
2004-02-11 14:12:27
| 1,076,530,000 |
resolved fixed
|
a5a369c
| 1,129,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/AllCarbonTests.java
|
SWT
|
2,655 | 112,116 |
Bug 112116 Antialiasing causes incorrect drawing
|
Using Cairo 1.0 and SWT 3.2M2, antialiasing causes incorrect drawing in some situations. It appears things are drawn when moving the raster when it should not actually be in a draw operation. The attached image and code describe this better than I could here in words.
|
2005-10-10 11:23:25
| 1,128,960,000 |
resolved fixed
|
4d9fbf0
| 1,129,780,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,656 | 100,696 |
Bug 100696 Keyboard fails on MacOS X
|
Sometimes the keyboard input just stops working in eclipse. It has happened at least three times. The mouse still works, and the keyboard works in other applications. Usually quiting and restarting fixes the problem, but not always.
|
2005-06-17 22:40:56
| 1,119,060,000 |
resolved fixed
|
8254e52
| 1,129,750,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,657 | 109,951 |
Bug 109951 Mac: Menu Highlight Cheese
| null |
2005-09-19 22:51:43
| 1,127,180,000 |
resolved fixed
|
b735777
| 1,129,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,658 | 112,403 |
Bug 112403 window dimensions are tiny
|
jdk 1.5 (64-bit) I20051011 gtk (64-bit) linux-amd64 when trying to start eclipse, all windows that come up are only a few pixels wide/high, regardless of what the size the window was when closing. this is a blocker because the 'select workspace' dialog is not resizable. since you can't select a workspace, eclipse won't start.
|
2005-10-12 16:52:34
| 1,129,150,000 |
resolved fixed
|
8684eb7
| 1,129,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,659 | 109,952 |
Bug 109952 Mac: Menu Cleared After Shell Restored From Dock
| null |
2005-09-19 22:59:13
| 1,127,190,000 |
resolved fixed
|
8188a5d
| 1,129,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,660 | 102,088 |
Bug 102088 Text with CENTER has too much logical space
|
3.1 - run the snippet below - the Text shows a horizontal scrollbar that's scrolled to the end, even though the string does not exceed the width of the Text widget - there's also a small strip of cheese near the left edge of the horizontal scrollbar public static void main (String[] args) { String string = "The quick brown fox jumped over the lazy dog.\nOne two three"; final Display display = new Display(); final Shell shell = new Shell(display); shell.setBounds(10,10,400,300); Text text = new Text(shell, SWT.MULTI | SWT.CENTER | SWT.H_SCROLL); text.setBounds(10,10,380,100); text.setText(string); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-06-28 16:20:53
| 1,119,990,000 |
resolved fixed
|
85f1fc5
| 1,129,660,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.