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 |
---|---|---|---|---|---|---|---|---|---|---|
1,961 | 187,210 |
Bug 187210 Ownerdraw - 'Show status line' on open type dialog does not redraw status line when colored labels
|
I20070516-0010 1. Open 'Open type dialog' 2. In menu deselect 'Show Status Line' 3. In menu select 'Show Status Line' Is: Screen cheese the status line is (sometimes) not redrawn, see screen shot.
|
2007-05-16 04:49:40
| 1,179,310,000 |
resolved fixed
|
1291751
| 1,184,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,962 | 194,702 |
Bug 194702 [browser]Click URL linked to a new window, pop up two browser window
| null |
2007-06-27 23:32:45
| 1,183,000,000 |
resolved fixed
|
48a4a5c
| 1,184,700,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,963 | 167,562 |
Bug 167562 SIGSEGV in Tree#destroyItem()
|
Eclipse 3.3 M3 Java 1.5.0_07-b03 See the log attached.
|
2006-12-12 05:24:46
| 1,165,920,000 |
resolved fixed
|
0327217
| 1,184,700,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
|
1,964 | 196,791 |
Bug 196791 SWT ToolTip does not render Arabian text tooltip correctly on SLED10 Linux
|
Build ID: Eclipse3.2.2 Steps To Reproduce: 1.Create a SWT Application 2.Create a ToolTip on Shell and setMessage with Arabian text. 3.Launch application More information: public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); ToolTip tip = new ToolTip(shell, SWT.BALLOON ); tip.setMessage("\u0627\u0644\u0639\u0631\u0628\u064A\u0651\u0629"); tip.setVisible(true); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } We modified setMessage(String message) method in ToolTip.java and add the following code to let it works: layoutMessage = OS.gtk_widget_create_pango_layout (handle, buffer); //lijiao added OS.pango_layout_set_auto_dir(layoutMessage, false); //end OS.pango_layout_set_wrap (layoutMessage, OS.PANGO_WRAP_WORD_CHAR); I found in GC and TextLayout::createLayout() SWT used the following code: if (OS.GTK_VERSION >= OS.VERSION(2, 4, 0)) { OS.pango_layout_set_auto_dir(layout, false); } Could we use this code in ToolTip.setMessage(String msg)?
|
2007-07-17 05:31:03
| 1,184,660,000 |
resolved fixed
|
0ea3ba1
| 1,184,690,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java
|
SWT
|
1,965 | 177,578 |
Bug 177578 ExpandItem (of the ExpandBar) returns wrong header height in Gnome (Debian Linux)
|
Build ID: M20060921-0945 Steps To Reproduce: Compare the value returned by ExpandItem#getHeaderHeight() to what it really is in the GUI. More information: For me ExpandItem#getHeaderHeight() returns 17px, while it's actually 21px (I made a screenshot and counted the pixels myself). I need the header height to calculate the available space in order to "maximize" an ExpandItem. When I compensate the difference, my calculations work as expected (like they do in Windows without the compensation). And no, I did not forget ExpandBar#getSpacing().
|
2007-03-15 11:58:27
| 1,173,970,000 |
resolved fixed
|
a573181
| 1,184,610,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java
|
SWT
|
1,966 | 157,568 |
Bug 157568 StyledText: horizontal scrollbar doesn't handle indent
| null |
2006-09-16 10:58:49
| 1,158,420,000 |
resolved fixed
|
10728f7
| 1,184,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,967 | 192,861 |
Bug 192861 VM crash opening browser widget with much html
|
Build ID: I20070503-1400 Steps To Reproduce: The attached snippet will crash the VM. The html to be shown is over 20000 characters, much will not be displayed immediately but is already present in a javascript section in the head part. Opening the same html in firefox works without any problem. More information: Suse Linux 10, GTK 2.8.10-39.22
|
2007-06-15 09:04:29
| 1,181,910,000 |
resolved fixed
|
4508514
| 1,184,170,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIDocShell_1_8.java
|
SWT
|
1,968 | 191,790 |
Bug 191790 [Browser] Browser leaks due to COM objects
|
Build ID: I20070601-1539 Steps To Reproduce: While analyzing memory dumps from an RCP application I noticed there were 321 instances of WebSite retained in memory. The WebSites are retained due to org.eclipse.swt.internal.ole.win32.COMObject#ObjectMap. I was able to recreate a standalone testcase that shows this happens when a browser's setText method is called and doesn't happen when the method isn't called.
|
2007-06-08 23:21:46
| 1,181,360,000 |
resolved fixed
|
4d0cb80
| 1,184,090,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/COM.java
|
SWT
|
1,969 | 56,502 |
Bug 56502 Wrong positioning when going off end-of-line
|
When editing a java file and positioning the cursor before the last character and then pressing right-cursor twice (making the cursor go to the beginning of the next line) and then pressing up-cursor positions the cursor at the end of the previous line, while it should position it at the beginning of the previous line. It doesn't happen on every line, but almost every line.
|
2004-03-28 13:57:53
| 1,080,500,000 |
resolved fixed
|
e434118
| 1,183,670,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
1,970 | 91,311 |
Bug 91311 Drawing Problems
|
The drawProc in the Control make use of PtGetsAbsPosition. This is not a good funtion to use in a drawing procedure because it queries every region in the system until it hits the root region to figure out your position. Doing this every draw operation is extremely expensive. I have updated the function as well as fixed some little drawing issues within SWT.
|
2005-04-13 13:19:30
| 1,113,410,000 |
resolved fixed
|
437b264
| 1,183,580,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/photon/org/eclipse/swt/internal/photon/OS.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Caret.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Sash.java
|
SWT
|
1,971 | 189,649 |
Bug 189649 Link widget renders mnemonics on the Mac
|
I20070529-0010 The Link widget should not render mnemonics on the Mac. To reproduce in Eclipse, select a Java project in the Package Explorer and choose context menu > Assign Working Sets.
|
2007-05-29 08:38:09
| 1,180,440,000 |
verified fixed
|
1a49efb
| 1,183,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Link.java
|
SWT
|
1,972 | 195,154 |
Bug 195154 Snippet132 using drawString incorrectly
|
Snippet132 has the following code at the "business end:" String testString = "Hello World!"; Point extent = gc.stringExtent(testString); gc.drawString(testString, leftMargin, topMargin + font.getFontData()[0].getHeight()); I'm not sure why we're adding font.getFontData()[0].getHeight() and I believe it should be removed. drawString()'s x and y parameters are measured in pixels, but FontData.getHeight() is a measure of the font face's height in points. On my printer there is no appreciable difference on the printout, since the printer DPI is 600 and the FontData.getHeight() returns 2 (not sure why) which amounts to only 1/300" == 0.085mm difference. However in working with the SWTSwing folks, where printing is always 72DPI (ugh) the error in this snippet is more obvious. An 8-point font will be drawn at an 8-point offset (about 1/8" == 2.82mm). This makes SWTSwing's behavior appear to be wrong when in fact it is the snippet.
|
2007-07-02 11:59:27
| 1,183,390,000 |
resolved fixed
|
b4c7375
| 1,183,560,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet132.java
|
SWT
|
1,973 | 186,683 |
Bug 186683 Embedding a Combo in a Toolbar fails on WPF
| null |
2007-05-12 11:51:14
| 1,178,990,000 |
resolved fixed
|
aac1e89
| 1,182,800,000 |
bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
1,974 | 184,643 |
Bug 184643 Ctrl+Click on Launch Config not working
|
Normally, you can easly edit a launch configuration by clicking on it the the Launch/Debug Dropdown menu while holding Ctrl. This is not working in Eclipse 3.3, I20070323-1616 on Windows Vista.
|
2007-04-29 18:11:45
| 1,177,880,000 |
resolved fixed
|
c9b39df
| 1,182,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,975 | 191,632 |
Bug 191632 TextLayout implementation on linux platform doesn't provide suitable line offsets in specific scenarios
|
Build ID: M20070212-1330 Steps To Reproduce: 1.Create a shell 2.Define a text including both English characters and arabian characters 3.Use TextLayout to draw the text on the shell 4.Print the offset of each line 5.Find that the offsets on linux platform are weird More information: Here is the code snippet: import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.TextLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class TestTextLayout { private static final String TEXT= "يوم. يمبث القناة من خلال\nabc\nيوث القناة من خلال"; public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Font font = new Font(display, "Times New Roman", 10, SWT.NORMAL); shell.addPaintListener(new PaintListener() { public void paintControl(PaintEvent event) { GC gc = event.gc; TextLayout tl = new TextLayout(display); tl.setFont(font); tl.setText(TEXT); tl.setWidth(200); tl.draw(gc, 10, 10); int[] offsets = tl.getLineOffsets(); for (int i = 0; i < offsets.length; i++) { System.out.println(" line" + i + "'s offset: " + offsets[i]); } } }); shell.setBounds(10, 10, 200, 200); shell.open (); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } font.dispose(); display.dispose(); } } On windows platform, I got the following console output: line0's offset: 0 line1's offset: 25 line2's offset: 29 line3's offset: 47 while on linux platform, the output is : line0's offset: 23 line1's offset: 25 line2's offset: 46 line3's offset: 47 As a result, I cannot get every line's string correctly on linux platform while on windows platform, I could get each line's tring using TEXT.substring(0, 25), TEXT.substring(25, 46), TEXT.substring(46);
|
2007-06-07 23:31:57
| 1,181,270,000 |
resolved fixed
|
c16281c
| 1,182,440,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,976 | 190,028 |
Bug 190028 post-3.3 Browser cleanup
| null |
2007-05-30 16:21:52
| 1,180,560,000 |
resolved fixed
|
01cb2fa
| 1,182,360,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,977 | 189,189 |
Bug 189189 MOZ_PLUGIN_PATH should parse for multiple delimited paths
|
- fix this post-3.3
|
2007-05-25 13:52:05
| 1,180,120,000 |
resolved fixed
|
0c4f2da
| 1,182,360,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/AppFileLocProvider.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/XPCOM.java
|
SWT
|
1,978 | 188,726 |
Bug 188726 callback in MozillaDelegate should be static
|
fix this post-3.3
|
2007-05-23 15:02:57
| 1,179,950,000 |
resolved fixed
|
c57f6d4
| 1,182,350,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java
|
SWT
|
1,979 | 81,604 |
Bug 81604 Filter path does not behave as expected with new GtkFileChooser
| null |
2004-12-18 21:39:03
| 1,103,420,000 |
resolved fixed
|
eb8e8e7
| 1,182,350,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/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
1,980 | 186,685 |
Bug 186685 Tray doesn't work on WPF
| null |
2007-05-12 13:29:05
| 1,178,990,000 |
resolved fixed
|
c0e89b9
| 1,182,280,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/wpf/org/eclipse/swt/internal/wpf/OS.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/TrayItem.java
|
SWT
|
1,981 | 189,676 |
Bug 189676 Cannot select a patch file in WPF
|
Version: 3.3.0 Build id: I20070529-0010 When you select a patch file using thr browse button only the folder path is added to the dialog - you need to type in the file name yourself. This isn't happening on the other file selections (like the import archive dialog) and only on WPF
|
2007-05-29 10:24:42
| 1,180,450,000 |
resolved fixed
|
a276fdb
| 1,182,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
1,982 | 192,128 |
Bug 192128 If shell is set disabled before it's open, top menu can pop up after it's shown.
| null |
2007-06-12 05:13:47
| 1,181,640,000 |
resolved fixed
|
222c99b
| 1,182,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,983 | 193,188 |
Bug 193188 Text.computeSize(8, SWT.DEFAULT) wrong for text field without border
| null |
2007-06-18 16:06:36
| 1,182,200,000 |
resolved fixed
|
21833dd
| 1,182,200,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
1,984 | 191,741 |
Bug 191741 cheese in java editor
|
Version: 3.3.0 Build id: I20070608-0010 The bug is in TextLayout, it doesn't draw the full selection background properly cause it has a test (for performance reason) where it doesn't draw a line when textual part of the line is outside of the clipping. To reproduce this problem on eclipse just resize the editor, or move a window over the editor, or open the cotext menu over it. Photon, has the same problem.
|
2007-06-08 12:48:51
| 1,181,320,000 |
resolved fixed
|
90dc236
| 1,181,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,985 | 191,412 |
Bug 191412 FocusIn and FocusOut events are processed with different cases in Shell.
|
Since about org.eclipse.swt 3.3.0.v3339, a filter for x focus change event (FocusIn and FocusOut event)is added in org.eclipse.swt.widget.Shell. When the focus event meets some conditions, shell will set some fileds and send SWT event. But the conditions to process FocusIn event and FocusOut event are not the same. For FocusOut event, when its detail is one of OS.NotifyNonlinear, OS.NotifyNonlinearVirtual and OS.NotifyVirtual, above actions will be done. But for FocusIn event, just when its detail is either OS.NotifyNonlinear or OS.NotifyVirtual, the corresponding actions will be done. Where is OS.NotifyNonlinearVirtual case? It impacts general focus events. Following is the source code of filterProc: int /*long*/ filterProc (int /*long*/ xEvent, int /*long*/ gdkEvent, int /*long*/ data2) { int eventType = OS.X_EVENT_TYPE (xEvent); if (eventType != OS.FocusOut && eventType != OS.FocusIn) return 0; XFocusChangeEvent xFocusEvent = new XFocusChangeEvent(); OS.memmove (xFocusEvent, xEvent, XFocusChangeEvent.sizeof); switch (eventType) { case OS.FocusIn: if (xFocusEvent.mode == OS.NotifyNormal || xFocusEvent.mode == OS.NotifyWhileGrabbed) { if (xFocusEvent.detail == OS.NotifyNonlinear || xFocusEvent.detail == OS.NotifyAncestor) {//=====where is OS.NotifyNonlinearVirtual? if (tooltipsHandle != 0) OS.gtk_tooltips_enable (tooltipsHandle); display.activeShell = this; display.activePending = false; sendEvent (SWT.Activate); } } break; case OS.FocusOut: if (xFocusEvent.mode == OS.NotifyNormal || xFocusEvent.mode == OS.NotifyWhileGrabbed) { switch (xFocusEvent.detail) { case OS.NotifyNonlinear: case OS.NotifyNonlinearVirtual: case OS.NotifyVirtual: if (tooltipsHandle != 0) OS.gtk_tooltips_disable (tooltipsHandle); Display display = this.display; sendEvent (SWT.Deactivate); setActiveControl (null); if (display.activeShell == this) { display.activeShell = null; display.activePending = false; } break; } } break; } return 0; }
|
2007-06-06 23:09:31
| 1,181,190,000 |
resolved fixed
|
77e08c6
| 1,181,250,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,986 | 191,372 |
Bug 191372 Cannot unminimize eclipse from dock
|
Run eclipse. Minimize it and click in the dock app icon to unminimize it. It does not work.
|
2007-06-06 17:17:22
| 1,181,160,000 |
resolved fixed
|
2fff6ef
| 1,181,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java
|
SWT
|
1,987 | 191,072 |
Bug 191072 Existing shell window title gets overwritten
|
If you have an already created window and use Shell.internal_new to pass the handle in, Shell.createHandle will overwrite any existing title. An example of this can be seen in the 3.3 RC3 build where the toolbar item for eclipse switches to "untitled window" after the workspace chooser disappears.
|
2007-06-05 12:41:49
| 1,181,060,000 |
resolved fixed
|
1bd926e
| 1,181,070,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
1,988 | 190,262 |
Bug 190262 CCombo doesn't receive key-events
|
On MacOSX when opening a CCombo one is not able to scroll the list up/down using the keyboard. It seems that no key-events are delivered to it. On WinXP this is working as expected and I think I can remember that in also works on Gtk. This is a major problem for applications because usability is decreased when CCombo has to be used e.g. when Inline-Editing tables/trees. I know we are late in 3.3 but would it be able to fix it in this cycle?
|
2007-05-31 12:21:25
| 1,180,630,000 |
resolved fixed
|
62e3138
| 1,180,720,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,989 | 190,480 |
Bug 190480 regression: FocusOut not fired for Texts in an SWT.APPLICATION_MODAL shell
|
3.3RC3 candidate build - run the snippet below - tab between the two text fields and you'll only see "in" printed to stdout, but you should see "out" and "in" for each focus change - this works fine if the Shell is not created with style SWT.APPLICATION_MODAL public static void main(String[] args) { Display display = Display.getDefault(); FocusListener listener = new FocusListener() { public void focusLost(FocusEvent e) { System.out.println("out"); } public void focusGained(FocusEvent e) { System.out.println("in"); } }; Shell shell = new Shell(display, SWT.APPLICATION_MODAL); // <-- shell.setLayout(new GridLayout()); shell.layout(); shell.pack(); shell.setSize(200, 200); new Text(shell, SWT.NONE).addFocusListener(listener); new Text(shell, SWT.NONE).addFocusListener(listener); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2007-06-01 10:11:05
| 1,180,710,000 |
resolved fixed
|
360c1d1
| 1,180,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
1,990 | 149,040 |
Bug 149040 Change javadoc for Table addSelectionListener
|
Current javadoc reads: "Adds the listener to the collection of listeners who will be notified when the receiver's selection changes, by sending it one of the messages defined in the SelectionListener interface." This is not true since the receiver's selection can change programatically and an event will not be sent. Adding a note about this issue would be very helpful.
|
2006-06-28 12:50:57
| 1,151,510,000 |
resolved fixed
|
67aa0d2
| 1,180,640,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.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/ScrollBar.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/Spinner.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.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/TableColumn.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/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.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/TreeColumn.java
|
SWT
|
1,991 | 189,992 |
Bug 189992 Column in problem view not properly refreshed when resizing the column width
|
Using I20070530-0010, I can get a reproducable refresh problem in the problem view. If I resize the first column in order to be able to see the complete warning message and then I resize it to be quite small, I can see part of the message still displayed after the last column. I don't expect it. If I force a refresh of the view, the leftovers are properly removed. See attached screenshot. I add Tod on the CC as I don't know if the problem comes from SWT or JFace or the problem view itself.
|
2007-05-30 14:22:33
| 1,180,550,000 |
resolved fixed
|
93ea26f
| 1,180,640,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
1,992 | 158,043 |
Bug 158043 [Mac] Right clicking on app in Dock and selecting Quit does nothing if file needs to be saved
|
With Eclipse 3.2 on the Mac OSX, Steps: 1. Launch Eclipse 2. Open some source code for editing. 3. Make an edit, but dont save it. 4. Minimize the application to the Dock. 5. Right click on the application in the Dock and choose Quit Note: For us, the problem was reported with our RCP application that we generated through Eclipse. However, I made the repro steps similar just with the Eclipse IDE itself. Actual: Nothing happens, if you right click again you will notice a "save Resource" item in the menu. You can continue to click on quit Expexcted: It should behave like other Mac OSX applications. Their icons do the 'bouncy icon' thing to alert the user that theres a problem that needs attention. The user then left clicks on it in the dock to open the app and see the "Save Resources" dialog.
|
2006-09-20 14:42:06
| 1,158,780,000 |
resolved fixed
|
52ff68e
| 1,180,560,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/Display.java
|
SWT
|
1,993 | 173,559 |
Bug 173559 Javadoc for GC methods requiring advanced graphics
| null |
2007-02-08 18:00:23
| 1,170,980,000 |
resolved fixed
|
8500e6a
| 1,180,550,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,994 | 189,960 |
Bug 189960 [browser] executing window.print() does not print
| null |
2007-05-30 11:48:09
| 1,180,540,000 |
resolved fixed
|
d4cb22d
| 1,180,550,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/WindowCreator2.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebBrowserChrome.java
|
SWT
|
1,995 | 189,970 |
Bug 189970 GC drawImage fails on bidi + icon + double buffered
|
build eclipse 3.3 rc2 Create a drawing area with SWT.DOUBLE_BUFFERED and SWT.RIGTH_TO_LEFT. In the paint handler draw an icon. Run the test case and move a small window over the the icon -> cheese!
|
2007-05-30 12:09:08
| 1,180,540,000 |
resolved fixed
|
750a2fb
| 1,180,550,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
1,996 | 189,465 |
Bug 189465 Browser can crash on RHEL3 if xulrunner is present (motif only)
|
3.3RC2 Eclipse crashes on startup with the following setup (dump is at bottom): - RHEL3 - eclipse linux-motif build - XULRunner installed and registered XULRunner wants to use a newer version of libexpat.so (0.4) than RHEL3 provides (0.5). I've verified this by temporarily copying the libexpat.so (0.5) from RHEL4 to RHEL3 and this makes it work on RHEL3. The fix for this is to delete the RHEL3-specific swt xulrunner libraries (*xulrunner* and *xpcominit*). Making this change will result in mozilla/firefox always being used in the Browser on RHEL3, which was the case prior to eclipse 3.3. This strategy has been in place in swt's gtk port for a few months now. # # An unexpected error has been detected by HotSpot Virtual Machine: # # SIGSEGV (0xb) at pc=0x5a17f578, pid=32545, tid=1078408768 # # Java VM: Java HotSpot(TM) Client VM (1.5.0_01-b08 mixed mode) # Problematic frame: # C [libexpat.so.0+0x11578] # --------------- T H R E A D --------------- Current thread (0x08081fe0): JavaThread "main" [_thread_in_native, id=32545] siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x0006a22e Registers: EAX=0x00000006, EBX=0x5a18dc1c, ECX=0x5a18d1e0, EDX=0x00000000 ESP=0xbfff997c, EBP=0xbfff9994, ESI=0x5cb6e6f6, EDI=0x0006a1dc EIP=0x5a17f578, CR2=0x0006a22e, EFLAGS=0x00210246 Top of Stack: (sp=0xbfff997c) 0xbfff997c: ffffffa2 ffffffef 5cb6e6f4 5d9cc340 0xbfff998c: 08a32158 08a2f038 bfff9a34 5d15b6d9 0xbfff999c: 0006a1dc 5cb6e6f4 088ff9d0 40015518 0xbfff99ac: 0006a2ef 088ff9d0 bfff99fc 4000c40f 0xbfff99bc: 08a3227c 08a32278 08a32450 5d40ed0a 0xbfff99cc: 08a2b988 08a3a788 00000000 5d40e60a 0xbfff99dc: 5cbcf754 5d9cc340 bfff9a14 08a37312 0xbfff99ec: 08a2ec98 5d8d2160 00000001 5d13a756 Instructions: (pc=0x5a17f578) 0x5a17f568: 7d 08 89 75 f0 0f b6 56 01 84 d2 75 40 0f b6 06 0x5a17f578: 0f b6 44 07 4c 83 e8 05 83 f8 18 77 1b 8b 84 83 Stack: [0xbfe00000,0xc0000000), sp=0xbfff997c, free space=2022k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libexpat.so.0+0x11578] C [libxul.so+0x6816d9] C [libxul.so+0x681016] C [libxul.so+0x683e4d] C [libxul.so+0x683859] C [libxul.so+0x683547] C [libxul.so+0x680ab4] MOZ_XML_Parse+0xff C [libxul.so+0x6618fe] _ZN13nsExpatDriver11ParseBufferEPKcji+0x3e C [libxul.so+0x661b8b] C [libxul.so+0x678516] _ZN8nsParser8TokenizeEi+0xfa C [libxul.so+0x67712c] _ZN8nsParser11ResumeParseEiii+0x102 C [libxul.so+0x67825d] C [libxul.so+0x895f76] _ZN17nsSyncLoadService24PushSyncStreamToListenerEP14nsIInputStreamP17nsIStreamListenerP10nsIChannel+0x102 C [libxul.so+0x895db2] C [libxul.so+0x94f161] _ZN12nsXBLService20FetchBindingDocumentEP10nsIContentP11nsIDocumentP6nsIURIP6nsIURLiPS3_+0x65b C [libxul.so+0x94e99d] C [libxul.so+0x94d9e2] _ZN12nsXBLService10GetBindingEP10nsIContentP6nsIURIiPiPP12nsXBLBinding+0x134 C [libxul.so+0x94d004] C [libxul.so+0x6d02cd] _ZN21nsCSSFrameConstructor22ConstructFrameInternalER23nsFrameConstructorStateP10nsIContentP8nsIFrameP7nsIAtomiP14nsStyleContextR12nsFrameItemsi+0x103 C [libxul.so+0x6d0176] _ZN21nsCSSFrameConstructor14ConstructFrameER23nsFrameConstructorStateP10nsIContentP8nsIFrameR12nsFrameItems+0x108 C [libxul.so+0x6cd070] _ZN21nsCSSFrameConstructor21CreateAnonymousFramesER23nsFrameConstructorStateP10nsIContentP11nsIDocumentP8nsIFrameiiR12nsFrameItemsS7_S3_i+0x358 C [libxul.so+0x6ce164] _ZN21nsCSSFrameConstructor24BeginBuildingScrollFrameER23nsFrameConstructorStateP10nsIContentP14nsStyleContextP8nsIFrameS7_P7nsIAtomiRS7_+0x12e C [libxul.so+0x6cb02b] _ZN21nsCSSFrameConstructor18ConstructRootFrameEP10nsIContentPP8nsIFrame+0x405 C [libxul.so+0x6fa13a] C [libxul.so+0x84fc31] _ZN13nsContentSink11StartLayoutEi+0xb1 C [libxul.so+0x918846] _ZN15HTMLContentSink11StartLayoutEv+0x5c C [libxul.so+0x916fed] C [libxul.so+0x6668eb] _ZN7CNavDTD8OpenBodyEPK13nsCParserNode+0x51 C [libxul.so+0x666c02] _ZN7CNavDTD13OpenContainerEPK13nsCParserNode9nsHTMLTagiP12nsEntryStack+0xd4 C [libxul.so+0x663dfd] _ZN7CNavDTD23HandleDefaultStartTokenEP6CToken9nsHTMLTagP13nsCParserNode+0x285 C [libxul.so+0x664a0a] _ZN7CNavDTD16HandleStartTokenEP6CToken+0x28c C [libxul.so+0x66367a] C [libxul.so+0x662be2] C [libxul.so+0x6773db] C [libxul.so+0x677144] _ZN8nsParser11ResumeParseEiii+0x11a C [libxul.so+0x67825d] C [libxul.so+0xaa36d9] C [libxul.so+0x569d6c] C [libxul.so+0x56ab7f] _ZN17nsInputStreamPump15OnStateTransferEv+0x11d C [libxul.so+0x56a9b7] C [libxul.so+0x4abcb3] _ZN23nsInputStreamReadyEvent12EventHandlerEP7PLEvent+0x37 C [libxul.so+0x4bf25c] PL_HandleEvent+0x23 C [libxul.so+0x4bf188] PL_ProcessPendingEvents+0x86 C [libxul.so+0x4c0b32] C [libxul.so+0xc517a2] C [libglib-2.0.so.0+0x43f8f] C [libglib-2.0.so.0+0x22c30] C [libglib-2.0.so.0+0x23c98] g_main_context_dispatch+0x98 C [libglib-2.0.so.0+0x23fad] C [libglib-2.0.so.0+0x241ec] g_main_context_iteration+0x6c C [libgtk-x11-2.0.so.0+0xd46e0] gtk_main_iteration+0x40 C [libswt-gtk-motif-3344.so+0xbc0] Java_org_eclipse_swt_internal_gtk_GTK__1gtk_1main_1iteration+0x18 j org.eclipse.swt.internal.gtk.GTK._gtk_main_iteration()I+0 j org.eclipse.swt.internal.gtk.GTK.gtk_main_iteration()I+7 j org.eclipse.swt.browser.MozillaDelegate$1.run()V+7 j org.eclipse.swt.widgets.Display.timerProc(II)I+48 v ~StubRoutines::call_stub V [libjvm.so+0x168c1c] V [libjvm.so+0x254668] V [libjvm.so+0x168a4f] V [libjvm.so+0x18a703] V [libjvm.so+0x175a24] C [libswt-motif-3344.so+0x13886] callback+0x1e4 C 0x4455d1d2 C [libXt.so.6+0x278bf] XtAppProcessEvent+0x3cf C [libswt-motif-3344.so+0x1b796] Java_org_eclipse_swt_internal_motif_OS__1XtAppProcessEvent+0x1e j org.eclipse.swt.internal.motif.OS._XtAppProcessEvent(II)V+0 j org.eclipse.swt.internal.motif.OS.XtAppProcessEvent(II)V+9 J org.eclipse.swt.widgets.Display.readAndDispatch()Z v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+336 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$4.run()V+23 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+81 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+100 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub V [libjvm.so+0x168c1c] V [libjvm.so+0x254668] V [libjvm.so+0x168a4f] V [libjvm.so+0x2758fc] V [libjvm.so+0x2785ca] V [libjvm.so+0x1d0248] C [libjava.so+0x13714] Java_sun_reflect_NativeMethodAccessorImpl_invoke0+0x34 j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+208 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub V [libjvm.so+0x168c1c] ...<more frames>... Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.eclipse.swt.internal.gtk.GTK._gtk_main_iteration()I+0 j org.eclipse.swt.internal.gtk.GTK.gtk_main_iteration()I+7 j org.eclipse.swt.browser.MozillaDelegate$1.run()V+7 j org.eclipse.swt.widgets.Display.timerProc(II)I+48 v ~StubRoutines::call_stub j org.eclipse.swt.internal.motif.OS._XtAppProcessEvent(II)V+0 j org.eclipse.swt.internal.motif.OS.XtAppProcessEvent(II)V+9 J org.eclipse.swt.widgets.Display.readAndDispatch()Z v ~RuntimeStub::alignment_frame_return Runtime1 stub j org.eclipse.ui.internal.Workbench.runEventLoop(Lorg/eclipse/jface/window/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V+9 j org.eclipse.ui.internal.Workbench.runUI()I+336 j org.eclipse.ui.internal.Workbench.access$4(Lorg/eclipse/ui/internal/Workbench;)I+1 j org.eclipse.ui.internal.Workbench$4.run()V+23 j org.eclipse.core.databinding.observable.Realm.runWithDefault(Lorg/eclipse/core/databinding/observable/Realm;Ljava/lang/Runnable;)V+12 j org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+18 j org.eclipse.ui.PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I+2 j org.eclipse.ui.internal.ide.application.IDEApplication.start(Lorg/eclipse/equinox/app/IApplicationContext;)Ljava/lang/Object;+81 j org.eclipse.equinox.internal.app.EclipseAppHandle.run(Ljava/lang/Object;)Ljava/lang/Object;+100 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ljava/lang/Object;)Ljava/lang/Object;+103 j org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ljava/lang/Object;)Ljava/lang/Object;+29 j org.eclipse.core.runtime.adaptor.EclipseStarter.run(Ljava/lang/Object;)Ljava/lang/Object;+149 j org.eclipse.core.runtime.adaptor.EclipseStarter.run([Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object;+183 v ~StubRoutines::call_stub j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87 j sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+111 j org.eclipse.equinox.launcher.Main.invokeFramework([Ljava/lang/String;[Ljava/net/URL;)V+208 j org.eclipse.equinox.launcher.Main.basicRun([Ljava/lang/String;)V+114 j org.eclipse.equinox.launcher.Main.run([Ljava/lang/String;)I+4 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x082113e0 JavaThread "Worker-2" [_thread_blocked, id=32562] 0x080b90c0 JavaThread "Worker-1" [_thread_blocked, id=32561] 0x0822d0f8 JavaThread "Java indexing" daemon [_thread_blocked, id=32560] 0x085b1ca8 JavaThread "Worker-0" [_thread_blocked, id=32557] 0x0843add8 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=32556] 0x08432a90 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=32555] 0x0842d128 JavaThread "State Data Manager" daemon [_thread_blocked, id=32554] 0x080ebc20 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=32551] 0x080ea6d0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=32550] 0x080e9858 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=32549] 0x080df310 JavaThread "Finalizer" daemon [_thread_blocked, id=32548] 0x080de5d8 JavaThread "Reference Handler" daemon [_thread_blocked, id=32547] =>0x08081fe0 JavaThread "main" [_thread_in_native, id=32545] Other Threads: 0x080db9f0 VMThread [id=32546] 0x080ed0b0 WatcherThread [id=32552] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap def new generation total 2880K, used 2502K [0x44560000, 0x44880000, 0x45910000) eden space 2560K, 85% used [0x44560000, 0x44781bc0, 0x447e0000) from space 320K, 99% used [0x44830000, 0x4487fff8, 0x44880000) to space 320K, 0% used [0x447e0000, 0x447e0000, 0x44830000) tenured generation total 37824K, used 19725K [0x45910000, 0x47e00000, 0x54560000) the space 37824K, 52% used [0x45910000, 0x46c534b0, 0x46c53600, 0x47e00000) compacting perm gen total 30720K, used 30470K [0x54560000, 0x56360000, 0x58560000) the space 30720K, 99% used [0x54560000, 0x56321a38, 0x56321c00, 0x56360000) No shared spaces configured. Dynamic libraries: 08048000-0804c000 r-xp 00000000 00:0d 5474129 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/eclipse 0804c000-0804d000 rw-p 00003000 00:0d 5474129 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/eclipse 0804d000-08a42000 rw-p 00000000 00:00 0 40000000-40015000 r-xp 00000000 03:03 521230 /lib/ld-2.3.2.so 40015000-40016000 rw-p 00015000 03:03 521230 /lib/ld-2.3.2.so 40016000-40017000 rw-p 00000000 00:00 0 40017000-4019b000 r-xp 00000000 00:0d 5474126 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/libXm.so.2 4019b000-401ae000 rw-p 00183000 00:0d 5474126 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/libXm.so.2 401ae000-401af000 rw-p 00000000 00:00 0 401af000-401bc000 r-xp 00000000 00:0d 7767580 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.launcher.motif.linux.x86_1.0.0.v20070524/eclipse_1017a.so 401bc000-401bd000 rw-p 0000c000 00:0d 7767580 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.launcher.motif.linux.x86_1.0.0.v20070524/eclipse_1017a.so 401bd000-401bf000 r-xp 00000000 03:03 228067 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 401bf000-401c0000 rw-p 00001000 03:03 228067 /usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2 401c0000-401c1000 r--p 00000000 00:00 0 401c1000-4020e000 r-xp 00000000 03:03 374877 /usr/X11R6/lib/libXt.so.6.0 4020e000-40212000 rw-p 0004c000 03:03 374877 /usr/X11R6/lib/libXt.so.6.0 40212000-402ee000 r-xp 00000000 03:03 374736 /usr/X11R6/lib/libX11.so.6.2 402ee000-402f1000 rw-p 000db000 03:03 374736 /usr/X11R6/lib/libX11.so.6.2 402f1000-402fe000 r-xp 00000000 03:03 488662 /lib/tls/libpthread-0.60.so 402fe000-402ff000 rw-p 0000c000 03:03 488662 /lib/tls/libpthread-0.60.so 402ff000-40301000 rw-p 00000000 00:00 0 40301000-40434000 r-xp 00000000 03:03 488653 /lib/tls/libc-2.3.2.so 40434000-40437000 rw-p 00132000 03:03 488653 /lib/tls/libc-2.3.2.so 40437000-4043a000 rw-p 00000000 00:00 0 4043a000-40447000 r-xp 00000000 03:03 374745 /usr/X11R6/lib/libXext.so.6.4 40447000-40448000 rw-p 0000c000 03:03 374745 /usr/X11R6/lib/libXext.so.6.4 40448000-40449000 rw-p 00000000 00:00 0 40449000-4044b000 r-xp 00000000 03:03 521264 /lib/libdl-2.3.2.so 4044b000-4044c000 rw-p 00001000 03:03 521264 /lib/libdl-2.3.2.so 4044c000-40453000 r-xp 00000000 03:03 374733 /usr/X11R6/lib/libSM.so.6.0 40453000-40454000 rw-p 00007000 03:03 374733 /usr/X11R6/lib/libSM.so.6.0 40454000-40468000 r-xp 00000000 03:03 374723 /usr/X11R6/lib/libICE.so.6.3 40468000-40469000 rw-p 00013000 03:03 374723 /usr/X11R6/lib/libICE.so.6.3 40469000-4046b000 rw-p 00000000 00:00 0 4046b000-40472000 r-xp 00000000 03:03 374800 /usr/X11R6/lib/libXp.so.6.2 40472000-40473000 rw-p 00006000 03:03 374800 /usr/X11R6/lib/libXp.so.6.2 40473000-40474000 rw-p 00000000 00:00 0 40474000-4047a000 r-xp 00000000 00:0d 34832467 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/native_threads/libhpi.so 4047a000-4047b000 rw-p 00006000 00:0d 34832467 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/native_threads/libhpi.so 4047b000-40483000 rw-s 00000000 03:03 1109484 /tmp/hsperfdata_ggayed/32545 40483000-40486000 r--s 00000000 00:0d 5079123 /bluebird/teamswt/ggayed/jre150/jre/lib/ext/dnsns.jar 40486000-4048e000 r-xp 00000000 03:03 374730 /usr/X11R6/lib/libXcursor.so.1.0 4048e000-4048f000 rw-p 00007000 03:03 374730 /usr/X11R6/lib/libXcursor.so.1.0 4048f000-40496000 r-xp 00000000 03:03 374875 /usr/X11R6/lib/libXrender.so.1.2.2 40496000-40497000 rw-p 00006000 03:03 374875 /usr/X11R6/lib/libXrender.so.1.2.2 40497000-404b3000 r-xp 00000000 03:03 228071 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 404b3000-404b5000 rw-p 0001c000 03:03 228071 /usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2 404b5000-407d1000 r-xp 00000000 00:0d 25673811 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/client/libjvm.so 407d1000-407ee000 rw-p 0031c000 00:0d 25673811 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/client/libjvm.so 407ee000-40c04000 rw-p 00000000 00:00 0 40c04000-40c25000 r-xp 00000000 03:03 488660 /lib/tls/libm-2.3.2.so 40c25000-40c26000 rw-p 00021000 03:03 488660 /lib/tls/libm-2.3.2.so 40c26000-40c31000 r-xp 00000000 00:0d 19365974 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libverify.so 40c31000-40c32000 rw-p 0000b000 00:0d 19365974 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libverify.so 40c32000-40c35000 r--s 00000000 00:0d 7063125 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.100.v20070316/runtime_registry_compatibility.jar 40c35000-40c37000 r--s 00000000 00:0d 5473293 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.2.0.I20070319-0010/compatibility.jar 40c37000-40c38000 rw-p 00000000 00:00 0 40c38000-40c49000 r-xp 00000000 03:03 521280 /lib/libnsl-2.3.2.so 40c49000-40c4a000 rw-p 00011000 03:03 521280 /lib/libnsl-2.3.2.so 40c4a000-40c4c000 rw-p 00000000 00:00 0 40c4c000-40c57000 r-xp 00000000 03:03 521316 /lib/libnss_files-2.3.2.so 40c57000-40c58000 rw-p 0000a000 03:03 521316 /lib/libnss_files-2.3.2.so 40c58000-40c79000 r-xp 00000000 00:0d 19365975 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libjava.so 40c79000-40c7b000 rw-p 00020000 00:0d 19365975 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libjava.so 40c7b000-40c8e000 r-xp 00000000 00:0d 19365977 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libzip.so 40c8e000-40c90000 rw-p 00012000 00:0d 19365977 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libzip.so 40c90000-41fb3000 r--s 00000000 00:0d 20398194 /bluebird/teamswt/ggayed/jre150/jre/lib/rt.jar 41fb3000-42020000 rw-p 00000000 00:00 0 42020000-42065000 r--s 00000000 00:0d 20398163 /bluebird/teamswt/ggayed/jre150/jre/lib/jsse.jar 42065000-4207a000 r--s 00000000 00:0d 20398201 /bluebird/teamswt/ggayed/jre150/jre/lib/jce.jar 4207a000-424dd000 r--s 00000000 00:0d 20398193 /bluebird/teamswt/ggayed/jre150/jre/lib/charsets.jar 424dd000-4278d000 rwxp 00000000 00:00 0 4278d000-444dd000 rwxp 002b0000 00:00 0 444dd000-444e8000 rwxp 00000000 00:00 0 444e8000-4455d000 rwxp 0200b000 00:00 0 4455d000-4455f000 rwxp 00000000 00:00 0 4455f000-44560000 rw-p 00000000 00:00 0 44560000-44880000 rwxp 00000000 00:00 0 44880000-45910000 rwxp 023a3000 00:00 0 45910000-47e00000 rwxp 00000000 00:00 0 47e00000-54560000 rwxp 05923000 00:00 0 54560000-56360000 rwxp 00000000 00:00 0 56360000-58560000 rwxp 13e83000 00:00 0 58560000-58562000 rwxp 00000000 00:00 0 58562000-58569000 rwxp 16085000 00:00 0 58569000-5857d000 rwxp 00000000 00:00 0 5857d000-585e0000 rwxp 160a0000 00:00 0 585e0000-585ef000 rwxp 00000000 00:00 0 585ef000-58600000 rwxp 16112000 00:00 0 58600000-58614000 rwxp 00000000 00:00 0 58614000-58678000 rwxp 00013000 00:00 0 58678000-58688000 rwxp 00000000 00:00 0 58688000-58699000 rwxp 00087000 00:00 0 58699000-5869a000 ---p 00000000 00:00 0 5869a000-5871a000 rwxp 00001000 00:00 0 5871a000-5871d000 ---p 00081000 00:00 0 5871d000-5879b000 rwxp 00084000 00:00 0 5879b000-5879e000 ---p 00102000 00:00 0 5879e000-5881c000 rwxp 00105000 00:00 0 5881c000-5881f000 ---p 00183000 00:00 0 5881f000-5889d000 rwxp 00186000 00:00 0 5889d000-588a0000 ---p 00204000 00:00 0 588a0000-5891e000 rwxp 00207000 00:00 0 5891e000-58921000 ---p 00285000 00:00 0 58921000-5899f000 rwxp 00288000 00:00 0 5899f000-589a0000 ---p 00306000 00:00 0 589a0000-58a20000 rwxp 00307000 00:00 0 58a20000-58a4b000 r--s 00000000 00:0d 5079124 /bluebird/teamswt/ggayed/jre150/jre/lib/ext/sunpkcs11.jar 58a4b000-58a71000 r--s 00000000 00:0d 5079125 /bluebird/teamswt/ggayed/jre150/jre/lib/ext/sunjce_provider.jar 58a71000-58adf000 r--s 00000000 00:0d 5079126 /bluebird/teamswt/ggayed/jre150/jre/lib/ext/localedata.jar 58adf000-58aea000 r--s 00000000 00:0d 5473959 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.launcher_1.0.0.v20070523.jar 58aea000-58bcd000 r--s 00000000 00:0d 5474002 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.osgi_3.3.0.v20070523.jar 58bcd000-58be1000 r-xp 00000000 00:0d 19365980 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libnet.so 58be1000-58be2000 rw-p 00013000 00:0d 19365980 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libnet.so 58be2000-58be8000 r-xp 00000000 00:0d 19365981 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libnio.so 58be8000-58be9000 rw-p 00005000 00:0d 19365981 /bluebird/teamswt/ggayed/jre150/jre/lib/i386/libnio.so 58be9000-58bec000 ---p 00000000 00:00 0 58bec000-58c6a000 rwxp 00003000 00:00 0 58c6a000-58c6d000 ---p 00081000 00:00 0 58c6d000-58ceb000 rwxp 00084000 00:00 0 58ceb000-58cee000 ---p 00102000 00:00 0 58cee000-58d6c000 rwxp 00105000 00:00 0 58d6c000-58d83000 r--s 00000000 00:0d 5473995 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.common_3.3.0.v20070426.jar 58d83000-58d9b000 r--s 00000000 00:0d 5474006 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.update.configurator_3.2.100.v20070507.jar 58d9b000-58dad000 r--s 00000000 00:0d 5473916 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.runtime_3.3.100.v20070510.jar 58dad000-58dd5000 r--s 00000000 00:0d 5474005 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.registry_3.3.0.v20070522.jar 58dd5000-58ddb000 r--s 00000000 00:0d 5473988 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.runtime.compatibility.auth_3.2.100.v20070502.jar 58ddb000-58df5000 r--s 00000000 00:0d 5473791 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.preferences_3.2.100.v20070522.jar 58df5000-58e09000 r--s 00000000 00:0d 5473949 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.jobs_3.3.0.v20070423.jar 58e09000-58e1b000 r--s 00000000 00:0d 5473529 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.equinox.app_1.0.0.v20070423.jar 58e1b000-58e32000 r--s 00000000 00:0d 5473968 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.runtime.compatibility_3.1.200.v20070502.jar 58e32000-58e3e000 r--s 00000000 00:0d 5473528 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.ide.application_1.0.0.I20070523-1500.jar 58e3e000-591d1000 r--s 00000000 00:0d 5474024 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.workbench_3.3.0.I20070525-1100.jar 591d1000-592bf000 r--s 00000000 00:0d 5474009 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jface_3.3.0.I20070525-1100.jar 592bf000-592c3000 r--s 00000000 00:0d 5473362 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.swt_3.3.0.v3344g.jar 592c3000-5955a000 r--s 00000000 00:0d 5474026 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.swt.motif.linux.x86_3.3.0.v3344.jar 5955a000-5957d000 r--s 00000000 00:0d 5473966 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui_3.3.0.I20070525-1100.jar 5957d000-59597000 r--s 00000000 00:0d 5473976 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.commands_3.3.0.I20070523-1500.jar 59597000-5971b000 r-xp 00000000 03:03 213039 /tmp/libXm.so.2 5971b000-5972e000 rw-p 00183000 03:03 213039 /tmp/libXm.so.2 5972e000-5972f000 rw-p 00000000 00:00 0 5972f000-59756000 r-xp 00000000 00:0d 7800610 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-motif-3344.so 59756000-59757000 rw-p 00027000 00:0d 7800610 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-motif-3344.so 59757000-59758000 rw-p 00000000 00:00 0 59758000-59761000 r-xp 00000000 03:03 229335 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 59761000-59762000 rw-p 00008000 03:03 229335 /usr/X11R6/lib/X11/locale/lib/common/xomGeneric.so.2 59762000-59768000 r--s 00000000 00:0d 5473956 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.filesystem.linux.x86_1.1.0.v20070416.jar 59768000-59769000 r-xp 00000000 00:0d 7800645 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-gtk-motif-3344.so 59769000-5976a000 rw-p 00000000 00:0d 7800645 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-gtk-motif-3344.so 5976a000-5976e000 r-xp 00000000 03:03 374880 /usr/X11R6/lib/libXtst.so.6.1 5976e000-5976f000 rw-p 00004000 03:03 374880 /usr/X11R6/lib/libXtst.so.6.1 5976f000-59918000 r--s 00000000 00:0d 5474054 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.ide_3.3.0.I20070525-1100.jar 59918000-599be000 r--s 00000000 00:0d 5473961 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.resources_3.3.0.v20070514.jar 599be000-599dc000 r--s 00000000 00:0d 5474010 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.resources.compatibility_3.2.100.v20070502.jar 599dc000-599e7000 r--s 00000000 00:0d 5473951 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.filesystem_1.1.0.v20070510.jar 599e7000-599e9000 r-xp 00000000 00:0d 8029881 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/os/linux/x86/liblocalfile_1_0_0.so 599e9000-599ea000 rw-p 00001000 00:0d 8029881 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/47/1/.cp/os/linux/x86/liblocalfile_1_0_0.so 599ea000-599ff000 r--s 00000000 00:0d 5473792 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.contenttype_3.2.100.v20070319.jar 599ff000-59a02000 ---p 00000000 00:00 0 59a02000-59a80000 rwxp 00003000 00:00 0 59a80000-59a9e000 r--s 00000000 00:0d 5474060 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jface.databinding_1.1.0.I20070523-1500.jar 59a9e000-59adb000 r--s 00000000 00:0d 5473963 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.databinding_1.0.0.I20070523-1500.jar 59adb000-59ade000 ---p 00000000 00:00 0 59ade000-59b5c000 rwxp 00003000 00:00 0 59b5c000-59b70000 r--s 00000000 00:0d 5474030 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.expressions_3.3.0.v20070525-1050.jar 59b70000-59b93000 r--s 00000000 00:0d 5474033 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.help_3.3.0.v20070524.jar 59b93000-59be3000 r--s 00000000 00:0d 5473978 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.cheatsheets_3.3.0.v20070507.jar 59be3000-59c11000 r--s 00000000 00:0d 5474032 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.browser_3.2.100.v20070524A.jar 59c11000-59c14000 ---p 00000000 00:00 0 59c14000-59c92000 rwxp 00003000 00:00 0 59c92000-59c96000 r--s 00000000 00:0d 5474058 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.cvs_1.0.0.v20070212.jar 59c96000-59c9a000 r--s 00000000 00:0d 5474124 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.rcp_3.2.0.v20060605.jar 59c9a000-59ca5000 r--s 00000000 00:0d 5473972 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt_3.2.100.v20070525-1050.jar 59ca5000-59cb6000 r--s 00000000 00:0d 5473917 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.pde_3.3.0.v20070403-0800.jar 59cb6000-5a093000 r--s 00000000 00:0d 5473531 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/com.ibm.icu_3.6.1.v20070417.jar 5a093000-5a0d2000 r-xp 00000000 00:0d 7800643 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libcairo-swt.so 5a0d2000-5a0d3000 rw-p 0003f000 00:0d 7800643 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libcairo-swt.so 5a0d3000-5a0dd000 r-xp 00000000 00:0d 7800644 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-cairo-motif-3344.so 5a0dd000-5a0de000 rw-p 00009000 00:0d 7800644 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/configuration/org.eclipse.osgi/bundles/124/1/.cp/libswt-cairo-motif-3344.so 5a0de000-5a0e5000 r--s 00000000 00:0d 5474029 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jsch.core_1.0.0.I20070426.jar 5a0e5000-5a108000 r-xp 00000000 03:03 1205497 /usr/lib/libfontconfig.so.1.0.4 5a108000-5a10b000 rw-p 00023000 03:03 1205497 /usr/lib/libfontconfig.so.1.0.4 5a10b000-5a10c000 rw-p 00000000 00:00 0 5a10c000-5a15c000 r-xp 00000000 03:03 1205486 /usr/lib/libfreetype.so.6.3.3 5a15c000-5a160000 rw-p 0004f000 03:03 1205486 /usr/lib/libfreetype.so.6.3.3 5a160000-5a16c000 r-xp 00000000 03:03 1205389 /usr/lib/libz.so.1.1.4 5a16c000-5a16e000 rw-p 0000b000 03:03 1205389 /usr/lib/libz.so.1.1.4 5a16e000-5a18c000 r-xp 00000000 03:03 1205350 /usr/lib/libexpat.so.0.4.0 5a18c000-5a18e000 rw-p 0001d000 03:03 1205350 /usr/lib/libexpat.so.0.4.0 5a18e000-5aa4e000 r--s 00000000 00:0d 5473955 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt.ui_3.3.0.v20070525-1050.jar 5aa4e000-5abd5000 r--s 00000000 00:0d 5474027 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.team.cvs.ui_3.3.0.I20070523.jar 5abd5000-5abfb000 r--s 00000000 00:0d 5473264 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.console_3.2.0.v20070522.jar 5abfb000-5ac0e000 r--s 00000000 00:0d 5473986 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.views_3.2.100.I20070319-0010.jar 5ac0e000-5acdd000 r--s 00000000 00:0d 5474023 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jface.text_3.3.0.v20070525-1050.jar 5acdd000-5ad61000 r--s 00000000 00:0d 5473982 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.editors_3.3.0.v20070525-1050.jar 5ad61000-5ad9b000 r--s 00000000 00:0d 5473945 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.text_3.3.0.v20070525-1050.jar 5ad9b000-5ae1c000 r--s 00000000 00:0d 5473990 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.3.0.v20070525-1050.jar 5ae1c000-5b20b000 r--s 00000000 00:0d 5473952 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt.core_3.3.0.v_766.jar 5b20b000-5b20e000 ---p 00000000 00:00 0 5b20e000-5b28c000 rwxp 00003000 00:00 0 5b28c000-5b300000 r--s 00000000 00:0d 5473974 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.search_3.3.0.v20070525-1050.jar 5b300000-5b50b000 r--s 00000000 00:0d 5473998 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.debug.ui_3.3.0.v20070524a.jar 5b50b000-5b518000 r--s 00000000 00:0d 5473985 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt.core.manipulation_1.1.0.v20070525-1050.jar 5b518000-5b533000 r--s 00000000 00:0d 5473915 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.filebuffers_3.3.0.v20070525-1050.jar 5b533000-5b591000 r--s 00000000 00:0d 5474059 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.team.core_3.2.100.I20070525.jar 5b591000-5b6c7000 r--s 00000000 00:0d 5473913 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.team.ui_3.3.0.I20070524.jar 5b6c7000-5b6ea000 r--s 00000000 00:0d 5473530 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.externaltools_3.1.200.v20070416.jar 5b6ea000-5b821000 r--s 00000000 00:0d 5474028 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt.debug.ui_3.2.100.v20070524b.jar 5b821000-5b86a000 r--s 00000000 00:0d 5473984 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.debug.core_3.3.0.v20070524b.jar 5b86a000-5b974000 r--s 00000000 00:0d 5473263 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ant.ui_3.2.100.v20070511.jar 5b974000-5b9ed000 r--s 00000000 00:0d 5473989 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.jdt.junit_3.3.0.v20070525-1050.jar 5b9ed000-5bd8f000 r--s 00000000 00:0d 5474000 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.pde.ui_3.3.0.v20070525-0010.jar 5bd8f000-5bda5000 r--s 00000000 00:0d 6195070 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.intro.universal_3.2.100.v20070516/universal.jar 5bda5000-5bdad000 r--s 00000000 00:0d 5473793 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.core.net_1.0.0.I20070416.jar 5bdad000-5bdb7000 r--s 00000000 00:0d 5474057 /bluebird/teamswt/ggayed/33RC2/motif/eclipse/plugins/org.eclipse.ui.net_1.0.0.I20070516.jar 5bdb7
|
2007-05-28 11:46:38
| 1,180,370,000 |
resolved fixed
|
788aa21
| 1,180,550,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java
|
SWT
|
1,997 | 185,862 |
Bug 185862 AIX 5.3 motif - Characters above \u007f show as "iso8859" in some swt widgets
| null |
2007-05-07 17:43:27
| 1,178,570,000 |
resolved fixed
|
85625d4
| 1,180,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Font.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
1,998 | 188,932 |
Bug 188932 Can't enter paths in Text fields on Red Hat Workstation 5
|
Build ID: RC1 Steps To Reproduce: 1. Fire up RC1 on linux / rhws5 / x86_64 2. Create a new project 3. File -> Import -> General -> File System 4. Try to enter a path in the "From directory" Text field. More information: Looks like every character that's entered is immediately selected which leads to the problem that the next character which is entered is not appended but replaces the previous. One CAN unselect the character and enter the next one. Browsing with the native dialog seems to work.
|
2007-05-24 10:50:04
| 1,180,020,000 |
verified fixed
|
31a2d55
| 1,180,110,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
1,999 | 188,859 |
Bug 188859 [render] colored labels shifted to the right and margin smaller between icon and text
|
3.3 RC1. When enabling colored labels the icon and the text get shifted to the right and the margin between icon and text becomes smaller. The shifting is less bad than the small (almost inexistent) margin. This does not happen in WindowsXP. Should also check Mac.
|
2007-05-24 05:56:20
| 1,180,000,000 |
resolved fixed
|
5671706
| 1,180,050,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,000 | 186,722 |
Bug 186722 Foreground color not used from EraseItem callback
|
Using custom owner drawn for a Table or Tree overriding the painting of the selection shows a bug on Linux. Consider this snippet: public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Table t = new Table(shell, SWT.FULL_SELECTION); t.setHeaderVisible(true); TableItem item1 = new TableItem(t, SWT.NONE); item1.setText("Hello World"); TableItem item2 = new TableItem(t, SWT.NONE); item2.setText("Hello World"); t.setForeground(display.getSystemColor(SWT.COLOR_RED)); t.addListener(SWT.EraseItem, new Listener() { public void handleEvent(Event event) { Scrollable scrollable = (Scrollable) event.widget; GC gc = event.gc; if ((event.detail & SWT.SELECTED) != 0) { Rectangle clArea = scrollable.getClientArea(); Rectangle itemRect = event.getBounds(); /* Draw Rectangle */ Color oldBackground = gc.getBackground(); gc.setBackground(scrollable.getDisplay().getSystemColor(SWT.COLOR_RED)); gc.fillRectangle(0, itemRect.y, clArea.width, itemRect.height); gc.setBackground(oldBackground); gc.setForeground(scrollable.getDisplay().getSystemColor(SWT.COLOR_WHITE)); /* Mark as Selected being handled */ event.detail &= ~SWT.SELECTED; } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } } Windows: The selected item shows in white (with red as background) Linux: The selected item is entirely filled with red Note the explicit setForeground call after the table items have been created! Ben
|
2007-05-13 14:12:58
| 1,179,080,000 |
resolved fixed
|
f08d807
| 1,180,040,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,001 | 181,410 |
Bug 181410 [Browser] browser steal focus on IE7
| null |
2007-04-06 10:14:42
| 1,175,870,000 |
resolved fixed
|
59c7194
| 1,180,040,000 |
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
2,002 | 187,273 |
Bug 187273 Dialog package explorer on move reorg user input page scrolled
|
I20070516-0010 1. Select 'JavaPlugin' 2. Refactor>Move... Is: Dialog package explorer is scrolled to the right Should: Not be scrolled See screen shot. Not sure if it is us or SWT. This used to work pre 3.3M7
|
2007-05-16 10:44:05
| 1,179,330,000 |
resolved fixed
|
7712468
| 1,180,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,003 | 188,273 |
Bug 188273 [Browser] Browser.addHelpListener does not work on SLED10 Linux when pressed F1 or Ctrl + F1
|
Build ID: Eclipse3.3RC1 Steps To Reproduce: public class Test { /** * @param args */ public static void main(String[] args) { Display d = new Display(); Shell s = new Shell(d); s.setLayout(new FillLayout()); Browser b = new Browser(s, 0); b.setUrl("www.eclipse.org"); b.addHelpListener(new HelpListener(){ public void helpRequested(HelpEvent e) { System.out.println("hello world"); } }); s.open(); while(!s.isDisposed()){ if(!d.readAndDispatch()){ d.sleep(); } } d.dispose(); } } More information: The same problem happend in view part: Internal Web Browser on SLED10 Linux. On Windows if you pressed F1 or Ctrl + F1, Eclipse help will pop up. But on Linux only Ctrl + F1 can pop up help in Eclipse. I don't know if it is a bug. Because if you open a native gtk app and press F1 the Linux help will pop up.
|
2007-05-22 06:11:47
| 1,179,830,000 |
resolved fixed
|
41acd10
| 1,179,950,000 |
bundles/org.eclipse.swt/Eclipse SWT Mozilla/carbon/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/browser/Mozilla.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/gtk/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/motif/org/eclipse/swt/browser/MozillaDelegate.java bundles/org.eclipse.swt/Eclipse SWT Mozilla/win32/org/eclipse/swt/browser/MozillaDelegate.java
|
SWT
|
2,004 | 188,567 |
Bug 188567 TreeEditor closes CCombo after 500ms
|
M7 TreeEditor registers a timer that sets the focus on the control (in ControlEditor.layout()) after 500ms. This closes an already dropped-down CCombo. Snippet follows, wrapping the CCombo in a Composite seems to work around the problem.
|
2007-05-23 02:46:15
| 1,179,900,000 |
resolved fixed
|
8a021d8
| 1,179,950,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableEditor.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java
|
SWT
|
2,005 | 100,622 |
Bug 100622 [Browser] Opening Applet crashes Eclipse
|
1. create an HTML file with contents: <html> <body> <applet code=testpass.MyApplet.class width="200" height="200"> </applet> </body> </html> 2. open with/web browser 3. Eclipse crashes. From console: 2005-06-17 12:11:00.816 java[1114] GrP not requesting _registerDragTypes because the window is dying already 2005-06-17 12:11:46.057 java[1114] Apple Java Plugin: Java Plugin isn't first to load JVM. (src/plugin/ src/macosx/native/apple/applet/JavaInstance.m - -[JavaInstance init] : 124) 2005-06-17 12:11:46.059 java[1114] Apple Applet Plugin: JNI exception (registerNatives, 334) Exception in thread "Thread-4" java.lang.NoClassDefFoundError: sun/plugin/javascript/webkit/JSObject
|
2005-06-17 13:12:28
| 1,119,030,000 |
resolved fixed
|
06d90d9
| 1,179,940,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/carbon/org/eclipse/swt/browser/Safari.java bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/cocoa/Cocoa.java
|
SWT
|
2,006 | 188,381 |
Bug 188381 Tree Viewer Collapse Extremely Slow on Vista
|
Build ID: I20070517-1700 Steps To Reproduce: Launch attached test application 1. Expand the "Root" item in the tree 2. Select the first child, "Item 0" 3. Collapse the "Root" item More information: The collapse takes ~12 seconds on Vista, but takes negligible time on Windows XP, Linux x86 (Open SUSE 10.2), and MacOS X.
|
2007-05-22 13:07:48
| 1,179,850,000 |
resolved fixed
|
ea6bf58
| 1,179,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,007 | 187,971 |
Bug 187971 Custom Draw Tree brings cheese when using Image and Bold
|
Eclipse 3.3 RC1 Just run this snippet on windows to see cheese in the treeitems: import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graphics.RGB; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.graphics.Region; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Scrollable; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.TreeColumn; import org.eclipse.swt.widgets.TreeItem; /* * Created on 14.03.2007 * * To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */ public class Main { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Color fGradientFgColor = new Color(display, new RGB(250, 250, 250)); final Color fGradientBgColor = new Color(display, new RGB(220, 220, 220)); final Color fGradientEndColor = new Color(display, new RGB(200, 200, 200)); Image img = new Image(display, 16, 16); GC gc = new GC(img); gc.setBackground(display.getSystemColor(SWT.COLOR_RED)); gc.fillRectangle(0, 0, 16, 16); gc.dispose(); Tree t = new Tree(shell, SWT.FULL_SELECTION); t.setHeaderVisible(true); TreeColumn col1 = new TreeColumn(t, SWT.NONE); col1.setText("Title"); col1.setWidth(500); TreeColumn col2 = new TreeColumn(t, SWT.NONE); col2.setText("Date"); col2.setWidth(100); TreeColumn col3 = new TreeColumn(t, SWT.NONE); col3.setText("Author"); col3.setWidth(100); TreeColumn col4 = new TreeColumn(t, SWT.NONE); col4.setText("Category"); col4.setWidth(100); TreeColumn col5 = new TreeColumn(t, SWT.NONE); col5.setText(""); col5.setWidth(20); for (int i = 0; i < 100; i++) { TreeItem treeItem = new TreeItem(t, SWT.NONE); treeItem.setText(0, "Hello World"); treeItem.setData(new Integer(i)); treeItem.setFont(new Font(display, "Tahoma", 8, SWT.BOLD)); treeItem.setImage(0, img); treeItem.setText(1, "Hello World"); treeItem.setText(2, "Hello World"); treeItem.setText(3, "Hello World"); treeItem.setImage(4, img); } t.setSelection(t.getItem(3)); t.setTopItem(t.getItem(0)); t.addListener(SWT.EraseItem, new Listener() { public void handleEvent(Event event) { Scrollable scrollable = (Scrollable) event.widget; GC gc = event.gc; Integer data = (Integer) event.item.getData(); if (data.intValue() == 0) { Rectangle area = scrollable.getClientArea(); Rectangle rect = event.getBounds(); /* Paint the selection beyond the end of last column */ expandRegion(event, scrollable, gc, area); /* Draw Gradient Rectangle */ Color oldForeground = gc.getForeground(); Color oldBackground = gc.getBackground(); /* Gradient */ gc.setForeground(fGradientFgColor); gc.setBackground(fGradientBgColor); gc.fillGradientRectangle(0, rect.y, area.width, rect.height, true); /* Bottom Line */ gc.setForeground(fGradientEndColor); gc.drawLine(0, rect.y + rect.height - 1, area.width, rect.y + rect.height - 1); gc.setForeground(oldForeground); gc.setBackground(oldBackground); /* Mark as Background being handled */ event.detail &= ~SWT.BACKGROUND; } } }); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } } static void expandRegion(Event event, Scrollable scrollable, GC gc, Rectangle area) { int columnCount; if (scrollable instanceof Table) columnCount = ((Table) scrollable).getColumnCount(); else columnCount = ((Tree) scrollable).getColumnCount(); if (event.index == columnCount - 1 || columnCount == 0) { int width = area.x + area.width - event.x; if (width > 0) { Region region = new Region(); gc.getClipping(region); region.add(event.x, event.y, width, event.height); gc.setClipping(region); region.dispose(); } } } }
|
2007-05-19 15:43:58
| 1,179,600,000 |
resolved fixed
|
5a83eff
| 1,179,930,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,008 | 187,704 |
Bug 187704 [DND] On Linux, the event.time is negative in dragOver event
|
Build ID: M20070212-1330 Steps To Reproduce: 1. Create an application shell with only two buttons - one is a drag source and another one is a drop target. 2. When drag from the drag source button to hover on the drop target button, the drop target button displays a dropdown shell under it. Expected result: the event.time inside the dragover should be positive and continue increase. Actual result: It works as expected on Windows, but the value is negative in Linux gtk More information: SWT version: 3344
|
2007-05-17 19:07:33
| 1,179,440,000 |
resolved fixed
|
026efaa
| 1,179,520,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DropTarget.java
|
SWT
|
2,009 | 187,878 |
Bug 187878 FileDialog with MULTI has old look
|
The single select file dialog has the look, the multi select has the old look. We should change the multi select case to use the newer windows look.
|
2007-05-18 14:24:09
| 1,179,510,000 |
resolved fixed
|
0e44312
| 1,179,510,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/FileDialog.java
|
SWT
|
2,010 | 150,397 |
Bug 150397 Text: SWT.RIGHT without SWT.BORDER does not show text
|
On Mac OS X, if SWT.RIGHT is used as the style for a Text object, the user cannot see the text. Using SWT.LEFT as the style works fine. Using SWT.RIGHT | SWT.BORDER or SWT.RIGHT | SWT.WRAP also fixes the problem. Here's code to reproduce: package org.projectalisa.javalisa.basic.widgets; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Text; import org.eclipse.swt.SWT; public class TestText extends Composite { private Text text = null; public TestText(Composite parent, int style) { super(parent, style); initialize(); } private void initialize() { text = new Text(this, SWT.RIGHT); text.setText("123"); setSize(new Point(300, 200)); setLayout(new GridLayout()); } }
|
2006-07-12 10:52:15
| 1,152,720,000 |
resolved fixed
|
b0ce542
| 1,179,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
2,011 | 185,607 |
Bug 185607 Can't copy and paste into dialog text fields from some applications
|
I've noticed this problem for some time. I can't copy and paste a password from Splash ID (a password manager application) to SWT text fields. A paste action seems to delete the contents of the field. However, I can copy and paste into other Eclipse UI elements, such as the editor. More weird, is that I can copy and paste from other MacOS X applications, such as Safari, into the text fields.
|
2007-05-04 16:08:15
| 1,178,310,000 |
verified fixed
|
bc9956a
| 1,179,440,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 bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
|
SWT
|
2,012 | 187,597 |
Bug 187597 BeginBufferedPaint does not work in RTL and advanced
|
import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.*; public class PR111111 { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.SHELL_TRIM | SWT.DOUBLE_BUFFERED | SWT.RIGHT_TO_LEFT); shell.addListener(SWT.Paint, new Listener() { public void handleEvent(Event event) { GC gc = event.gc; gc.setAdvanced(true); gc.setBackground(display.getSystemColor(SWT.COLOR_RED)); // if (true) { // gc.fillRectangle(-100, 0, 100, 100); // gc.drawLine(-100, 0, 0, 100); // } else { gc.fillRectangle(0, 0, 100, 100); gc.drawLine(0, 0, 100, 100); // } } }); shell.addListener(SWT.MouseDown, new Listener() { public void handleEvent(Event event) { shell.redraw(10, 10, 100, 100, true); shell.redraw(120, 10, 100, 100, true); } }); shell.setSize(300, 300); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } } }
|
2007-05-17 12:42:48
| 1,179,420,000 |
resolved fixed
|
a52d83b
| 1,179,420,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
|
SWT
|
2,013 | 136,691 |
Bug 136691 Snippet139 - No more handles
|
Version: 3.2.0 Build id: I20060412-0847 Run Snippet139. The following SWTError is shown: Exception in thread "main" org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:3400) at org.eclipse.swt.SWT.error(SWT.java:3297) at org.eclipse.swt.SWT.error(SWT.java:3268) at org.eclipse.swt.graphics.Image.init(Image.java:1067) at org.eclipse.swt.graphics.Image.<init>(Image.java:552) at org.eclipse.swt.snippets.Snippet139.main(Snippet139.java:102)
|
2006-04-13 13:14:40
| 1,144,950,000 |
resolved fixed
|
84c43e6
| 1,179,350,000 |
examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet139.java
|
SWT
|
2,014 | 183,503 |
Bug 183503 Text formatting finishes too early when pasted
|
3.3M6 I20070323-1616 SWT StyledText/RTFWriter 1. In an Eclipse editor enter some syntax-highlighted text plus a line break (CRLF), e.g. in the Java editor (under Windows) enter: // 12345<ENTER> 2. Copy both lines to the clipboard. 3. Paste the text into a native application with a rich text editor, e.g. Outlook Express email, Microsoft Word. The last character isn't formatted like the rest of the text (in the example '5' appears black rather than green like the other characters). Below is a snippet which produces the same effect when the clipboard is pasted after running. import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyleRange; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class StyledTextFormattingBug { /** * Run the following code. It will copy some rich text to the clipboard. * Paste it into an RTF receiver such as a word processor or email composer * and notice how the last character isn't formatted like the preceding * ones. */ public static void main(String[] args) { Shell shell = new Shell(); shell.setLayout(new FillLayout()); Display display = shell.getDisplay(); StyledText styledText = new StyledText(shell, SWT.BORDER); styledText.setText("Paste into a rich text editor\r\n"); styledText.selectAll(); Point selection = styledText.getSelectionRange(); StyleRange styleRange = new StyleRange(); styleRange.start = selection.x; styleRange.length = selection.y; styleRange.fontStyle = SWT.BOLD; styleRange.foreground = display.getSystemColor(SWT.COLOR_BLUE); styledText.setStyleRange(styleRange); styledText.selectAll(); styledText.copy(); shell.pack(); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) { display.sleep(); } } } The RTF generated from the above is: {\rtf1\ansi\ansicpg1252\uc0\deff0{\fonttbl{\f0\fnil Tahoma;}} {\colortbl\red0\green0\blue0;\red255\green255\blue255;\red0\green0\blue255;} {\f0\fs16 \fi0\ql {\cf2\b Paste into a rich text edito\b0}r \par \fi0\ql }} Presumably it should be: {\rtf1\ansi\ansicpg1252\uc0\deff0{\fonttbl{\f0\fnil Tahoma;}} {\colortbl\red0\green0\blue0;\red255\green255\blue255;\red0\green0\blue255;} {\f0\fs16 \fi0\ql {\cf2\b Paste into a rich text editor\b0} \par \fi0\ql }} which seems to paste in correctly.
|
2007-04-21 10:38:36
| 1,177,170,000 |
resolved fixed
|
d7e5b0c
| 1,179,340,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextRenderer.java
|
SWT
|
2,015 | 187,215 |
Bug 187215 Enabling owner draw removes horizontal scrollbar
|
I20070516-0010. 1. start fresh workspace 2. create a Java project with very long name (==> scroll bar) 3. enable colored labels ==> horizontal scroll bar gone NOTE: resizing fixes the problem BUT: in M7 this did not work and not even closing and reopening the Package Explorer helped.
|
2007-05-16 05:30:17
| 1,179,310,000 |
resolved fixed
|
4f1247a
| 1,179,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,016 | 182,986 |
Bug 182986 Javadoc in GC should document methods that need the advanced graphics subsystem
|
I20070417-0800. Javadoc in GC should document methods that need the advanced graphics subsystem.
|
2007-04-18 11:28:09
| 1,176,910,000 |
resolved fixed
|
ae0e7e7
| 1,179,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.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/Pattern.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java
|
SWT
|
2,017 | 177,711 |
Bug 177711 Grayed PNG image displayed white background in some Linux
|
Build ID: M20060921-0945 Steps To Reproduce: The following code displays a transparent image(transparent.png) in a window. There should be nothing displayed. But in some machine(ThinkPad T60, ThinkCenter 8212, ThinkCenter 8141) with SLED10 linux, it displayed a white image. public class TestImage { public TestImage() { } public static void main(String args[]) { final Display display = new Display(); Shell shell = new Shell(); RowLayout rowlayout = new RowLayout(SWT.VERTICAL); shell.setLayout(rowlayout); final Image whiteimage = createStockImage(display, "transparent.png"); final Image graywhiteImage = new Image(null, whiteimage, SWT.IMAGE_GRAY); GC gc = new GC(display); Canvas canvas = new Canvas(shell, 0); RowData data = new RowData(); data.width = 400; data.height = 400; canvas.setLayoutData(data); canvas.setSize(new Point(200,200)); canvas.addPaintListener(new PaintListener() { public void paintControl(PaintEvent arg0) { arg0.gc.drawImage(graywhiteImage, 0, 0); } }); canvas.redraw(); shell.setSize(new Point(500,500)); shell.layout(); shell.open(); while(!shell.isDisposed()) try { if(!display.readAndDispatch()) display.sleep(); } catch(Exception e) { e.printStackTrace(); } } private static Image createStockImage(Display display, String path) { try { java.io.InputStream stream = TestImage.class.getResourceAsStream(path); if(stream != null) { org.eclipse.swt.graphics.ImageData imageData = new ImageData(stream); if(imageData != null) { org.eclipse.swt.graphics.ImageData mask = imageData.getTransparencyMask(); return new Image(display, imageData); } } } catch(java.lang.Exception exception) { } return null; } More information: The following bugs may relate to it:164691, 165751. In my test, if the PNG is not transformed to gray, it has no problem. GIF file has no problem.
|
2007-03-16 04:27:13
| 1,174,030,000 |
resolved fixed
|
6d82b41
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Image.java
|
SWT
|
2,018 | 187,117 |
Bug 187117 GC.copyArea(Image, int, int) wrong in RTL
| null |
2007-05-15 16:43:16
| 1,179,260,000 |
resolved fixed
|
c0d13b0
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,019 | 185,916 |
Bug 185916 StyledText.setSelectionForeground(Color) has no effect
|
3.3 M7 StyledText.setSelectionForeground(Color) has no effect. We could argue that this is a Platform limitation but then this should be mentioned in the Javadoc.
|
2007-05-08 04:39:28
| 1,178,610,000 |
verified fixed
|
e9b2aa0
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,020 | 173,549 |
Bug 173549 Drawing round rectangles, DND and antialias vows
|
I have a funny combination that causes problems in forms. It requires the following: 1) Drag & Drop and the new drag effect support 2) Dragging of a composite that has children and that paints on its background 3) Usage of 'GC.fillRoundRectangle()' 4) Usage of antialiasing When all these are combined, the image created as a snapshot for drag effect does not paint children. Snippet to follow.
|
2007-02-08 17:14:18
| 1,170,970,000 |
resolved fixed
|
37ab1e4
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/internal/ImageList.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.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/ToolItem.java
|
SWT
|
2,021 | 55,142 |
Bug 55142 Horizontal scrollbar disabled with editor content horizontally scrolled
|
Overview Description: In the specified conditions (see below) the horizontal scrollbar of a text editor window is disabled while the window content remains horizontally scrolled. Steps to Reproduce: 1) Create a new File. 2) Type in a long line of text, larger than the editor area, so the horizontal scrollbar will be enabled. 3) Enter blank lines, until the vertical scrollbar appears. 4) Type in a short line of text, smaller than the editor area. 5) View the long line and click in it, setting the carret inside the line. 5) Scroll the view horizontally until the end of the line. 6) Using the mouse, scroll the view vertically until the long line is no longer visible, and the short line is visible. 7) Click in the short line - not in a blank line. Actual Results: The scrollbar is disabled. The window area remains scrolled horizontally. Expected Results: The horizontal scrollbar should remain enabled. At least while the content is horizontally scrolled. Build Date & Platform: Version: 3.0.0 Build id: 200402122000
|
2004-03-17 14:44:08
| 1,079,550,000 |
resolved fixed
|
6bd6730
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,022 | 186,378 |
Bug 186378 To input Japanese character in Java editor causes dot garbages ONLY at first.
|
Build ID: I20070503-1400 Steps To Reproduce: 1.Create a new java Project. 2.Create a new java class(Fig.1). 3.Insert Javadoc comment by entering /** and enter key(Fig.2). 4.Enter some Japanese word using KOTOERI, which is a default Mac OSX Japanes IME, into the java file(Fig.3). 5. Then eclipse cause strange behaviour. Line feed does not work properly, which means line feed left dot garbages(Fig.4). However I cannot reproduce such garbage after this phenomenon unless I do not close this file. This phenonmenon will occur only at first of opening or creating a new file, I guess. More information: Please see attached png images. ... Oops, well, How can i left my evidences??
|
2007-05-10 10:55:52
| 1,178,810,000 |
resolved fixed
|
aaa32e6
| 1,179,260,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,023 | 185,231 |
Bug 185231 Mac: Cannot get rid of native tooltip in a table with columns
|
[I20070502-0010] Steps: 1. Press Ctrl-3 to get the Quick Access dialog 2. Type "con" to get some matches 3. Hover over a table item -> custom tooltip appears 4. Move the mouse a little bit -> native tooltip appears as well
|
2007-05-02 17:11:22
| 1,178,140,000 |
resolved fixed
|
56ccc8b
| 1,179,250,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,024 | 184,916 |
Bug 184916 Variables view not painted correctly after column resize
|
Resize the Name column of the variables view to make it smaller. The view is not painted correctly. Grid line between columns are missing, text truncated. I will attach screen capture.
|
2007-05-01 12:12:55
| 1,178,040,000 |
resolved fixed
|
a5c20d8
| 1,179,240,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,025 | 185,910 |
Bug 185910 Custom drawing listeners produce display artifacts when used with virtual TreeViewer
|
Build ID: I20070503-1400 Steps To Reproduce: 1.Run attached program 2.Press Reload 3.Press Refresh 4. Scroll down More information: Using custom drawing listeners produces display artifacts when used with a TreeViewer with a lazy content provider. The initial display has the labels shown as two overlapping copies. Pressing refresh fixes the problem for the items already shown, but scrolling down produces the same problem with the newly displayed items. This problem only occurs when using both custom drawing handlers and a virtual tree viewer. I have observed the bug in both 3.2.2 and 3.3M7 under Windows XP.
|
2007-05-08 03:36:43
| 1,178,610,000 |
resolved fixed
|
091f790
| 1,179,240,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java
|
SWT
|
2,026 | 186,580 |
Bug 186580 GC#drawRoundRectangle looks ugly on advance mode
|
SWT M7 setAdvance to true setLineWidth to an odd number draw a round rectangle, note the lines and arcs do not connect correctly. fix: implement drawRoundRectangle using path.
|
2007-05-11 11:28:58
| 1,178,900,000 |
resolved fixed
|
04268c3
| 1,179,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
2,027 | 158,122 |
Bug 158122 BIDI: StyledText does not paint selection well when mirrored
|
When we have a styledText widget, in RTL mode (Right to Left), and we select some text, the selection drawing is not perfect. On the first line, it seems that the higlighting begins one pixel after it should, and the first char is bolder. On the next lien,one character in the line is "Bolder" then the others, this happens at the last line of the selection, as shown in the pic.
|
2006-09-21 05:53:14
| 1,158,830,000 |
resolved fixed
|
8b23889
| 1,179,170,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java
|
SWT
|
2,028 | 186,757 |
Bug 186757 No context menus in tables
|
I20070514-0010 (works in I20070511-0010 - got broken in I20070512-0010). Context menus no longer appear in all views that show information in a table (e.g. Search, Types view, lower pane of Type Hierarchy). Works in trees. Looks like an SWT bug since replacing SWT with the version from I20070511-0010 fixes the problem.
|
2007-05-14 05:37:28
| 1,179,140,000 |
verified fixed
|
f18522b
| 1,179,160,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,029 | 186,611 |
Bug 186611 Alpha channels being lost on Windows XP classic theme
| null |
2007-05-11 13:20:30
| 1,178,900,000 |
resolved fixed
|
a4db789
| 1,179,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java
|
SWT
|
2,030 | 183,640 |
Bug 183640 Combo on Linux missing, doesn't show up. FormData
|
I have a wizard page that creates a Combo, the Combo is positioned using FormLayout and Formdata. On Linux (RedHat 4 Enterprise desktp) the Control fails to show up. Unless, I increase the Bottom Formdata to a larger percent. -------------------------------- final Composite composite = new Composite(parent, SWT.NONE); FormLayout formLayout = new FormLayout(); formLayout.marginHeight = 5; formLayout.marginWidth = 5; _comboLabel = new Label(composite, SWT.NONE); String message = Messages.PAGE_COMBO_MESSAGE; _comboLabel.setText(message); FormData dataComboLabel = new FormData(); dataComboLabel.top = new FormAttachment(0, 5); dataComboLabel.left = new FormAttachment(0, 0); dataComboLabel.bottom = new FormAttachment(10, 0); dataComboLabel.right = new FormAttachment(100, -5); _comboLabel.setLayoutData(dataComboLabel); _combo = new Combo(composite, SWT.READ_ONLY); FormData data = new FormData(); top = new FormAttachment(_comboLabel, 5); data.left = new FormAttachment(0, 0); // !!!! weird problem here on linux data.bottom = new FormAttachment(10, 0); data.right = new FormAttachment(100, -5); _combo.setLayoutData(data); ------------------ If I increase the "data.bottom..." values to data.bottom = new FormAttachment(20, 0); The control will then render on linux. ** Note on Vista and Windows XP SP2 the control renders fine. Expected same behavior on Linux as on Vista and XP.
|
2007-04-23 13:56:31
| 1,177,350,000 |
resolved fixed
|
fdf2b89
| 1,178,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
2,031 | 186,557 |
Bug 186557 No Deactivate events from ON_TOP shells
|
ON_TOP shells are no longer sending deactivate events. public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); final Shell ontop = new Shell(shell, SWT.ON_TOP); ontop.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event event) { System.out.println("\t\tdeactivate"); ontop.dispose(); } }); ontop.setBounds(205, 205, 100, 100); shell.setBounds(200, 200, 300, 300); shell.open(); ontop.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); }
|
2007-05-11 09:50:18
| 1,178,890,000 |
resolved fixed
|
1a62365
| 1,178,900,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,032 | 120,725 |
Bug 120725 [DND] Drag and Drop - Snippet185 fails
|
Snippet185 - can't start drag.
|
2005-12-13 15:43:10
| 1,134,510,000 |
resolved fixed
|
8f61130
| 1,178,830,000 |
bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/carbon/org/eclipse/swt/dnd/DragSource.java
|
SWT
|
2,033 | 186,448 |
Bug 186448 Exceptions selecting tree items
|
using build N20070510-0010, I open the launch dialog and selected a launch configuration in the tree and got half a dozen of the following error: System.NullReferenceException: Object reference not set to an instance of an object. at Java_org_eclipse_swt_internal_wpf_OS_Object_1Equals(JNIEnv_* env, _jclass* that, Int32 arg0, Int32 arg1) Java: java.lang.Exception: Stack trace at java.lang.Thread.dumpStack(Unknown Source) at org.eclipse.swt.internal.wpf.OS.Object_Equals(Native Method) at org.eclipse.swt.widgets.Tree.OnSelectedItemChanged(Tree.java:1663) at org.eclipse.swt.internal.wpf.OS.TreeViewItem_IsSelected(Native Method) at org.eclipse.swt.widgets.Tree.HandlePreviewMouseDown(Tree.java:1401) at org.eclipse.swt.internal.wpf.OS.Dispatcher_PushFrame(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2162) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1133) at org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:387) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:391) at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:333) at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:81) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1006) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2413) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2164) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137)
|
2007-05-10 15:48:36
| 1,178,830,000 |
resolved fixed
|
55c3140
| 1,178,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/wpf/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,034 | 154,036 |
Bug 154036 [Browser] Cannot Edit a Html IFrame which is in swt
|
I created a SWT class to have a browser.I have set the text of the browser to html.The html has a link to a html page .This html page has a IFrame with design mode on . But I cannot edit this Iframe when I run the SWT.In normal html page the Iframe is editable. The code of swt class and html page is as shown below : import org.eclipse.swt.*; import org.eclipse.swt.browser.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class Snippet1 { public static void main(String [] args) { /* Relative links: use the HTML base tag */ String html = "<html><head>"+ "<base href=\"E:/dev/SWT-TEXTAREA/VEDEMO/\">" + "<title>HTML Test</title></head>"+ "<body><a href=\"newwel.html\">local link</a></body></html>"; Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Browser browser = new Browser(shell, SWT.NONE); browser.setText(html); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } ------------------------------------------------------------------------------ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>IFrame Design Mode</title> </head> <body> IFrame with Design Mode on. <br> <iframe id="rtEditor" name="rtEditor" width="100%" height="120px"> </iframe> </body> <script type="text/javascript"> rtEditor.document.designMode = "on"; </script> </html>
|
2006-08-16 06:43:10
| 1,155,720,000 |
resolved fixed
|
72cae96
| 1,178,820,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
2,035 | 185,534 |
Bug 185534 Table sends MenuDetect twice
|
SWT-3.3M6 sends MenuDetect event twice on WinXP: One for MouseDown and one for MouseUp. This is not the case with SWT-3.2. Attached snippet produces this output for a single right click on a TableItem: Event {type=35 Table {} time=1044707109 data=null x=156 y=318 width=0 height=0 detail=0} Event {type=3 Table {} time=1044707109 data=null x=20 y=135 width=0 height=0 detail=0} Event {type=35 Table {} time=1044707234 data=null x=155 y=318 width=0 height=0 detail=0} Event {type=4 Table {} time=1044707234 data=null x=19 y=135 width=0 height=0 detail=0} Same snippet with SWT-3.2 yields this: Event {type=3 Table {} time=1044616843 data=null x=53 y=114 width=0 height=0 detail=0} Event {type=35 Table {} time=1044616937 data=null x=189 y=297 width=0 height=0 detail=0} Event {type=4 Table {} time=1044616937 data=null x=53 y=114 width=0 height=0 detail=0} Beware, this does not always happen, only in 90% of my clicks.
|
2007-05-04 08:57:20
| 1,178,280,000 |
resolved fixed
|
6c60a1c
| 1,178,730,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,036 | 181,937 |
Bug 181937 [OLE] eclipse should handle accelerators before OLE controls
|
Build ID: 3.3M6 Steps To Reproduce: 1. Import attached plugin in PDE 2. Run it 3. You will find a menu, it binds to Ctrl+O. 4. Show "Internal web browser" view. 5. If you focus in URL input box, press Ctrl+O, it will pop a dialog. 6. If you focus on web page, press Ctrl+O, nothing happens. More information:
|
2007-04-11 09:57:31
| 1,176,300,000 |
resolved fixed
|
5291190
| 1,178,730,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
|
SWT
|
2,037 | 186,054 |
Bug 186054 [DND] Combo Drag-and-drop performed twice
| null |
2007-05-08 19:13:57
| 1,178,670,000 |
resolved fixed
|
03e9e6e
| 1,178,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
2,038 | 184,111 |
Bug 184111 [DND] Not possible to drag multiple classes to a new package
|
Build ID: I20070323-1616 Steps To Reproduce: 1. Select multiple classes. 2. Attempt to drag them to a new package. 3. Only the class the cursor was over when starting to drag will be moved. More information: Most likely caused by the other classes being deselected when you press the left button to start dragging.
|
2007-04-25 16:21:57
| 1,177,530,000 |
resolved fixed
|
aeb7ec0
| 1,178,670,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,039 | 177,156 |
Bug 177156 [Browser] The javascript 'top.close() ' crashes eclipse
| null |
2007-03-13 11:09:48
| 1,173,800,000 |
resolved fixed
|
9741424
| 1,178,660,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
|
SWT
|
2,040 | 186,034 |
Bug 186034 NPE in Shell.filterProc
|
I20070508-0800 Need to save display in a local before sending Deactivate. java.lang.NullPointerException at org.eclipse.swt.widgets.Shell.filterProc(Shell.java:660) at org.eclipse.swt.widgets.Display.filterProc(Display.java:1457) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1486) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137)
|
2007-05-08 16:32:20
| 1,178,660,000 |
resolved fixed
|
de18997
| 1,178,660,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,041 | 185,532 |
Bug 185532 wrong selection length in owner drawn table
|
M7 WinXP - enable 'Use colors in labels' on Java > Appearance - open the 'Open Type' dialog (Ctrl + Shift + T) and enter 'A' - the selection is larger than the entry It has actually the same length as the largest so far seen entry When you scroll down and find a larger entry, the selection will become bigger
|
2007-05-04 08:39:56
| 1,178,280,000 |
resolved fixed
|
678527f
| 1,178,650,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/TableItem.java
|
SWT
|
2,042 | 185,313 |
Bug 185313 Inconsistency with focus on selected action
|
20070503 See the attached screenshot. Trees in vistas seem to not show the focus for selected element. They do it for tables. In my owner drawn tree I get SWT.FOCUSED so I draw the focus. Looks like SWT.FOCUSED should not be set.
|
2007-05-03 06:54:24
| 1,178,190,000 |
resolved fixed
|
c653083
| 1,178,640,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,043 | 185,529 |
Bug 185529 horizontal scrollbar missing in owner drawn tree
|
M7 - enable 'Use colors in labels' on Java > Appearance - look at the contents of a project in the package explorer: Horizontal scroll bars are missing.
|
2007-05-04 08:26:25
| 1,178,280,000 |
resolved fixed
|
fcbe924
| 1,178,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,044 | 184,592 |
Bug 184592 Calling List#setTopIndex() on Lists created with SWT.V_SCROLL scrambles the widget
|
When creating a List without the scrolling bits set a call to setTopIndex() make the widget look strange.
|
2007-04-28 08:02:08
| 1,177,760,000 |
resolved fixed
|
7110a28
| 1,178,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,045 | 185,617 |
Bug 185617 [Presentations] AIOBE on CTabFolder setSelectionBackground
|
I20070503-1400 We get an AIOBE when starting Eclipse of a platform where the display has a bit depth of 8 (specifically AIX in our case). The problem seems to stem from the following lines in CTabFolder.setSelectionBackground : if (getDisplay().getDepth() < 15) { // Don't use gradients on low color displays colors = new Color[] {colors[colorsLength - 1]}; percents = new int[] {}; } Causing this to be true, will trigger the exception every time. Stack trace: java.lang.ArrayIndexOutOfBoundsException: 1 at org.eclipse.swt.custom.CTabFolder.setSelectionBackground(CTabFolder.java:3369) at org.eclipse.ui.internal.presentations.PaneFolder.setSelectionBackground(PaneFolder.java:732) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.updateColors(DefaultTabFolder.java:437) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.setActive(DefaultTabFolder.java:389) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.setActive(TabbedStackPresentation.java:300) at org.eclipse.ui.internal.DefaultStackPresentationSite.setPresentation(DefaultStackPresentationSite.java:39) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:640) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:575) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:563) at org.eclipse.ui.internal.EditorSashContainer.createControl(EditorSashContainer.java:517) at org.eclipse.ui.internal.EditorAreaHelper.<init>(EditorAreaHelper.java:41) at org.eclipse.ui.internal.WorkbenchPage.init(WorkbenchPage.java:2274) at org.eclipse.ui.internal.WorkbenchPage.<init>(WorkbenchPage.java:551) at org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(WorkbenchWindow.java:713) at org.eclipse.ui.internal.Workbench$20.runWithException(Workbench.java:1023) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3297) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2975) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2288) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:359) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:174) 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.equinox.launcher.Main.invokeFramework(Main.java:475) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:415) at org.eclipse.equinox.launcher.Main.run(Main.java:1140) at org.eclipse.equinox.launcher.Main.main(Main.java:1115)
|
2007-05-04 17:23:30
| 1,178,310,000 |
verified fixed
|
07cfbab
| 1,178,550,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
2,046 | 180,511 |
Bug 180511 [typing] Editor flashes when extending selection by word with Ctrl+Shift+Right
|
I20070323-1616 (M6) The Java editor sometimes flashes when extending a selection by word with Ctrl+Shift+Right. Steps: - new workspace - copy attachment into clipboard - paste to Package Explorer - set caret to before first 'res.add(...' - press Ctrl+Shift+Arrow_Right until selection is 'res.add(new BindingProperty(this, "CONSTANT VALUE", const' (the editor automatically scrolls, so you will only see '(new BindingProperty(this, "CONSTANT VALUE", const' selected) - now repeatedly press Ctrl+Shift+Arrow_Right, then Ctrl+Shift+Arrow_Left to include/exclude 'Val ' => The whole editor area and the horizontal scroll bar flash on every keystroke
|
2007-04-02 12:23:32
| 1,175,530,000 |
resolved fixed
|
b38bfba
| 1,178,230,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,047 | 178,779 |
Bug 178779 [typing] IAE in JFaceTextUtil.getPartialTopIndex()
|
3.3M5 While the projection viewer is handling widget disposal: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:3462) at org.eclipse.swt.SWT.error(SWT.java:3401) at org.eclipse.swt.SWT.error(SWT.java:3372) at org.eclipse.swt.custom.StyledText.getOffsetAtLine(StyledText.java:3711) at org.eclipse.jface.text.JFaceTextUtil.getPartialTopIndex(JFaceTextUtil.java:94) at org.eclipse.jface.text.JFaceTextUtil.getPartialTopIndex(JFaceTextUtil.java:142) at org.eclipse.jface.text.source.AnnotationPainter.getInclusiveTopIndexStartOffset(AnnotationPainter.java:1222) at org.eclipse.jface.text.source.AnnotationPainter.computeClippingRegion(AnnotationPainter.java:1374) at org.eclipse.jface.text.source.AnnotationPainter.catchupWithModel(AnnotationPainter.java:439) at org.eclipse.jface.text.source.AnnotationPainter.deactivate(AnnotationPainter.java:1533) at org.eclipse.jface.text.PaintManager.inputDocumentAboutToBeChanged(PaintManager.java:365) at org.eclipse.jface.text.TextViewer.fireInputDocumentAboutToBeChanged(TextViewer.java:2644) at org.eclipse.jface.text.TextViewer.setDocument(TextViewer.java:2699) at org.eclipse.jface.text.source.SourceViewer.setDocument(SourceViewer.java:518) at org.eclipse.jface.text.source.projection.ProjectionViewer.setDocument(ProjectionViewer.java:370) at org.eclipse.jface.text.source.SourceViewer.setDocument(SourceViewer.java:459) at org.eclipse.jface.text.TextViewer.handleDispose(TextViewer.java:1777) at org.eclipse.jface.text.source.SourceViewer.handleDispose(SourceViewer.java:640) at org.eclipse.jface.text.source.projection.ProjectionViewer.handleDispose(ProjectionViewer.java:1341) at org.eclipse.jface.text.TextViewer$2.widgetDisposed(TextViewer.java:1685) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:116) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:947) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:706) at org.eclipse.swt.custom.StyledText.handleDispose(StyledText.java:4948) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4815) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:943) at org.eclipse.swt.widgets.Widget.release(Widget.java:740) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:117) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:117) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:636) at org.eclipse.swt.widgets.Widget.release(Widget.java:743) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:410) at org.eclipse.ui.part.MultiPageEditorPart.removePage(MultiPageEditorPart.java:673) at org.eclipse.ui.forms.editor.FormEditor.removePage(FormEditor.java:381) [...]
|
2007-03-22 09:15:39
| 1,174,570,000 |
resolved fixed
|
0adc24b
| 1,178,220,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
2,048 | 185,263 |
Bug 185263 Link widget calculates incorrect width when "&" is part of text
|
Build ID: M20060629-1905 Steps To Reproduce: Try this: Link link = new Link (parent, SWT.NONE); link.setText ("Me && I"); The calculated width is incorrect and the "I" gets clipped. (you can put the <a> link brackets around it, but that doesn't matter). The text displayed is correctly: "Me & I" More information: This happens for Windows under the conditions of v6 controls. The fix for this case should be quite simple: in Link.computeSize, you need to add "DT_NOPREFIX" as a flag to "OS.DrawText (hDC, buffer, buffer.length (), rect, flags);" Alternatively you could let the SysLink control tell you the preferred size. See LM_GETIDEALSIZE. The problem occurs because parse() is called on "Me && I", which correctly produces "Me & I", the display string. However, OS.DrawText will convert the & into a mnemonic, shortening the string to "Me I" (with an underline). Since the SysLink control is being used to render the full text and does the "<a>" and mnemonic parsing anyway, seems like the safest fix would be to use LM_GETIDEALSIZE and let it tell you the size.
|
2007-05-02 20:11:45
| 1,178,150,000 |
resolved fixed
|
acba9fa
| 1,178,220,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java
|
SWT
|
2,049 | 185,090 |
Bug 185090 Cannot Start (VM crash)
|
I20070501-0010 and I200702-0010 (works with I20070430-0800) On our Suse Linux box we get VM crash each time. This happens with our existing but also new workspaces. Java VM: Java HotSpot(TM) Client VM (1.5.0_10-b02 mixed mode)
|
2007-05-02 08:39:52
| 1,178,110,000 |
verified fixed
|
c7a2d35
| 1,178,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java
|
SWT
|
2,050 | 184,266 |
Bug 184266 [Viewers] Tree on Extensions page initially scrolled to the right
|
I20070424-0930 - new workspace - import org.eclipse.jdt.ui as binary - open plugin.xml - go to Extensions tab - close editor - go back (Alt+Left) => tree is scrolled to the right; icons and '+'es not visible
|
2007-04-26 12:25:19
| 1,177,600,000 |
verified fixed
|
a2fe246
| 1,178,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
2,051 | 184,922 |
Bug 184922 GTK: crash when calling Table.getItemHeight()
|
Using SWT from HEAD, I got a crash. It is reproducible by playing around with the latest version of Quick Access (Ctrl-3). 1XMCURTHDINFO Current Thread Details NULL ---------------------- 3XMTHREADINFO "main" (TID:1006B9B8, sys_thread_t:8076848, state:R, native ID:401832A0) prio=6 4XESTACKTRACE at org.eclipse.swt.internal.C.memmove(Native Method) 4XESTACKTRACE at org.eclipse.swt.widgets.Table.rendererGetSizeProc(Table.java:2397) 4XESTACKTRACE at org.eclipse.swt.widgets.Display.rendererGetSizeProc(Display.java:1302) 4XESTACKTRACE at org.eclipse.swt.internal.gtk.OS._gtk_tree_view_column_cell_get_size(Native Method) 4XESTACKTRACE at org.eclipse.swt.internal.gtk.OS.gtk_tree_view_column_cell_get_size(OS.java:8130) 4XESTACKTRACE at org.eclipse.swt.widgets.Table.getItemHeight(Table.java:1438) 4XESTACKTRACE at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.computeNumberOfItems(QuickAccessDialog.java:364) 4XESTACKTRACE at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.refresh(QuickAccessDialog.java:371)
|
2007-05-01 12:45:37
| 1,178,040,000 |
resolved fixed
|
61fb4c4
| 1,178,120,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,052 | 184,836 |
Bug 184836 Missing shell activation events
|
When swapping between eclipse and other apps (xterm, firefox) using ALT+TAB I get into this state where eclipse won't accept key strokes any more. typing in a java editor won't do anything. But clicking through eclipse (like the outline view) works. The Shell is active (highlighted) but the tab of the active view/editor within eclipse is coloured like it is still inactive. I've also see the tab remain coloured active when I TAB out of eclipse. But if I click out of eclipse, it is properly grey. PW
|
2007-05-01 07:16:09
| 1,178,020,000 |
verified fixed
|
a3631b7
| 1,178,050,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
|
SWT
|
2,053 | 184,774 |
Bug 184774 Copy-paste error in SWT.RIGHT javadoc
|
The javadoc comments for SWT.RIGHT appear to be copied and pasted from SWT.LEFT: "This is a synonym for TRAIL (value is 1<<14)" 1<<14 is the value of SWT.LEAD. The value of SWT.TRAIL is 1<<17.
|
2007-04-30 15:34:31
| 1,177,960,000 |
resolved fixed
|
4af2fc6
| 1,177,960,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
|
SWT
|
2,054 | 183,830 |
Bug 183830 "Xlib: unexpected async reply" and deadlock in GLX.glXMakeCurrent(int, int, int)
|
Every so often our OpenGL program just locks up under Linux. "Xlib: unexpected async reply" is printed to stderr, and if we pause the program in the debugger we find that the main thread is deadlocked in GLCanvas.setCurrent()->GLX.glXMakeCurrent(int, int, int).
|
2007-04-24 13:21:28
| 1,177,440,000 |
resolved fixed
|
8cddb02
| 1,177,950,000 |
bundles/org.eclipse.swt/Eclipse SWT OpenGL/glx/org/eclipse/swt/internal/opengl/glx/GLX.java
|
SWT
|
2,055 | 167,686 |
Bug 167686 Background/Foreground Color style bit not respected without a border/scroll bar
|
I20061212-0010 Seen on both Solaris and Linux GTK Run the control example, go to Canvas. Click on H_SCROLL and V_SCROLL. Set background color and foreground color to something noticeable. Turn off H_SCROLL and V_SCROLL -> color goes away. Turn them back on -> color comes back. Turn them off and turn on BORDER -> color comes back.
|
2006-12-12 12:21:36
| 1,165,940,000 |
resolved fixed
|
e1807a2
| 1,177,710,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
2,056 | 184,385 |
Bug 184385 SetItemCount() in Table extremly slow on MacOSX when lowering itemcount
|
Build ID: I20070323-1616 Steps To Reproduce: 1. Create a virtual table, set itemcount to 30000 items. 2. Now set itemcount to 5 3. Go drink a coffee, you have enough time until the UI is ready again. More information: mac only, tested with 3.3M6, and 3.2
|
2007-04-27 05:00:52
| 1,177,660,000 |
resolved fixed
|
feb4a52
| 1,177,700,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java
|
SWT
|
2,057 | 160,292 |
Bug 160292 NPE when opening existing workspace on Motif
| null |
2006-10-10 07:57:24
| 1,160,480,000 |
resolved fixed
|
1f1c8ee
| 1,177,690,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java
|
SWT
|
2,058 | 172,792 |
Bug 172792 Pressing Ctrl+PageUp or PageDown in Search Window crashes JVM
|
Build ID: M20060921-0945 Steps To Reproduce: 1. Open search (Ctrl+H) 2. Press Ctrl+PageUp or Ctrl+PageDown 3. JVM crashes More information: This is on Linux, Fedora Core 6, using JDK 1.6.0 (Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing))
|
2007-02-04 13:47:35
| 1,170,610,000 |
resolved fixed
|
ebe9f6c
| 1,177,610,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/TabFolder.java
|
SWT
|
2,059 | 178,495 |
Bug 178495 [Browser] Control-N from Browser causes multiple errors.
|
Build ID: Eclipse3.2.1 Steps To Reproduce: 1.Create a Browser control with an url. 2.Click in the body (not on a link) in Browser - Focus needs to be in the body to reproduce 3.Get several error messages - "register faik". Click ok at each one to continue 4.Then get error - Java Plug-in Fatal Error - Cannot load class sun/plugin/JavaRunTime. More information: I've reproduced on a couple of machines. On others, it doesn't happen. So I don't know how to attach an image. I will describe the popup dialog message: Title: Java(TM) Plug-in Fatal Error Cannot load class sun/plugin/JavaRuntime. The Bridge was installed at <c:\progra~1\Java\J2RE14~1.2_0> but the class is not there Modify the registry key to reflect the new bridge location The key is HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in or change your classpath to include the new directory please consult the documentation for more information.
|
2007-03-21 04:30:39
| 1,174,470,000 |
resolved fixed
|
54a06f0
| 1,177,600,000 |
bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/WebSite.java
|
SWT
|
2,060 | 136,332 |
Bug 136332 Shell.getSize is wrong for non-decorated shells
| null |
2006-04-12 10:26:23
| 1,144,850,000 |
resolved fixed
|
15ddb33
| 1,177,530,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Shell.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.