id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
2,961 | 91,252 |
Bug 91252 View toolbars are showing with black backgrounds
|
Version: 3.1.0 Build id: I20050412-1547 The background of all view local toolbars is black. When I change my theme to standard XP one (Luna) the problem goes away. This problem didn't exist in the previous I build. The black makes it very hard to concentrate :)
|
2005-04-13 05:48:38
| 1,113,390,000 |
resolved fixed
|
8db8bcd
| 1,113,700,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
2,962 | 91,435 |
Bug 91435 Ctrl+SPACE is not a valid keybinding assignment for actions on native widgets
|
The keybinding preferences should not allow you to assign CTRL+SPACE as the keybinding to actions which are invoked when a Tree or Table has focus. This is the platform keybinding for toggle selection. For example, assign Navigate->Go Into to CTRL+SPACE, and then try to invoke in the package explorer. It seems to work every other time and of course interferes with platform accelerators
|
2005-04-14 13:58:44
| 1,113,500,000 |
resolved fixed
|
b024555
| 1,113,700,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,963 | 91,511 |
Bug 91511 Directory Dialog - Selection string not externalized?
|
In the open() method, the string "Selection" appears. Should this be added to the ResourceBundle?
|
2005-04-15 08:41:10
| 1,113,570,000 |
resolved fixed
|
a8373fc
| 1,113,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
2,964 | 91,555 |
Bug 91555 Table not visible
|
For some reason, I can't see the table when I run this code. It works fine on GTK+ and Win32. Shell shell = new Shell(display); Text text = new Text(shell, SWT.NONE); text.setBounds(0,0,300,40); final Table table = new Table(shell, SWT.VIRTUAL); table.setBounds(0,40,300,200); shell.setSize(320,240); shell.open(); while(display.readAndDispatch()); table.addListener(SWT.SetData, new Listener() { public void handleEvent(Event event) { TableItem titem = (TableItem) event.item; int index = table.indexOf(titem); titem.setText("Hello: " + index); } }); table.setItemCount(30000); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } shell.dispose();
|
2005-04-15 11:18:51
| 1,113,580,000 |
resolved fixed
|
d66e58d
| 1,113,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Scrollable.java
|
SWT
|
2,965 | 90,258 |
Bug 90258 Table item not updated when item count == 1
|
I20050401 (M6) I am using a Table with SWT.VIRTUAL. Everything works fine, except for the case I set the item count to 1, in which case I do not receive an SWT.SetData notification. Tried to reproduce using a modified version of Snippet151, but everything works as expected there. Do you have any idea what could be going wrong? One funny thing is that in the variable view, the debugger displays the updated contents of table.items[0] after calling clearAll(), but I have verified that the data is never ever set. The display fails to update. My code looks like this: ---------------- Table table... table.setItemCount(1); table.clearAll(); ... private void handleSetData(Event event) { TableItem item= (TableItem) event.item; int index= fProposalTable.indexOf(item); ICompletionProposal current= fFilteredProposals[index]; item.setText(current.getDisplayString()); item.setImage(current.getImage()); item.setData(current); } -----------------
|
2005-04-05 04:56:07
| 1,112,690,000 |
verified fixed
|
c6ce818
| 1,113,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,966 | 91,468 |
Bug 91468 GTK+ 2.2 requests data from non-visible rows of a VIRTUAL table
|
Because the fixed_height_mode property is not supported until GTK+ 2.2, GtkTreeView requests all rows to perform validation. Virtual tables can probably get a good speed boost by returning some dummy data until the row actually becomes visible, rather than going and asking the application for the data too early.
|
2005-04-14 17:32:23
| 1,113,510,000 |
resolved fixed
|
3ddaf55
| 1,113,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,967 | 87,882 |
Bug 87882 No default contextual menu item on Mac
| null |
2005-03-13 13:08:21
| 1,110,740,000 |
resolved fixed
|
c571794
| 1,113,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Menu.java
|
SWT
|
2,968 | 88,133 |
Bug 88133 Slow rendering with images with transparancy bit set
|
I have come across a severe performance issue when dealing with copying lots of images with transparency bit set to an Image used in a double buffer type painting strategy. This code is straight out of "The definitive guide to SWT and JFace" by Robert Warner with the addition of the loop to draw my tiles. If I use the images t1 and t2 as they are (without setting a transparancy bit) then performance is great. But if I extract the ImageData and set transparentPixel then performance drops off to an unacceptable level. Even if I extract the ImageData and create an new image from that without even setting transparentPixel performance is notably reduced. Here is the main class with the paint event etc.: import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class DoubleDoppleGanger { private static final int IMAGE_WIDTH = 100; // The timer interval in milliseconds private static final int TIMER_INTERVAL = 10; private ImageManager im; // The location of the "ball" private int x = 0; private int y = 0; // The direction the "floating image" is moving private int directionX = 1; private int directionY = 1; // We draw everything on this canvas private Canvas canvas; /** * Runs the application */ public void run() { final Display display = new Display(); Shell shell = new Shell(display); shell.setText("Animator Double Buffer"); im = new ImageManager(display); createContents(shell); shell.open(); // Set up the timer for the animation Runnable runnable = new Runnable() { public void run() { animate(); display.timerExec(TIMER_INTERVAL, this); } }; // Launch the timer display.timerExec(TIMER_INTERVAL, runnable); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } // Kill the timer display.timerExec(-1, runnable); display.dispose(); } private void createContents(final Shell shell) { shell.setLayout(new FillLayout()); canvas = new Canvas(shell, SWT.NO_BACKGROUND); canvas.addPaintListener(new PaintListener() { public void paintControl(PaintEvent event) { // Create the image to fill the canvas Image image = new Image(shell.getDisplay(), canvas.getBounds()); // Set up the offscreen gc GC gcImage = new GC(image); // Draw the background gcImage.setBackground(event.gc.getBackground()); gcImage.fillRectangle(image.getBounds()); int lx = 0; int ly = 0; int i; int j; boolean indent = false; for (i = 0; i < 30; i++) { if (indent) { lx = 32; indent = false; } else { lx = 0; indent = true; } for (j = 0; j < 14; j++) { gcImage.drawImage(ImageManager.t1, lx, ly); lx += 64; } ly += 16; } gcImage.drawImage(ImageManager.t2, x, y); event.gc.drawImage(image, 0, 0); image.dispose(); gcImage.dispose(); } }); } /** * Animates the next frame */ public void animate() { // Determine the ball's location x += directionX; y += directionY; // Determine out of bounds Rectangle rect = canvas.getClientArea(); if (x < 0) { x = 0; directionX = 1; } else if (x > rect.width - IMAGE_WIDTH) { x = rect.width - IMAGE_WIDTH; directionX = -1; } if (y < 0) { y = 0; directionY = 1; } else if (y > rect.height - IMAGE_WIDTH) { y = rect.height - IMAGE_WIDTH; directionY = -1; } // Force a redraw canvas.redraw(); } } And my very simple image management class. tiles_test.png is a large image with several isometric (64x32) tiles on it on a purple background (rgb 127,0,127) which is the transparent bit. import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.graphics.ImageData; public class ImageManager { private Image blob; static Image t1; static Image t2; ImageManager(Display display) { blob = new Image(display, "tiles_test.png"); Image xt1 = new Image(display, 64, 32); ImageData tData = xt1.getImageData(); int purplePixel = tData.palette.getPixel(new RGB(127,0,127)); tData.transparentPixel = purplePixel; t1 = new Image(display, tData); Image xt2 = new Image(display, 64, 32); ImageData tData2 = xt2.getImageData(); tData2.transparentPixel = purplePixel; t2 = new Image(display, tData2); GC dest = new GC(t1); dest.drawImage(blob, 65, 0, 64, 32, 0, 0, 64, 32); GC dest2 = new GC(t2); dest2.drawImage(blob, 0, 0, 64, 32, 0, 0, 64, 32); } } I am not very savy with SWT or Java for that matter and posted this question to eclipse.platform.swt and subsequently asked to post it to the bug list. So my apologies if I am doing something really stupid here. Builder Chad
|
2005-03-15 18:01:03
| 1,110,930,000 |
resolved fixed
|
2dc7cd0
| 1,113,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,969 | 91,423 |
Bug 91423 Fixed size columns used even if fixed_height_mode not supported
|
To support VIRTUAL, we need to use the fixed_height_mode property which is new in GTK+ versions 2.3.2 and up. However, this means we need to size the column ourselves. For versions that don't support fixed_height_mode, we might as well let GTK+ do the column sizing itself (using AUTOSIZE) since it will be faster. I am not sure if maybe we need to do something similar in Tree...
|
2005-04-14 12:13:15
| 1,113,500,000 |
resolved fixed
|
aefa025
| 1,113,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,970 | 86,741 |
Bug 86741 Pressing backspace in browser widget shows navigation cancelled page
|
Version: 3.1.0 Build id: I20050222-0821 When you press backspace (or Alt+Left) in a browser that has had its contents set using setText an action cancelled page is displayed. I would have expected nothing to happen since there was no previous URL. Calling Browser.back() works as expected. public static void main(String[] args) { Display d = Display.getDefault(); Shell s = new Shell(d, SWT.SHELL_TRIM); s.setLayout(new FillLayout()); Browser b = new Browser(s, SWT.NONE); b.setText("<html><body><p>Press backspace</p></body></html>"); s.open(); while (!s.isDisposed()) if (d.readAndDispatch()) d.sleep(); }
|
2005-02-26 02:46:19
| 1,109,400,000 |
resolved fixed
|
e537a64
| 1,113,490,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
|
SWT
|
2,971 | 76,456 |
Bug 76456 Eclipse 3.0.1crashes on HP-UX with a NullPointerException when starting up
|
When I try to start eclipse, the splash screen appears, but a few seconds later a dialog box informs me that "An error has occured. See the log file 'xxx'." and the process terminates. I attach the log file at the end of the message. Note: I entered 'Other' in the Platform field, as there was no option 'HP'. Note: I am not sure about the Component, but as jface occurs in the stack trace in the log file and Jface is related to SWT, I choose SWT The system is running HP-UX B.11.00 with CDE 2.1.0. Thomas --- !SESSION Oct 18, 2004 10:50:59.644 --------------------------------------------- eclipse.buildId=M200409161125 java.version=1.4.2.05 java.vendor=Hewlett-Packard Co. BootLoader constants: OS=hpux, ARCH=PA_RISC, WS=motif, NL=en !ENTRY org.eclipse.osgi Oct 18, 2004 10:50:59.658 !MESSAGE Application error !STACK 1 java.lang.NullPointerException at org.eclipse.jface.resource.FontRegistry.bestData (FontRegistry.java:336) at org.eclipse.jface.resource.FontRegistry.bestDataArray (FontRegistry.java:369) at org.eclipse.jface.resource.FontRegistry.createFont (FontRegistry.java:389) at org.eclipse.jface.resource.FontRegistry.defaultFontRecord (FontRegistry.java:431) at org.eclipse.jface.resource.FontRegistry.getFontRecord (FontRegistry.java:519) at org.eclipse.jface.resource.FontRegistry.get(FontRegistry.java:472) at org.eclipse.jface.resource.JFaceResources.getDialogFont (JFaceResources.java:182) at org.eclipse.jface.dialogs.Dialog.initializeDialogUnits (Dialog.java:778) at org.eclipse.jface.dialogs.TitleAreaDialog.createContents (TitleAreaDialog.java:93) at org.eclipse.jface.window.Window.create(Window.java:348) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:925) at org.eclipse.jface.window.Window.open(Window.java:637) at org.eclipse.ui.internal.ide.ChooseWorkspaceDialog.prompt (ChooseWorkspaceDialog.java:65) at org.eclipse.ui.internal.ide.IDEApplication.promptForWorkspace (IDEApplication.java:314) at org.eclipse.ui.internal.ide.IDEApplication.checkInstanceLocation (IDEApplication.java:219) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:83) 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:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688)
|
2004-10-18 05:39:17
| 1,098,090,000 |
resolved fixed
|
9c007f1
| 1,113,490,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java
|
SWT
|
2,972 | 89,779 |
Bug 89779 NPE in CCombo.dropDown()
| null |
2005-03-30 23:56:41
| 1,112,240,000 |
resolved fixed
|
925f14a
| 1,113,430,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
2,973 | 64,590 |
Bug 64590 [browser] widget not sized properly
|
I was using I20040528-0010 build. The browser wiget on motif displays about 200x200 size, not the size parent expects it to take. Resizing a window causes browser to be redrawn correctly. This is visible when launching help, as well as using "bring up the browser" SWT snippet. Interestingly if shell.setSize() is not called before shell.open(), it works (browser widget taking correct size). If shell.setSize() is called before and after shell.open(), it does not work. If shell.setSize() is called before and after shell.open(), and shell had SWT.DIALOG_TRIM style, it works.
|
2004-05-28 13:09:36
| 1,085,760,000 |
resolved fixed
|
e1a1554
| 1,113,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java
|
SWT
|
2,974 | 86,608 |
Bug 86608 Do not understand Javadoc of Link.setText()
|
3.1 M5a Javadoc of Link.setText says: * anchor, a single HREF attribute is supported. When a hyperlink is * selected, the text field of the selection event contains either the * text of hyperlink or the value of the HREF, if one was specified. I could not find a field or other way to access the text field of the selection event. Q: If I have > 1 link, how do I know in the selection event which one has been clicked?
|
2005-02-25 05:32:14
| 1,109,330,000 |
resolved fixed
|
808e958
| 1,113,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionEvent.java
|
SWT
|
2,975 | 66,882 |
Bug 66882 altgr keys not available
|
On solaris 9 with german keyboard layout all keys coming with alt-gr (e.g. {[]} ~|@ ) are not available. With javax.swing.* package there is no problem with that.
|
2004-06-14 04:02:56
| 1,087,200,000 |
resolved fixed
|
ff18321
| 1,113,420,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,976 | 85,312 |
Bug 85312 combo is cut off when added to ToolBar
|
it's probably answering its preferred height wrong?
|
2005-02-15 14:30:13
| 1,108,500,000 |
resolved fixed
|
897b53c
| 1,113,410,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
2,977 | 81,691 |
Bug 81691 Tracker with SWT.Resize really slow
| null |
2004-12-20 17:04:51
| 1,103,580,000 |
resolved fixed
|
e00d929
| 1,113,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
2,978 | 91,089 |
Bug 91089 SWT Snippet 77 For Table Col resize has an error in it (fix included beklow)
| null |
2005-04-12 05:05:04
| 1,113,300,000 |
resolved fixed
|
4b1e4f7
| 1,113,340,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet77.java
|
SWT
|
2,979 | 84,740 |
Bug 84740 crash on windows xp korean
| null |
2005-02-08 16:17:29
| 1,107,900,000 |
resolved fixed
|
e9c8117
| 1,113,340,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
|
SWT
|
2,980 | 90,899 |
Bug 90899 Using PaintListener on Table destroys repainting (Button is the same case)
| null |
2005-04-09 08:04:57
| 1,113,050,000 |
resolved fixed
|
3da6a13
| 1,113,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,981 | 90,946 |
Bug 90946 gtk_entry_set_text crashes when passed a zero-length buffer
|
The Combo box (Combo.java:1369) passes 'gtk_entry_set_text' a zero-length byte buffer. This seems to cause the VM to crash after _gtk_entry_set_text exits. I am triggering this bug using the following procedure: - Using eclipse 3.1M6 - Using CDT 3.0.1 build - Open Window->Preferences - Open C/C++ in the tree - Select 'Editor', which results in Eclipse exiting due to a VM crash 'gtk_entry_set_text' is called elsewhere with a minimum 1-byte buffer, so I consider passing a 0-length buffer to be suspect. I did experiment with the native side of things, and found that checking the buffer length and passing a const "" to the GTK method in the case of a zero-length buffer removed the crash: #ifndef NO__1gtk_1entry_1set_1text JNIEXPORT void JNICALL OS_NATIVE(_1gtk_1entry_1set_1text) (JNIEnv *env, jclass that, jint arg0, jbyteArray arg1) { jbyte *lparg1=NULL; const gchar *text = ""; jsize array_len = 0; OS_NATIVE_ENTER(env, that, _1gtk_1entry_1set_1text_FUNC); if (arg1) { array_len = (*env)->GetArrayLength(env, arg1); if ((lparg1 = (*env)->GetByteArrayElements( env, arg1, NULL)) == NULL) { goto fail; } if (array_len > 0) { text = (const gchar *)lparg1; } } gtk_entry_set_text((GtkEntry *)arg0, text); fail: if (arg1 && lparg1) { (*env)->ReleaseByteArrayElements(env, arg1, lparg1, 0); } OS_NATIVE_EXIT(env, that, _1gtk_1entry_1set_1text_FUNC); } #endif
|
2005-04-10 20:13:44
| 1,113,180,000 |
resolved fixed
|
1f898d2
| 1,113,330,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
2,982 | 90,222 |
Bug 90222 Device constructor
|
As part of trimming down the SWT API for eSWT, the DeviceData class was removed and a new constructor for Device was introduced (i.e., Device()). However, doing so has broken binary compatibility between eSWT and SWT. Could you add this new constructor for Device for the 3.1 release? public Device() { this(null); } If not, I can add back DeviceData, but I'd rather not. It is not a necessary class from our perspective.
|
2005-04-04 16:39:16
| 1,112,650,000 |
resolved fixed
|
dfaf513
| 1,113,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java
|
SWT
|
2,983 | 90,152 |
Bug 90152 resizing Label flashes
|
3.1M6 - open the hierarchy perspective on any java class or package (select the element and press F4) - move the first vertical sash in the perspective left/right and note that the Labels in the Hierarchy and Problems views flash, even though they're not changing -> note that these are not WRAP labels
|
2005-04-04 09:29:57
| 1,112,620,000 |
resolved fixed
|
6a81e78
| 1,113,260,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/widgets/Label.java
|
SWT
|
2,984 | 89,367 |
Bug 89367 String is not rendered inside stringExtent
|
public class FontScaling { static float value = 1; public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setText("Shell"); shell.setFont(new Font(display, "Arial", 12, 0)); shell.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { GC gc = e.gc; Transform t = new Transform(display); //t.translate(60, 60); t. scale(value, value); gc.setTransform(t); String s = "Test string XYZ"; Point d = gc.stringExtent(s); gc.drawRectangle(0, 0, d.x, d.y); gc.drawString(s, 0, 0, true); value += 0.003; } }); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2005-03-29 11:15:42
| 1,112,110,000 |
resolved fixed
|
e40ab8c
| 1,113,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,985 | 85,537 |
Bug 85537 [JUNIT] Display.map test cases failing
|
Eclipse 3.1 M5 The Display.map JUnit test cases (there are four of them) are all failing.
|
2005-02-16 14:51:20
| 1,108,580,000 |
resolved fixed
|
2db2c96
| 1,113,240,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
2,986 | 90,282 |
Bug 90282 SWT.RIGHT not working on Text control on Mac OS X
|
On Mac OS X 10.3 it is not possible to have right aligned text within a Text control (AKA text field). This works on Windows XP and Linux GTK, however, I don't know anything about Carbon, so this might just be unsupported. Here's a small snippet showing the problem: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Text text = new Text(shell, SWT.SINGLE | SWT.BORDER | SWT.RIGHT); text.setBounds(10, 10, 200, 25); text.setText("right aligned?"); shell.setBounds(50, 50, 230, 100); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } I'm sorry if this is a dup, couldn't find a bug. Tested with Eclipse 3.1M6.
|
2005-04-05 08:50:37
| 1,112,710,000 |
resolved fixed
|
468ab6f
| 1,113,230,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/Text.java
|
SWT
|
2,987 | 89,378 |
Bug 89378 Combo default size too small with certain fonts
|
I'm using some non-editable Combos with a list of pre-set strings to select from, and I want it to stretch to accomodate the longest string inside the list. This works fine except when I switch to a certain font in Japanese - MS UI Gothic. And it doesn't seem to be a Japanese thing, if I use another font, it works. It seems to be computing the size incorrectly. I've noticed this in our UI, and I can also find some instances in some preference pages where they do the same thing. See screenshots to follow.
|
2005-03-29 12:34:21
| 1,112,120,000 |
closed fixed
|
c7d423d
| 1,112,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java
|
SWT
|
2,988 | 90,770 |
Bug 90770 Race conditions in Device.getDevice() method
|
Method org.eclipse.swt.graphics.Device.getDevice() is static and uses static variables (CurrentDevice). In application with several GUI threads it is possible (and it happens) that two or more GUI threads access Device.getDevice() method simultaneously. This leads to situation when getDevice(), called from one thread returns null because getDevice() in another thread set CurrentDevice variable to null.
|
2005-04-08 03:55:24
| 1,112,950,000 |
resolved fixed
|
c58ba58
| 1,112,980,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Device.java
|
SWT
|
2,989 | 90,087 |
Bug 90087 GC.copyArea causes continuous repainting of Canvas
|
Using the second variant of copyArea, that specifies source and destination within the receiver, causes a rapid continous redrawing of the canvas, noticeable as a rapid flickering over the source position of the copyArea command. The attached example shows this by drawing an Image on a Canvas and then copying a fragment of the Image to be displayed at different position on the Canvas, using both copyArea methods. Version: 3.1.0 Build id: I20050219-1500
|
2005-04-02 13:00:27
| 1,112,460,000 |
resolved fixed
|
08b3542
| 1,112,980,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,990 | 89,483 |
Bug 89483 [Table] No SWT.Resize when Scrollbars become visible
|
See this Snippet: public class Main { public static void main(String[] args) { final Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Table table = new Table(shell, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL); table.addListener(SWT.Resize, new Listener() { public void handleEvent(Event event) { System.out.println(event); } }); Thread thread = new Thread() { public void run() { for (int a = 0; a < 100; a++) { try { sleep(100); } catch (InterruptedException e) { return; } display.syncExec(new Runnable() { public void run() { new TableItem(table, SWT.NONE).setText("FOO"); } }); } } }; thread.setDaemon(true); thread.start(); shell.setSize(640, 480); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } There is no SWT.Resize event fired, although the Scrollbar becomes visible. Ben
|
2005-03-30 04:50:16
| 1,112,180,000 |
resolved fixed
|
558d087
| 1,112,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,991 | 89,669 |
Bug 89669 [browser] F1 does not bring eclipse help content when browser has focus
|
I20050330 CTRL-SHIFT-T correctly open the type dialog F1 does nothing. IE has a special Help/F1 callback. Check we don't mess it up.
|
2005-03-30 15:00:12
| 1,112,210,000 |
resolved fixed
|
8a10734
| 1,112,910,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Widget.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Widget.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,992 | 90,729 |
Bug 90729 Shell with style MODELESS or DIALOG_TRIM ignores setSize()
|
3.1M6 - run the snippet below - click in the Shell - this attempts to enlarge the shell, but no size change occurs - this is what's causing the CVS conflicts dialog to not grow when the Details button is pressed public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display, SWT.DIALOG_TRIM); // final Shell shell = new Shell(display, SWT.MODELESS); // <-- also won't resize shell.setBounds(10,10,100,100); shell.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { System.out.println("try to resize to 200x200!"); shell.setSize(200, 200); } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-04-07 17:35:28
| 1,112,910,000 |
resolved fixed
|
7f9d0ae
| 1,112,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,993 | 88,735 |
Bug 88735 Table.getClientArea() width is inconsistent with win32
|
I'm testing this on Windows and Mac OS X and comparing the two, using SWT from the 3.0.1 RCP binary releases. The Mac code for SWT Table seems to be inconsistent with the getClientArea() JavaDoc, which reads: public Rectangle getClientArea() Returns a rectangle which describes the area of the receiver which is capable of displaying data (that is, not covered by the "trimmings"). I have a Table in a TableViewer in a View and the Table has a single TableColumn. I'm keeping that TableColumn's width the same width as the Table with a ControlListener. When the Table is resized the TableColumn's width is adjusted to match it. On Windows the code works perfectly because SWT on Windows follows the above JavaDoc. Here's the code for the listener's controlResized() method: public void controlResized(ControlEvent event) { super.controlResized(event); Object source = event.getSource(); if (!(source instanceof Table)) return; Table table = (Table)source; if (table.getColumnCount() != 1) return; TableColumn column = table.getColumn(0); column.setWidth(table.getClientArea().width); } On Windows no horizontal scrollbars appear in the Table because the size is exactly the available space for the Table. When a vertical ScrollBar is necessary (and visible) the column size adjusts properly to take this into account. The Table.getClientArea() width doesn't include the width of the ScrollBar when the ScrollBar is visible. On Mac OS X the getClientArea() method is too wide by 20 pixels. I know this because if I subtract 20 pixels [column.setWidth(table.getClientArea().width-20)] then the width is perfect on the Mac -- and then (of course) 20 pixels too small on Windows. The Mac version doesn't seem to be following the JavaDoc. Maybe the vertical ScrollBar and/or trimmings aren't being subtracted from the available size for the Table? It should also be noted that on Mac OS X when I subtracted the width of the Table's vertical ScrollBar (table.getVerticalBar().getSize().x) from Table.getClientArea() that *still* wasn't enough space and the horizontal ScrollBar appeared (short by 4 pixels or so). On Mac OS X a Table's scrollbar placeholders are there all of the time and the scrollbars appear and disappear as they are needed. So I'm guessing that there is also some trimming not being accounted for in the Mac OS X Table.getClientArea() calculation. On the other hand the JavaDoc isn't clear about whether it considers a Table's ScrollBar to be part of the Table's available space or not. If it does, then the Mac OS X implementation may be correct except for the space for the trimmings. Either way the inconsistency between Windows and Mac OS X versions of SWT makes it difficult to write code that behaves the same on both platforms.
|
2005-03-22 09:13:21
| 1,111,500,000 |
resolved fixed
|
bdabeb6
| 1,112,900,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TreeColumn.java
|
SWT
|
2,994 | 88,388 |
Bug 88388 tree focus cheese
|
- select a file in the Package Explorer that has a local history - right-click -> Compare With... -> Local History - dismiss the resulting compare dialog - note the focus cheese that's left on the item It's happening because showing the popup menu does not send a FocusOut to the Tree, so it does not remove its focus rectangle. However it has lost focus, so later when it goes to repaint, it doesn't complete the bitten parts of the focus rectangle because isFocus() answers false. SSQ says that the lack of FocusOut event is by design, but may not be needed anymore; to discuss with SN.
|
2005-03-17 17:00:30
| 1,111,100,000 |
resolved fixed
|
ab9053c
| 1,112,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
|
SWT
|
2,995 | 90,513 |
Bug 90513 Link widget does not have a proper CreateHandle method
|
The link widget does not have a proper create handle mathod. It needs to take in an index. Currently if you try and create this widget on Photon it crashes the application
|
2005-04-06 14:57:30
| 1,112,810,000 |
resolved fixed
|
ed8f32b
| 1,112,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java
|
SWT
|
2,996 | 90,366 |
Bug 90366 SWT Link Widget throws Array Out of Bounds Exception
|
Using Eclipse 3.1m5a creating a Link Widget and setting the text property to a string less than 4 characters causes an Array Out of Bounds Exception. This is because in the parse(String s) method called by setText(String s) there is a divide by 4 without first checking to see if the string is at least 4 characters long. The JavaDocs are not overly clear on the intention of a Link Widget, but it would seem that any string (including one without any anchored links) is allowed to be set as the text. Therefore the setText method should allow 1-3 letter strings (i.e. foo).
|
2005-04-05 16:18:38
| 1,112,730,000 |
closed fixed
|
5ea8a8c
| 1,112,820,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
2,997 | 90,176 |
Bug 90176 Scale widget and SWT.PAGE_UP key event
|
A horizontal Scale widget increments it's selection value on SWT.PAGE_DOWN and decrements on SWT.PAGE_UP. This is the reverse of what's supposed to happen on Windows XP.
|
2005-04-04 11:46:29
| 1,112,630,000 |
resolved fixed
|
f7f4d8e
| 1,112,820,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
2,998 | 90,223 |
Bug 90223 Regression: Spinner reports wrong value
|
SWT-win32, v3128 (3.1M6) Run the snippet below. Press the down button of the spinner widget. Even though the visible value is now 99, getSelection() reports a value of 100 when called from within the modify listener attached to the spinner. In v3127, the correct value (99) was returned. --- import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class SpinnerTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); final Spinner spin = new Spinner(shell, SWT.BORDER); spin.setSelection(100); spin.addModifyListener(new ModifyListener() { public void modifyText(ModifyEvent e) { System.out.println("Selection=" + spin.getSelection()); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2005-04-04 16:43:21
| 1,112,650,000 |
resolved fixed
|
3e73080
| 1,112,810,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java
|
SWT
|
2,999 | 87,837 |
Bug 87837 Strange redraw and disabled behaviour with SWT.CHECK toolitems with and without disabled icons set.
| null |
2005-03-11 16:55:02
| 1,110,580,000 |
resolved fixed
|
6f6216d
| 1,112,730,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,000 | 81,263 |
Bug 81263 [CustomControlExample] CCombo caret moves at random when up and down arrows are press
|
It correctly move to the previous and next item in the list but the caret is also repositioned. For example, move the caret to the end, hit up arrow and the caret moves back by one character and stays there for subsequent up arrows.
|
2004-12-15 13:06:19
| 1,103,130,000 |
resolved fixed
|
8ee5446
| 1,112,720,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
3,001 | 85,117 |
Bug 85117 Selected and disabled tool item looks enabled
|
Version: 3.1.0 Build id: I20050209-0800 manifest on comctrl version: 5.82.2800.1106 When you disable a tool image what is selected it appears as enabled with a stippled background. I expected it to appear greyed out like unselected/disabled items. From the sync view: 1. select outgoing mode 2. enable change sets 3. select conflicts mode 4. Observe the change sets button looks enabled (see screenshot) I will create a snippet when i get a chance.
|
2005-02-13 20:49:56
| 1,108,350,000 |
resolved fixed
|
8038ca7
| 1,112,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,002 | 84,589 |
Bug 84589 allow event listeners to specify "add to end of list"
| null |
2005-02-07 11:56:04
| 1,107,800,000 |
resolved wontfix
|
0a3a65e0
| 1,112,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/EventTable.java
|
SWT
|
3,003 | 79,881 |
Bug 79881 Browser class shipped with AIX-Motif checks for Linux ?!?
|
I've recently downloaded the AIX-Motif version of the eclipse and tried to run my plugin only to see it fail with "no more handles" error. Checking the error I've discovered that the Browser class c'tor does: public Browser(Composite parent, int style) { super(parent,style | SWT.EMBEDDED); if (!IsLinux) { dispose(); SWT.error(SWT.ERROR_NO_HANDLES); } .... Being on AIX this code will always fail. If a Browser class exists for AIX the file should be replaced in the packages available for download. If not, at least change the message to "not supported" at least. "no more handles" was an extremly puzzling error ...
|
2004-12-01 10:45:10
| 1,101,920,000 |
resolved fixed
|
2041bb3
| 1,112,650,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/motif/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,004 | 85,530 |
Bug 85530 Control in vertical ToolBar doesn't fit
|
- observed on win32, solaris-motif and solaris-gtk (kindof), so this should probably be tried everywhere - run the ControlExample, go to the ToolBar tab - turn on the Combo Child checkbox - select the SWT.VERTICAL radio - you'll end up with something like the attachment (there are supposed to be 7 full toolitems before the Combo, but only about 6.1 of them are shown)
|
2005-02-16 14:32:29
| 1,108,580,000 |
resolved fixed
|
e821632
| 1,112,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,005 | 90,018 |
Bug 90018 Native tooltips left around on CTabFolder
|
Hover over the PartStack CTabFolder inside eclipse until some native tooltip is displayed. For example, the maximize button. When the tooltip appears, change perspectives using the keybinding. the CTabFolder gets hidden, but its tooltip is permanently displayed and never goes away. Even if that CTabFolder is disposed (I'm assuming) when the perspective is closed.
|
2005-04-01 14:40:13
| 1,112,380,000 |
resolved fixed
|
0d6dac4
| 1,112,650,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,006 | 89,885 |
Bug 89885 Crash using command-O.
|
- open a Java editor - select Command-o - after the outline popup opens, click on the editor - notice that the outline doesn't go away - now click back on the outline view - VM crash. Verified that this happens on Mac, but not on Windows.
|
2005-03-31 15:25:31
| 1,112,300,000 |
verified fixed
|
bd25356
| 1,112,310,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/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,007 | 75,317 |
Bug 75317 [Browser] Location not browsed when URL misses protocol / www
| null |
2004-09-29 12:54:53
| 1,096,480,000 |
resolved fixed
|
28319d0
| 1,112,300,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,008 | 89,665 |
Bug 89665 VM terminated when switching page in the Plugin manifest editor
|
build Version: 3.1.0 Build id: I20050330-0500 steps - create a plug-in project (use the sample view example) - switch to the "Extensions" page - crashes An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0x4D9C074D Function=(null)+0x4D9C074D Library=/usr/lib/libgtk-x11-2.0.so.0 NOTE: We are unable to locate the function name symbol for the error just occurred. Please refer to release documentation for possible reason and solutions. Current Java thread: at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4703) at org.eclipse.swt.widgets.Display.eventProc(Display.java:942) at org.eclipse.swt.internal.gtk.OS._gtk_tree_view_set_cursor(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_tree_view_set_cursor(OS.java:6711) at org.eclipse.swt.widgets.Tree.setSelection(Tree.java:1844) at org.eclipse.jface.viewers.TreeViewer.setSelection(TreeViewer.java:566) at org.eclipse.jface.viewers.AbstractTreeViewer.setSelectionToWidget(AbstractTreeViewe r.java:1505) at org.eclipse.jface.viewers.StructuredViewer.setSelectionToWidget(StructuredViewer.ja va:1401) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.jav a:1115) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:8 74) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:248) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1324) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionsSection.refresh(ExtensionsSecti on.java:524) at org.eclipse.ui.forms.ManagedForm.doRefresh(ManagedForm.java:178) at org.eclipse.ui.forms.ManagedForm.refresh(ManagedForm.java:163) at org.eclipse.ui.forms.editor.FormPage.setActive(FormPage.java:125) at org.eclipse.ui.forms.editor.FormEditor.pageChange(FormEditor.java:391) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.pageChange(PDEFormEditor.java:230) at org.eclipse.ui.part.MultiPageEditorPart$2.widgetSelected(MultiPageEditorPart.java:2 00) 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:1012) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:891) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3141) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1925) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:287) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2778) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2472) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:22 8) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:338) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:151) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:2 5) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871) Dynamic libraries: 08048000-0804e000 r-xp 00000000 03:06 2066189 /home/mvanmeek/jdk1.4.2_01/jre/bin/java 0804e000-0804f000 rw-p 00005000 03:06 2066189 /home/mvanmeek/jdk1.4.2_01/jre/bin/java 40000000-40015000 r-xp 00000000 03:06 1081365 /lib/ld-2.3.2.so 40015000-40016000 rw-p 00014000 03:06 1081365 /lib/ld-2.3.2.so 40017000-4001f000 r-xp 00000000 03:06 788237 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/nativ e_threads/libhpi.so 4001f000-40020000 rw-p 00007000 03:06 788237 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/nativ e_threads/libhpi.so 40020000-40024000 rw-s 00000000 03:06 1264335 /tmp/hsperfdata_mvanmeek/11503 40024000-40025000 r--p 0092f000 03:06 426719 /usr/lib/locale/locale-archive 40025000-40028000 r--s 00000000 03:06 591631 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/dnsns. jar 40028000-40029000 r--s 00000000 03:06 1198755 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench.compatibility_3.1.0/compatibility.jar 40029000-40033000 r-xp 00000000 03:06 1786602 /lib/tls/libpthread-0.29.so 40033000-40034000 rw-p 0000a000 03:06 1786602 /lib/tls/libpthread-0.29.so 40036000-40038000 r-xp 00000000 03:06 1081382 /lib/libdl-2.3.2.so 40038000-40039000 rw-p 00002000 03:06 1081382 /lib/libdl-2.3.2.so 4003a000-40434000 r-xp 00000000 03:06 853774 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/clien t/libjvm.so 40434000-40450000 rw-p 003f9000 03:06 853774 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/clien t/libjvm.so 40462000-40474000 r-xp 00000000 03:06 1081386 /lib/libnsl-2.3.2.so 40474000-40475000 rw-p 00011000 03:06 1081386 /lib/libnsl-2.3.2.so 40477000-40498000 r-xp 00000000 03:06 1786600 /lib/tls/libm-2.3.2.so 40498000-40499000 rw-p 00020000 03:06 1786600 /lib/tls/libm-2.3.2.so 40499000-404a9000 r-xp 00000000 03:06 935695 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libve rify.so 404a9000-404ab000 rw-p 0000f000 03:06 935695 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libve rify.so 404ab000-404b6000 r-xp 00000000 03:06 1081403 /lib/libnss_files-2.3.2.so 404b6000-404b7000 rw-p 0000a000 03:06 1081403 /lib/libnss_files-2.3.2.so 404b7000-404d7000 r-xp 00000000 03:06 935696 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libja va.so 404d7000-404d9000 rw-p 0001f000 03:06 935696 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libja va.so 404d9000-404ed000 r-xp 00000000 03:06 935698 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libzi p.so 404ed000-404f0000 rw-p 00013000 03:06 935698 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libzi p.so 404f0000-41e88000 r--s 00000000 03:06 1623854 /home/mvanmeek/jdk1.4.2_01/jre/lib/rt.jar 41ed2000-41ee8000 r--s 00000000 03:06 1623821 /home/mvanmeek/jdk1.4.2_01/jre/lib/sunrsasign .jar 41ee8000-41fc3000 r--s 00000000 03:06 1623823 /home/mvanmeek/jdk1.4.2_01/jre/lib/jsse.jar 41fc3000-41fd4000 r--s 00000000 03:06 1623822 /home/mvanmeek/jdk1.4.2_01/jre/lib/jce.jar 41ffc000-41ffd000 r--s 00000000 03:06 2067117 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.swt_3.1.0.jar 41ffd000-41fff000 r-xp 00000000 03:06 639264 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.s o.2 41fff000-42000000 rw-p 00001000 03:06 639264 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.s o.2 42000000-4212e000 r-xp 00000000 03:06 1786598 /lib/tls/libc-2.3.2.so 4212e000-42131000 rw-p 0012e000 03:06 1786598 /lib/tls/libc-2.3.2.so 42133000-4268c000 r--s 00000000 03:06 1623853 /home/mvanmeek/jdk1.4.2_01/jre/lib/charsets.j ar 4470c000-4470f000 r-xp 00000000 03:06 329913 /usr/lib/libgmodule-2.0.so.0.200.1 4470f000-44710000 rw-p 00002000 03:06 329913 /usr/lib/libgmodule-2.0.so.0.200.1 4c910000-4cb10000 r--p 00000000 03:06 426719 /usr/lib/locale/locale-archive 4cb10000-4cb42000 r--p 008e1000 03:06 426719 /usr/lib/locale/locale-archive 4cd42000-4cd49000 r--s 00000000 03:06 2067146 /home/mvanmeek/3.1M6/eclipse/startup.jar 4cd49000-4cd65000 r--s 00000000 03:06 591630 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/sunjce _provider.jar 4cd65000-4ce21000 r--s 00000000 03:06 591632 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/locale data.jar 4ce21000-4ce2e000 r--s 00000000 03:06 591633 /home/mvanmeek/jdk1.4.2_01/jre/lib/ext/ldapse c.jar 4ce2e000-4ce35000 r--s 00000000 03:06 2067146 /home/mvanmeek/3.1M6/eclipse/startup.jar 4ce35000-4cee0000 r--s 00000000 03:06 2067120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.osgi_3.1.0.jar 4cf60000-4cf70000 r-xp 00000000 03:06 935701 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libne t.so 4cf70000-4cf71000 rw-p 0000f000 03:06 935701 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libne t.so 4cf71000-4cf77000 r-xp 00000000 03:06 935702 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libni o.so 4cf77000-4cf78000 rw-p 00005000 03:06 935702 /home/mvanmeek/jdk1.4.2_01/jre/lib/i386/libni o.so 4d0f8000-4d164000 r--s 00000000 03:06 2067114 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.runtime_3.1.0.jar 4d164000-4d179000 r--s 00000000 03:06 445109 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.runtime.compatibility_3.1.0/compatibility.jar 4d179000-4d18f000 r--s 00000000 03:06 2067133 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.configurator_3.1.0.jar 4d18f000-4d30b000 r--s 00000000 03:06 2067132 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.ide_3.1.0.jar 4d30b000-4d5b6000 r--s 00000000 03:06 2067138 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench_3.1.0.jar 4d5b6000-4d659000 r--s 00000000 03:06 2067119 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jface_3.1.0.jar 4d659000-4d7b2000 r--s 00000000 03:06 2067135 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.swt.gtk_3.1.0.jar 4d7b2000-4d7cf000 r--s 00000000 03:06 2067112 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui_3.1.0.jar 4d7cf000-4d811000 r-xp 00000000 03:06 477621 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-pi-gtk-3128.so 4d811000-4d813000 rw-p 00041000 03:06 477621 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-pi-gtk-3128.so 4d813000-4d81f000 r-xp 00000000 03:06 295673 /usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.s o 4d81f000-4d820000 rw-p 0000b000 03:06 295673 /usr/lib/gtk-2.0/2.2.0/engines/libbluecurve.s o 4d820000-4d821000 r-xp 00000000 03:06 475278 /usr/lib/gconv/ISO8859-1.so 4d821000-4d822000 rw-p 00001000 03:06 475278 /usr/lib/gconv/ISO8859-1.so 4d822000-4d824000 r-xp 00000000 03:06 1295329 /usr/lib/pango/1.2.0/modules/pango-basic-xft. so 4d824000-4d825000 rw-p 00001000 03:06 1295329 /usr/lib/pango/1.2.0/modules/pango-basic-xft. so 4d825000-4da6e000 r-xp 00000000 03:06 329974 /usr/lib/libgtk-x11-2.0.so.0.200.1 4da6e000-4da77000 rw-p 00248000 03:06 329974 /usr/lib/libgtk-x11-2.0.so.0.200.1 4da79000-4da7d000 r-xp 00000000 03:06 329917 /usr/lib/libgthread-2.0.so.0.200.1 4da7d000-4da7e000 rw-p 00003000 03:06 329917 /usr/lib/libgthread-2.0.so.0.200.1 4da7e000-4da82000 r-xp 00000000 03:06 458938 /usr/X11R6/lib/libXtst.so.6.1 4da82000-4da83000 rw-p 00004000 03:06 458938 /usr/X11R6/lib/libXtst.so.6.1 4da83000-4da95000 r-xp 00000000 03:06 329970 /usr/lib/libgdk_pixbuf-2.0.so.0.200.1 4da95000-4da96000 rw-p 00011000 03:06 329970 /usr/lib/libgdk_pixbuf-2.0.so.0.200.1 4da96000-4daff000 r-xp 00000000 03:06 329968 /usr/lib/libgdk-x11-2.0.so.0.200.1 4daff000-4db04000 rw-p 00069000 03:06 329968 /usr/lib/libgdk-x11-2.0.so.0.200.1 4db04000-4db24000 r-xp 00000000 03:06 329966 /usr/lib/libpangoxft-1.0.so.0.200.1 4db24000-4db25000 rw-p 0001f000 03:06 329966 /usr/lib/libpangoxft-1.0.so.0.200.1 4db25000-4db31000 r-xp 00000000 03:06 329964 /usr/lib/libpangox-1.0.so.0.200.1 4db31000-4db32000 rw-p 0000b000 03:06 329964 /usr/lib/libpangox-1.0.so.0.200.1 4db32000-4db59000 r-xp 00000000 03:06 329960 /usr/lib/libpango-1.0.so.0.200.1 4db59000-4db65000 rw-p 00026000 03:06 329960 /usr/lib/libpango-1.0.so.0.200.1 4db65000-4db7c000 r-xp 00000000 03:06 329945 /usr/lib/libatk-1.0.so.0.200.0 4db7c000-4db7e000 rw-p 00016000 03:06 329945 /usr/lib/libatk-1.0.so.0.200.0 4db7e000-4dbb1000 r-xp 00000000 03:06 329915 /usr/lib/libgobject-2.0.so.0.200.1 4dbb1000-4dbb3000 rw-p 00032000 03:06 329915 /usr/lib/libgobject-2.0.so.0.200.1 4dbb3000-4dc1c000 r-xp 00000000 03:06 329284 /usr/lib/libglib-2.0.so.0.200.1 4dc1c000-4dc1d000 rw-p 00069000 03:06 329284 /usr/lib/libglib-2.0.so.0.200.1 4dc1d000-4dc2a000 r-xp 00000000 03:06 458813 /usr/X11R6/lib/libXext.so.6.4 4dc2a000-4dc2b000 rw-p 0000c000 03:06 458813 /usr/X11R6/lib/libXext.so.6.4 4dc2b000-4dd07000 r-xp 00000000 03:06 458803 /usr/X11R6/lib/libX11.so.6.2 4dd07000-4dd0a000 rw-p 000db000 03:06 458803 /usr/X11R6/lib/libX11.so.6.2 4dd0a000-4dd0d000 r-xp 00000000 03:06 458852 /usr/X11R6/lib/libXrandr.so.2.0 4dd0d000-4dd0e000 rw-p 00002000 03:06 458852 /usr/X11R6/lib/libXrandr.so.2.0 4dd0e000-4dd15000 r-xp 00000000 03:06 458821 /usr/X11R6/lib/libXi.so.6.0 4dd15000-4dd16000 rw-p 00006000 03:06 458821 /usr/X11R6/lib/libXi.so.6.0 4dd16000-4dd27000 r-xp 00000000 03:06 458819 /usr/X11R6/lib/libXft.so.2.1 4dd27000-4dd28000 rw-p 00010000 03:06 458819 /usr/X11R6/lib/libXft.so.2.1 4dd28000-4dd2f000 r-xp 00000000 03:06 458854 /usr/X11R6/lib/libXrender.so.1.2 4dd2f000-4dd30000 rw-p 00006000 03:06 458854 /usr/X11R6/lib/libXrender.so.1.2 4dd30000-4dd51000 r-xp 00000000 03:06 327835 /usr/lib/libfontconfig.so.1.0 4dd51000-4dd54000 rw-p 00021000 03:06 327835 /usr/lib/libfontconfig.so.1.0 4dd55000-4dda1000 r-xp 00000000 03:06 327832 /usr/lib/libfreetype.so.6.3.2 4dda1000-4dda5000 rw-p 0004c000 03:06 327832 /usr/lib/libfreetype.so.6.3.2 4dda6000-4ddc4000 r-xp 00000000 03:06 327830 /usr/lib/libexpat.so.0.4.0 4ddc4000-4ddc6000 rw-p 0001e000 03:06 327830 /usr/lib/libexpat.so.0.4.0 4ddc6000-4ddea000 r-xp 00000000 03:06 477622 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-gtk-3128.so 4ddea000-4ddec000 rw-p 00024000 03:06 477622 /home/mvanmeek/3.1M6/eclipse/configuration/or g.eclipse.osgi/bundles/83/1/.cp/os/linux/x86/libswt-gtk-3128.so 4dded000-4ddf3000 r--s 00000000 03:06 475330 /usr/lib/gconv/gconv-modules.cache 4ddf3000-4de05000 r--p 00000000 03:06 1344122 /usr/X11R6/lib/X11/fonts/Type1/l048013t.pfa 4de05000-4de0d000 r-xp 00000000 03:06 458811 /usr/X11R6/lib/libXcursor.so.1.0 4de0d000-4de0e000 rw-p 00007000 03:06 458811 /usr/X11R6/lib/libXcursor.so.1.0 4de0e000-4de20000 r--p 00000000 03:06 1344124 /usr/X11R6/lib/X11/fonts/Type1/l048016t.pfa 4de20000-4de30000 r--s 00000000 03:06 2067122 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.commands_3.1.0.jar 4de30000-4de3d000 r--s 00000000 03:06 2067139 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.expressions_3.1.0.jar 4de3d000-4decd000 r--s 00000000 03:06 477548 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources_3.1.0/resources.jar 4decd000-4deea000 r--s 00000000 03:06 117428 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.compatibility_3.1.0/compatibility.jar 4df6a000-4df7b000 r--s 00000000 03:06 2067131 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.help_3.1.0.jar 4df7b000-4df8b000 r--s 00000000 03:06 2067121 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.views_3.1.0.jar 4df8b000-4dfdb000 r--s 00000000 03:06 2067113 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.help.ui_3.1.0.jar 4dfdb000-4dff6000 r--s 00000000 03:06 920070 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.externaltools_3.1.0/externaltools.jar 4dff6000-4e11b000 r--s 00000000 03:06 35500 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.debug.ui_3.1.0/dtui.jar 4e11b000-4e154000 r--s 00000000 03:06 1411765 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.debug.core_3.1.0/dtcore.jar 4e154000-4e191000 r--s 00000000 03:06 2067118 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.intro_3.1.0.jar 4e191000-4e1c7000 r--s 00000000 03:06 2067130 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.forms_3.1.0.jar 4e347000-4e34d000 r--s 00000000 03:06 2067134 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.scheduler_3.1.0.jar 4e34d000-4e3b6000 r--s 00000000 03:06 2067136 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.ui_3.1.0.jar 4e3b6000-4e3c3000 r--s 00000000 03:06 2067125 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug_3.1.0/jdi.jar 4e3c8000-4e43c000 r--s 00000000 03:06 2067137 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.update.core_3.1.0.jar 4e43c000-4e469000 r--s 00000000 03:06 1378995 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.text_3.1.0/text.jar 4e469000-4e50c000 r--s 00000000 03:06 1624757 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jface.text_3.1.0/jfacetext.jar 4e50c000-4eb24000 r--s 00000000 03:06 477558 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.ui_3.1.0/jdt.jar 4eb24000-4eb85000 r--s 00000000 03:06 2083506 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.editors_3.1.0/editors.jar 4eb85000-4ebea000 r--s 00000000 03:06 1559206 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.workbench.texteditor_3.1.0/texteditor.jar 4ebea000-4ef33000 r--s 00000000 03:06 2050723 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.core_3.1.0/jdtcore.jar 4ef33000-4ef68000 r--s 00000000 03:06 363178 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.team.core_3.1.0/team.jar 4ef68000-4ef86000 r--s 00000000 03:06 1264285 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ltk.core.refactoring_3.1.0/refcore.jar 4ef86000-4ef9b000 r--s 00000000 03:06 920065 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.filebuffers_3.1.0/filebuffers.jar 4ef9b000-4efbc000 r--s 00000000 03:06 1936037 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ltk.ui.refactoring_3.1.0/refui.jar 4f03c000-4f03e000 r-xp 00000000 03:06 1854120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.linux_3.0.0/os/linux/x86/libcore_3_1_0.so 4f03e000-4f03f000 rw-p 00001000 03:06 1854120 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.core.resources.linux_3.0.0/os/linux/x86/libcore_3_1_0.so 4f03f000-4f06d000 r--s 00000000 03:06 1608352 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.launching_3.1.0/launching.jar 4f2ed000-4f2ff000 r--p 00000000 03:06 1344128 /usr/X11R6/lib/X11/fonts/Type1/l048036t.pfa 4f2ff000-4f30a000 r-xp 00000000 03:06 1081411 /lib/libnss_nisplus-2.3.2.so 4f30a000-4f30b000 rw-p 0000a000 03:06 1081411 /lib/libnss_nisplus-2.3.2.so 4f30b000-4f30e000 r-xp 00000000 03:06 1081400 /lib/libnss_dns-2.3.2.so 4f30e000-4f30f000 rw-p 00003000 03:06 1081400 /lib/libnss_dns-2.3.2.so 4f30f000-4f31e000 r-xp 00000000 03:06 1081416 /lib/libresolv-2.3.2.so 4f31e000-4f31f000 rw-p 0000f000 03:06 1081416 /lib/libresolv-2.3.2.so 4f321000-4f334000 r--p 00000000 03:06 1344114 /usr/X11R6/lib/X11/fonts/Type1/l047013t.pfa 4f334000-4f348000 r--p 00000000 03:06 1344116 /usr/X11R6/lib/X11/fonts/Type1/l047016t.pfa 4f348000-4f34c000 r-xp 00000000 03:06 1589448 /usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloade r-png.so 4f34c000-4f34d000 rw-p 00003000 03:06 1589448 /usr/lib/gtk-2.0/2.2.0/loaders/libpixbufloade r-png.so 4f35f000-4f36b000 r-xp 00000000 03:06 327810 /usr/lib/libz.so.1.1.4 4f36b000-4f36d000 rw-p 0000b000 03:06 327810 /usr/lib/libz.so.1.1.4 4f370000-4f3ea000 r--p 00000000 03:06 1885186 /usr/share/fonts/bitmap-fonts/6x13.pcf 4f500000-4f5f5000 r--s 00000000 03:06 19113 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug.ui_3.1.0/jdiui.jar 4f5f5000-4f6a5000 r--s 00000000 03:06 2067126 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.jdt.debug_3.1.0/jdimodel.jar 4f6a5000-4f6c7000 r-xp 00000000 03:06 329941 /usr/lib/libpng12.so.0.1.2.2 4f6c7000-4f6c8000 rw-p 00022000 03:06 329941 /usr/lib/libpng12.so.0.1.2.2 4f6c8000-4f8e0000 r--s 00000000 03:06 1231535 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.ui_3.1.0/pdeui.jar 4f8e0000-4f94f000 r--s 00000000 03:06 395956 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.core_3.1.0/pdecore.jar 4f94f000-4f966000 r--s 00000000 03:06 2067123 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ui.presentations.r21_3.1.0.jar 4f966000-4f983000 r--s 00000000 03:06 1395364 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde.runtime_3.1.0/pdert.jar 4f983000-4f99a000 r--s 00000000 03:06 51874 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.pde_3.1.0/pde.jar 4f99a000-4fa70000 r--s 00000000 03:06 445094 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.ant.ui_3.1.0/antui.jar 4fa70000-4fac6000 r--s 00000000 03:06 1559211 /home/mvanmeek/3.1M6/eclipse/plugins/org.ecli pse.search_3.1.0/search.jar Heap at VM Abort: Heap def new generation total 3584K, used 2452K [0x44710000, 0x44af0000, 0x44bf0000) eden space 3200K, 64% used [0x44710000, 0x44915058, 0x44a30000) from space 384K, 100% used [0x44a30000, 0x44a90000, 0x44a90000) to space 384K, 0% used [0x44a90000, 0x44a90000, 0x44af0000) tenured generation total 47072K, used 21356K [0x44bf0000, 0x479e8000, 0x48710000) the space 47072K, 45% used [0x44bf0000, 0x460cb080, 0x460cb200, 0x479e8000) compacting perm gen total 32256K, used 32087K [0x48710000, 0x4a690000, 0x4c710000) the space 32256K, 99% used [0x48710000, 0x4a665c68, 0x4a665e00, 0x4a690000) Local Time = Wed Mar 30 14:42:08 2005 Elapsed Time = 4675 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode) # # An error report file has been saved as hs_err_pid11503.log. # Please refer to the file for further information. #
|
2005-03-30 14:48:16
| 1,112,210,000 |
resolved fixed
|
5077fe5
| 1,112,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,009 | 87,695 |
Bug 87695 Interface Disposeable
|
Please add an interface declaring the methods dispose() and isDisposed() and let it be included by all class that have these methods. Reason: I now had two projects where i have to dynamicaly create diferent widgets. It is nicer to add them all to one single vector and dispose them all when they are not needed anymore. Unfortunally that means that i have to check each entry for what it is...
|
2005-03-10 14:39:24
| 1,110,480,000 |
resolved fixed
|
85d9ae5
| 1,112,220,000 |
bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Path.java bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Transform.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Path.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/Transform.java bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Resource.java bundles/org.eclipse.swt/Eclipse SWT/emulated/graphics/org/eclipse/swt/graphics/Path.java bundles/org.eclipse.swt/Eclipse SWT/emulated/graphics/org/eclipse/swt/graphics/Transform.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Path.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Region.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java
|
SWT
|
3,010 | 89,564 |
Bug 89564 Image appears and disappears in Tree
|
eclipse.buildId=I200411300800 java.version=1.4.2_03 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en Framework arguments: -showlocation Command-line arguments: -os win32 -ws win32 -arch x86 -clean -showlocation - nl en 1. Open Window -> Show View -> Other ... 2. Expand Basic 3. Click on Performance 4. Click away from Performance 5. Click on Performance again When Performance is selected it shows some icon (an icon not related to the Performance View) and when it is not selected it has no icon. I believe the Performance view is not setting any image for this tree item.
|
2005-03-30 10:23:57
| 1,112,200,000 |
resolved fixed
|
1e8ccf4
| 1,112,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,011 | 89,533 |
Bug 89533 [Themes] Colors and Fonts preferences page has funny icons for color entries
| null |
2005-03-30 08:55:48
| 1,112,190,000 |
resolved fixed
|
222e4e9
| 1,112,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java
|
SWT
|
3,012 | 89,217 |
Bug 89217 Label.computeSize() returning incorrect values when using WRAP
|
I20050324-1400 I am pretty sure this used to work :) public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); Label label = new Label(shell, SWT.WRAP); label.setText("This is some text that is so huge it should wrap"); System.out.println("label computesize default: " + label.computeSize(SWT.DEFAULT, SWT.DEFAULT)); System.out.println("label computesize 40: " + label.computeSize(40, SWT.DEFAULT)); shell.open(); while(!shell.isDisposed()) { if(!display.readAndDispatch()) display.sleep(); } display.dispose(); } For me: label computesize default: Point {220, 14} label computesize 40: Point {40, 14}
|
2005-03-28 09:29:06
| 1,112,020,000 |
verified fixed
|
a978555
| 1,112,130,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,013 | 87,207 |
Bug 87207 Content of first column in Tree with columns overflows past last column
|
Version: 3.1.0 Build id: I20050301-1230 When you open the Log View and the message is long enough to fill the entire screen you can see the message appear past the last column.
|
2005-03-05 01:59:39
| 1,110,010,000 |
resolved fixed
|
2c8b266
| 1,112,050,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,014 | 89,163 |
Bug 89163 GridData.verticalIndent does not work as expected
|
SWT v3127 The API spec for GridData.verticalIndent says: "specifies the number of pixels of indentation that will be placed along the top side of the cell" As the testcase below demonstrates, this isn't what the current implementation of GridLayout does. Instead, the control is only indented by half the given amount, the other half being placed below it. --- import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class VerticalIndentTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); GridLayout layout = new GridLayout(); layout.verticalSpacing = 10; shell.setLayout(layout); Composite pnl1 = new Composite(shell, SWT.NONE); pnl1.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); GridLayout pnl1Layout = new GridLayout(); pnl1Layout.marginWidth = 0; pnl1Layout.marginHeight = 0; pnl1.setLayout(pnl1Layout); Label lbl1 = new Label(pnl1, SWT.NONE); lbl1.setBackground(display.getSystemColor(SWT.COLOR_RED)); lbl1.setText("horizontalIndent=10"); GridData lbl1GD = new GridData(); lbl1GD.horizontalIndent = 10; lbl1.setLayoutData(lbl1GD); Composite pnl2 = new Composite(shell, SWT.NONE); pnl2.setBackground(display.getSystemColor(SWT.COLOR_YELLOW)); GridLayout pnl2Layout = new GridLayout(); pnl2Layout.marginWidth = 0; pnl2Layout.marginHeight = 0; pnl2.setLayout(pnl2Layout); Label lbl2 = new Label(pnl2, SWT.NONE); lbl2.setBackground(display.getSystemColor(SWT.COLOR_RED)); lbl2.setText("verticalIndent=10"); GridData lbl2GD = new GridData(); lbl2GD.verticalIndent = 10; lbl2.setLayoutData(lbl2GD); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2005-03-26 09:44:47
| 1,111,850,000 |
resolved fixed
|
e6ff1db
| 1,112,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java
|
SWT
|
3,015 | 89,028 |
Bug 89028 uneccessary casts
|
JPEGFileFormat void emit(int huffCode, int nBits) { if (nBits == 0) { SWT.error(SWT.ERROR_INVALID_IMAGE); } int[] power2m1 = new int[] { 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, 65535, 131125 }; int code = (huffCode & power2m1[nBits - 1]) << (24 - nBits - currentBitCount); byte[] codeBuffer = new byte[4]; codeBuffer[0] = (byte)(code % 256); codeBuffer[1] = (byte)((code / 256) % 256); codeBuffer[2] = (byte)((code / 65536) % 256); codeBuffer[3] = (byte)((code / 16777216) % 256); int abs = nBits - (8 - currentBitCount); if (abs < 0) abs = -abs; if ((abs / 8) > 0) { currentByte += codeBuffer[2]; emitByte((byte)currentByte); ***>>>> emitByte((byte)codeBuffer[1]); Compatibility public static int round(int p, int q) { ***>>>>> return (int)Math.round((float)p / q); }
|
2005-03-24 14:30:08
| 1,111,690,000 |
resolved fixed
|
e209676
| 1,112,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/JPEGFileFormat.java bundles/org.eclipse.swt/Eclipse SWT/common_j2se/org/eclipse/swt/internal/Compatibility.java
|
SWT
|
3,016 | 87,820 |
Bug 87820 GC.drawString uses BG color for font when alpha value < 255
|
When drawing transparent strings, the foreground color is not used. It seems the background color is used instead. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setFont(new Font(display, "Arial", 18, SWT.BOLD)); shell.addPaintListener(new PaintListener() { public void paintControl(PaintEvent e) { GC gc = e.gc; gc.setBackground(new Color(display, 0, 100, 255)); gc.fillRectangle(0, 0, 200, 200); gc.setBackground(new Color(display, 255, 255, 0)); gc.setAlpha(200); gc.drawString("Test String", 10, 10, false); } }); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); }
|
2005-03-11 15:59:13
| 1,110,570,000 |
resolved fixed
|
5fd4bfa
| 1,111,600,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,017 | 88,409 |
Bug 88409 Device.getFontList should have better performance
| null |
2005-03-17 20:54:31
| 1,111,110,000 |
resolved fixed
|
027efea
| 1,111,530,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java
|
SWT
|
3,018 | 88,582 |
Bug 88582 Computed width of link widget is too large
|
Version: 3.1.0 Build id: I20050315-1100 XP Manifest Installed If you run the snippet below you will see that the calcualted size of the link widget is the same as the length of the label widget. The link widget should be sorted since the anchors element is converted to text. This is really visible in the JDT editor preferences, there is a large gap after links. public static void main(String[] args) { Display d = Display.getDefault(); final Shell s = new Shell(d, SWT.DIALOG_TRIM | SWT.RESIZE); s.setLayout(new RowLayout(SWT.HORIZONTAL)); final Link l = new Link(s, SWT.NONE); l.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_RED)); l.setText("<a href=\"text editor\">Text Editors</a>"); Label lab = new Label(s, SWT.NONE); lab.setText("<a href=\"text editor\">Text Editors</a>"); lab.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_RED)); s.setSize(212,200); s.open(); while (!s.isDisposed()) { if (d.readAndDispatch()) { d.sleep(); } } }
|
2005-03-19 20:41:56
| 1,111,280,000 |
resolved fixed
|
c994bab
| 1,111,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
3,019 | 82,336 |
Bug 82336 TreeView: setting gray gives free check mark
|
swt 20050106 Setting TreeItem.setGrayed (true) causes a check mark to show eventhough the item is uncheck. public static void main(String[] args) { display = new Display (); shell = new Shell (); shell.setLayout( new FillLayout ()); tree = new Tree (shell, SWT.CHECK | SWT.MULTI); item = new TreeItem (tree, SWT.NONE); item.setText("Text"); display.addFilter(SWT.KeyDown, new Listener() { public void handleEvent(Event event) { switch (event.character) { case '1': item.setGrayed(!item.getGrayed()); break; case '2': item.setChecked(!item.getChecked()); break; case '3': tree.setEnabled(!tree.getEnabled()); break; } } }); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep (); } } display.dispose (); } I don't know if gtk has icons to represent all the combinations swt needs (uncheck, check, uncheck+gray, check+gray). If not, I think we should make the uncheck+gray be the same as uncheck. This needs to be fixed in Tree and Table probably.
|
2005-01-06 11:55:47
| 1,105,030,000 |
verified fixed
|
b58bf8e
| 1,111,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
3,020 | 68,040 |
Bug 68040 Views keep resizing after mouse up
| null |
2004-06-21 13:17:43
| 1,087,840,000 |
verified fixed
|
006fcc8
| 1,110,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java
|
SWT
|
3,021 | 86,294 |
Bug 86294 Find/Replace not working "Illegal/Unsupported escape on the Mac
|
I can't do a search on a java file with the M5a build on the Mac. Find: mask4 "Illegal/unsupported escape" comes up in the Find / Replace dialog.
|
2005-02-23 12:03:52
| 1,109,180,000 |
resolved fixed
|
116292d
| 1,110,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,022 | 87,855 |
Bug 87855 NullPointerException in Table.callWindowProc
|
Here is a stack trace I found when trying to kill a running process by pressing the "kill" button in the console view. I use 3.1M5a. !ENTRY org.eclipse.ui 4 0 2005-03-12 14:26:25.58 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:156) at org.eclipse.swt.widgets.Table.sendMouseDownEvent(Table.java:2084) at org.eclipse.swt.widgets.Table.WM_LBUTTONDOWN(Table.java:3174) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3057) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3480) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1619) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2539) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1612) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:293) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:333) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:150) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871)
|
2005-03-12 07:29:41
| 1,110,630,000 |
resolved fixed
|
d8ec5bd
| 1,110,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,023 | 87,578 |
Bug 87578 TVT3.1 #38 - RUS mnemonics only work in main window
| null |
2005-03-09 17:17:12
| 1,110,410,000 |
resolved fixed
|
7b82040
| 1,110,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,024 | 87,664 |
Bug 87664 Null pointer exception in org.eclipse.swt.widgets.TreeItem.computeDisplayText in 3.1M5a
|
This also occurs on the motif build for linux... With our plugin, when I switch to the PDE perspective, I immediately get the following two exceptions: java.lang.NullPointerException at org.eclipse.swt.widgets.TreeItem.computeDisplayText(TreeItem.java:280) at org.eclipse.swt.widgets.TreeItem.updateColumnWidth(TreeItem.java:1556) at org.eclipse.swt.widgets.Tree.updateColumnWidth(Tree.java:2293) at org.eclipse.swt.widgets.TreeColumn.setWidth(TreeColumn.java:301) at org.eclipse.ui.views.properties.PropertySheetViewer$1.controlResized(PropertySheetViewer.java:227) <-- snip! --> The second one ends at: at org.eclipse.ui.views.properties.PropertySheetViewer.updateChildrenOf(PropertySheetViewer.java:1117) at org.eclipse.ui.views.properties.PropertySheetViewer.setInput(PropertySheetViewer.java:850) at org.eclipse.ui.views.properties.PropertySheetPage.selectionChanged(PropertySheetPage.java:409) at org.eclipse.ui.views.properties.PropertySheet.selectionChanged(PropertySheet.java:205) at org.eclipse.ui.internal.AbstractSelectionService$3.run(AbstractSelectionService.java:160) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1015) <-- snip! --> This does not occur on either of the M5a gtk builds.
|
2005-03-10 11:36:41
| 1,110,470,000 |
resolved fixed
|
ee9091b
| 1,110,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/TreeColumn.java bundles/org.eclipse.swt/Eclipse SWT/emulated/treetable/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
3,025 | 87,676 |
Bug 87676 Double-click only works on a tree's column0
|
Build I-20050308 Using the log view as an example, double-clicking on column0 brings up the event dialog as it should. double-clicking on column1, column2 results in no notification to our double- click listener.
|
2005-03-10 12:28:18
| 1,110,480,000 |
resolved fixed
|
dbcf617
| 1,110,480,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,026 | 87,584 |
Bug 87584 Remove ImageLoader dependency in Test_org_eclipse_swt_graphics_Image and Test_org_eclipse_swt_graphics_ImageData
| null |
2005-03-09 17:36:44
| 1,110,410,000 |
resolved fixed
|
76b6937
| 1,110,410,000 |
tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Image.java tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_ImageData.java
|
SWT
|
3,027 | 87,372 |
Bug 87372 [browser] CTRL-N should not run IE action when using Browser.setText
|
On IE, CTRL-N opens up a new window. This is undesired when rendering html from memory.
|
2005-03-08 10:05:57
| 1,110,290,000 |
resolved fixed
|
a2a262c
| 1,110,300,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
|
SWT
|
3,028 | 87,363 |
Bug 87363 Regression: MenuDetect no longer opens new menus
|
Bug introduced Nov 5, 2004. Prior to change Control.showMenu did this: boolean showMenu (int x, int y) { Event event = new Event (); event.x = x; event.y = y; sendEvent (SWT.MenuDetect, event); if (!event.doit) return true; if (menu != null && !menu.isDisposed ()) { if (x != event.x || y != event.y) { menu.setLocation (event.x, event.y); } menu.setVisible (true); return true; } return false; } If a menu was created during the MenuDetect listener notification, the menu field was updated and the menu was set visible. After Nov 5, 2004 the method was moved to Widget and now looks like this: boolean showMenu (Menu menu, int x, int y) { Event event = new Event (); event.x = x; event.y = y; sendEvent (SWT.MenuDetect, event); if (!event.doit) return true; if (menu != null && !menu.isDisposed ()) { if (x != event.x || y != event.y) { menu.setLocation (event.x, event.y); } menu.setVisible (true); return true; } return false; } Since menu is just a local variable, it is not updated when a menu is created in the MenuDetect event. The following example demonstrates the problem: public static void main(String[] args) { Display display = new Display(); final Shell shell = new Shell(display); shell.addListener(SWT.MenuDetect, new Listener() { int count = 0; public void handleEvent(Event event) { Menu menu = shell.getMenu(); if (menu != null) menu.dispose(); menu = new Menu(shell, SWT.POP_UP); MenuItem item = new MenuItem(menu, SWT.PUSH); item.setText("Menu " + count++); shell.setMenu(menu); } }); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-03-08 08:00:02
| 1,110,290,000 |
resolved fixed
|
c3aa5c7
| 1,110,290,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,029 | 87,075 |
Bug 87075 [SWT Examples - SWT Controls] Incorrect Dialog buttons creation with SWT.RETRY, SWT.ABORT, and SWT.IGNORE on MessageBox
|
When I was going through the Eclipse 3.1M5a examples (eclipse-examples- 3.1M5a.zip), on Solaris 9 (GTK), I realized that selecting SWT.RETRY, SWT.ABORT, or SWT.IGNORE individually for MessageBox always create the OK button on the dialog box. Steps to reproduce: 1. Install Eclipse 3.1M5a on Solaris 9. 2. Download Eclipse 3.1M5a Examples and install them. 3. Launch Eclipse 4. Select Window -> Show View -> Other.... This will launch the Show View Dialog. 5. From the Show View Dialog, select SWT Examples -> SWT Controls. This will display SWT Controls View. 6. Double click the SWT Controls tab and expand the view. 7. From SWT Controls View, select Dialog tab. and select the MessageBox. 8. Select either SWT.RETRY, SWT.ABORT, or SWT.IGNORE option and click the "Create Dialog" button. The "Title" dialog box comes up with an OK button. It should have the button according to the SWT option (RETRY, ABORT, or IGNORE). 9. Select 2 options from SWT.RETRY, SWT.ABORT, or SWT.IGNORE. Again, the dialog box comes up with only 1 OK button. In this case, I think 2 buttons should come up. 10. Select all 3 options from SWT.RETRY, SWT.ABORT, and SWT.IGNORE. The dialog box comes up correctly with all 3 buttons (RETRY, ABORT, and IGNORE).
|
2005-03-03 10:34:28
| 1,109,860,000 |
resolved fixed
|
31415c6
| 1,110,230,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/DialogTab.java
|
SWT
|
3,030 | 83,432 |
Bug 83432 iFrame does not render border when in SWT Browser
|
Try this: create an html file with the following content: <html> <body> hello <iframe src="localPage1.xhtml" frameborder="1" scrolling="auto"> </body></html> open it with IE6.0. You see an iFrame with a border. create a HelloWorld SWT browser and do a set text with the same exact snippet above. You get am iFrame with no border (regarless of what frameborder is set to.
|
2005-01-21 13:27:58
| 1,106,330,000 |
resolved fixed
|
f9c50e4
| 1,110,230,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/Browser.java
|
SWT
|
3,031 | 84,051 |
Bug 84051 Table widget unexpectedly fire deactivated event while clicking scroll bar buttons.
|
I have created listeners to a table widget for its activate and deactivate events. When I click on the table, the table fires an activate event. When the table becomes out of focus, it fires an deactivate event. If I have the table activated, and then keeps clicking on the scroll bar, the table will eventually fire a deactivate event. This behaviour is different from that on Windows and since the table is still in focus, it should not fire a deactivate event. Here's the testcase deomonstrating the problem: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setBounds(10,10,400,400); final Table table = new Table(shell, SWT.NONE); table.setBounds(10,10,100,100); for (int i = 0; i < 99; i++) { new TableItem(table, SWT.NONE).setText("item " + i); } table.addListener(SWT.Activate, new Listener() { public void handleEvent(Event arg0) { System.out.println(" 1 activated"); }}); table.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event arg0) { System.out.println(" 1 deactivated"); }}); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2005-01-31 11:08:34
| 1,107,190,000 |
resolved fixed
|
10bdf99
| 1,110,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,032 | 87,265 |
Bug 87265 Link widget javadoc does not mention style bits
|
M5 The javadoc for link does not menton which style bits are valid for it. This is an issue as the default style (SWT.NONE) renders a link widget that is just a label and cannot be selected.
|
2005-03-07 09:41:34
| 1,110,210,000 |
resolved fixed
|
497fc90
| 1,110,210,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
3,033 | 84,012 |
Bug 84012 StyledText with SWT.WRAP style does not adjust selection correctly
|
When selecting text in the native Windows text widget, it is possible to extend the selection to the beginning (end) of a line by moving the mouse cursor beyond the left (right) edge of the widget's client area. In a StyledText widget with SWT.WRAP style, this does not work. When handling mouse move events, the StyledText discards all cases in which the horizontal mouse position lies outside its client area while the vertical coordinate translates to the same line the caret is currently on. This means that if the mouse movement is too quick (resulting in not receiving enough mouse move events to cover all the caret positions up to the left(right)most one), the selection will remain incomplete. See the attached screenshot for some visual clarification. Ignoring events outside the client area is apparently done in order not to confuse the (horizontal) auto-scroll mechanism that may also kick in on mouse movements. However, when the SWT.WRAP style is set, there is no horizontal auto-scrolling. Therefore, the fix is to introduce a check to see if the word-wrap option is turned on and allow extending the selection if it is. --- import org.eclipse.swt.*; import org.eclipse.swt.custom.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class StyledTextSelectionTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); FillLayout layout = new FillLayout(SWT.VERTICAL); layout.marginWidth = 20; layout.marginHeight = 20; layout.spacing = 20; shell.setLayout(layout); Font font = new Font(display, "Arial", 12, SWT.NORMAL); StyledText text1 = new StyledText(shell, SWT.BORDER | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL); text1.setFont(font); text1.setText("StyledText widget with SWT.WRAP style."); Text text2 = new Text(shell, SWT.BORDER | SWT.MULTI | SWT.WRAP | SWT.V_SCROLL); text2.setFont(font); text2.setText("Native text widget with SWT.WRAP style."); shell.setSize(400, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } font.dispose(); display.dispose(); } }
|
2005-01-30 18:59:05
| 1,107,130,000 |
resolved fixed
|
5327c2c
| 1,109,700,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,034 | 82,703 |
Bug 82703 Tree with TreeColumns doesn't display FULL_SELECTION properly
|
Run ControlExample and go to TreeTab Turn on Multiple Columns Turn on FULL_SELECTION The full selection does not draw
|
2005-01-12 14:57:11
| 1,105,560,000 |
resolved fixed
|
eca0585
| 1,109,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,035 | 86,587 |
Bug 86587 Tree: problem with WM_PRINT
|
I use WM_PRINT under Windows to create image of control that I show outside of visible screen. This work Ok for all control except new Tree with columns. When I try to send it WM_PRINT under WinXP, I see image without headers, only with items. Same code works without any problem with Table. When I ask for screen shot of full Shell, with all children, I see correct image of Tree, with headers, but now without items. Is there any way to have full image, with headers and items?
|
2005-02-25 01:07:35
| 1,109,310,000 |
resolved fixed
|
1395ca8
| 1,109,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,036 | 41,546 |
Bug 41546 GTK-BIDI: RTL support in Table
|
Sequence of columns in the table and sequence of the renderers in the column should be reversed. Additional space should be added to first visible column and not to last, as in case of ltr-oriented Table. Initial scroll position should be from the right.
|
2003-08-14 09:41:46
| 1,060,870,000 |
resolved fixed
|
94c141d
| 1,109,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java
|
SWT
|
3,037 | 51,828 |
Bug 51828 GTK-BIDI: RTL support in Menu
| null |
2004-02-12 08:11:51
| 1,076,590,000 |
resolved fixed
|
ba96fef
| 1,109,370,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,038 | 86,588 |
Bug 86588 Tree: problem with column resize
|
When I add items and one column and try to resize column, it damages items text and never restores it (only after window show/hide).
|
2005-02-25 01:10:21
| 1,109,310,000 |
resolved fixed
|
7c7de7f
| 1,109,350,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,039 | 86,577 |
Bug 86577 Not removing event filter added with gdk_window_add_filter
|
We use gdk_window_add_filter() to listen for focus events to fix ON_TOP shells. While this call takes a window, this is just the window to search for, and it seems that the filter may not be removed automatically when the window is destroyed. The fix is to use gdk_window_remove_filter() appropriately.
|
2005-02-24 18:52:00
| 1,109,290,000 |
resolved fixed
|
9f173bb
| 1,109,290,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/Shell.java
|
SWT
|
3,040 | 85,552 |
Bug 85552 TextLayout preferred size depends on current width
|
Eclipse 3.1 M5 Run the ControlExample Go to the Link tab Select 50x50 from the Size Area Select Preferred from the Size area Notice that the Link widget is still 50 pixels wide and wrapped to multiple lines. It should be one long line. Felipe says this is a bug in TextLayout on carbon. The call setLayoutControl(OS.kATSULineWidthTag, OS.Long2Fix(width), 4); is not doing the right thing when the width is -1.
|
2005-02-16 15:40:36
| 1,108,590,000 |
resolved fixed
|
147485a
| 1,109,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
3,041 | 41,363 |
Bug 41363 GTK-BIDI: RTL support in TabFolder
|
Direction of packing of rtl-oriented TabFolder's tabs should be changed to opposite. Text direction of each tab's contents should be set separately.
|
2003-08-10 10:33:52
| 1,060,530,000 |
resolved fixed
|
dc163ac
| 1,109,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java
|
SWT
|
3,042 | 86,402 |
Bug 86402 ToolBar only needs to resize its children if the bounds are required
|
ToolBar currently calls forceResize() in layoutItems(). This is required to ensure that items with controls can update their position. This call is expensive, and so deferring it until someone requires the bounds is a performance improvement. A similar strategy to the one used for getClientArea() of TabFolder and Group can be used.
|
2005-02-23 18:11:47
| 1,109,200,000 |
resolved fixed
|
87d0a34
| 1,109,200,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,043 | 86,000 |
Bug 86000 ImageLoader Save - produces invalid JPEG images
|
The ImageLoader Save function appears to be producing bad JPG images. I have only verified this with JPEG output. Simple test case below loads PNG Files and Saves them as JPEG. Many files were tested and the majority did produced the proper JPG images as expected. The attached Zip file contains only those files that did not save correctly to JPEG. package com.ibm.test.image; import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; public class ImageLoaderTest { public static void main(String[] args) { ImageLoader loader; String dir="c:\\image-problems\\"; String files[]={ "s34i3p04", "s34n3p04", "s35i3p04", "s35n3p04", "s36i3p04", "s36n3p04", "s37i3p04", "s37n3p04", "s38i3p04", "s38n3p04", "s39i3p04", "s39n3p04" }; try { for (int i=0; i<files.length; i++) { String filein = dir+files[i]+".png"; String fileout = dir+files[i]+".jpg"; loader = new ImageLoader(); loader.load(filein); loader.save(fileout,SWT.IMAGE_JPEG); } } catch (SWTException e) { e.printStackTrace(); } } }
|
2005-02-21 14:47:15
| 1,109,020,000 |
resolved fixed
|
ecb4856
| 1,109,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/JPEGFileFormat.java
|
SWT
|
3,044 | 86,375 |
Bug 86375 Toolitem calling gtk_widget_add_events after it is realized
|
Before a GTK+ widget is realized, calling gtk_widget_add_events simply sets some private data and does not do any work in the X server. However, if the widget is already realized, changing the event mask requires querying the current mask from the X server and updating its state in X. In SWT, hookEvents() is always performed on unrealized widgets, except in ToolItem. ToolItem is being realized because it is asking for the foreground colour of its parent, which causes it to be realized. The fix is to either avoid realizing the parent (it is not required in this particular case), and maybe to defer connecting the tool item to its parent until later.
|
2005-02-23 16:31:56
| 1,109,190,000 |
resolved fixed
|
75c47fa
| 1,109,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,045 | 86,145 |
Bug 86145 VM Crash when running remotely via cygwin/X
|
Using Cygwin 1.5.12 (0.116/4/2) and forwarding X from a Solaris 3.0.1 eclipse, the system fails to start with the following error: ssh -X eclipse.sun.box bash-2.05$ ./eclipse An unexpected exception has been detected in native code outside the VM. Unexpected Signal : 11 occurred at PC=0xFF38058C Function=memcpy+0xB0 Library=/usr/platform/sun4u/lib/libc_psr.so.1 Current Java thread: at org.eclipse.swt.internal.motif.OS.memmove(Native Method) at org.eclipse.swt.graphics.Image.<init>(Image.java:245) at org.eclipse.swt.widgets.Label.setBitmap(Label.java:380) at org.eclipse.swt.widgets.Label.setImage(Label.java:462) at org.eclipse.jface.dialogs.TitleAreaDialog.createTitleArea(TitleAreaDialog.java:180) at org.eclipse.jface.dialogs.TitleAreaDialog.createContents(TitleAreaDialog.java:107) at org.eclipse.jface.window.Window.create(Window.java:348) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:925) at org.eclipse.jface.window.Window.open(Window.java:637) at org.eclipse.ui.internal.ide.ChooseWorkspaceDialog.prompt(ChooseWorkspaceDialog.java:65) at org.eclipse.ui.internal.ide.IDEApplication.promptForWorkspace(IDEApplication.java:314) at org.eclipse.ui.internal.ide.IDEApplication.checkInstanceLocation(IDEApplication.java:219) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:83) 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:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) Dynamic libraries: 0x10000 /usr/bin/java 0xff360000 /usr/lib/libthread.so.1 0xff39a000 /usr/lib/libdl.so.1 0xff280000 /usr/lib/libc.so.1 0xff380000 /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1 0xfec00000 /usr/j2se/jre/lib/sparc/client/libjvm.so 0xff240000 /usr/lib/libCrun.so.1 0xff210000 /usr/lib/libsocket.so.1 0xff100000 /usr/lib/libnsl.so.1 0xff1c0000 /usr/lib/libm.so.1 0xff0e0000 /usr/lib/libsched.so.1 0xff0c0000 /usr/lib/libmp.so.2 0xff060000 /usr/j2se/jre/lib/sparc/native_threads/libhpi.so 0xfebd0000 /usr/j2se/jre/lib/sparc/libverify.so 0xfeb90000 /usr/j2se/jre/lib/sparc/libjava.so 0xff030000 /usr/j2se/jre/lib/sparc/libzip.so 0xfe1d0000 /usr/j2se/jre/lib/sparc/libnet.so 0xfc6e0000 /usr/j2se/jre/lib/sparc/libnio.so 0xfc6c0000 /usr/lib/librt.so.1 0xfc6a0000 /usr/lib/libaio.so.1 0xfc5e0000 /usr/lib/libmd5.so.1 0xfc5c0000 /usr/lib/libsendfile.so.1 0xfbe90000 /export/home/davidm/eclipse/plugins/org.eclipse.swt.motif_3.0.1/os/solaris/sparc/libswt-motif-3063.so 0xf0d00000 /usr/lib/libXm.so.4 0xfbd90000 /usr/openwin/lib/libXt.so.4 0xf0c00000 /usr/openwin/lib/libX11.so.4 0xfbfc0000 /usr/openwin/lib/libXp.so.1 0xfbfa0000 /usr/openwin/lib/libXtst.so.1 0xfbcd0000 /usr/openwin/lib/libXext.so.0 0xfbcb0000 /usr/openwin/lib/libSM.so.6 0xfbc80000 /usr/openwin/lib/libICE.so.6 0xfbc60000 /usr/lib//liblayout.so Heap at VM Abort: Heap def new generation total 2112K, used 1429K [0xf1800000, 0xf1a20000, 0xf1f10000) eden space 2048K, 66% used [0xf1800000, 0xf19555f0, 0xf1a00000) from space 64K, 100% used [0xf1a10000, 0xf1a20000, 0xf1a20000) to space 64K, 0% used [0xf1a00000, 0xf1a00000, 0xf1a10000) tenured generation total 4680K, used 3521K [0xf1f10000, 0xf23a2000, 0xf5800000) the space 4680K, 75% used [0xf1f10000, 0xf22806f0, 0xf2280800, 0xf23a2000) compacting perm gen total 5120K, used 4994K [0xf5800000, 0xf5d00000, 0xf9800000) the space 5120K, 97% used [0xf5800000, 0xf5ce0b08, 0xf5ce0c00, 0xf5d00000) Local Time = Tue Feb 22 08:01:34 2005 Elapsed Time = 11 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_05-b04 mixed mode) # # An error report file has been saved as hs_err_pid5146.log. # Please refer to the file for further information. # Running a Linux X server against it works OK, however. If this is a cygwin/X problem, I would like some information on what specifically is going wrong here so I can report it to the X folks. It seems to be having trouble copying the memory for an image..?
|
2005-02-22 11:08:01
| 1,109,090,000 |
resolved fixed
|
b2ef8a6
| 1,109,180,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Image.java
|
SWT
|
3,046 | 86,216 |
Bug 86216 Display.getActiveShell() slow with lots of widgets
|
If no shell is active, Display.getActiveShell() currently has to loop over every widget. Since only one shell can be active at any given time, we can optimize this case.
|
2005-02-22 18:20:08
| 1,109,110,000 |
resolved fixed
|
4471e2e
| 1,109,120,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,047 | 71,844 |
Bug 71844 popup menu has bunch of empty items
|
If popup menu is opned at the bottom of the screen, you will see a popup menu which has bunch of empty items. Here is how to. 1) Install the attached plugin 2) Press the button of tool bar, "Hello Eclipse world" 3) Press OK button 4) move the popup'ed dialog to the bottom of the screen. Note that "See me!" button should be visible 5) Press "See me!" button you will see a popup menu with empty items. See attached images.
|
2004-08-12 03:56:13
| 1,092,300,000 |
verified fixed
|
1ed6e01
| 1,109,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java
|
SWT
|
3,048 | 85,412 |
Bug 85412 changing link foreground does not repaint
|
- run the ControlExample, go to the Link tab - change the foreground colour and note that the example Link on the page does not change accordingly - use another window to damage part of the Link and note that the Link repaints with the new foreground colour when the other window is moved away
|
2005-02-16 09:41:54
| 1,108,560,000 |
resolved fixed
|
7455548
| 1,108,770,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Link.java
|
SWT
|
3,049 | 85,875 |
Bug 85875 Eclipse crashes when clicking on "View Installation History"
|
Steps to reproduce: 1. Click on help 2. Select Software Updates 3. Select Manage Configuration 4. Click on View Installation History Eclipse then crashes and I get the following error: JVM terminated. Exit code=1 /usr/bin/java -jar /home/ijuma82/bin/eclipse-new/startup.jar -os linux -ws gtk -arch x86 -launcher /home/ijuma82/bin/eclipse-new/eclipse -name Eclipse -showsplash 600 -exitdata 25160013 -vm /usr/bin/java -vmargs -jar /home/ijuma82/bin/eclipse-new/startup.jar I'm using Fedora Core 3 with Sun's JDK 5.0 Update 1 and Eclipse 3.1 I20050218-1333. This is on a new workspace btw.
|
2005-02-18 16:18:43
| 1,108,760,000 |
verified fixed
|
53ba736
| 1,108,760,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,050 | 85,877 |
Bug 85877 Shell has unwanted title bar on Pocket PC
|
in M5 (v3123), Shell shows up with a title bar even if SWT.TITLE is not set. This is a bug.
|
2005-02-18 17:01:50
| 1,108,760,000 |
resolved fixed
|
2d03084
| 1,108,760,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
|
SWT
|
3,051 | 85,547 |
Bug 85547 Combo box list is way too big
|
Eclipse 3.1 M5 Run ControlExample Go to the Combo tab Select SWT.SIMPLE in style area Select SWT.DROP_DOWN in style area Click on Arrow button of Combo to open list Notice that the list is extremely large and sticks up above the combo box.
|
2005-02-16 15:17:40
| 1,108,590,000 |
resolved fixed
|
f3660f5
| 1,108,760,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/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,052 | 85,849 |
Bug 85849 GC.copyArea() slow on images
|
I20050215-2300 The test test_copyAreaIIIIII is slower on Linux compared to Windows. The offender seems to be the calls to gdk_gc_set_exposures(). Since we're doing a copyArea on an image, we do not need to make these calls.
|
2005-02-18 13:52:21
| 1,108,750,000 |
resolved fixed
|
ff4f7ab
| 1,108,750,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,053 | 85,834 |
Bug 85834 notifyAll() slow in locking code
|
Calling notifyAll() unnecessarily is causing a performance regression in the test suites for Region.intersect() and other GC calls on Linux-GTK. We should only call notifyAll() if we actually have someone waiting.
|
2005-02-18 10:57:39
| 1,108,740,000 |
resolved fixed
|
785e507
| 1,108,740,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Lock.java
|
SWT
|
3,054 | 85,732 |
Bug 85732 getClientArea() cause Shell to be resized to its initial size
|
linux gtk build I20050217-0800 fedora core 3 (gtk 2.4.14) On eclipse if I move the mouse over the toolbar the tooltip resizes (width) according with the length of the string (the string depends on with toolitem the mouse is over). When I do the same over the ctabfolder tabs the tooltip doesn't resize, it keeps the same width it first shows. I tried to capture a screenshot but the tooltip doesn't on it. I can reproduce this problem on my machine consistently.
|
2005-02-17 12:17:30
| 1,108,660,000 |
verified fixed
|
92a90fb
| 1,108,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,055 | 84,557 |
Bug 84557 Table item does not appear in table
|
I am running I20050202-0800 linux gtk ctrl esc E brings up the handy switch to editor window, but unfortuantley the list is empty :(
|
2005-02-07 07:06:23
| 1,107,780,000 |
resolved fixed
|
aae4689
| 1,108,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java
|
SWT
|
3,056 | 85,453 |
Bug 85453 Advanced graphics not working on W2K - trigger system window
| null |
2005-02-16 11:48:16
| 1,108,570,000 |
resolved fixed
|
1e6274f
| 1,108,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java
|
SWT
|
3,057 | 85,236 |
Bug 85236 IllegalArgumentException when layouting link widget
|
When using the Link widget on the Java>Editor preference page, I get the following exception when the page is first displayed (due to a zero width parameter): java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:2823) at org.eclipse.swt.SWT.error(SWT.java:2762) at org.eclipse.swt.SWT.error(SWT.java:2733) at org.eclipse.swt.graphics.TextLayout.setWidth(TextLayout.java:1404) at org.eclipse.swt.widgets.Link.computeSize(Link.java:96) at org.eclipse.swt.layout.GridData.computeSize(GridData.java:474) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:459) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:186) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:1115) at org.eclipse.swt.widgets.Composite.layout(Composite.java:741) at org.eclipse.swt.widgets.Composite.layout(Composite.java:706) at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createContents(JavaEditorPreferencePage.java:294) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:425) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:390) at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createControl(JavaEditorPreferencePage.java:125) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.createPageControl(WorkbenchPreferenceDialog.java:419) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1132) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1018) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1126) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.showPage(WorkbenchPreferenceDialog.java:650) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:628) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:681) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1018) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:679) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:950) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:970) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:231) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:226) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:392) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2705) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2430) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:66) at org.eclipse.jface.action.Action.runWithEvent(Action.java:1003) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:557) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:507) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:421) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1009) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2728) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2427) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1624) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1590) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:299) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:227) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:281) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:131) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.basicRun(Main.java:261) at org.eclipse.core.launcher.Main.run(Main.java:817) at org.eclipse.core.launcher.Main.main(Main.java:801)
|
2005-02-15 06:09:36
| 1,108,470,000 |
resolved fixed
|
5b3ec30
| 1,108,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
3,058 | 45,429 |
Bug 45429 TableColumn.pack() doesn't decrease column's width on GTK
|
When the text of the TableItem is changed, I call TableColumn.pack() to resize the column to contain whole text of all items. On GTK, when text is larger then the previous one, column is extended (with both pack() and without pack()). This is OK. When I set the text to the smaller one again and call to pack(), the columns width remains unchanged (should be decreased I thing, because on MS Windows it works). I can solve it by computing the string sizes and then call to column's setWidth() method, but I thing it's not clear. Try this: import org.eclipse.swt.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.events.*; public class Main { static int i = 0; public static void main(String [] args) { Display display = Display.getDefault(); final Shell shell = new Shell(display); shell.setLayout(new FormLayout()); Table table = new Table(shell, SWT.BORDER|SWT.FULL_SELECTION|SWT.SINGLE); table.setHeaderVisible(true); table.setLinesVisible(true); final TableColumn col = new TableColumn(table, SWT.LEFT); TableColumn col2 = new TableColumn(table, SWT.LEFT); final TableItem item = new TableItem(table, SWT.NONE); item.setText("click the button"); final String[] texts = new String[] { "<short text>", "<some larger text some larger text " + "some larger text some larger text>", "<largest text largest text largest text largest text largest text " + "largest text largest text largest text largest text largest text " + "largest text largest text largest text>" }; Button b = new Button(shell, SWT.PUSH); b.setText("test"); b.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { if (i == texts.length) { i = 0; } item.setText(texts[i++]); col.pack(); } }); shell.setDefaultButton(b); FormData fd1 = new FormData(); fd1.top = new FormAttachment(0, 5); fd1.left = new FormAttachment(0, 5); fd1.right = new FormAttachment(100, -5); fd1.bottom = new FormAttachment(b, -5); table.setLayoutData(fd1); FormData fd2 = new FormData(); fd2.bottom = new FormAttachment(100, -5); fd2.right = new FormAttachment(100, -5); b.setLayoutData(fd2); shell.setSize(400, 400); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2003-10-23 06:28:07
| 1,066,900,000 |
resolved fixed
|
84155e3
| 1,108,410,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,059 | 85,119 |
Bug 85119 Use GDK_HAND2 instead of GDK_HAND1 for SWT.CURSOR_HAND
|
A common use for the hand cursor is for use with links as in a web browser. The cursor used by default for links in Mozilla Firefox looks like GDK_HAND2, while currently we use the right-pointing hand, GDK_HAND1. It would be nicer to follow Mozilla on this one, as the hand cursor we currently use often looks out of place.
|
2005-02-13 23:27:42
| 1,108,360,000 |
verified fixed
|
fdc503f
| 1,108,400,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,060 | 34,644 |
Bug 34644 DND in the FileViewer example resets tree selection
|
RC2 Linux-GTK In the FileViewer example, expand the tree a few levels and drag a file from the table on the right to somewhere in the tree on the left. No matter where the drop occurs, the selection is reset to the filesystem root. A client application wouldn't want to lose the user's context this way. The selection should remain on the item that was dropped onto.
|
2003-03-11 11:23:27
| 1,047,400,000 |
resolved fixed
|
709d79b
| 1,108,180,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/FileViewer.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.