id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
3,261 | 68,643 |
Bug 68643 [browser] characters are not always typed in in text field
|
Run the browser example, then resize the window to be larger. Frequently the new area is not painted for an extended period of time (sometimes never). Similarly, follow a link to a page with a text field. Attempt to type in the text field. Frequently characters are not delivered, even though the i-beam is inplace and flashing.
|
2004-06-25 13:53:58
| 1,088,190,000 |
resolved fixed
|
2980d62
| 1,090,440,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,262 | 68,855 |
Bug 68855 org.eclipse.swt.tools.internal.SwtJniGen is not working properly
|
Jni generator uses org.eclipse.swt.internal.Platform claas to determine platform. This class is not part of SWT package for amd64 it generates it still thinks that platform is win32. This is happening due to swttools.jar is built using win32 platform and final PLATFORM string is inline into swttools.jar. So I had to rebuild swttools.jar and make some dances to feed proper Platform.java. I suggest passing platform attribute to ant task org.eclipse.swt.tools.internal. SwtJniGen so swttool.jar has no dependency on org.eclipse.swt.internal.Platform class
|
2004-06-29 09:00:28
| 1,088,510,000 |
resolved fixed
|
84efa5d
| 1,090,350,000 |
bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGenerator.java bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorApp.java bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/NativesGenerator.java
|
SWT
|
3,263 | 68,759 |
Bug 68759 Confirm dialog doesn't work in the embedded Mozilla browser widget
|
Eclipse 3.0 RC3, mozilla-1.4-3.0.18 Confirm dialog doesn't work in the embedded Mozilla browser widget (work in the external Mozilla browser). Here's a testcase: <html> <body> This is a test. </body> </html> <script language="javascript"> if (confirm("This is a confirm dialog")) alert('You clicked OK'); else alert('You clicked Cancel'); </script> In the external Mozilla browser, the confirm dialog and the alert dialog show up correctly. However, in the embedded Mozilla browser, the confirm dialog doesn't show up at all. Studio v6's Web services tooling, more specifically, the Web Services Explorer is depended on this fix for the Eclipse 3.0 timeframe.
|
2004-06-28 11:12:59
| 1,088,440,000 |
resolved fixed
|
5a051f9
| 1,090,340,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/motif/org/eclipse/swt/browser/PromptService.java bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/PromptService.java
|
SWT
|
3,264 | 67,165 |
Bug 67165 [Browser] HTML not rendered w/XP style using javaw.exe.manifest comctl
|
Other widgets created with the same jvm do reflect comctl 6.0 look & feel, but the HTML in the browser is rendered old-style.
|
2004-06-14 21:29:05
| 1,087,260,000 |
resolved fixed
|
b893e09
| 1,090,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
3,265 | 68,571 |
Bug 68571 drawText(text, 0, 0, SWT.DRAW_DELIMITER) is now right-justified
|
Given: public class DrawText { private static final String someText = "The quick brown fox\njumped " + "over\nthe lazy\ndog."; public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); new Canvas(shell, SWT.NULL).addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { e.gc.drawText(someText, 0, 0, SWT.DRAW_DELIMITER); } }); shell.setSize(200, 200); shell.open(); while (display.readAndDispatch()) display.sleep(); shell.dispose(); display.dispose(); } } with RC3 on Linux/GTK, I get the attached screen shot as a result. Since this is a changed behavior (a regression, maybe), I'm expecting that this is a bug.
|
2004-06-25 00:00:10
| 1,088,140,000 |
resolved fixed
|
6b81e1c
| 1,089,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,266 | 66,507 |
Bug 66507 ToolItem.getBounds() replied {-1,-1,1,1} is shell is not visible
|
I200406090800, GTK+ 2.4.1, KDE 3.2.2, Linux 2.6.4 In PerspectiveSwitcher, we are attempting to manipulate the layout of a ToolBar that is positioned in a Shell that is not yet open. When we ask for the bounds of the ToolBar, we get expected values. However, when we ask for the bounds of one of its items, we get {-1,-1,1,1}. Working with Steve Northover, we tried a simple fix of forcing the parent to relayout. This solved this immediate problem, but seemed to cause problems for other pieces of UI code.
|
2004-06-10 10:03:23
| 1,086,880,000 |
resolved fixed
|
8091e5c
| 1,089,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,267 | 69,509 |
Bug 69509 Combobox computeSize() doesn't take the down arrow into account
|
When performing a computeSize(SWT.DEFAULT, SWT.DEFAULT) on a combobox, the size adjusts properly minus the size of the drop down arrow! When this arrow is pressed, the list is the appropriate size for all items. If the largest item is selected, and displayed when "rolled up" then the full text cannot be seen. I don't know if this happens in 2.1.2 or higher since I am using 2.1.1 at this time.
|
2004-07-07 14:34:19
| 1,089,230,000 |
resolved fixed
|
857230d
| 1,089,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,268 | 69,721 |
Bug 69721 Control+backspace key combination does not work in Text widgets
|
In an input box when the control+backspace key combination is pressed the behaviour is strange. An empty rectangle is drawn. Reproducibility: always Steps to reproduce: 1. Find an editor having an Text widget. 2. Write some content separated by spaces, like "asdf asdf asdf asdf" (without the quotes). 3. Erase words with the control+backspace combination key. Actual result: Empty rectangles (probably representing the control+backspace key combination) are written. Expected result: A word must be erased each time the control+backspace key combination is pressed.
|
2004-07-09 10:33:27
| 1,089,380,000 |
resolved fixed
|
706273e
| 1,089,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.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
|
SWT
|
3,269 | 69,881 |
Bug 69881 In ScrolledComposite, vertical scrollbar does not appear
| null |
2004-07-12 17:43:23
| 1,089,670,000 |
resolved fixed
|
3cbed1e
| 1,089,670,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java
|
SWT
|
3,270 | 52,059 |
Bug 52059 SashForm right/bottom constraint is not computed correctly
| null |
2004-02-14 13:54:05
| 1,076,780,000 |
resolved fixed
|
d830cd3
| 1,089,310,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
|
SWT
|
3,271 | 67,489 |
Bug 67489 CLabel does not save alignment in style bits
|
RC2 Run this snippet. Note that the CLabel is right-aligned, but the getStyle() says it is left-aligned. The problem is that RIGHT and CENTER style bits are thrown away in checkStyle(). Is there a reason for this? import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.events.*; import org.eclipse.swt.custom.*; public class CLabelAlignmentStyleTest { static Display display; static Shell shell; static CLabel label; public static void main(String[] args) { display = new Display(); shell = new Shell(display); shell.setLayout(new FillLayout()); shell.setText("CLabel Alignment Style Test"); label = new CLabel(shell, SWT.RIGHT); label.setText("CLabel"); int style = label.getStyle(); System.out.println("CLabel alignment=" + ((style & SWT.LEFT) != 0 ? "LEFT" : (style & SWT.RIGHT) != 0 ? "RIGHT" : (style & SWT.CENTER) != 0 ? "CENTER" : "UNKNOWN")); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
|
2004-06-16 13:05:05
| 1,087,410,000 |
resolved fixed
|
2069226
| 1,089,230,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java
|
SWT
|
3,272 | 59,630 |
Bug 59630 [Dialogs] Accessibility: [Search dialog] Cannot select Choose working set text without mouse
|
All text selectable by mouse should also be selectable by using shift and arrow keys. Open the C/C++ search dialog. In the scope group, check "working set". Click "Choose working set". Create a working set and choose it. In the search dialog, you cannot select the working set text with shift and arrow keys, but you can with the mouse.
|
2004-04-22 10:16:39
| 1,082,640,000 |
resolved fixed
|
4bb20f0
| 1,089,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,273 | 68,950 |
Bug 68950 Bug in List.showSelection method
|
List.showSelection method doesn't always make the selection visible. The problem is in calculation of bottomIndex. int bottomIndex = Math.min (topIndex + visibleCount + 1, count - 1); has to be changed to: int bottomIndex = Math.min (topIndex + visibleCount - 1, count - 1);
|
2004-06-29 21:21:23
| 1,088,560,000 |
resolved fixed
|
d2fc065
| 1,089,220,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java
|
SWT
|
3,274 | 21,089 |
Bug 21089 CTabFolder - close button doesn't appear when tab moves under mouse
|
Build GM2 Ensure that your perspective is full of editor tabs, but not so full that the 'left/right' arrows appear in the tab area of the CTabFolder. Close the rightmost tab using your mouse. When you close it, the remaining tabs will expand a bit to fill the full space at the top. This means that another tab is now under the cursor. However the tab did not detect that it was redrawn under the mouse cursor, so it doesn't display its close box. Moving the mouse slightly causes the close box to appear.
|
2002-06-27 15:45:07
| 1,025,210,000 |
resolved fixed
|
9a842e2
| 1,089,150,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,275 | 37,735 |
Bug 37735 TreeViewer's Tree gets two selectionChanged events when it gets focus
|
This is similar to bugs 13171 and 13498. Make a TreeViewer on a dialog in Linux GTK and give any widget except the Tree widget the initial focus. Change the focus to the Tree widget. I get two selectionChanged events.
|
2003-05-15 13:59:17
| 1,053,020,000 |
resolved fixed
|
3bd2df5
| 1,089,150,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
|
3,276 | 49,598 |
Bug 49598 place arbitrary controls in a table has wrong tab order
| null |
2004-01-06 15:47:56
| 1,073,420,000 |
resolved fixed
|
d44bd5c
| 1,089,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java
|
SWT
|
3,277 | 60,768 |
Bug 60768 CBanner at top does vertical sizing based on left components
|
If the text on the buttons on the right is larger than the height of the image alone, then the buttons become cut off. This can be easily seen by bumping up the font size on the OS. It happens by default on my machine. This should be easy enough to fix, but has a fairly significant visual effect for Linux users.
|
2004-05-03 11:42:52
| 1,083,600,000 |
verified fixed
|
9375eac
| 1,089,130,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java
|
SWT
|
3,278 | 64,610 |
Bug 64610 hover over chevron for Ctabfolder not big enough for large fonts
|
build I20040521 - set your system to use Windows Large Fonts - open more editors or views than can be shown in the tab folder, note that the hover box cuts off the number in the chevron. see attached image.
|
2004-05-28 15:04:41
| 1,085,770,000 |
resolved fixed
|
d738069
| 1,089,040,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,279 | 68,070 |
Bug 68070 Label does not draw background correctly
|
3.0 RC3 Works correctly everywhere except motif. Bring up the tooltip for the tab item on a CTabFolder. The "yellow" filling does not extend all the way down to the black border. There is one row of pixels across the bottom that is in the default background colour.
|
2004-06-21 15:15:02
| 1,087,850,000 |
resolved fixed
|
93bc07f
| 1,088,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,280 | 68,661 |
Bug 68661 Trees are eager to expand
| null |
2004-06-25 15:03:48
| 1,088,190,000 |
resolved fixed
|
7da7d8e
| 1,088,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,281 | 24,959 |
Bug 24959 CoolBar with SWT.DROP_DOWN style
|
Run ControlExample on W2K. Also observed on WinXP. Go to Coolbar tab Set the DROP_DOWN style Move a coolitem so that it partially hides another coolitem containing the 'red circle' icon. The chevron appears normally indicating that the 'red circle' is partially obfuscated. - If the red circle is more than 80% covered, the chevron correctly expands to show the full red circle item. - If the red circle is slightly less covered (enough so that the chevron appears), the chevron can be clicked but does not expand to the full red circle item. This sounds like a bug to me. Is it the desired native widget behaviour?
|
2002-10-17 09:22:03
| 1,034,860,000 |
resolved fixed
|
c82ff0c
| 1,088,450,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/CoolBarTab.java
|
SWT
|
3,282 | 68,074 |
Bug 68074 Couple of bad pixels in SWT.FLAT | SWT.BORDER style
|
3.0 RC3 Run the custom control example. In the CTabFolder tab , select NOT Simple Tabs, SWT.FLAT and SWT.BORDER. Make the CTabFolder be the preferred size. Select the last tab. Notice that at the far right a couple of pixels are not drawn in teh border. See attachment.
|
2004-06-21 15:23:18
| 1,087,850,000 |
resolved fixed
|
95d2b87
| 1,088,440,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,283 | 68,667 |
Bug 68667 NPE in AddressBook example
|
RC4 - run the AddressBook example - File -> Open Address Book... --> opens a FileDialog - change the file filter in the dialog to * to show all files (assuming you're on a platform whose FileDialog shows this filter) - select some random file that has nothing to do with the AddressBook example, Open - will get the following NPE: java.lang.NullPointerException at org.eclipse.swt.examples.addressbook.AddressBook$RowComparator.compare(AddressBook.java:870) at java.util.Arrays.mergeSort(Arrays.java:1278) at java.util.Arrays.mergeSort(Arrays.java:1289) at java.util.Arrays.mergeSort(Arrays.java:1289) at java.util.Arrays.mergeSort(Arrays.java:1289) at java.util.Arrays.mergeSort(Arrays.java:1289) at java.util.Arrays.mergeSort(Arrays.java:1289) at java.util.Arrays.sort(Arrays.java:1219) at org.eclipse.swt.examples.addressbook.AddressBook.openAddressBook(AddressBook.java:326) at org.eclipse.swt.examples.addressbook.AddressBook.access$9(AddressBook.java:268) at org.eclipse.swt.examples.addressbook.AddressBook$9.widgetSelected(AddressBook.java:509) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:731) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2938) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2642) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:335) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628)
|
2004-06-25 15:44:23
| 1,088,190,000 |
resolved fixed
|
360a4cb
| 1,088,430,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/addressbook/AddressBook.java
|
SWT
|
3,284 | 68,096 |
Bug 68096 SWT exception docking a detached view
|
3.0 RC3 I was running a simple workbench and detaching/docking (I was taking screen shots of the navigator for some documentation) the navigator view. I think this was repeated 20 or so times. Then, while docked I tried to open the context menu, and the following exceptino occured. I was asked to quit the workbench because of the SWT exception. Not the funny context menu that appears, no separators.
|
2004-06-21 16:24:37
| 1,087,850,000 |
resolved fixed
|
a4b4318
| 1,088,020,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/Decorations.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,285 | 68,102 |
Bug 68102 No mouse up when tree expansion indicator selected
|
The Macintosh eats the up in this case, probably internally calling TrackMouseLocation() somewhere in the DataBrowser code. This manifests itself in Eclipse as 'single click ignored'. You expand a bunch of tree nodes and then single click on an item, it selects and nothing happens. Then you click again on the item and the selection action happens.
|
2004-06-21 16:42:31
| 1,087,850,000 |
resolved fixed
|
88d91fd
| 1,087,920,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,286 | 67,928 |
Bug 67928 [Browser] Enter path to non-existing file brings NullPE
| null |
2004-06-19 10:15:37
| 1,087,650,000 |
resolved fixed
|
3d683bc
| 1,087,920,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,287 | 67,935 |
Bug 67935 Typo in SWT_AWT.new_Frame javadoc
|
There is no such thing as a "heightweight" component... You must mean heavyweight.
|
2004-06-19 17:58:54
| 1,087,680,000 |
resolved fixed
|
434626c
| 1,087,830,000 |
bundles/org.eclipse.swt/Eclipse SWT AWT/emulated/org/eclipse/swt/awt/SWT_AWT.java 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 bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java
|
SWT
|
3,288 | 67,825 |
Bug 67825 [browser] browser crashes on jdk 1.5 beta applets
| null |
2004-06-18 11:21:32
| 1,087,570,000 |
resolved fixed
|
c1e796d
| 1,087,580,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
3,289 | 48,492 |
Bug 48492 Eclipse crashes on GTK (linux) while Cell Editor in Property View loosing focus
|
During implementation of custom contents for properties view (IPropertySource for specific selection) we found that eclipse crashes on GTK (Linux) in some special conditions: 0. In our IPropertySource implementation we have editable text property. 1. Open CellEditor for the editable property 2. Change it's value 3. Click to some other property in properties view of to the properties view background. We found that after step 3. The following sequence of calls lead us to the crash: 1. Cell Editor receive focuslost event and start "applyEditorValue()" process 2. PropertySheetEntry is trying to refresh property sheet contents (refreshFromRoot() method) by looking for appropriate IPropertySource and trying to collect valid IPropertyDescriptors from this IPropertySource instance by calling IPropertySource.getPropertyDescriptors() 3. Eclipse crashes sometimes later if our instance of IPropertySoruce return empty array (IPropertyDescriptors [0]) during this call. The same sequence works correctly on Windows. The following trace present in console on setting org.eclipse.swt.graphics.Device.DEBUG = true: java.lang.Error at org.eclipse.swt.graphics.Device.logProc(Device.java:539) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(Native Method) at org.eclipse.swt.widgets.Display.eventProc(Display.java:635) at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1638) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Gtk-ERROR **: file gtkrbtree.c: line 1189 (_gtk_rbtree_find_offset): assertion failed: (tree) aborting...
|
2003-12-11 10:22:09
| 1,071,160,000 |
resolved fixed
|
300ace8
| 1,087,580,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
|
3,290 | 62,405 |
Bug 62405 Editor drop down performance slow on Linux-GTK on mouse move
| null |
2004-05-15 16:19:00
| 1,084,650,000 |
resolved wontfix
|
14133ff
| 1,087,580,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/GdkEventMotion.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/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/Sash.java
|
SWT
|
3,291 | 67,185 |
Bug 67185 Bug in emulated TextLayout.setFont(Font)
| null |
2004-06-15 05:06:10
| 1,087,290,000 |
resolved fixed
|
7194175
| 1,087,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/textlayout/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,292 | 66,717 |
Bug 66717 SHADOW_IN style hides Group title
|
RC2 candidate - run the ControlExample, go to the Group tab - turn on the Title Text checkbox --> adds a title to the example Group - select the SWT.SHADOW_IN radio and the title disappears - the title remains visible for all of the other SHADOW_* radios, and should be for SHADOW_IN as well
|
2004-06-11 11:56:54
| 1,086,970,000 |
resolved fixed
|
3ea97ea
| 1,087,490,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Group.java
|
SWT
|
3,293 | 58,642 |
Bug 58642 [misc] caret disappears from java editor
|
Steps to reproduce: 1. open a java source file in eclipse 2. move the cursor to a method call 3. press F2 to see quick docs 4. press Esc to make the quick docs window and the cursor from the java editor to disappear Effect: the cursor can nowhere be seen in the java editor but can be moved, type at, etc. If I switch virtual workspaces back and forth, the cursor comes back. Environment: linux gtk2, gnome2.6 with openbox3 and metacity window manager Comment: it happens every time with openbox3. It tend to happen only for the second try using metacity.
|
2004-04-15 09:17:36
| 1,082,040,000 |
resolved fixed
|
658c16d
| 1,087,490,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/XFocusChangeEvent.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,294 | 67,483 |
Bug 67483 No chevron when not enough space to show all the tabs in CTabFolder
|
PDE editors (schema and feature) use CTabFolder inside a page. When the page is made narrow enough, some tabs are dropped but there is no way to access them (no chevron). Steps to reproduce: 1) Create a new feature project 2) Switch to the 'Information' page in the newly opened feature editor. It should have three tabs 'Feature description', 'Copyright Notice' and 'License Agreement'. 3) Make the editor narrower until 'License Agreement' goes away. 4) Observe - there is no way to access the tab. This is a problem for us because some people already asked as if License Agreement is not required in 3.0.
|
2004-06-16 11:55:09
| 1,087,400,000 |
resolved fixed
|
5497e9c
| 1,087,490,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
|
SWT
|
3,295 | 53,920 |
Bug 53920 Slow performance updating target
|
I have a target platform with ~400 plugins. I'm using dynamic classpaths. When I go to the PDE preferences, reload a new target, click not in workspace, and hit ok, it takes a very long time before I have control again. Seems like some refresh is going on as well as threads in the job queue. This is using M7 as the development environment.
|
2004-03-05 14:26:03
| 1,078,510,000 |
resolved fixed
|
6b597d3
| 1,087,450,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,296 | 67,355 |
Bug 67355 Setting font back to its default value in a table tree widget causes an illegalArgumentException
|
RC2, linux, motif. Custom widget example. Open the table tree tab. Change the font, then change the default. You will get the following exception. Exception in thread "main" java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:2677) at org.eclipse.swt.SWT.error(SWT.java:2616) at org.eclipse.swt.SWT.error(SWT.java:2587) at org.eclipse.swt.graphics.GC.setFont(GC.java:2504) at org.eclipse.swt.widgets.TableItem.drawText(TableItem.java:258) at org.eclipse.swt.widgets.TableItem.paint(TableItem.java:1124) at org.eclipse.swt.widgets.Table.paintSubItem(Table.java:1936) at org.eclipse.swt.widgets.Table.paintItems(Table.java:1903) at org.eclipse.swt.widgets.Table.paint(Table.java:1834) at org.eclipse.swt.widgets.Table.handleEvents(Table.java:1437) at org.eclipse.swt.widgets.SelectableItemWidget$2.handleEvent(SelectableItemWidget.java:1199) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:731) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:752) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:738) at org.eclipse.swt.widgets.Control.XExposure(Control.java:2963) at org.eclipse.swt.widgets.Composite.XExposure(Composite.java:865) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:906) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3478) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2640) at org.eclipse.swt.examples.controlexample.CustomControlExample.main(CustomControlExample.java:55)
|
2004-06-15 16:09:04
| 1,087,330,000 |
verified fixed
|
844f6f8
| 1,087,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Header.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,297 | 67,132 |
Bug 67132 Styled text example loses the text style when changing any style flag
|
RC2 Custom Controls example. If I put part of the text in Bold and then change the any style flag, the bolded text is reverted to normal. I believe this is a bug in the example, but this needs to be confirmed.
|
2004-06-14 17:01:19
| 1,087,250,000 |
resolved fixed
|
f53c2ae
| 1,087,410,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/StyledTextTab.java
|
SWT
|
3,298 | 67,346 |
Bug 67346 Display.gdkEventWidgets leaks widgets
|
RC2, SWT/UI from HEAD, Linux 2.6.4, KDE 3.2.2, GTK+ 2.4.1 I believe this variable is leaking references to widgets. I'm not sure of the expected life cycle of the elements in this list, but it seems to be holding on to objects longer than expected. For example, opening a new workbench window and closing the old workbench window can leave references to disposed widgets in this list. Perhaps on dispose, a widget should check to see if it is in the list (and remove itself, if so).
|
2004-06-15 15:27:53
| 1,087,330,000 |
resolved fixed
|
2e4ddac
| 1,087,410,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,299 | 66,942 |
Bug 66942 [browser] F5 blanks out the Browser widget when setText used
|
Press F5 inside the Intro page in Eclipse . IE refreshes the URL (about:blank) - causing a blank page to be displayed. setText is used to render html in memory. We should probably block default IE accelerators when URL is about:blank so that the content of setText is not cleared when the user presses F5.
|
2004-06-14 10:09:56
| 1,087,220,000 |
resolved fixed
|
7eacfab
| 1,087,330,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
3,300 | 66,941 |
Bug 66941 SWT printing snippet not working on MacOS X
| null |
2004-06-14 10:06:37
| 1,087,220,000 |
resolved fixed
|
7280819
| 1,087,240,000 |
bundles/org.eclipse.swt/Eclipse SWT Printing/carbon/org/eclipse/swt/printing/Printer.java
|
SWT
|
3,301 | 66,653 |
Bug 66653 NPE on window close
|
I200406110010 Quite often I find this NPE in the log: !ENTRY org.eclipse.ui 4 0 Jun 11, 2004 13:14:37.292 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Control.kEventControlSetFocusPart(Control.java:1369) at org.eclipse.swt.widgets.Composite.kEventControlSetFocusPart(Composite.java:352) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:317) at org.eclipse.swt.widgets.Display.controlProc(Display.java:743) at org.eclipse.swt.internal.carbon.OS.DisposeWindow(Native Method) at org.eclipse.swt.widgets.Shell.destroyWidget(Shell.java:488) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:482) at org.eclipse.jface.window.Window.close(Window.java:253) at org.eclipse.jface.dialogs.Dialog.close(Dialog.java:826) at org.eclipse.jface.preference.PreferenceDialog.close(PreferenceDialog.java:253) at org.eclipse.jface.preference.PreferenceDialog.cancelPressed(PreferenceDialog.java:233) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:203) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.buttonPressed(WorkbenchPreferenceDialog.j ava:75) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:506) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1196) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1220) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1205) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2868) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2538) at org.eclipse.jface.window.Window.runEventLoop(Window.java:668) at org.eclipse.jface.window.Window.open(Window.java:648) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:72) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java: 915) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:866) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionContributionItem.java: 785) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1196) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1220) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1205) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2868) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2538) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1362) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:252) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:272) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:638) at org.eclipse.core.launcher.Main.main(Main.java:622) java.lang.NullPointerException
|
2004-06-11 08:10:46
| 1,086,960,000 |
resolved fixed
|
11441b9
| 1,086,970,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,302 | 66,331 |
Bug 66331 exception in Members panel of java browsing perspective
|
I have not yet found the right sequence to reproduce the problem. Error Jun 09, 2004 15:38:35.392 Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". java.lang.ArrayIndexOutOfBoundsException: 10 at org.eclipse.swt.widgets.Tree.getFocusItem(Tree.java:374) at org.eclipse.swt.widgets.Tree.gtk_changed(Tree.java:631) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1161) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3006) at org.eclipse.swt.internal.gtk.OS.gtk_tree_store_clear(Native Method) at org.eclipse.swt.widgets.Tree.removeAll(Tree.java:849) at org.eclipse.jface.viewers.TreeViewer.removeAll(TreeViewer.java:223) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run(AbstractTreeViewer.java:780) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:863) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:772) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:238) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1058) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.setViewerInput(JavaBrowsingPart.java:785) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.setInput(JavaBrowsingPart.java:771) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.adjustInputAndSetSelection(JavaBrowsingPart.java:1001) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.setSelectionFromEditor(JavaBrowsingPart.java:1160) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.selectionChanged(JavaBrowsingPart.java:709) at org.eclipse.ui.internal.AbstractSelectionService$4.run(AbstractSelectionService.java:172) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:758) at org.eclipse.ui.internal.AbstractSelectionService.firePostSelection(AbstractSelectionService.java:170) at org.eclipse.ui.internal.AbstractSelectionService$2.selectionChanged(AbstractSelectionService.java:76) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2160) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2113) at org.eclipse.jface.text.TextViewer$4.run(TextViewer.java:2092) at org.eclipse.swt.widgets.Display.timerProc(Display.java:2855) at org.eclipse.swt.internal.gtk.OS.gtk_main_iteration(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2222) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:638) at org.eclipse.core.launcher.Main.main(Main.java:622)
|
2004-06-09 11:43:43
| 1,086,800,000 |
resolved fixed
|
9b47947
| 1,086,890,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
|
3,303 | 65,697 |
Bug 65697 CCombo does not respond to keyboard or mouse actions when it it dropped down
|
In RC1, when you click on the drop down button for a CCombo, it doesn't respond to any mouse or keyboard actions, other than to click it to undrop it. If you do this in a wizard and hit "<back", it stays showing. Fortunately the up and down arrows work when it's not showing the drop down, but this is very hard to discover. This problem will block many EMF clients from using our tools.
|
2004-06-04 08:09:45
| 1,086,350,000 |
resolved fixed
|
1179f16
| 1,086,880,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
3,304 | 65,695 |
Bug 65695 TrayItem not coming back after an explorer crash
|
It would be good if there was a way to get the tray icon back after an explorer crash. An easy way to test it, is to open the task window, kill explorer task, and restart a new one. Some applications manage to re-add themselves (while still avoiding flickering in normal state, and moving in the system try, so I guess this is not 'only' a remove / readd). Maybe there's a way to be notified when explorer starts? Anyway, I've always refused bugs from my users about this saying that this is not SWT's problem if the explorer crashed, and that in the first place they should complain to microsoft. I refrained from reporting this "bug", but if there's an easy fix... (and it's easy to test / reproduce).
|
2004-06-04 07:28:29
| 1,086,350,000 |
resolved fixed
|
648a901
| 1,086,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java
|
SWT
|
3,305 | 64,400 |
Bug 64400 ON_TOP shell - can't setFocus to content
|
I20040527 Run the following example and press the button. Shell pops up. On all platforms except Mac OS X, the list has focus and you can arrow around in the list. On Mac OS X, you need to tab into the list. public static void main (String [] args) { final Display display = new Display (); Shell shell = new Shell (display); shell.setLayout(new RowLayout()); Button b = new Button(shell, SWT.PUSH); b.setText("new ON_TOP shell"); b.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { Shell shell2 = new Shell(display, SWT.ON_TOP); shell2.setLayout(new FillLayout()); List l = new List(shell2, SWT.BORDER); l.add("hello"); l.add("world"); shell2.setSize(200, 200); shell2.setVisible(true); l.setFocus(); } }); shell.pack(); shell.open (); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); }
|
2004-05-27 13:39:21
| 1,085,680,000 |
verified fixed
|
fcdf60d
| 1,086,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Decorations.java
|
SWT
|
3,306 | 38,408 |
Bug 38408 Caret.drawCaret ignores image content
|
I20030528 Mac OS 10.2.6 On MacOS X the implementation of Caret.drawCaret does not use the contents of an image but only its bounds.
|
2003-06-04 08:50:31
| 1,054,730,000 |
resolved fixed
|
a0cb6b1
| 1,086,810,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Caret.java
|
SWT
|
3,307 | 65,350 |
Bug 65350 StyledText leaves second caret behind
|
RC1 (known problem, but I couldn't find an existing report with a test case) - run the CustomControlExample, go to the StyledText tab - use Shift+Right_Arrow to select a few characters - press Option+Right_Arrow and nothing appears to happen - press Option+Right_Arrow again and now the caret moves to the next word, but also leaves an old caret at the previous location
|
2004-06-02 11:31:30
| 1,086,190,000 |
verified fixed
|
b300d06
| 1,086,810,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Canvas.java
|
SWT
|
3,308 | 66,356 |
Bug 66356 DND - move reported to drag source even though cancelled
|
RC1 Run the following example. The dragSource.dragFinished listener shoul dhave an event.detail of DND.DROP_NONE but instead it has an event.detail of DND.DROP_MOVE. this is bad because it means the drag source may delete data even though the operation failed: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Button source = new Button(shell, SWT.PUSH); source.setText("Source"); DragSource dragSource = new DragSource(source, DND.DROP_MOVE); dragSource.setTransfer(new Transfer[] {TextTransfer.getInstance()}); dragSource.addDragListener(new DragSourceAdapter() { public void dragSetData(DragSourceEvent event) { event.data = "hello"; } public void dragFinished(DragSourceEvent event) { System.out.println("Move = "+(event.detail == DND.DROP_MOVE)); } }); Button dest = new Button(shell, SWT.PUSH); dest.setText("Dest"); DropTarget dropTarget = new DropTarget(dest, DND.DROP_MOVE); dropTarget.setTransfer(new Transfer[] {TextTransfer.getInstance()}); dropTarget.addDropListener(new DropTargetAdapter() { public void drop(DropTargetEvent event) { event.detail = DND.DROP_NONE; } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2004-06-09 13:27:43
| 1,086,800,000 |
resolved fixed
|
2af4ad1
| 1,086,800,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
3,309 | 64,349 |
Bug 64349 SWT of the eclipse 3.0 versions crashes on start (mouse-problem)
|
The problem occurs on a G4/G5 Mac running OS X. Using an IntelliMouse USB the SWT crashes right after starting the platform. This happened for all 3.0 versions of eclipse. With 2.1 or Windows as OS the problem did not occur. Perhaps this report may help: Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000 Thread 0 Crashed: 0 libswt-pi-carbon-3052.jnilib 0x024e4f0c Java_org_eclipse_swt_internal_carbon_OS_WaitMouseMoved + 0x50 1 <<00000000>> 0x0411e5c0 0 + 0x411e5c0 2 <<00000000>> 0x04117e10 0 + 0x4117e10 3 <<00000000>> 0x04117f90 0 + 0x4117f90 4 <<00000000>> 0x04117ed0 0 + 0x4117ed0 5 <<00000000>> 0x04117ed0 0 + 0x4117ed0 6 <<00000000>> 0x0411516c 0 + 0x411516c 7 libjvm.dylib 0x8137a428 JVM_GetCPMethodClassNameUTF + 0xb38 8 libjvm.dylib 0x8139b878 JVM_GetCPClassNameUTF + 0x998 9 libjvm.dylib 0x814935a0 JVM_UnloadLibrary + 0x12550 10 libjvm.dylib 0x81553914 jio_vsnprintf + 0x35b4 11 libswt-carbon-3052.jnilib 0x025dceb4 callback + 0x3fc 12 libswt-carbon-3052.jnilib 0x025b788c fn14_3 + 0x34 13 com.apple.HIToolbox 0x927d2330 DispatchEventToHandlers + 0x150 14 com.apple.HIToolbox 0x927d25a4 SendEventToEventTargetInternal + 0x174 15 com.apple.HIToolbox 0x927e4a34 SendEventToEventTarget + 0x28 16 com.apple.HIToolbox 0x927f31b4 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 0x144 17 com.apple.HIToolbox 0x927e8ad0 HandleMouseEvent(OpaqueEventRef*) + 0x170 18 com.apple.HIToolbox 0x927e2fd4 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x1e8 19 com.apple.HIToolbox 0x927d23ec DispatchEventToHandlers + 0x20c 20 com.apple.HIToolbox 0x927d25a4 SendEventToEventTargetInternal + 0x174 21 com.apple.HIToolbox 0x927e4a34 SendEventToEventTarget + 0x28 22 libswt-pi-carbon-3052.jnilib 0x024e06d8 Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget + 0x30 23 <<00000000>> 0x0411e5c0 0 + 0x411e5c0 24 <<00000000>> 0x04117ed0 0 + 0x4117ed0 25 <<00000000>> 0x04117e10 0 + 0x4117e10 26 <<00000000>> 0x04117f90 0 + 0x4117f90 27 <<00000000>> 0x04117ed0 0 + 0x4117ed0 28 <<00000000>> 0x04117ed0 0 + 0x4117ed0 29 <<00000000>> 0x04117ed0 0 + 0x4117ed0 30 <<00000000>> 0x04118200 0 + 0x4118200 31 <<00000000>> 0x04118200 0 + 0x4118200 32 <<00000000>> 0x04117ea0 0 + 0x4117ea0 33 <<00000000>> 0x0411516c 0 + 0x411516c 34 libjvm.dylib 0x8137a428 JVM_GetCPMethodClassNameUTF + 0xb38 35 libjvm.dylib 0x8139b878 JVM_GetCPClassNameUTF + 0x998 36 libjvm.dylib 0x81413664 JVM_IsNaN + 0x5b24 37 libjvm.dylib 0x8143af84 __floatdisf + 0xef4 38 libjvm.dylib 0x81468e40 JVM_InvokeMethod + 0x1f0 39 <<00000000>> 0x0411e5c0 0 + 0x411e5c0 40 <<00000000>> 0x04117ea0 0 + 0x4117ea0 41 <<00000000>> 0x04117ea0 0 + 0x4117ea0 42 <<00000000>> 0x04118200 0 + 0x4118200 43 <<00000000>> 0x04117ea0 0 + 0x4117ea0 44 <<00000000>> 0x04117ea0 0 + 0x4117ea0 45 <<00000000>> 0x04117ed0 0 + 0x4117ed0 46 <<00000000>> 0x0411516c 0 + 0x411516c 47 libjvm.dylib 0x8137a428 JVM_GetCPMethodClassNameUTF + 0xb38 48 libjvm.dylib 0x8139b878 JVM_GetCPClassNameUTF + 0x998 49 libjvm.dylib 0x81490c0c JVM_UnloadLibrary + 0xfbbc 50 libjvm.dylib 0x8156073c jio_vsnprintf + 0x103dc 51 java_swt 0x00003328 main + 0x112c 52 java_swt 0x00001f2c _start + 0x188 (crt.c:267) 53 java_swt 0x00001da0 start + 0x30
|
2004-05-27 11:10:20
| 1,085,670,000 |
resolved fixed
|
8f0225f
| 1,086,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,310 | 64,429 |
Bug 64429 Progress bars use deprecated style
|
Progress bars are set to be GTK_PROGRESS_DISCRETE unless the calling code uses the SWT.SMOOTH style: /* * Note: this API is deprecated, but there is no replacement. */ int barStyle = (this.style & SWT.SMOOTH) == 0 ? OS.GTK_PROGRESS_DISCRETE : OS.GTK_PROGRESS_CONTINUOUS; OS.gtk_progress_bar_set_bar_style (handle, barStyle); The discrete-style progress bars are deprecated in Gtk+ and all progress bars should use the continuous style: <vektor_wrk> owen: progress_bar_set_bar_style is deprecated. Does this mean all progress bars should be continuous? <owen> vektor_wrk: Yep <vektor_wrk> weird :) <owen> vektor_wrk: Why weird? <owen> it's weird that an app could control it ... I think we should follow Gtk+ conventions and always use smooth progress bars. The fix is to just remove the call completely.
|
2004-05-27 15:40:10
| 1,085,690,000 |
resolved fixed
|
dd51396
| 1,086,740,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java
|
SWT
|
3,311 | 66,095 |
Bug 66095 Combo.setVisibleItemCount does nothing until resize/layout
|
It is not obvious that value passed in setVisibleItemCount for Combo used only after next Combo resize. Would be good or use this value directly after method invocation, or say that resize is needed in JavaDoc.
|
2004-06-08 06:57:59
| 1,086,690,000 |
resolved fixed
|
9530e4a
| 1,086,730,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,312 | 66,039 |
Bug 66039 org.eclipse.swt.widgets.Control has funky color issues
|
I reported a bug (#65642) about some color issues. Some further experimentation leads me to this refinement of the bug: Control objects don't seem to handle color correctly in some instances. I've seen this problem manifested in Labels, and a coworker has seen the same issue in a List, leading me to believe that it's a problem in the common ancestor, Control. Of course, this makes sense since setForeground() and setBackground() are in Control. I'll attach some sample code to illustrate a case where it breaks for me under SWT 3.0RC1.
|
2004-06-07 16:25:39
| 1,086,640,000 |
resolved fixed
|
f41f3e2
| 1,086,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,313 | 64,793 |
Bug 64793 One line of cheese in CTabFolder selected tab
|
I20040529 If the percents in the selection background gradient do not go to 100, there is one pixel high line along the bottom of teh tab that is not drawn correctly. e.g. Color [] bgSelectedGradient = new Color[] {display.getSystemColor (SWT.COLOR_WHITE), display.getSystemColor(SWT.COLOR_BLUE)}; int[] bgSelectedPercents = new int[] {50}; folder.setSelectionBackground(bgSelectedGradient, bgSelectedPercents, true); The fix is to replace this: if (pos < height) { gc.setBackground(defaultBackground); gc.fillRectangle(x, pos, width, height-pos); } with this: if (pos < height) { gc.setBackground(defaultBackground); gc.fillRectangle(x, pos, width, height-pos+1); }
|
2004-05-31 14:55:08
| 1,086,030,000 |
resolved fixed
|
1dc7c3b
| 1,086,720,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,314 | 65,905 |
Bug 65905 Possible Memory Leaks
|
One of my users has reported me that my application was leaking some memory, slowly but consistently, mainly by chunks of 192 bytes. In order to test it, I've set the environement variable MallocStackLogging using : export MallocStackLogging=1 and then I started my application (with java_swt -cp ......) then, from another window I've run : leaks -nocontext 555 > leaks.txt (555 being the process ID of my application). I'll attach the leaks.txt file, but here are some stack trace of calls that create those 192 bytes leaks : Leak: 0x088254d0 size=192 Call stack: [thread 1f2b]: | 0x1000 | start | _start | main | jio_vsnprintf | JVM_UnloadLibrary | JVM_GetCPClassNameUTF | JVM_GetCPMethodClassNameUTF | 0x411516c | 0x4117fb0 | 0x4117fb0 | 0x4117fb0 | 0x4117fb0 | 0x4117e30 | 0x42da964 | 0x411e580 | Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget | SendEventToEventTarget | SendEventToEventTargetInternal | DispatchEventToHandlers | ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) | HandleMouseEvent(OpaqueEventRef*) | HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) | HandleTSMMouseDownLogic | PromoteMouseToCursorChangeEvent(OpaqueEventRef*, OpaqueWindowPtr*, OpaqueEventRef**) | CopyEventAs | CopyEventInternal | malloc_zone_malloc Leak: 0x003d3af0 size=192 Call stack: [thread 1f2b]: | 0x1000 | start | _start | main | jio_vsnprintf | JVM_UnloadLibrary | JVM_GetCPClassNameUTF | JVM_GetCPMethodClassNameUTF | 0x411516c | 0x4117fb0 | 0x4117fb0 | 0x4117fb0 | 0x4117fb0 | 0x4117e30 | 0x4117e30 | 0x4117e30 | 0x4117fb0 | 0x4118310 | 0x4118310 | 0x4117fb0 | 0x4117fb0 | 0x4117ec0 | 0x4117ec0 | 0x4117ec0 | 0x4117ef0 | 0x411e580 | Java_org_eclipse_swt_internal_carbon_OS_GetDataBrowserItems | GetDataBrowserItems | GetControlData | SendControlDefGetData(HIView*, unsigned long, short, void*, long, long*) | CreateControlEvent | CreateEvent | malloc_zone_malloc Leaks states that they might miss some carbon leaks, but that all leaks reported should be real... Hoping this information will help, Olivier Chalouhi.
|
2004-06-06 10:56:27
| 1,086,530,000 |
resolved fixed
|
0ae1ed9
| 1,086,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,315 | 60,659 |
Bug 60659 GP when asyncExec runs from DirectoryDialog modal loop (was Crash related to new Progress Viewer)
|
with I20040428, on windows XP. I'll attach "dump", but was just browsing PDE preferences, when crash occurred. From the dump, it appears related to new Progress Viewer, but ... since on OS.winproc, will pass by SWT first? Have just seen once (after about 30 minutes of using new I-build).
|
2004-04-30 18:51:40
| 1,083,370,000 |
resolved fixed
|
54a2870
| 1,086,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,316 | 57,408 |
Bug 57408 DBCS: After pressing "Tab", anything can not be inputed
|
Reporter:Louis Cai OS: RHEL WS 3.0 -GTK Language: CHS Build level: M8-200404329 JDK Version: IBM JDK 1.4.2 Beta Test case #: Summary: DBCS: After pressing "Tab", anything can not be inputed. Description: Steps to recreate problem: 1- New a Plug-in Project, input DBCS in the Project name field, then click Next. 2- Place cursor in the field of "Runtime library", press "Tab" key, then try inputing SBCS or DBCS data in the "Source Folder Name"field. <<Error>> After pressing "Tab", anything can not be inputed. <note> After pressing "Tab" key, in other panel, we also can not input any character. </note> <<Expected Result>> After pressing "Tab", whether DBCS or SBCS can be input in the field.
|
2004-04-04 23:00:02
| 1,081,130,000 |
resolved fixed
|
475f132
| 1,086,640,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,317 | 58,615 |
Bug 58615 Setting italic font for tree items does not work on Mac
|
I200404131323 - update from CVS - in the Synch view shows the affected tree items in gray while the Update operation is running Observe on Mac: the tree items are not turning gray, but increase the font size instead
|
2004-04-15 04:16:25
| 1,082,020,000 |
verified fixed
|
314fe3e
| 1,086,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,318 | 64,759 |
Bug 64759 Color buttons look bad on Mac
|
I20040529 Buttons for setting the colors of Plug in development editors look bad on the mac. Not sure if this is an SWT bug or PDE. See attachment. Note buttons used for Workbench -> Colors and Fonts look fine.
|
2004-05-31 11:37:18
| 1,086,020,000 |
resolved fixed
|
e983d4a
| 1,086,630,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/OS.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,319 | 65,759 |
Bug 65759 TableItem does not redraw correctly on setText(int, String)
|
Since RC1 When I call TableItem.setText(3, "blabla"), the table cell redraws. However, the first 12 pixels or so are not redrawn. It looks like the Table thinks the item has an image set? I don't use images for column three. The other columns in my table that have images do redraw correctly. Works fine with 3.0 build from May 25. Breaks in RC1 This is pure SWT, no jface
|
2004-06-04 13:16:25
| 1,086,370,000 |
resolved fixed
|
57ba14e
| 1,086,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java
|
SWT
|
3,320 | 56,508 |
Bug 56508 Editor: some tab characters are not rendered missing in field declations
|
Eclipse: 20040326 OSX 10.3.3 For some field declarations, tabs are missing so that instead of seeing: private FormText summaryText; // tab between type and field we see: private FormTextsummaryText;
|
2004-03-28 16:40:39
| 1,080,510,000 |
resolved fixed
|
99b8c31
| 1,086,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,321 | 56,765 |
Bug 56765 StyledText - Fix calculating of cursor level
|
Cursor level is broken in the following cases: 1. doBackspace(), doDelete(). Expected behavior: cursor level is set to the level of the deleted character. Actual behavior: cursor level is set to the level of the preceding character. 2. doLineStart(), doLineEnd(). Expected: cursor level is derived from the paragraph level. Actual: cursor level is derived from the level of the first/last character. Suggested solution: cache cursor level in the above methods.
|
2004-03-30 11:35:51
| 1,080,660,000 |
resolved fixed
|
229e8de
| 1,086,390,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,322 | 65,599 |
Bug 65599 Shell location is not properly used
|
I'm using SWT 3.0RC1 to try and make a Shell inside my default outer Shell. If I set a location for the internal Shell before it is opened, the internal Shell is centered inside the outer Shell. I can position the internal Shell once it has been opened, but this creates a flashing effect. I'll attach an example snippet that demonstrates the effect. The snippet tries to position an internal Shell at 50,50 but it doesn't work (at least not under GTK for me).
|
2004-06-03 14:51:22
| 1,086,290,000 |
resolved fixed
|
d9f8deb
| 1,086,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,323 | 62,336 |
Bug 62336 UI hangs while attempting to add missing methods.
|
I have a workspace with a single plugin project ("ca.mikew.LowMemoryDetector") in it. If I perform the following steps on my Mac... - switch to java perspective - expand ca.mikew.LowMemoryDetector project - expand src folder - expand ca.mikew.LowMemoryDetector package - double click LowMemoryDetectorPlugin - add "implements org.eclipse.ui.IStartup" to class definition in editor - click on "quick fix" icon on the line containing the class definition - double click "Add unimplemented methods" ... eclipse frequently (occurred 5 out of 7 attempts) becomes unresponsive and must be "kill"ed. Here is a stack trace from one such case: Full thread dump Java HotSpot(TM) Client VM (1.4.2-34 mixed mode): "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon prio=1 tid=0x0059e100 nid=0x1f86600 in Object.wait() [f0911000..f0911b20] at java.lang.Object.wait(Native Method) - waiting on <0x63810d78> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:161) - locked <0x63810d78> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) "Java indexing" daemon prio=4 tid=0x00560880 nid=0x1c93600 in Object.wait() [f0407000..f0407b20] at java.lang.Object.wait(Native Method) - waiting on <0x62f001a0> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Object.wait(Object.java:429) at org.eclipse.jdt.internal.core.search.processing.JobManager.run(JobManager.java:344) - locked <0x62f001a0> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Thread.run(Thread.java:552) "Worker-3" prio=5 tid=0x00553190 nid=0x1bda600 in Object.wait() [f080f000..f080fb20] at java.lang.Object.wait(Native Method) - waiting on <0x62cbb6e8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:209) - locked <0x62cbb6e8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:236) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:59) "Worker-1" prio=5 tid=0x005528f0 nid=0x1bcca00 in Object.wait() [f070d000..f070db20] at java.lang.Object.wait(Native Method) - waiting on <0x62cbb6e8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:209) - locked <0x62cbb6e8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:236) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:59) "Thread-1" prio=6 tid=0x00540830 nid=0x1a1ee00 in Object.wait() [f068c000..f068cb20] at java.lang.Object.wait(Native Method) - waiting on <0x62d8a800> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x62d8a800> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.action.ActionContributionItem$ImageCache$ReferenceCleanerThread.run(ActionContri butionItem.java:196) "Thread-0" prio=6 tid=0x005405e0 nid=0x19a1400 in Object.wait() [f060b000..f060bb20] at java.lang.Object.wait(Native Method) - waiting on <0x62d8a870> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x62d8a870> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at org.eclipse.jface.action.ActionContributionItem$ImageCache$ReferenceCleanerThread.run(ActionContri butionItem.java:196) "Start Level Event Dispatcher" daemon prio=5 tid=0x00514320 nid=0x1899200 in Object.wait() [f0509000..f0509b20] at java.lang.Object.wait(Native Method) - waiting on <0x62b0b2d8> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:149) - locked <0x62b0b2d8> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:107) "Framework Event Dispatcher" daemon prio=5 tid=0x00513b50 nid=0x1858a00 in Object.wait() [f0488000..f0488b20] at java.lang.Object.wait(Native Method) - waiting on <0x62b0b328> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:149) - locked <0x62b0b328> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:107) "Signal Dispatcher" daemon prio=10 tid=0x00507f70 nid=0x1814c00 waiting on condition [0..0] "Finalizer" daemon prio=8 tid=0x00506a80 nid=0x180e000 in Object.wait() [f0203000..f0203b20] at java.lang.Object.wait(Native Method) - waiting on <0x62abdd90> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x62abdd90> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159) "Reference Handler" daemon prio=10 tid=0x00506750 nid=0x1802600 in Object.wait() [f0182000..f0182b20] at java.lang.Object.wait(Native Method) - waiting on <0x62abdb90> (a java.lang.ref.Reference$Lock) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x62abdb90> (a java.lang.ref.Reference$Lock) "main" prio=6 tid=0x00500d60 nid=0xa000a1ec runnable [bfffe000..bffff528] at org.eclipse.swt.internal.carbon.OS.ReceiveNextEvent(Native Method) at org.eclipse.swt.widgets.Display.sleep(Display.java:3254) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopIdle(WorkbenchAdvisor.java:344) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1354) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706) "VM Thread" prio=5 tid=0x00505fd0 nid=0x1802e00 runnable "VM Periodic Task Thread" prio=10 tid=0x00507ee0 nid=0x1812600 waiting on condition "Exception Catcher Thread" prio=10 tid=0x00500d00 nid=0x1802a00 runnable
|
2004-05-14 15:30:47
| 1,084,560,000 |
resolved fixed
|
bd00028
| 1,086,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,324 | 14,536 |
Bug 14536 StyledText - bidi - change ctrl-arrow behavior
|
After skipping to the next or previous word (using Ctrl+Right/Left arrow), the keyboard language must be set corresponding to the first character of the word. Caret Positioning after Next/Previous Word: Rule: after skipping to the Next or Previous word (using Ctrl+Right/Left arrow), the caret should precede the first logical character of the word. Start with a line containing abc def GHI JKL MNO pqr stu displayed as abc def ONM LKJ IHG pqr stu When starting on the left and pressing Ctrl+Right arrow repeatedly, the caret should stop on the left of d, then on the right of G, then on the right of J, then on the right of M, then on the left of p, then on the left of s. When starting on the right and pressing Ctrl+Left repeatedly, the caret should stop at the same positions in reverse order. Practically, Ctrl+Left behaves as required, but Ctrl+Right misbehaves at the transition from a LTR word to a RTL word: stops on the left of O instead of the right of G.
|
2002-04-24 12:43:24
| 1,019,670,000 |
resolved fixed
|
ebf9d5e
| 1,086,360,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,325 | 63,931 |
Bug 63931 [browser] setVisible(true) does not work
| null |
2004-05-25 13:53:11
| 1,085,510,000 |
resolved fixed
|
f3f1310
| 1,086,300,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/mozilla/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,326 | 64,760 |
Bug 64760 add SINGLE/MULTI radios to ControlExample - Dialog tab - File Dialog Styles
|
should probably add a horizontal separator below the SWT.OPEN radio, then the SINGLE and MULTI radios below
|
2004-05-31 11:38:15
| 1,086,020,000 |
resolved fixed
|
44595b6
| 1,086,290,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/DialogTab.java
|
SWT
|
3,327 | 64,237 |
Bug 64237 [Menus] menu items missing on first click
|
linux motif version 3.0M9 (also in previous versions) Sun JDK 1.4.2 When I first right-click on an item in the resource view (left pane in default Java perspective) there are items that do no appear in the context menu Today I noticed that "Properties" was missing from a project context menu. "Close Project" is also missing on the first click. On the second click, or if the project is already selected, then the menu items appear
|
2004-05-26 17:47:01
| 1,085,610,000 |
verified fixed
|
a50e9cf
| 1,086,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/SelectableItemWidget.java
|
SWT
|
3,328 | 64,791 |
Bug 64791 [KeyBindings] accelerator strings displayed incorrectly.
|
On the Mac, several of the accelerator strings are clipped. Eg.: - "Edit" -> "Smart Insert Mode" - editor "folding bar" popup -> "Folding" -> "Enable Folding"
|
2004-05-31 14:44:02
| 1,086,030,000 |
verified fixed
|
d3ebe1e
| 1,086,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Menu.java
|
SWT
|
3,329 | 63,991 |
Bug 63991 hang in gtk_clipboard_wait_for_contents()
|
I200405251200 Pasting a large file in eclipse results in a hang. I reproduced the hang copying ~ 170 lines from a text file into eclipse, pasting less than 100 lines seems to work just fine. Gtk+-2.4. Thread [main] (Suspended) OS.gtk_clipboard_wait_for_contents(int, int) line: not available [native method] Clipboard.gtk_clipboard_wait_for_contents(int, int) line: 385 Clipboard.getContents(Transfer) line: 191 StyledText.paste() line: 5614 SourceViewer(TextViewer).doOperation(int) line: 3387 SourceViewer.doOperation(int) line: 744 TextOperationAction$1.run() line: 122 BusyIndicator.showWhile(Display, Runnable) line: 69 TextOperationAction.run() line: 120 TextOperationAction(Action).runWithEvent(Event) line: 881 ActionHandler.execute(Map) line: 141 Command.execute(Map) line: 132 WorkbenchKeyboard.executeCommand(String) line: 469 WorkbenchKeyboard.press(List, Event) line: 887 WorkbenchKeyboard.processKeyEvent(List, Event) line: 928 WorkbenchKeyboard.filterKeySequenceBindings(Event) line: 546 WorkbenchKeyboard.access$2(WorkbenchKeyboard, Event) line: 494 WorkbenchKeyboard$1.handleEvent(Event) line: 259 EventTable.sendEvent(Event) line: 82 Display.filterEvent(Event) line: 979 StyledText(Widget).sendEvent(Event) line: 943 StyledText(Widget).sendEvent(int, Event, boolean) line: 968 StyledText(Widget).sendEvent(int, Event) line: 953 StyledText(Control).sendKeyEvent(int, GdkEventKey) line: 2293 StyledText(Control).gtk_key_press_event(int, int) line: 1793 StyledText(Composite).gtk_key_press_event(int, int) line: 448 StyledText(Widget).windowProc(int, int, int) line: 1194 Display.windowProc(int, int, int) line: 3040 OS.gtk_main_do_event(int) line: not available [native method] Display.eventProc(int, int) line: 839 OS.gtk_main_iteration() line: not available [native method] Display.readAndDispatch() line: 2252 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1363 Workbench.runUI() line: 1334 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 253 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 141 IDEApplication.run(Object) line: 97 PlatformActivator$1.run(Object) line: 307 EclipseStarter.run(Object) line: 256 EclipseStarter.run(String[], Runnable) line: 127 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object[]) line: 324 Main.basicRun(String[]) line: 185 Main.run(String[]) line: 638 Main.main(String[]) line: 622
|
2004-05-25 17:20:16
| 1,085,520,000 |
resolved fixed
|
6e46ef8
| 1,086,280,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
|
SWT
|
3,330 | 65,214 |
Bug 65214 Regression: Tree.setRedraw(false) not reliable
| null |
2004-06-01 22:12:01
| 1,086,140,000 |
resolved fixed
|
a2fb3a8
| 1,086,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,331 | 64,365 |
Bug 64365 Embedded AWT windows use wrong location
|
The code in SWT_AWT for 3.0M9 was modified slightly to change how the SWT.Move event was handled as well as how the initial location of the embedded window was handled. This causes the window to not be at the 0,0 location within its parent. In fact the window moves away from the 0,0 location of its parent as the whole app is moved away from the 0,0 screen location. The problem is the use of anything other than 0,0 in the setLocation and setBounds calls that were added. The problem goes away if frame.setBounds (bounds.x, bounds.y, bounds.width, bounds.height); is changed to: frame.setBounds (0,0, bounds.width, bounds.height); and frame.setLocation (location.x, location.y); is changed to: frame.setLocation(0,0);
|
2004-05-27 11:43:42
| 1,085,670,000 |
resolved fixed
|
cac8000
| 1,086,200,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 bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java
|
SWT
|
3,332 | 64,980 |
Bug 64980 should use correct SIZE_ALL cursor on motifs
|
RC1 This was fixed last week on gtk, and should have been on motif as well. It's a trivial fix of a constant (patch is attached next), so it should be safe for this week.
|
2004-06-01 10:49:57
| 1,086,100,000 |
resolved fixed
|
3f4928a
| 1,086,190,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/motif/org/eclipse/swt/internal/motif/OS.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Cursor.java
|
SWT
|
3,333 | 65,169 |
Bug 65169 [browser] URLs with space don't show up on Safari
|
we need to replace spaces with %20 as expected by Safari API
|
2004-06-01 16:47:37
| 1,086,120,000 |
resolved fixed
|
c880d8f
| 1,086,190,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,334 | 64,938 |
Bug 64938 [browser] NPE in test case
|
Running a test case that uses the ProgressListener.completed event causes a NPE when trying to get the widget field. Widget field is not set and should contain the browser the event originates from. The other browser events appear fine.
|
2004-06-01 09:42:45
| 1,086,100,000 |
resolved fixed
|
45e2ca6
| 1,086,100,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,335 | 62,723 |
Bug 62723 javadoc console output: hyperlink not clickable, no hand cursor [javadoc]
|
I20040518-gtk, m9 test pass 1. Create the smoke test junit project 2. Choose Project -> Generate Javadoc 3. Open the console and go to the line that says: /opt/eclipse/workspaces/smoke/JUnit/junit/runner/TestCollector.java:11: warning - Tag @see: Class or Package not found: TestSelector 4. Hover over the first part of the line expected: see a hand cursor, clicking the link brings up the respective location actual: the cursor flashes a little, but no hand cursor visible, clicking has no effect Note that selecting the line, then choose "Open Link" from the context menu does work. Somehow, the cursor thing seems not to work - something seems to race, thus the cursor flashing.
|
2004-05-18 14:03:33
| 1,084,900,000 |
resolved fixed
|
2f1f3df
| 1,085,780,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT PI/motif/org/eclipse/swt/internal/motif/OS.java 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
|
3,336 | 64,518 |
Bug 64518 NPE in StyledText used by 'Change method signature' refactoring
|
20040528 public interface ITextMeasurement { public int computeWidth(String string); } 1. on the previous code open the 'Change method refactoring' wizard on 'computeWidth' 2. change the parameter type to 'String1' 3. press the 'Add' button -> NPE thrown The NPE comes from field StyleItem.analysis being null. Thread [main] (Suspended (exception NullPointerException)) TextLayout.reorder(TextLayout$StyleItem[]) line: 1463 TextLayout.computeRuns(GC) line: 334 TextLayout.getLineOffsets() line: 936 WrappedContent.wrapLineRange(int, int, int, int) line: 448 WrappedContent.wrapLines(int) line: 476 WrappedContent.wrapLines() line: 462 StyledText$WordWrapCache.<init>(StyledText, StyledText, WrappedContent) line: 1452 StyledText.getLineCache(StyledTextContent) line: 3774 StyledText.calculateContentWidth() line: 1919 StyledText.reset() line: 6303 StyledText.handleTextSet(TextChangedEvent) line: 5239 StyledText$6.textSet(TextChangedEvent) line: 4714 DefaultDocumentAdapter.fireTextSet() line: 324 DefaultDocumentAdapter.documentChanged(DocumentEvent) line: 247 Document(AbstractDocument).doFireDocumentChanged2(DocumentEvent) line: 663 Document(AbstractDocument).doFireDocumentChanged(DocumentEvent, boolean, IRegion) line: 638 Document(AbstractDocument).doFireDocumentChanged(DocumentEvent) line: 623 Document(AbstractDocument).fireDocumentChanged(DocumentEvent) line: 698 Document(AbstractDocument).set(String) line: 1003 ChangeSignatureWizard$ChangeSignatureInputPage.updateSignaturePreview() line: 352 ChangeSignatureWizard$ChangeSignatureInputPage.update(boolean) line: 322 ChangeSignatureWizard$ChangeSignatureInputPage.access$1(ChangeSignatureWizard$ChangeSignatureInputPage, boolean) line: 320 ChangeSignatureWizard$5.parameterAdded(ParameterInfo) line: 261 ChangeParametersControl$5.widgetSelected(SelectionEvent) line: 441 TypedListener.handleEvent(Event) line: 89 EventTable.sendEvent(Event) line: 82 Button(Widget).sendEvent(Event) line: 796 Display.runDeferredEvents() line: 2716 Display.readAndDispatch() line: 2382 RefactoringWizardDialog2(Window).runEventLoop(Shell) line: 668 RefactoringWizardDialog2(Window).open() line: 648 RefactoringWizardOpenOperation.run(Shell, String) line: 121 RefactoringStarter.activate(Refactoring, RefactoringWizard, Shell, String, boolean) line: 40 ModifyParametersAction$1(UserInterfaceStarter).activate(Refactoring, Shell, boolean) line: 54 ModifyParametersAction$1.activate(Refactoring, Shell, boolean) line: 249 ModifyParametersAction.startRefactoring(IMethod) line: 254 ModifyParametersAction.run(ITextSelection) line: 157 ModifyParametersAction(SelectionDispatchAction).dispatchRun(ISelection) line: 216 ModifyParametersAction(SelectionDispatchAction).run() line: 188 ModifyParametersAction(Action).runWithEvent(Event) line: 881 ActionContributionItem.handleWidgetSelection(Event, boolean) line: 915 ActionContributionItem.access$2(ActionContributionItem, Event, boolean) line: 866 ActionContributionItem$7.handleEvent(Event) line: 785 EventTable.sendEvent(Event) line: 82 MenuItem(Widget).sendEvent(Event) line: 796 Display.runDeferredEvents() line: 2716 Display.readAndDispatch() line: 2382 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1363 Workbench.runUI() line: 1334 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 253 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 141 IDEApplication.run(Object) line: 96 PlatformActivator$1.run(Object) line: 331 EclipseStarter.run(Object) line: 273 EclipseStarter.run(String[], Runnable) line: 128 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 79 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 41 Method.invoke(Object, Object[]) line: 386 Main.basicRun(String[]) line: 185 Main.run(String[]) line: 638 Main.main(String[]) line: 622
|
2004-05-28 05:52:03
| 1,085,740,000 |
resolved fixed
|
31020d3
| 1,085,770,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,337 | 62,982 |
Bug 62982 TableColumn does not fire resize event
|
Create a TableColumn, add a control listener, resize the column and you will not get a resize event This problem may be OS X specific as it appears to work on Windoze.
|
2004-05-19 11:59:35
| 1,084,980,000 |
resolved fixed
|
11abcc2
| 1,085,760,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/TableColumn.java
|
SWT
|
3,338 | 64,220 |
Bug 64220 Wrong cursor used for SWT.CURSOR_SIZEALL
|
I200405260800 SWT is using the incorrect Gtk+ cursor for SWT.CURSOR_SIZEALL. SWT uses GDK_DIAMOND_CROSS when the correct cursor is GDK_FLEUR. Fixing this would make moving fastbars and coolbars look a lot better.
|
2004-05-26 16:10:15
| 1,085,600,000 |
verified fixed
|
ccf1b13
| 1,085,750,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java
|
SWT
|
3,339 | 62,558 |
Bug 62558 Null Pointer when opening Folder in File>Open External File
|
Go to the menu and choose, File>Open External File, when the open file dialog comes up select a folder from the left side list and hit open, should get a big long traceback similar to the following org.eclipse.ui.PartInitException[0]: java.lang.NullPointerException at java.io.Reader.<init>(Reader.java:61) at java.io.InputStreamReader.<init>(InputStreamReader.java:80) at org.eclipse.core.internal.filebuffers.JavaTextFileBuffer.setDocumentContent(JavaTextFileBuffer.java:300) at org.eclipse.core.internal.filebuffers.JavaTextFileBuffer.initializeFileBufferContent(JavaTextFileBuffer.java:231) at org.eclipse.core.internal.filebuffers.JavaFileBuffer.create(JavaFileBuffer.java:81) at org.eclipse.core.internal.filebuffers.TextFileBufferManager.connect(TextFileBufferManager.java:68) at org.eclipse.ui.editors.text.TextFileDocumentProvider.createFileInfo(TextFileDocumentProvider.java:470) at org.eclipse.ui.editors.text.TextFileDocumentProvider.connect(TextFileDocumentProvider.java:414) at org.eclipse.ui.texteditor.AbstractTextEditor.doSetInput(AbstractTextEditor.java:2507) at org.eclipse.ui.texteditor.StatusTextEditor.doSetInput(StatusTextEditor.java:173) at org.eclipse.ui.texteditor.ExtendedTextEditor.doSetInput(ExtendedTextEditor.java:1067) at org.eclipse.ui.editors.text.TextEditor.doSetInput(TextEditor.java:290) at org.eclipse.ui.texteditor.AbstractTextEditor$14.run(AbstractTextEditor.java:1978) at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:302) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252) at org.eclipse.jface.window.ApplicationWindow$1.run(ApplicationWindow.java:576) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.jface.window.ApplicationWindow.run(ApplicationWindow.java:573) at org.eclipse.ui.internal.WorkbenchWindow.run(WorkbenchWindow.java:1606) at org.eclipse.ui.texteditor.AbstractTextEditor.internalInit(AbstractTextEditor.java:1993) at org.eclipse.ui.texteditor.AbstractTextEditor.init(AbstractTextEditor.java:2011) at org.eclipse.ui.internal.EditorManager.createSite(EditorManager.java:569) at org.eclipse.ui.internal.EditorManager.openInternalEditor(EditorManager.java:633) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:438) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:426) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2129) at org.eclipse.ui.internal.WorkbenchPage.access$6(WorkbenchPage.java:2072) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2059) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2054) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2037) at org.eclipse.ui.internal.editors.text.OpenExternalFileAction.run(OpenExternalFileAction.java:115) at org.eclipse.ui.internal.editors.text.OpenExternalFileAction.run(OpenExternalFileAction.java:87) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:269) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:207) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:550) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:502) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:435) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:939) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1953) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1726) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1562) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:257) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:277) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:239) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:267) at org.eclipse.core.launcher.Main.run(Main.java:692) at org.eclipse.core.launcher.Main.main(Main.java:676)
|
2004-05-17 17:03:46
| 1,084,830,000 |
verified fixed
|
0f19e49
| 1,085,690,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/FileDialog.java
|
SWT
|
3,340 | 64,457 |
Bug 64457 calling CTabItem.setFont (and setImage) repeatedly with null causes repaints
|
I20040527 If you call setFont with some font Object, and later call it again no repainting is undertaken because ther eis a check to ensure that the font objects are not equal. This doesn't work if you call setFont with null repeatedly, however. Each call will result in a repaint. A line such as: if (font == null && this.font == null) return; would prevent this. This is having a noticable impact on the Console view, whos events cause this operation to be undertaken often. It is currently flickering excessivly when output is written to it. We could check ourselves using getFont() but you're already doing half of this work in CTabItem already. The same problem also applies to setImage.
|
2004-05-27 17:30:08
| 1,085,690,000 |
resolved fixed
|
06dc38e
| 1,085,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
|
SWT
|
3,341 | 63,185 |
Bug 63185 [browser] Intro issues using Safari version of the browser
|
Christophe, I tried the browser based intro on the Mac. Here are a couple of problems that I came across: 1. The page doesn't redraw immediately after the window is resized. If the window is made smaller, the scrollbars don't appear until the redraw occurs. If the window is made larger, the newly available space remains white until the page is redrawn. Hovering over a link seems to trigger a redraw 2. Resize the window so that scrollbars appear, then use the scrollbars to scroll the content in the browser. After using the scrollbar, move your mouse over the main part of the page again - the hover/ rollover images don't appear. It is almost as though focus is taken away from the page after the scrollbars are used. You have to click somewhere on the page first, and then the rollover images start to work again. 3. If the intro is in "Standby" mode, and you click the "Return to Introduction" link, there is no content in the intro (I believe this is also a redraw problem). 4. Clicking on the links doesn't always cause the page to change. You sometimes have to click several times for anythiing to happen, or maybe you just have to click in just the right spot.. (This may be a CSS problem, not a browser problem)
|
2004-05-20 08:21:53
| 1,085,060,000 |
resolved fixed
|
778ad14
| 1,085,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,342 | 38,260 |
Bug 38260 CCombo with Dialog
|
When I use the CCombo with the dialog, the dropdown list shown in the back of the Dialog. I did as following. 1. Create one sample application with a Group. 2. The parent of group is one shell. 3. I create a dialog. 4. I put my application to this dialog. and change the Group's parent as the dialog's parent. Now the above descripbed pbm occured.
|
2003-05-30 07:40:12
| 1,054,290,000 |
resolved fixed
|
fac82cc
| 1,085,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
3,343 | 63,070 |
Bug 63070 some menus do not show their item texts
|
0519 integration build - running on the Japanese machine in the swt lab, win98 - start eclipse (no translation pack, just the default download) - open the File menu, it opens very wide and without item texts - many of the other menus appear fine - I don't see this problem in Arabic I'll attach the screenshot next.
|
2004-05-19 14:57:09
| 1,084,990,000 |
verified fixed
|
9a1df5c
| 1,085,680,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java
|
SWT
|
3,344 | 63,003 |
Bug 63003 Ctrl+ Clicking on PackageExplorer expands items
|
I200405190010, Solaris 8, CDE Hold down the Ctrl key and try selecting different items in the list in the tree view. This seems to be treated as a double-click, which opens one of the items. What's worse is that it expands the top-most item in the current selection that has not already been expanded. This is sometimes quite distant from the current selection (e.g., try a "shift" selection and then move elsewhere and try to add to the selection using "ctrl").
|
2004-05-19 12:32:53
| 1,084,980,000 |
verified fixed
|
0026caf
| 1,085,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/SelectableItemWidget.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,345 | 22,018 |
Bug 22018 GTK: Text.setCursor() does not function.
|
In this test selecting an item from the list would set the Cursor of the Text widget by calling Text.setCursor(). But it is seen that the Cursor of the Text widget is not set . This test works fine on Windows. The test case : ---------test case starts here ---------------------------------------- import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.graphics.Cursor; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class TestSWTCursor { public static void main(String[] args) { final Display disp = Display.getDefault(); Shell shell = new Shell(disp); shell.setLayout(new FillLayout(SWT.VERTICAL)); final List list = new List(shell, SWT.BORDER | SWT.HORIZONTAL | SWT.VERTICAL | SWT.MULTI | SWT.CLIP_CHILDREN | SWT.CLIP_SIBLINGS); final Text text = new Text(shell ,SWT.BORDER | SWT.CLIP_CHILDREN | SWT.CLIP_SIBLINGS|SWT.NULL); list.add("Default"); list.add("Wait"); list.add("Cross Hair"); list.add("App Starting"); list.add("Help"); list.addSelectionListener(new SelectionAdapter(){ public void widgetSelected(SelectionEvent e){ text.setCursor(new Cursor(disp,list.getSelectionIndex())); } }); shell.setText("Test Cursor"); shell.setSize(200,200); shell.setLocation(0,0); shell.open(); while (!shell.isDisposed()) { if (!disp.readAndDispatch()) { disp.sleep(); } } } } -------------test case ends here -----------------------------------------
|
2002-07-29 15:44:47
| 1,027,970,000 |
resolved fixed
|
7d022b0
| 1,085,530,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/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/Sash.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/Text.java
|
SWT
|
3,346 | 62,523 |
Bug 62523 launch eclipse with -DMBCS as a vmarg and copy-paste works incorrectly / ctrl f6 shows undisplayable characters
|
until recently (2.1.3) i used to launch eclipse with DMBCS option (eclipse -vmarg -DMBCS) but in eclipse M8 if I launch eclipse with that option copy paste does not work correctly, say I select the word 'Test' say in a java editor or plugin.xml editor and copy paste it I would get 'Tes' also if I have multiple editors open when I hit Ctrl F6 all the editor names appear as undisplayable characters.
|
2004-05-17 14:58:19
| 1,084,820,000 |
closed fixed
|
251c4f2
| 1,085,500,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
|
SWT
|
3,347 | 63,296 |
Bug 63296 [browser] F1 crashes workbench
|
I20040520 12:26 build. Open workbench, within Intro area, press F1 ==> Crash. Or Open workbench, launch help, press F1 ==> Crash.
|
2004-05-20 15:18:30
| 1,085,080,000 |
resolved fixed
|
00fb584
| 1,085,160,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
3,348 | 56,063 |
Bug 56063 [Colors] Perspective toolbar items have wrong background
|
200403240800 MacOS 10.3.3 - turn on preference "Show text on perspective bar" Observe: text has wrong background color (see attachement)
|
2004-03-24 18:07:52
| 1,080,170,000 |
verified fixed
|
17535ac
| 1,085,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,349 | 61,316 |
Bug 61316 SWT error occurred on Eclipse 200405060200
|
Eclipse 200405060200 CDT 200405052036 (=~ 200405060200 + integration patches) I can't reproduce this problem, but I was doing thing something like creating, editing, building, then deleting a file in CDT. Suddenly, I had an error dialog: "An SWT error has occurred. You are recommended to exit the workbench." Upon exit, my .log file contained: !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 May 06, 2004 14:00:03.359 !MESSAGE Item not removed !STACK 0 org.eclipse.swt.SWTError: Item not removed at org.eclipse.swt.SWT.error(SWT.java:2715) at org.eclipse.swt.SWT.error(SWT.java:2614) at org.eclipse.swt.SWT.error(SWT.java:2585) at org.eclipse.swt.widgets.Widget.error(Widget.java:381) at org.eclipse.swt.widgets.Menu.destroyItem(Menu.java:558) at org.eclipse.swt.widgets.MenuItem.releaseChild(MenuItem.java:435) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:367) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:570) at org.eclipse.jface.action.MenuManager.handleAboutToShow (MenuManager.java:371) at org.eclipse.jface.action.MenuManager.access$0(MenuManager.java:367) at org.eclipse.jface.action.MenuManager$2.menuShown (MenuManager.java:383) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:116) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:801) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:3301) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2973) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1449) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3160) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:222) at org.eclipse.swt.widgets.Display.runPopups(Display.java:2620) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2265) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) !ENTRY org.eclipse.core.runtime 4 2 May 06, 2004 14:00:35.421 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Menu.releaseWidget(Menu.java:1049) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:368) at org.eclipse.swt.widgets.Decorations.releaseWidget (Decorations.java:693) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:785) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:368) at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:371) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:486) at org.eclipse.jface.window.Window.close(Window.java:253) at org.eclipse.jface.window.ApplicationWindow.close (ApplicationWindow.java:272) at org.eclipse.ui.internal.WorkbenchWindow.hardClose (WorkbenchWindow.java:1043) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:483) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:465) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:553) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:551) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:101) at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:450) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:604) at org.eclipse.core.runtime.Platform.run(Platform.java:545) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:447) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:389) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:561) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.ui.internal.Workbench.close(Workbench.java:559) at org.eclipse.ui.internal.WorkbenchConfigurer.emergencyClose (WorkbenchConfigurer.java:150) at org.eclipse.ui.internal.ide.IDEExceptionHandler.closeWorkbench (IDEExceptionHandler.java:104) at org.eclipse.ui.internal.ide.IDEExceptionHandler.handleException (IDEExceptionHandler.java:84) at org.eclipse.ui.internal.ide.IDEWorkbenchAdvisor.eventLoopException (IDEWorkbenchAdvisor.java:241) at org.eclipse.ui.internal.ExceptionHandler.handleException (ExceptionHandler.java:53) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1357) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) !ENTRY org.eclipse.osgi May 06, 2004 14:00:35.656 !MESSAGE Application error !STACK 1 java.lang.NullPointerException at org.eclipse.swt.widgets.Menu.releaseWidget(Menu.java:1049) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:368) at org.eclipse.swt.widgets.Decorations.releaseWidget (Decorations.java:693) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:785) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:368) at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:371) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:486) at org.eclipse.swt.widgets.Display.release(Display.java:2321) at org.eclipse.swt.graphics.Device.dispose(Device.java:227) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:99) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684)
|
2004-05-06 17:01:08
| 1,083,880,000 |
verified fixed
|
e9f1bd6
| 1,085,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,350 | 60,102 |
Bug 60102 Shell opened on KDE3.2.x does not paint
|
When a workbench window is first opened, it does not paint any of its contents (e.g., menu bars, cool bars, tool bars, composites, etc.). By moving or resizing the workbench window, a paint occurs and the contents become visible. This occurs using I200404270800 and GTK+ 2.4.0. It does not occur on similar machines running GTK+ 2.2.x.
|
2004-04-27 10:35:20
| 1,083,080,000 |
resolved fixed
|
c9097f4
| 1,085,090,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,351 | 63,154 |
Bug 63154 JavaEditor draws squiggle underline over the string
|
build I20040519 JavaEditor draws squiggle underline over the string (a.k.a red see). This problem is been caused by SWT. It was introduced when we added italic font support. Here is the situation: The application set a font in the StyledText. Internally StyledText will create 3 more fonts: boldFont, italicFont, boldItalicFont. In order to line up normal, bold, italic, and boldItalic segments of text in the same line StyledText need to compute the max baseline amongs all those fonts. Usually these font have same (or very similar) metrics, but sometimes they are not (example: default font in Solaris). I believe the code that draws the squiggle is getting the normal font from the StyledText, getting its metrics, compute the baseline (ascent+descent), and draws the squiggle at y + baseline. Since this baseline can be less than the maxBaseline it possible that the siggle will be drawn over the text instead of the real baseline where the strings where drawn. Right now we have two solutions: 1) The app code will need to create all the fonts and do the same styledtext is doing. 2) We add getBaseline() to StyledText and app code start to using it instead of getting the line metrics.
|
2004-05-19 19:07:18
| 1,085,010,000 |
resolved fixed
|
f03e766
| 1,085,090,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java
|
SWT
|
3,352 | 62,528 |
Bug 62528 Tracker does not keep up with mouse movement
|
I am using a Tracker with SWT.RIGHT | SWT.LEFT style bits and one Rectangle that indicates the location of something. I want that Rectangle to maintain its vertical location and only move in the horizontal direction. The problem is that if I move the Tracker using the move, it ignores movement in the horizontal direction that coincides with the movement in the vertical direction. That is, if I move my mouse just to the right, it's fine. However, if I move it to the right and bottom, then it ignores both those movements. Hence, the feedback rectangle does not keep up with the mouse. It's difficult to move the mouse in the horizontal direction without changing the vertical location. What the tracker should do is ignore just the vertical change, but still respect the horizontal change.
|
2004-05-17 15:09:52
| 1,084,820,000 |
verified fixed
|
834d97d
| 1,085,080,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Tracker.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
3,353 | 60,457 |
Bug 60457 [browser] safari - does not fire location event for inner frame
|
need to verify inner frames also fire location event when hyperlink is activated, not just for top frame.
|
2004-04-29 12:38:52
| 1,083,260,000 |
resolved fixed
|
56a6b7b
| 1,085,080,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/browser/Browser1.java
|
SWT
|
3,354 | 63,105 |
Bug 63105 TableItem.getImageBounds() returns incorrect value for Column 0
|
I have a Table with two columns. The second column contains an image. The Table also has a TableEditor defined for it. When the TableEditor.computeBounds() method attempts to compute the size for Column 0, it gets an incorrect value. When computeBounds() calls TableItem.getImageBounds(), it should get a zero sized rectangle, since there is no image for this column. But if any column in the Table has an image, it gets a non-zero rectangle instead. There is a comment in TableItem: /* * Feature in Windows. LVM_GETSUBITEMRECT returns a small width * value even when the subitem does not contain an image. The * fix is to set the width to zero. */ if (index != 0 && images != null & images [index] == null) { width = 0; } But this patch doesn't work if the column is 0. So the incorrect sized rectangle is returned and TableEditor creates a editor widget for the cell with an incorrect size. The code works fine if the table contains no images.
|
2004-05-19 16:19:06
| 1,085,000,000 |
resolved fixed
|
245f43e
| 1,085,000,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java
|
SWT
|
3,355 | 62,790 |
Bug 62790 packing a shell has the effect of creating an unusable shell on pocketpc
| null |
2004-05-18 16:33:17
| 1,084,910,000 |
resolved fixed
|
3ec43f5
| 1,085,000,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,356 | 63,006 |
Bug 63006 Typo in SWT doc for ON_TOP
|
* <li><code>Decorations</code>and subclasses</li> should be: * <li><code>Decorations</code> and subclasses</li> Without the space in the javadoc view it looks silly.
|
2004-05-19 12:37:32
| 1,084,980,000 |
resolved fixed
|
84a4c27
| 1,084,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
|
SWT
|
3,357 | 60,819 |
Bug 60819 Photon: Tree.java references java.util.Stack (not in JDK 1.1)
|
In the past, the SWT team has been careful to avoid the collection classes, especially those introduced after JDK 1.1.x. However, in recompiling the latest SWT source on several platforms against an older JCL implementation, I noticed that Tree.java is making use of java.util.Stack. No other SWT class on this or any other platform is using one of the newer collection classes. Can this be rewritten to use arrays or a Vector, or is it no longer considered taboo to use these types of collection classes in SWT source code? Here's where I find a Stack being used: org\eclipse\swt\widgets\Tree.java (at line 18) org\eclipse\swt\widgets\Tree.java (at line 1446) - 2 occurrences
|
2004-05-03 16:46:04
| 1,083,620,000 |
resolved fixed
|
ba32868
| 1,084,940,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,358 | 62,760 |
Bug 62760 junit tests need to use the eclipse launcher
|
The eclipse junit tests currently start eclipse from the java executable directly. They should be started through the eclipse launcher directly. Note that the Eclipse launcher does a few extra things like: - set up the LD_LIBRARY_PATH/MOZILLA_FIVE_HOME variables for the SWT Browser widget as documented in SWT FAQ. Junit tests for SWT fail as a result on Linux GTK. SWT junit tests for GTK now disabled until PR closed.
|
2004-05-18 15:33:09
| 1,084,910,000 |
resolved fixed
|
c8c0863
| 1,084,910,000 |
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/AllBrowserTests.java
|
SWT
|
3,359 | 62,477 |
Bug 62477 Clicking on shell title bar causes activation events with null active shells
|
I200405140800. Linux 2.6.4, GTK+ 2.4.0, KDE 3.2.1 I have a filter attached to the display listening for activation events. I get one activation event for every widget in the hierarchy. However, it seems that the display.getActiveShell() responds with "null" until the top-level shell receives the activation event. This means that while processing these activation events, it appears as if no shell is active. This does not happen on Windows XP.
|
2004-05-17 09:55:34
| 1,084,800,000 |
resolved fixed
|
89eb385
| 1,084,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,360 | 60,068 |
Bug 60068 TableCursor crashes when scrolling vertically an empty table
|
3.0 M8 line 507 Method void resize() fails because row is set to '0' and table.getItem(row) will produce an IndexOutOfBounds Exception. Quite obviously. Guess that's easy to fix.
|
2004-04-27 02:58:06
| 1,083,050,000 |
resolved fixed
|
1858f5f
| 1,084,820,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.