id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
3,661 | 38,626 |
Bug 38626 DirectoryDialog getFilterPath() always returns null
|
OS: Red Hat 8, Gnome Eclipse 2.1 M1 (Thu, 5 Jun 2003 -- 17:37 (-0400)) I am using the DirectoryDialog getFilterPath() method to get the directory the user selected after open() returns. It works fine on Windows XP but on the version of Linux I am using it always returns null. I am selecting a directory in the dropdown and then selecting a subdirectory in the list.
|
2003-06-07 16:08:23
| 1,055,020,000 |
resolved fixed
|
6b7d469
| 1,056,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/DirectoryDialog.java
|
SWT
|
3,662 | 39,078 |
Bug 39078 FormData throws "Widget is disposed" when it's widget is dispose()d
|
FormData.getXXXAttachment() throws SWTException "Widget is disposed" because it doesn't do any isDisposed() checks. I originally thought hiding the component first and forcing a layout(true) would fix it, but that must have been some other problem. I am attaching a snippit.
|
2003-06-18 13:28:34
| 1,055,960,000 |
resolved fixed
|
24489ec
| 1,056,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormData.java
|
SWT
|
3,663 | 38,987 |
Bug 38987 PocketPC: MULTI Text control ES_WANTRETURN/_TAB_NEXT problem
|
PocketPC: MULTI Text control ES_WANTRETURN/_TAB_NEXT problem On PocketPC, when having a MULTI Text control with or without scrollbars, with or without wrap, etc. -- you cannot make it accept plain [Enter] key to break lines. Only Ctrl+Enter (Ctrl+M, Ctrl+J) would work. What helps is an internal OS hack: int oldBits = OS.GetWindowLong (text.handle, OS.GWL_STYLE); int newBits = oldBits | 0x1000; // ES_WANTRETURN OS.SetWindowLong (text.handle, OS.GWL_STYLE, newBits); Similar situation with the TAB key: we want it act regularly by inserting a TAB character into the text. But there is no "WANTTAB" flag. There is this Traverse functionality by adding a listener and in the handler to set the doit field for the event. However, in PocketPC, neither 'false' or 'true' has any effect on reviving the TAB (or ENTER). So the only solution for TAB is in the same Traverse handler to Text.insert() the character manually. This is a workaround and it behaves differently on the Desktop, however it should be consistent. These problems with NOT getting either LF or TAB character do not appear on desktop SWT. So this may be just a bug in PocketPC.
|
2003-06-16 18:23:51
| 1,055,800,000 |
resolved fixed
|
e08f800
| 1,055,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,664 | 38,412 |
Bug 38412 [Actions] Navigator tree cell editors too small
|
I20030528 MacOS X 10.2.6 - start Eclipse - in the Navigator select any resource - from the context menu select "Rename" Observe: the cell editor field is too small and leaves only the upper half of the text visible.
|
2003-06-04 10:50:47
| 1,054,740,000 |
verified fixed
|
dae1c91
| 1,055,890,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,665 | 34,330 |
Bug 34330 Problem with TreeEditor when expanding tree item
| null |
2003-03-10 10:33:30
| 1,047,310,000 |
resolved fixed
|
94a6308
| 1,055,880,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ControlEditor.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTreeEditor.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java
|
SWT
|
3,666 | 38,344 |
Bug 38344 StyledText - exception when selecting lines in WRAP mode
| null |
2003-06-02 15:43:45
| 1,054,580,000 |
resolved fixed
|
b87ca47
| 1,055,800,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,667 | 37,782 |
Bug 37782 Shell setMinimized(true) doesn't deactivate Shell
|
Calling setMinimized(true) on a shell doesn't behave in the same way as clicking on the minimize button of the title bar. Specifically, calling setMinimized doesn't cause the shell to become deactivated. The following code snipped illustrates the problem: public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display, SWT.SHELL_TRIM); shell.setLayout(new FillLayout(SWT.HORIZONTAL)); final Button current = new Button(shell, SWT.PUSH); current.setText("Minimize (Current)"); final Button proposed = new Button(shell, SWT.PUSH); proposed.setText("Minimize (Proposed)"); Listener l = new Listener() { public void handleEvent(Event e) { System.out.print("Minimize "); if(e.widget == current) { System.out.println(" (Current)"); shell.setMinimized(true); } else if (e.widget == proposed) { System.out.println(" (Proposed)"); OS.SendMessage(shell.handle, OS.WM_SYSCOMMAND, OS.SC_MINIMIZE, 0); } System.out.println("Active Shell: " + display.getActiveShell()); } }; current.addListener(SWT.Selection, l); proposed.addListener(SWT.Selection, l); shell.addListener(SWT.Deactivate, new Listener() { public void handleEvent(Event e) { System.out.println("Shell Deactivated"); } }); shell.pack(); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } display.dispose (); } Clicking the "Minimize (Current)" button causes the shell to be minimized but it remains active. Hence, no deactivate event is fired (but one is fire when you click on the shell in the taskbar to restore it!), and the application under the shell (if there is one) doesn't become active. Clicking on the "Minimize (Proposed)" button minimizes the shell and does cause it to be become deactivated. Hence, the above issues are resolved. My proposal is that the setMinimized method in Decorations be changed from: public void setMinimized (boolean minimized) { checkWidget (); if (OS.IsWinCE) return; swFlags = OS.SW_RESTORE; if (minimized) swFlags = OS.SW_SHOWMINNOACTIVE; if (!OS.IsWindowVisible (handle)) return; if (minimized == OS.IsIconic (handle)) return; OS.ShowWindow (handle, swFlags); OS.UpdateWindow (handle); } to public void setMinimized (boolean minimized) { checkWidget (); if (OS.IsWinCE) return; swFlags = OS.SW_RESTORE; if (minimized) swFlags = OS.SW_SHOWMINNOACTIVE; if (!OS.IsWindowVisible (handle)) return; if (minimized == OS.IsIconic (handle)) return; int flag = (minimized) ? OS.SC_MINIMIZE : OS.SC_RESTORE; OS.SendMessage(handle, OS.WM_SYSCOMMAND, flag, 0); }
|
2003-05-16 14:42:43
| 1,053,110,000 |
resolved fixed
|
b308d21
| 1,055,780,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
|
SWT
|
3,668 | 38,912 |
Bug 38912 DBCS: input special symbol breaks input method on ja_JP
|
Trying to input special symbols using kinput2 (default linux input method for ja_JP on Linux) breaks the input method on the widget. Steps 1) Focus a Text widget 2) Start input method (Shift+Space) 3) Open Auxiliary Control Window (Insert) 4) Choose a symbol and press enter 5) Close the input method (Shift+Space) Bug: - The symbol is insert on the widget twice - Warning on the console: (<unknown>:22311): GLib-GObject-WARNING **: gsignal.c:1972: handler `69' of instance `0x81321b8' is not blocked - From now on any input (SBCS or DBCS) that goes thru the commit won't be insert on the widget. For the StyledText inserting symbols does not work but attemping to do so does not cause the input method to stop work. Works on Motif.
|
2003-06-13 16:56:47
| 1,055,540,000 |
resolved fixed
|
66ce2b4
| 1,055,540,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,669 | 38,353 |
Bug 38353 crash in OS.gtk_main_iteration() when double-click disabled text widget
|
using linux redhat 8.0 gtk eclipse base build wswb-2.1.1-M200305211757 I have a view that contains a disabled styled text widget (i call setEnabled (false) on the widget). I notice that if the view does not have focus, then i double-click (or sometimes triple click, or just keep clicking till crash) into the view, my workbench crashes! If the view already has focus, and I triple-click the text widget, a cursor appears and i can type in the widget like it is enabled. this problem does not occur in linux motif/windows Here is what i get: Unhandled exception Type=GPF vmState=0xffffffff Target=20030502 (Linux 2.4.18-27.8.0 x86) eax: 0x00000005 ebx: 0x4213820c ecx: 0x00000000 edx: 0x00000000 esi: 0x0000000d edi: 0x00000000 ebp: 0xbfffdfe0 esp: 0xbfffdfc8 es: 0x0000002b ds: 0x0000002b eip: 0x42075a29 eflags: 0x00010202 cs: 0x00000023 ss: 0x0000002b Thread: main (priority 5) (LOCATION OF ERROR) 008f org/eclipse/swt/internal/gtk/OS.gtk_main_iteration()I (@40903c17) 002f org/eclipse/swt/widgets/Display.readAndDispatch()Z (@4091c713) 000d org/eclipse/ui/internal/Workbench.runEventLoop (Lorg/eclipse/jface/window/Window$IExceptionHandler;)V 00c9 org/eclipse/ui/internal/Workbench.run(Ljava/lang/Object;) Ljava/lang/Object; 0039 org/eclipse/core/internal/boot/InternalBootLoader.run (Ljava/lang/String;Ljava/net/URL;Ljava/lang/String; [Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object; 0006 org/eclipse/core/boot/BootLoader.run (Ljava/lang/String;Ljava/net/URL;Ljava/lang/String; [Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Object; 0007 java/lang/reflect/AccessibleObject.invokeL(Ljava/lang/Object; [Ljava/lang/Object;)Ljava/lang/Object; 0171 java/lang/reflect/Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;) Ljava/lang/Object; 00f6 org/eclipse/core/launcher/Main.basicRun([Ljava/lang/String;) Ljava/lang/Object; 000e org/eclipse/core/launcher/Main.run([Ljava/lang/String;)Ljava/lang/Object; 0026 org/eclipse/core/launcher/Main.main([Ljava/lang/String;)V
|
2003-06-02 19:29:47
| 1,054,600,000 |
resolved fixed
|
6bf6f7f
| 1,055,520,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java
|
SWT
|
3,670 | 38,841 |
Bug 38841 NPE in Widget.filters
|
build I20030610 Noticed the following in my log after shutdown. Sorry, no idea how it was triggered. !ENTRY org.eclipse.ui 4 4 Jun 11, 2003 16:25:50.284 !MESSAGE Unhandled exception caught in event loop. !ENTRY org.eclipse.ui 4 0 Jun 11, 2003 16:25:50.284 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at java.lang.NullPointerException.<init>(NullPointerException.java:63) at org.eclipse.swt.widgets.Widget.filters(Widget.java) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:986) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1633) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:2936) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:1533) at org.eclipse.swt.widgets.Control.windowProc(Control.java) at org.eclipse.swt.widgets.Display.windowProc(Display.java) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1399) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1382) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at java.lang.reflect.AccessibleObject.invokeImpl(Native Method) at java.lang.reflect.AccessibleObject.invokeL(AccessibleObject.java:207) at java.lang.reflect.Method.invoke(Method.java:271) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583)
|
2003-06-12 11:19:47
| 1,055,430,000 |
resolved fixed
|
916a77e
| 1,055,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,671 | 35,183 |
Bug 35183 DBCS: Set text generates Index of Bounds exception using 2.0 NLS language pack
|
Driver: RC2 Java : Sun Java 1.3.1_07 OS: Solaris Language: ja_JP I got errors in the .log file during launching the WB with NLS language package, and WB did not launch. Steps 1. Extract the eclipse-SDK.zip 2. Extract the NLS Language package (eclipse-nls-SDK-2.0.x.zip) under the same directory 3. Launch the eclipse (./eclipse -vm /......) Then I got the error dialog and got errors in the .log file. WB startup failed.
|
2003-03-17 21:56:07
| 1,047,960,000 |
closed fixed
|
228bb4e
| 1,055,280,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/internal/Converter.java
|
SWT
|
3,672 | 38,385 |
Bug 38385 Japanese Input (IME) not doesn't come up
|
build 2.1.1 (20030602) Changes to fix a GP and focus trouble on Motif work in Linux but broke the Japanese Input on AIX, Solaris and possibly HP (we can't test this). SSQ and SN are working on a fix. We should do this for 2.1.1.
|
2003-06-03 16:28:31
| 1,054,670,000 |
resolved fixed
|
aa4a6db
| 1,055,190,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Caret.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Label.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,673 | 29,534 |
Bug 29534 Override default behavior of 'F10' key
|
I'm writing a terminal emulation application that emulates terminals where the functions keys are valid key strokes, including 'F10'. I need to be able to override the default behavior of the 'F10' key to have terminal applications run properly. As for the special key sequences (Ctrl + Esc), the default behavior does not need to be overridden because they are not valid user inputs on a terminal. Attached is a previous discussion with Steve Northover: I agree you have the case where you need to see F10. Please enter a bugzilla report describing your case to avoid me telling you later that you don't really need to do this. The problem I see is that there are all kinds of special key sequences on the various platforms that do magic things. We might be able to work around F10 on Windows but what about Ctrl+Esc? The list goes on, can change between operating system releases and is not well documented. Let's continue the discussion in the bug report. Please paste in this text. Thanks.
|
2003-01-15 09:18:26
| 1,042,640,000 |
resolved fixed
|
123ea21
| 1,054,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,674 | 38,433 |
Bug 38433 Editor titlebars are not painted
|
Build 20030604 The editor titlebar is not correctly painted. Only some of the editors actually appear. Also, the bottom 1/4 of viewpart titlebars are not painted.
|
2003-06-04 16:00:36
| 1,054,760,000 |
resolved fixed
|
87ab568
| 1,054,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,675 | 35,493 |
Bug 35493 OleClientSite hang
|
I20030317 Calling SHOW on Word after shell is open causes a hang. public static void main(String[] args) { Display disp = new Display(); Shell mainWnd = new Shell(disp); mainWnd.setText("OleTest"); mainWnd.setLayout(new FillLayout()); OleFrame frame = new OleFrame(mainWnd, SWT.BORDER); String progID = "Word.Document"; OleClientSite fSite = new OleClientSite(frame, SWT.NONE, progID); // fSite.doVerb(OLE.OLEIVERB_SHOW); // call doVerb before shell is open and OK mainWnd.open(); fSite.doVerb(OLE.OLEIVERB_SHOW); //call doVerb after shell is open and GP while (!mainWnd.isDisposed()) { if (!disp.readAndDispatch()) { disp.sleep(); } } }
|
2003-03-21 12:18:57
| 1,048,270,000 |
resolved fixed
|
a2121a3
| 1,054,820,000 |
bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java
|
SWT
|
3,676 | 21,191 |
Bug 21191 Decorations.setImage() could do a better job with masked images
|
The current win32 code for setImage in the SWT.BITMAP case does a crude job of synthesising an icon from the bitmap, when in many cases it could do much better if it made use of the mask from the bitmap. The current code uses a blank mask, genererated like: int hMask = OS.CreateBitmap (bm.bmWidth, bm.bmHeight, 1, 1, lpvBits); But a simple, higher level transformation can yield a nice icon from a .gif (which I think is the most image common case), like this sample: ImageData id = new ImageData("icons/lock-doc-16x16.gif"); shell.setImage(new Image(display, id, id.getTransparencyMask())); I would suggest that Decorations.setImage() simply make use of the Image's ability to generate an icon using its mask, when available.
|
2002-07-02 18:36:18
| 1,025,650,000 |
resolved fixed
|
0ea92b6
| 1,054,590,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
|
SWT
|
3,677 | 38,331 |
Bug 38331 [portability] Inconsistent handling of Image on different platforms
|
Setting a MenuItem with an Image with transparency on GTK always works. On win32, it only works if you jump through hoops and completely guess at how SWT maps the various Image constructors into win32 resources. The inconsistency is bad, but so is the subtlety of the necessary workaround. Here is a snippet, where "transparent.gif" is a GIF with some transparency in it: public class IconVsImage { public static void main(String[] args) { Display display = Display.getDefault(); Shell shell = new Shell(display); Menu menu = new Menu(shell, SWT.BAR); shell.setMenuBar(menu); MenuItem file = new MenuItem(menu, SWT.CASCADE); file.setText("File"); Menu fileMenu = new Menu(file); file.setMenu(fileMenu); MenuItem item1 = new MenuItem(fileMenu, 0); item1.setText("item 1"); MenuItem item2 = new MenuItem(fileMenu, 0); item2.setText("item 2"); Image image1 = new Image(null, IconVsImage.class.getResourceAsStream ("transparent.gif")); //How does the client know that this is necessary on win32?? Image image2 = new Image(null, image1.getImageData(), image1.getImageData().getTransparencyMask()); item1.setImage(image1); item2.setImage(image2); shell.setSize(600, 500); shell.open(); while (!shell.isDisposed()) if (!display.readAndDispatch()) display.sleep(); } }
|
2003-06-02 11:25:02
| 1,054,570,000 |
resolved wontfix
|
aa14e77
| 1,054,590,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,678 | 38,337 |
Bug 38337 GC.drawRoundedRectangle(...) method doesn't include the right and bottom edge
|
The GC.drawRoundedRectangle(...) method doesn't include the right and bottom edge. I'm using WinXP and swt-win32-2133.dll. This behavior is inconsistent with the other APIs such as drawRectangle, drawOval, etc..., that include the bottom and right edge, and on GTK the rounded rectangle is drawn correctly with all 4 edges included. For the fill API GC.fillRoundRectangle(...) that should exclude the edges, it actually doubles up and excludes two pixels of theright and bottom edges.
|
2003-06-02 12:42:48
| 1,054,570,000 |
resolved fixed
|
45f9103
| 1,054,580,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,679 | 38,242 |
Bug 38242 Border width on Table incorrect - creates unwanted scrollbars
|
It appears that on Windows the Table class always allocates a small border, with a width equal to the value of OS.GetSystemMetrics (OS.SM_CXEDGE), whether you explicitly set a border or not. If you don't set a border then the actual physical border is equal to this value. If you set a border then this value has to be added to the reported value. The current implementation of getBorderWidth(), inherited from the Control class, doesn't take this into account. This results id that the preferred size of the Table is being slightly underestimated, which causes unwanted scrollbars. Here's a test case that shows the problem: public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Broken Table Border?"); Table table = null; String mode = args[0]; if("current".equals(mode)) { // this will have an unwanted vertical scrollbar table = new Table(shell, SWT.NONE); } else if("proposed_noborder".equals(mode)) { table = new ProposedFixTable(shell, SWT.NONE); } else if("proposed_border".equals(mode)) { table = new ProposedFixTable(shell, SWT.BORDER); } new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem1"); new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem2"); new TableItem(table,SWT.NONE).setText("ReallyReallyLongTableItem3"); table.setSize(table.computeSize(100, SWT.DEFAULT)); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } static public class ProposedFixTable extends Table { public ProposedFixTable(Composite parent, int style) { super(parent, style); } protected void checkSubclass () {} public int getBorderWidth () { int borderWidth = super.getBorderWidth(); borderWidth += OS.GetSystemMetrics (OS.SM_CXEDGE)/2; return borderWidth; } }
|
2003-05-29 14:56:25
| 1,054,230,000 |
resolved fixed
|
3269f2b
| 1,054,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
|
SWT
|
3,680 | 36,636 |
Bug 36636 StyledText - Printing could end pages twice
|
build R2.1 In StyledText.Printing.print() we have a test to see if we need to call endPage on a partially printed page when printing is done. We also close pages while printing lines when a full page has been printed. The test to close a partial page could theoretically close the page again when it was already closed based on completing a full page. The test is off by two lines. In practice this is unlikely to happen since the page size would have to fall right between these two lines. The effect would be a blank page inserted after every printed page.
|
2003-04-17 14:25:20
| 1,050,600,000 |
resolved fixed
|
d97d105
| 1,054,310,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,681 | 38,221 |
Bug 38221 Index out of bounds from Combo.select()
|
The Javadoc for the org.eclipse.swt.widgets.Combo.select() methods says that indecies that are out of range are ignored by on the Mac platform I get the following exception: java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2318) at org.eclipse.swt.SWT.error(SWT.java:2262) at org.eclipse.swt.widgets.Widget.error(Widget.java:506) at org.eclipse.swt.widgets.Combo.select(Combo.java:1155) I found the following line in the source code, which I assume is where the exception is being thrown: if (0 > index || index >= count) error (SWT.ERROR_INVALID_RANGE); This causes the Mac platform to behave differently then other platforms and from the way the document says it should work.
|
2003-05-28 22:56:04
| 1,054,180,000 |
resolved fixed
|
03027a3
| 1,054,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,682 | 38,076 |
Bug 38076 Combo doesn't calculate its size properly when only text is set.
|
Debian Linux, GTK 2.2.1-6. See attached screenshots. The pulldown arrow seems too big and the width is too small for its content when expanded.
|
2003-05-24 09:31:08
| 1,053,780,000 |
resolved fixed
|
f1d57a4
| 1,054,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,683 | 23,787 |
Bug 23787 [Properties dialog] Project Properties -> Info page should not use text fields
|
Integration build 09/17. Looks bad on all motif platforms. - select a Project, right-click -> Properties - on the subsequent Info page the read-only fields (the values for Path, Type, etc.) are created as read-only Text fields instead of Labels. I guess this is so that their values can be selected and copied by the user (?) - this looks fine on windows, but on motif these text fields all get automatic borders, which identify them as user input targets. Additionally, on Solaris/AIX/HP-UX these fields have different coloured backgrounds which make them stand out much worse
|
2002-09-18 16:25:15
| 1,032,380,000 |
resolved fixed
|
26b2de3
| 1,054,160,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,684 | 33,359 |
Bug 33359 [JUNIT] Scrollbar tests fail
|
I20030221 Scrollbar JUnit tests failing: 1)Test_org_eclipse_swt_widgets_ScrollBar.test_setThumbI line 817 junit.framework.AssertionFailedError: expected:<0> but was:<10> 2) Test_org_eclipse_swt_widgets_ScrollBar.test_setSelectionI line 801 junit.framework.AssertionFailedError: expected:<0> but was:<10> 3) Test_org_eclipse_swt_widgets_ScrollBar.test_setMinimumI line 767 junit.framework.AssertionFailedError: expected:<0> but was:<10> 4) Test_org_eclipse_swt_widgets_ScrollBar.test_setMaximumI line 751 junit.framework.AssertionFailedError: expected:<0> but was:<10>
|
2003-02-26 16:09:42
| 1,046,290,000 |
resolved fixed
|
6772285
| 1,054,060,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ScrollBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Slider.java
|
SWT
|
3,685 | 38,161 |
Bug 38161 MessageDialog does not accept null shell
|
2.1 The Javadoc for MessageDialog's constructors states: Note: Currently, null can be passed in for the parent. ... However, this is no longer the case. In 2.1, trying this results in an NPE. I actually wanted this since I need to bring up a dialog on startup to notify the user of a workspace version incompatibility. There are no other shells around at this point (or even a display). Now I have to create a bogus shell just to avoid the NPE.
|
2003-05-27 12:52:26
| 1,054,050,000 |
resolved wontfix
|
d173a32
| 1,054,050,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Dialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ColorDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java
|
SWT
|
3,686 | 33,164 |
Bug 33164 [JUNIT] Scale setMinimum and setMaximum fail
|
I20030221 1) Test_org_eclipse_swt_widgets_Scale.test_setMinimumI junit.framework.AssertionFailedError: expected:<100> but was:<10> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at junit.framework.Assert.assertEquals(Assert.java:207) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.check(Test_org_eclipse _swt_widgets_Scale.java:60) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.report(Test_org_eclipse _swt_widgets_Scale.java:55) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.test_setMinimumI(Test_ org_eclipse_swt_widgets_Scale.java:605) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.runTest(Test_org_eclips e_swt_widgets_Scale.java:668) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67) 2) Test_org_eclipse_swt_widgets_Scale.test_setMaximumI junit.framework.AssertionFailedError: expected:<10> but was:<100> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at junit.framework.Assert.assertEquals(Assert.java:207) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.check(Test_org_eclipse _swt_widgets_Scale.java:59) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.report(Test_org_eclipse _swt_widgets_Scale.java:55) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.test_setMaximumI(Test_ org_eclipse_swt_widgets_Scale.java:586) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scale.runTest(Test_org_eclips e_swt_widgets_Scale.java:667) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67)
|
2003-02-25 17:36:13
| 1,046,210,000 |
resolved fixed
|
47e220c
| 1,053,980,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/ProgressBar.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Scale.java
|
SWT
|
3,687 | 38,055 |
Bug 38055 Shell Title bar displayed when only SWT.REZISE.
|
When I create a shell with only SWT-RESIZE and on other styles I get a menu/title bar at the top. But if I resize the window the menu/title bar disappears. If seem sthe bar should not appear in the first place. public static void main(String[] args) { Shell shell = new Shell(SWT.RESIZE); shell.open(); Display display = shell.getDisplay(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep(); } } }
|
2003-05-23 12:01:01
| 1,053,710,000 |
resolved fixed
|
90b0c81
| 1,053,960,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,688 | 24,700 |
Bug 24700 Text: Compute Size error
|
Eclipse 20021009 Open the properties dialog for any package in linux-GTK, note the size of the text fields. (Path, type, location, last modified). Last modified is my favourite, nice wrapping. Compare with eclipse R2.0.1 (20020829) if you don't see the problem.
|
2002-10-11 11:01:26
| 1,034,350,000 |
resolved fixed
|
edb7cab
| 1,053,720,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/Text.java
|
SWT
|
3,689 | 34,634 |
Bug 34634 "Select a type" hierarchy view message cut off
|
build RC2 The message displayed in the hierarchy view when no type is selected is not fully visible. It is cut off vertically on the right side.
|
2003-03-11 11:04:13
| 1,047,400,000 |
resolved fixed
|
ac1e421
| 1,053,640,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,690 | 37,941 |
Bug 37941 Coolbar setMinimumSize introduces chevrons on Linux
|
Build 20030516 Run the attached test case. Press the Set Size button. Notice that the size of the coolitems is changed and chevrons are introduced. Doing the same on Windows properly maintains the coolbar layout.
|
2003-05-21 16:15:14
| 1,053,550,000 |
resolved fixed
|
785983f
| 1,053,630,000 |
bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java
|
SWT
|
3,691 | 33,080 |
Bug 33080 [JUNIT]Shell.isMinimized() returns false after shell.setMinized(true)
|
I20030221 Test_org_eclipse_swt_widgets_Decorations.test_setMinimizedZ Shell.isMinimized returns false after shell.setMinimized(true). junit.framework.AssertionFailedError: :2: at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Decorations.test_setMinimized Z(Test_org_eclipse_swt_widgets_Decorations.java:158) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Decorations.runTest(Test_org _eclipse_swt_widgets_Decorations.java:243) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Shell.runTest(Test_org_eclips e_swt_widgets_Shell.java:425) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67)
|
2003-02-25 14:10:04
| 1,046,200,000 |
resolved fixed
|
0178d9b
| 1,053,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,692 | 28,535 |
Bug 28535 rectangles with pensize > 1 draw at wrong position
|
Run the following snippet and observe that some rectangles are antialiased (but shouldn't): import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class StrokeRectTest { public static void main(String[] args) { Display display= new Display(); Shell shell= new Shell(display); shell.setLayout(new FillLayout()); final Canvas canvas= new Canvas(shell, SWT.NULL); canvas.addPaintListener( new PaintListener() { public void paintControl(PaintEvent event) { GC g= event.gc; for (int y= 1; y <= 10; y++) { for (int x= 1; x <= 10; x++) { g.setLineWidth(Math.min(x, y)); g.drawRectangle(x*50, y*50, 40, 40); } } } } ); shell.setSize(600, 600); shell.open(); while (! shell.isDisposed()) { if (! display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2002-12-17 12:05:06
| 1,040,140,000 |
resolved fixed
|
f55f8c2
| 1,053,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,693 | 33,166 |
Bug 33166 [JUNIT]Combo setLocation fails
|
I20030221 Test_org_eclipse_swt_widgets_Control.test_setLocationII junit.framework.AssertionFailedError: expected:<Point {8, 19}> but was:<Point {11, 22}> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:71) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Control.test_setLocationII(Test _org_eclipse_swt_widgets_Control.java:526) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Control.runTest(Test_org_ecli pse_swt_widgets_Control.java:810) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Scrollable.runTest(Test_org_e clipse_swt_widgets_Scrollable.java:70) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Composite.runTest(Test_org_ eclipse_swt_widgets_Composite.java:156) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Combo.runTest(Test_org_ecli pse_swt_widgets_Combo.java:681) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67)
|
2003-02-25 17:40:06
| 1,046,210,000 |
resolved fixed
|
a74352a
| 1,053,560,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,694 | 30,854 |
Bug 30854 [Encoding] DBCS: Encoding change at the Preferences cause core dump in motif
|
Language: Japanese Build driver: eclipse-SDK-I20030129-linux-motif OS: RedHat 8 JDK Ver.: IBM JDK1.3.1 + SR3 Summary: DBCS: Encoding change at the Preferences cause core dump in motif Steps to recreate problem: 1. Launch workbench with motif build on RedHat 8 JP 2. Create a Simple project 3. Import build.xml file 4. Open Preferences (Window -> Preferences) 5. Select Workbench -> Editors 6. Select "Others" of test file encoding and select "UTF-8" 7. Click OK 8. Open buildjp.xml and edit it 9. Save and Close the file 10. Open Preferences 11. Change the encoding to Default(EUC_JP) at the Workbench -> Editors , then click "OK" <<Error>> After step 11, the workbench core dump. <<Expected Result>> It should reset the encoding successfully without core dump.
|
2003-02-04 05:10:03
| 1,044,350,000 |
closed fixed
|
b56f97c
| 1,053,550,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,695 | 37,858 |
Bug 37858 Some SWT Labels draw text in white
|
I20030516 (or SWT HEAD) MacOS 10.2.6 - start Eclipse on new workspace - open New wizard - select Java / New Project - press Next Observe: two labels on wizard page are not readable since they draw the text in white.
|
2003-05-20 07:03:39
| 1,053,430,000 |
resolved fixed
|
6d97422
| 1,053,550,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/Control.java
|
SWT
|
3,696 | 37,874 |
Bug 37874 "Jumping" layout
|
I20030516 MacOS 10.2.6 Lots of relayout operations appear to be "jumpy" because an intermediate layout becomes visible. One good example is: - open preference dialog - select first node "Workbench" - use the arrow down key to move selection to next node Observe: on some layout changes the whole window contents (including the tree) first moves downward and immediately jumps back to the correct position. Sometimes even screen cheese remains in the top left corner (probably an interaction between tree selection rectangle and a tree repositioning)
|
2003-05-20 12:11:38
| 1,053,450,000 |
resolved fixed
|
4118bf6
| 1,053,470,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,697 | 35,657 |
Bug 35657 Eclipse crashes and throws exception when starting up in Chinese locales
|
Overview Description: For any Chinese locale on Sun Solaris 9, Eclipse will crash and throw a null pointer exception when the user attempts to start Eclipse in that environment. Steps to Reproduce: 1) Log into Solaris using any Chinese locale (e.g., zh_TW.BIG5, zh_CN.GB18030, zh). 2) Open a terminal session and start Eclipse. Actual Results: Eclipse crashed and threw the following exception: java.lang.ExceptionInInitializerError: java.lang.NullPointerException at org.eclipse.jface.preference.PreferenceConverter.<clinit>(PreferenceConverter.java:75) at org.eclipse.ui.internal.WorkbenchPlugin.initializeDefaultPreferences(WorkbenchPlugin.java:441) at org.eclipse.ui.plugin.AbstractUIPlugin.initializeDefaultPluginPreferences(AbstractUIPlugin.java:631) at org.eclipse.core.runtime.Plugin.getPluginPreferences(Plugin.java:347) at org.eclipse.ui.plugin.AbstractUIPlugin$CompatibilityPreferenceStore.initialize(AbstractUIPlugin.java:176) at org.eclipse.ui.plugin.AbstractUIPlugin.getPreferenceStore(AbstractUIPlugin.java:568) at org.eclipse.ui.internal.Workbench.getPreferenceStore(Workbench.java:701) at org.eclipse.ui.internal.Workbench.init(Workbench.java:844) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1373) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:845) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Expected Results: Eclipse should start normally. I have tested this with a Japanese locale (ja_JP.eucJP), and Eclipse started normally. Note that no Eclipse language packs were installed, as my intention was only to test the functionality of an English version of Eclipse in a different locale. Build Date & Platform: Build 200303202147 (RC3a) on Sun Solaris 9 Additional Builds and Platforms: - Also Occurs On Build 200211071448 (2.0.2) on Sun Solaris 9 However, on Eclipse 2.0.2, a different exception is thrown, and instead of crashing, Eclipse hangs. Here is the exception: java.lang.NullPointerException at org.eclipse.swt.graphics.Device.<init>(Device.java:121) at org.eclipse.swt.widgets.Display.<init>(Display.java:319) at org.eclipse.swt.widgets.Display.<init>(Display.java:316) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1308) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:831) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:462) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:247) at org.eclipse.core.launcher.Main.run(Main.java:703) at org.eclipse.core.launcher.Main.main(Main.java:539)
|
2003-03-25 13:05:25
| 1,048,620,000 |
resolved fixed
|
f8eebc4
| 1,053,470,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/GC.java
|
SWT
|
3,698 | 37,881 |
Bug 37881 StyledText - NPE when using RIGHT_TO_LEFT style with StyledText on Linux
|
build 20030520 Using the RIGHT_TO_LEFT style in StyledText on platforms other than Windows results in a NullPointerException in StyledTextBidi. The problem is that we are testing for the RIGHT_TO_LEFT style to determine whether we should operate in right oriented mode. We should be testing for the MIRRORED style. Testing for MIRRORED will be sufficient as long as it is only set on Windows (the only platform we support bidi on).
|
2003-05-20 14:41:31
| 1,053,460,000 |
resolved fixed
|
669774d
| 1,053,460,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/DisplayRenderer.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,699 | 37,591 |
Bug 37591 ImageLoader.save for GIF saves in compress GIF format
| null |
2003-05-14 09:22:26
| 1,052,920,000 |
resolved fixed
|
41f3fb6
| 1,053,110,000 |
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/internal/image/GIFFileFormat.java
|
SWT
|
3,700 | 35,804 |
Bug 35804 Cheese in Text
|
I200303272130 1) Create a task in the Task View 2) Edit the descripton in the table. 3) Cursor back and forth in the text. Notice that there are black lines between the characters where the cursor has been. Also notice that the text is scrolled off to the left when you first try to edit the description. This makes the cursor problem worse since you have no choice but to cursor backwards to see the existing description.
|
2003-03-28 10:17:05
| 1,048,860,000 |
resolved fixed
|
af8a2f6
| 1,053,110,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,701 | 37,497 |
Bug 37497 Creating of new Image is failed in some cases.
|
This is caused by little mistake in the copying of block of code in the new method init(): ................. if (blackIndex == -1) { /* There was no black in the palette, so just copy the data over */ //! System.arraycopy(source.data, 0, image.data, 0, //! System.arraycopy(source.data, 0, imageData.data, 0, imageData.data.length); .................
|
2003-05-12 09:35:26
| 1,052,750,000 |
resolved fixed
|
75da12d
| 1,053,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java
|
SWT
|
3,702 | 28,529 |
Bug 28529 ProgressBar direction wrong + cheese
|
I20021216 In progress bar tab of the control example: select SWT.HORIZONTAL. select 100x100 Progress bar draws vertically and leaves cheese.
|
2002-12-17 11:28:16
| 1,040,140,000 |
resolved fixed
|
fd4cb46
| 1,053,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Slider.java
|
SWT
|
3,703 | 34,185 |
Bug 34185 Native Tree: Clicking into selection doesn't reselect
|
I2003-03-07 In a tree view, I have selected all items. If I single click on any of the items, the selection doesn't change to include only the item I clicked on. Instead the selection stays unchanged.
|
2003-03-08 04:37:19
| 1,047,120,000 |
resolved fixed
|
3aee767
| 1,053,040,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,704 | 33,496 |
Bug 33496 Multi-line text issues too many mouse track events on Photon (BBAWT)
|
When I add a MouseTrackListener to a multi-line Text widget on Photon, both mouseEntered *and* mouseExit are fired when I pass the mouse over the text widget, and both events are again fired when I move the mouse out of the widget. I would expect only mouseEntered when I pass over and only mouseExited when I mouse out. SWT v2130 QNX 6.1 Testcase: ========= import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.events.MouseMoveListener; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.*; public class TestSWTTextAreaMouseTrack { public static void main(String[] args) { Display disp = Display.getDefault(); Shell shell = new Shell(disp); shell.setText("Test SWT MouseTrackListener"); shell.setLayout(new FillLayout()); final Button button = new Button(shell, 0); button.setText("Push"); button.addMouseTrackListener(new MouseTrackAdapter() { public void mouseEnter(MouseEvent e) { System.out.println("button mouseEnter"); } public void mouseExit(MouseEvent e) { System.out.println("button mouseExit"); } }); final Text text = new Text(shell, SWT.MULTI); text.setText("default text"); text.addMouseTrackListener(new MouseTrackAdapter() { public void mouseEnter(MouseEvent e) { System.out.println("text mouseEnter"); } public void mouseExit(MouseEvent e) { System.out.println("text mouseExit"); } }); shell.setSize(200, 200); shell.open(); while (!shell.isDisposed()) { if (!disp.readAndDispatch()) { disp.sleep(); } } } }
|
2003-02-27 15:34:19
| 1,046,380,000 |
resolved fixed
|
f5e8c2f
| 1,053,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java
|
SWT
|
3,705 | 37,178 |
Bug 37178 drag and drop movement of a class addes package.* to imports [refactoring]
|
Since I run around using 'organize imports' to turn all those stars into specific imports, shouldn't this import the specific class instead of *? Perhaps some sort of configuration option for this would be appropriate.
|
2003-05-02 12:39:58
| 1,051,890,000 |
resolved fixed
|
6814887
| 1,053,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,706 | 37,140 |
Bug 37140 GC.drawImage throws SWTError with boundary conditions (BBAWT)
|
Using Swt v3001 on Linux-GTK ver 2.2.2 OS: RedHat Linux 8.0 SWT throws an SWTError: No more handles when drawImage(Image, int, int, int, int, int, int, int, int) is called with destX and destY parameters as Integer.Min_VALUE and destWidth and destHeight as Integer.MAX_VALUE -------- Testcase -------- import org.eclipse.swt.graphics.GC; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTImageTest { public static void main(String[] args) { Display display = new Display (); Shell shell = new Shell (display); org.eclipse.swt.graphics.Image image = new org.eclipse.swt.graphics.Image(display, "\\home\\bbsmody\\balloon.gif"); GC gc = new GC(display); gc.drawImage(image, 0, 0, 60, 60, Integer.MIN_VALUE, Integer.MIN_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE); while (!shell.isDisposed ()) { if (!display.readAndDispatch ()) display.sleep (); } image.dispose(); gc.dispose(); display.dispose (); } } ----------- Stack Trace ----------- org.eclipse.swt.SWTError: No more handles Stack trace: java/lang/Throwable.<init>()V java/lang/Throwable.<init>(Ljava/lang/String;)V org/eclipse/swt/SWTError.<init>(ILjava/lang/String;)V org/eclipse/swt/SWTError.<init>(I)V org/eclipse/swt/SWT.error(ILjava/lang/Throwable;)V org/eclipse/swt/SWT.error(I)V org/eclipse/swt/graphics/GC.drawImageMask(Lorg/eclipse/swt/graphics/Image;IIIIIIIIZII)V org/eclipse/swt/graphics/GC.drawImage(Lorg/eclipse/swt/graphics/Image;IIIIIIIIZ)V org/eclipse/swt/graphics/GC.drawImage(Lorg/eclipse/swt/graphics/Image;IIIIIIII)V SWTImageTest.main([Ljava/lang/String;)V Please excuse the not-so-well-written testcase.
|
2003-05-01 12:56:55
| 1,051,810,000 |
resolved fixed
|
97d7bbf
| 1,053,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java
|
SWT
|
3,707 | 36,934 |
Bug 36934 Invalid thread access error on creating a font in Motif (BBAWT)
|
Using RedHat 8.0, SWT v3001 on Linux-Motif When a new Font is created in a new thread (not the UI thread) in SWT on Motif, an SWTException is thrown with the message Invalid thread access. Here is an example: Testcase -------- import org.eclipse.swt.graphics.Font; import org.eclipse.swt.widgets.Display; public class TestSwtFont { private Display display; static public void main(String[] args) { new TestSwtFont().runMain(args); } private void runMain(String[] args) { display = new Display(); Runnable r = new Runnable() { public void run() { Font font2 = new Font(display, "Courier", 11, 0); } }; Thread t = new Thread(r); t.start(); } } And here's the stack trace: Stack Trace ----------- org.eclipse.swt.SWTException: Invalid thread access Stack trace: java/lang/Throwable.<init>()V java/lang/Throwable.<init>(Ljava/lang/String;)V org/eclipse/swt/SWTException.<init>(ILjava/lang/String;)V org/eclipse/swt/SWTException.<init>(I)V org/eclipse/swt/SWT.error(ILjava/lang/Throwable;)V org/eclipse/swt/SWT.error(I)V org/eclipse/swt/widgets/Display.error(I)V org/eclipse/swt/widgets/Display.checkDevice()V org/eclipse/swt/graphics/Device.getWarnings()Z org/eclipse/swt/graphics/Font.init(Lorg/eclipse/swt/graphics/Device;[Lorg/eclipse/swt/graphics/FontData;)V org/eclipse/swt/graphics/Font.<init>(Lorg/eclipse/swt/graphics/Device;Ljava/lang/String;II)V TestSwtFont$1.run()V java/lang/Thread.run()V Note that this problem does not exist on Windows or GTK.
|
2003-04-25 15:38:18
| 1,051,300,000 |
resolved fixed
|
e754a12
| 1,053,030,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Device.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/Font.java
|
SWT
|
3,708 | 37,198 |
Bug 37198 gtk2 im - imhangul (korean IM) work bad in Eclipse
|
when I input korean character with imhangul, it does some strange thing. but when i use ami(XIM for korean) it does well. I can't describe well, so I'll attach my screen-shot.
|
2003-05-04 05:38:34
| 1,052,040,000 |
resolved fixed
|
179b6c1
| 1,053,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java
|
SWT
|
3,709 | 37,519 |
Bug 37519 Bug in Decorations.setPlacement method
|
The setPlacement method in Decorations contains the following code: if ((flags & OS.SWP_NOMOVE) == 0) { lpwndpl.left = x; lpwndpl.top = y; } if ((flags & OS.SWP_NOSIZE) == 0) { lpwndpl.right = x + width; lpwndpl.bottom = x + height; } I believe this should be changed to: if ((flags & OS.SWP_NOMOVE) == 0) { lpwndpl.left = x; lpwndpl.top = y; } else { x = lpwndpl.left; y = lpwndpl.top; } if ((flags & OS.SWP_NOSIZE) == 0) { lpwndpl.right = x + width; lpwndpl.bottom = y + height; } The problem with the current code occurs when the 1st test is false (ie. NO_MOVE is true) and the 2nd test is true (ie NOSIZE is false). Consider what happens if setPlacement is called with the values (0, 0, 400, 400), where the current window placement is (50, 50, 500, 500). The current code sets the window placement to (50, 50, 400, 400), which violates the requested width and height.
|
2003-05-12 16:13:28
| 1,052,770,000 |
resolved fixed
|
6627de6
| 1,052,950,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
|
SWT
|
3,710 | 36,450 |
Bug 36450 [Key Bindings] Only KeyUp event for Alt+[Shift]+<char> on Windows
| null |
2003-04-14 09:14:01
| 1,050,330,000 |
resolved fixed
|
f664172
| 1,052,860,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,711 | 37,498 |
Bug 37498 BIDI: rtl-oriented TableCursor set next column instead of previos and vice versa, when it uses right and left arrow keys.
|
When TableCursor has rtl orientation, left and right arrow keys should be swapped.
|
2003-05-12 10:29:18
| 1,052,750,000 |
resolved fixed
|
4011980
| 1,052,850,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java
|
SWT
|
3,712 | 37,479 |
Bug 37479 BIDI: Drop-down list of CCombo doesn't inherit it's orientation from CCombo.
|
Shell, which stores drop-down list of CCombo, is always created with NO_TRIM style only. Therefore it inherit it's orientation not from CCombo, but from it's parent shell.
|
2003-05-11 09:37:10
| 1,052,660,000 |
resolved fixed
|
fd76c84
| 1,052,850,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
|
SWT
|
3,713 | 37,164 |
Bug 37164 Crash when opening a MessageBox on a Text focusLost event
|
Opening a MessageBox when a Text receives a focusLost event (e.g. when user press Tab) crashes on linux-gtk (works fine in linux-motif and windows). System: Red Hat 9, gtk2-2.2.1 Eclipse: 2.1 release, libswt-gtk-213 --- GTK error message ---- (<unknown>:3061): Gtk-WARNING **: GtkEntry - did not receive focus-out-event. If you connect a handler to this signal, it must return FALSE so the entry gets the event as well Gtk-ERROR **: file gtkentry.c: line 4302 (blink_cb): assertion failed: (GTK_WIDGET_HAS_FOCUS (entry)) aborting... --- code snippet --- import org.eclipse.swt.SWT; import org.eclipse.swt.events.*; import org.eclipse.swt.layout.*; import org.eclipse.swt.widgets.*; public class OpenMessageBox { public static void main(String[] args) { Display display = new Display (); Shell shell = new Shell(display); shell.setLayout(new RowLayout()); final Text text = new Text(shell, SWT.BORDER); text.addFocusListener(new FocusAdapter() { public void focusLost(FocusEvent event) { MessageBox warning = new MessageBox(text.getShell(), SWT.ICON_WARNING); warning.setMessage("You entered: " + text.getText()); warning.open(); } }); Button button = new Button(shell, SWT.PUSH); button.setText("OK"); shell.pack(); shell.open(); while (!shell.isDisposed ()) { if (!display.readAndDispatch()) { display.sleep(); } } display.dispose(); } }
|
2003-05-02 06:09:31
| 1,051,870,000 |
resolved fixed
|
ac33f25
| 1,052,850,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,714 | 37,293 |
Bug 37293 BIDI:GC.drawImage(0, ... draws at 1, ... when using RIGHT_TO_LEFT
|
build 20030429 (+ todays latest from HEAD) Run the attached test case. Observe the one pixel wide background leaking through to the right of the double buffer image.
|
2003-05-06 15:22:33
| 1,052,250,000 |
resolved fixed
|
e56784c
| 1,052,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ImageList.java
|
SWT
|
3,715 | 37,299 |
Bug 37299 BIDI:Caret cheese when resizing RIGHT_TO_LEFT StyledText
|
build 20030429 + latest from HEAD -run the SwtStyledTextUseCase in org.eclipse.swt.internal (ottcvs1) -place the caret somewhere on a line -resize the shell horizontally ->there is caret cheese as shown in the attachment
|
2003-05-06 17:18:52
| 1,052,260,000 |
resolved fixed
|
71be946
| 1,052,410,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/Canvas.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,716 | 29,332 |
Bug 29332 new GC(this) produces a GC that does nothing
|
Creating a graphic context by calling new GC(this) in a custom Composite widget does not work on Mac OS: Drawing on the newly create GC shows no effect. (At least drawing lines does not work, I have not tried much more). My code works fine on Win32 and Linux. The bug appeared in 2.1 M4
|
2003-01-11 05:35:59
| 1,042,280,000 |
resolved fixed
|
2e45d54
| 1,052,240,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GC.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/GCData.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Tree.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,717 | 37,212 |
Bug 37212 Order sependencies in setting up menus
|
In the following code example, reordering the statements "A", "B", "C" produces differing results (you'll need to replace the 'icon' with a reference to an available icon on your system) ABC - menu is shown with text and icon, and is enabled CAB - text is not shown BCA - text is shown, but menu is disabled package swtbuilder.mainwindow; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Menu; import org.eclipse.swt.widgets.MenuItem; import org.eclipse.swt.widgets.Shell; public class MenuManagerTest { public static Menu getMenuBar(Shell shell) { Menu menuBar = new Menu(shell, SWT.BAR); String icon = "c:/win32_CopyDrop32x32.gif"; Image image = new Image(Display.getDefault(), icon); // Create the File Menu // MenuItem fileMenuItem = new MenuItem(menuBar, SWT.CASCADE); Menu fileMenu = new Menu(shell, SWT.DROP_DOWN); fileMenuItem.setText("File"); fileMenuItem.setMenu(fileMenu); // Create the New Menu // MenuItem fileNewMenuItem = new MenuItem(fileMenu, SWT.CASCADE); Menu fileNewMenu = new Menu(shell, SWT.DROP_DOWN); /*A*/fileNewMenuItem.setText("New"); /*B*/fileNewMenuItem.setMenu(fileNewMenu); /*C*/fileNewMenuItem.setImage(image); // Create the menu items // MenuItem item = new MenuItem(fileNewMenu, SWT.NONE); item.setImage(image); item.setText("New Thing"); return menuBar; } public static void main(String[] args) { final Display display = Display.getDefault(); Shell shell = new Shell( display, SWT.TITLE | SWT.ICON | SWT.CLOSE); Menu menuBar = new Menu(shell, SWT.BAR); shell.setMenuBar(getMenuBar(shell)); shell.open(); // start the event loop. We stop when the user has done // something to dispose our window. // while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } }
|
2003-05-05 08:32:35
| 1,052,140,000 |
resolved fixed
|
68eede6
| 1,052,160,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,718 | 37,030 |
Bug 37030 No focus listener control in SWT combo on Linux platform
|
I tried to add addFocusListener() on SWT Combo, but it doesn't work The following is a simple test code: import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.events.FocusListener; import org.eclipse.swt.events.FocusEvent; import org.eclipse.swt.SWT; public class TestComboFocus implements FocusListener { Public TestComboFocus(Composite parent) { Combo combo = new Combo(parent, SWT.DROP_DOWN); combo.addFocusListener(this); } public void focusGained(FocusEvent e) { System.out.println("Combo is in focus"); } public void focusLost(FocusEvent e) { System.out.println("Combo is lost focus"); } } These methods focusGained(), focusLost() never called when the cursor is in or out of Combo text box.
|
2003-04-28 18:57:47
| 1,051,570,000 |
resolved fixed
|
9e56839
| 1,051,650,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,719 | 31,941 |
Bug 31941 gtk_progress_bar_set_fraction - crash when creating a class under latest Debian GTK 2.2 / Crux Theme
|
When I try to create a class in a new, empty project, Eclipse M5 under Linux/GTK crashes. I get the following assertion violation message from the theme engine I'm using (crux, Debian unstable, gtk2-engines-crux 2.2-3): ** (<unknown>:8306): CRITICAL **: file crux-draw.c: line 1017 (draw_box): assertion `width < 32768' failed ** (<unknown>:8306): CRITICAL **: file crux-pixmaps.c: line 419 (eazel_engine_image_render): assertion `width > 0' failed The Eclipse crash log, which appears after this message, is attached to this report. Thanks for looking into this, and thanks for an awesome product!
|
2003-02-15 11:03:08
| 1,045,320,000 |
resolved fixed
|
a7bf375
| 1,051,570,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java
|
SWT
|
3,720 | 34,982 |
Bug 34982 Custom BusyIndicator - no hourglass cursor
| null |
2003-03-13 17:35:46
| 1,047,590,000 |
resolved fixed
|
b8fde77
| 1,051,560,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java
|
SWT
|
3,721 | 36,386 |
Bug 36386 Eclipse crashes on exit
|
2.1 + SWT HEAD Date/Time: 2003-04-11 01:09:02 +0200 OS Version: 10.2.5 (Build 6L29) Host: lipari.local. Command: Eclipse PID: 637 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000037 Thread 0: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x0366a000 in 0x366a000 #3 0x90180f58 in CFRunLoopRunSpecific #4 0x92b10ca4 in startupJava(int, int, char const**, __CFDictionary const*, BuilderVersion, char const*, char const**) #5 0x00001c54 in 0x1c54 #6 0x00001ad4 in 0x1ad4 Thread 1 Crashed: #0 0x930276e0 in SetupParamBlockForCIcon #1 0x9300ece4 in PlotCIconHandle #2 0x96a3e354 in HIIconView::DrawSelf(short, OpaqueRgnHandle*, CGContext*) #3 0x969a9b2c in HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) #4 0x969a2c54 in DispatchEventToHandlers #5 0x969a2fbc in SendEventToEventTargetInternal #6 0x969a63d0 in SendEventToEventTargetWithOptions #7 0x969b362c in SendControlDefDraw(HIView*, short, OpaqueGrafPtr*, OpaqueRgnHandle*, CGContext*) #8 0x969af108 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #9 0x969af224 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #10 0x969af224 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #11 0x969af224 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #12 0x969af224 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #13 0x969af224 in HIView::DrawInternal(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char, HIView*, CGContext*) #14 0x969b09bc in HIView::Draw(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long, HIView*, CGContext*) #15 0x96a22950 in DeactivateControl #16 0x969dd100 in HandleWindowEvent #17 0x969ee2f8 in StandardWindowEventHandler #18 0x969a2c54 in DispatchEventToHandlers #19 0x969a2fbc in SendEventToEventTargetInternal #20 0x969a63d0 in SendEventToEventTargetWithOptions #21 0x969f25d8 in PostActivateEvent #22 0x969eb704 in HiliteAndActivateWindow #23 0x96a0a304 in AdjustToNewWindowActivation(WindowData*, WindowContext*, OpaqueWindowPtr*, WindowData*) #24 0x96a58518 in PotentiallyAdjustActivationOnOrderIn(WindowData*, WindowData*) #25 0x96a49ffc in ShowWindow #26 0x0496669c in Java_org_eclipse_swt_internal_carbon_OS_ShowWindow #27 0x013b0580 in 0x13b0580 #28 0x013a9fb0 in 0x13a9fb0 #29 0x013a9fb0 in 0x13a9fb0 #30 0x013a9fb0 in 0x13a9fb0 #31 0x013a9fb0 in 0x13a9fb0 #32 0x013a9ef0 in 0x13a9ef0 #33 0x013a9fb0 in 0x13a9fb0 #34 0x013a9fb0 in 0x13a9fb0 #35 0x013a9e30 in 0x13a9e30 #36 0x013a9e30 in 0x13a9e30 #37 0x01c3c270 in 0x1c3c270 #38 0x013a9fb0 in 0x13a9fb0 #39 0x013a9e30 in 0x13a9e30 #40 0x013a9e30 in 0x13a9e30 #41 0x013a9e30 in 0x13a9e30 #42 0x0167a35c in 0x167a35c #43 0x013a9fb0 in 0x13a9fb0 #44 0x013a9fb0 in 0x13a9fb0 #45 0x013a9fb0 in 0x13a9fb0 #46 0x013a716c in 0x13a716c #47 0x966a8208 in JVM_Read #48 0x966cde94 in JVM_FillInStackTrace #49 0x966b8c80 in JVM_GetCPMethodClassNameUTF #50 0x9676d788 in JVM_EnableCompiler #51 0x049a31e4 in callback #52 0x0497d81c in fn3_3 #53 0x969a2c54 in DispatchEventToHandlers #54 0x969a2fbc in SendEventToEventTargetInternal #55 0x969b5494 in SendEventToEventTarget #56 0x969c3030 in SendHICommandEvent #57 0x96a5b8dc in SendMenuItemSelectedEvent #58 0x96a5c980 in FinishMenuSelection(MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long) #59 0x96a39380 in MenuSelectCore(Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) #60 0x96a5cbf8 in MenuSelect #61 0x04961fe0 in Java_org_eclipse_swt_internal_carbon_OS_MenuSelect #62 0x013b0580 in 0x13b0580 #63 0x016deb0c in 0x16deb0c #64 0x013a716c in 0x13a716c #65 0x966a8208 in JVM_Read #66 0x966cde94 in JVM_FillInStackTrace #67 0x966b8c80 in JVM_GetCPMethodClassNameUTF #68 0x9676d788 in JVM_EnableCompiler #69 0x049a31e4 in callback #70 0x0497db3c in fn13_3 #71 0x969a2c54 in DispatchEventToHandlers #72 0x969a2fbc in SendEventToEventTargetInternal #73 0x969b5494 in SendEventToEventTarget #74 0x969b9948 in HandleMouseEvent(OpaqueEventRef*) #75 0x969b287c in ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) #76 0x969a2d0c in DispatchEventToHandlers #77 0x969a2fbc in SendEventToEventTargetInternal #78 0x969b5494 in SendEventToEventTarget #79 0x04964354 in Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget #80 0x019e0060 in 0x19e0060 #81 0x016dc0d8 in 0x16dc0d8 #82 0x013a9e30 in 0x13a9e30 #83 0x013a9fb0 in 0x13a9fb0 #84 0x013aa220 in 0x13aa220 #85 0x013a9ec0 in 0x13a9ec0 #86 0x013a716c in 0x13a716c #87 0x966a8208 in JVM_Read #88 0x966cde94 in JVM_FillInStackTrace #89 0x967338bc in JVM_GetClassCPTypes #90 0x9673cce8 in JVM_Write #91 0x96744f00 in JVM_InvokeMethod #92 0x013b0580 in 0x13b0580 #93 0x013a9ec0 in 0x13a9ec0 #94 0x013a9ec0 in 0x13a9ec0 #95 0x013aa220 in 0x13aa220 #96 0x013a9ec0 in 0x13a9ec0 #97 0x013a9ec0 in 0x13a9ec0 #98 0x013a9ec0 in 0x13a9ec0 #99 0x013a716c in 0x13a716c #100 0x966a8208 in JVM_Read #101 0x966cde94 in JVM_FillInStackTrace #102 0x967338bc in JVM_GetClassCPTypes #103 0x9673cce8 in JVM_Write #104 0x96744f00 in JVM_InvokeMethod #105 0x013b0580 in 0x13b0580 #106 0x013a9ec0 in 0x13a9ec0 #107 0x013a9ec0 in 0x13a9ec0 #108 0x013aa220 in 0x13aa220 #109 0x013a9ec0 in 0x13a9ec0 #110 0x013a9fb0 in 0x13a9fb0 #111 0x013a9fb0 in 0x13a9fb0 #112 0x013a716c in 0x13a716c #113 0x966a8208 in JVM_Read #114 0x966cde94 in JVM_FillInStackTrace #115 0x966c1f94 in JVM_GetCPFieldClassNameUTF #116 0x968ae93c in jio_vsnprintf #117 0x92b2316c in JNIEnv_::CallStaticVoidMethod(_jclass*, _jmethodID*, ...) #118 0x92b16b10 in CallAppLauncherMain(JNIEnv_*, __CFDictionary const*, __CFArray const*) #119 0x92b18ab4 in startJavaApplication #120 0x92b10b70 in java_main_stub(void*) #121 0x90020d48 in _pthread_body Thread 2: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x9676b04c in JNI_CreateJavaVM_Impl #3 0x9676b1d0 in JNI_CreateJavaVM_Impl #4 0x967641fc in JVM_IsSupportedJNIVersion #5 0x90020d48 in _pthread_body Thread 3: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966d072c in JVM_FillInStackTrace #4 0x966e173c in JVM_RawMonitorEnter #5 0x9685d46c in JVM_UnloadLibrary #6 0x967641fc in JVM_IsSupportedJNIVersion #7 0x90020d48 in _pthread_body Thread 4: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x013b0580 in 0x13b0580 #7 0x013a9fb0 in 0x13a9fb0 #8 0x013a9fb0 in 0x13a9fb0 #9 0x013a716c in 0x13a716c #10 0x966a8208 in JVM_Read #11 0x96750af4 in JVM_StartThread #12 0x96755bd0 in JVM_GC #13 0x96755b64 in JVM_GC #14 0x96744174 in JVM_GetClassInterfaces #15 0x967641fc in JVM_IsSupportedJNIVersion #16 0x90020d48 in _pthread_body Thread 5: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x013b0580 in 0x13b0580 #7 0x01834c8c in 0x1834c8c #8 0x018339a8 in 0x18339a8 #9 0x013a9ec0 in 0x13a9ec0 #10 0x013a716c in 0x13a716c #11 0x966a8208 in JVM_Read #12 0x96750af4 in JVM_StartThread #13 0x96755bd0 in JVM_GC #14 0x96755b64 in JVM_GC #15 0x96744174 in JVM_GetClassInterfaces #16 0x967641fc in JVM_IsSupportedJNIVersion #17 0x90020d48 in _pthread_body Thread 6: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966a29c4 in JVM_CurrentTimeMillis #4 0x966a2a60 in JVM_CurrentTimeMillis #5 0x967641fc in JVM_IsSupportedJNIVersion #6 0x90020d48 in _pthread_body Thread 7: #0 0x90034848 in semaphore_wait_trap #1 0x96764bfc in JVM_IsSupportedJNIVersion #2 0x967649e4 in JVM_IsSupportedJNIVersion #3 0x96744174 in JVM_GetClassInterfaces #4 0x967641fc in JVM_IsSupportedJNIVersion #5 0x90020d48 in _pthread_body Thread 8: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d078c in JVM_FillInStackTrace #4 0x9670b5bc in JVM_IsConstructorIx #5 0x966ec7f0 in JVM_RawMonitorEnter #6 0x96744174 in JVM_GetClassInterfaces #7 0x967641fc in JVM_IsSupportedJNIVersion #8 0x90020d48 in _pthread_body Thread 9: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966a28d4 in JVM_CurrentTimeMillis #4 0x96729c10 in JVM_Sleep #5 0x013b0580 in 0x13b0580 #6 0x013a9fb0 in 0x13a9fb0 #7 0x013aa310 in 0x13aa310 #8 0x013a716c in 0x13a716c #9 0x966a8208 in JVM_Read #10 0x96750af4 in JVM_StartThread #11 0x96755bd0 in JVM_GC #12 0x96755b64 in JVM_GC #13 0x96744174 in JVM_GetClassInterfaces #14 0x967641fc in JVM_IsSupportedJNIVersion #15 0x90020d48 in _pthread_body Thread 10: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x013b0580 in 0x13b0580 #7 0x01b919c8 in 0x1b919c8 #8 0x013a9ec0 in 0x13a9ec0 #9 0x013aa310 in 0x13aa310 #10 0x013a716c in 0x13a716c #11 0x966a8208 in JVM_Read #12 0x96750af4 in JVM_StartThread #13 0x96755bd0 in JVM_GC #14 0x96755b64 in JVM_GC #15 0x96744174 in JVM_GetClassInterfaces #16 0x967641fc in JVM_IsSupportedJNIVersion #17 0x90020d48 in _pthread_body Thread 11: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x013b0580 in 0x13b0580 #7 0x013a9fb0 in 0x13a9fb0 #8 0x013aa310 in 0x13aa310 #9 0x013a716c in 0x13a716c #10 0x966a8208 in JVM_Read #11 0x96750af4 in JVM_StartThread #12 0x96755bd0 in JVM_GC #13 0x96755b64 in JVM_GC #14 0x96744174 in JVM_GetClassInterfaces #15 0x967641fc in JVM_IsSupportedJNIVersion #16 0x90020d48 in _pthread_body PPC Thread State: srr0: 0x930276e0 srr1: 0x0200f030 vrsave: 0x00000000 xer: 0x00000000 lr: 0x9300ece4 ctr: 0x90223244 mq: 0x00000000 r0: 0x9300ece4 r1: 0xf007c0d0 r2: 0x84022280 r3: 0xf007c180 r4: 0xffffff80 r5: 0xffffff80 r6: 0x035577b8 r7: 0x00000000 r8: 0x00000001 r9: 0xffffffff r10: 0x0013001d r11: 0x00000000 r12: 0x90223244 r13: 0x000ea290 r14: 0x04251850 r15: 0x04966674 r16: 0xf007d520 r17: 0x6b2ca178 r18: 0x00000000 r19: 0x00000000 r20: 0x00000002 r21: 0x00000000 r22: 0x71cfa243 r23: 0x07645420 r24: 0xf007c380 r25: 0x00000000 r26: 0x00000000 r27: 0x035577b8 r28: 0x24022280 r29: 0xf007c180 r30: 0xffffffff r31: 0x9300ec04
|
2003-04-10 19:19:42
| 1,050,020,000 |
resolved fixed
|
71b4d72
| 1,051,300,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,722 | 29,787 |
Bug 29787 BIDI: problem with keyboard's left and right arrows, when them used to expand or to collapse rtl-oriented TableTree.
|
BIDI: when keybord is used to expande or collapse rtl-oriented TableTree, left and right arrows cause the events, that are visually opposite to direction, in which TableTree is expanded or collapsed.
|
2003-01-20 06:28:13
| 1,043,060,000 |
resolved fixed
|
ef5fd73
| 1,051,040,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java
|
SWT
|
3,723 | 29,786 |
Bug 29786 BIDI: keyborad's left and right arrows move focus between tabs of rtl-oriented CTabFolder in the opposite direction.
|
BIDI: when keyboard is used to move focus from current tab of horizontal rtl- oriented CTabFolder to another, left arrow causes moving to the right direction and right arrow - to the left direction.
|
2003-01-20 06:21:38
| 1,043,060,000 |
resolved fixed
|
0c07823
| 1,051,040,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
|
SWT
|
3,724 | 36,679 |
Bug 36679 BIDI: PopupList can't be created with explicitly assigned orientation.
|
Currently it is impossible to create Shell and List widgets of PopupList with explicitly assigned orientation. As result, PopupList always has orientation of top Shell. It isn't desirable if, for example, table, which use PopupList for editing of it's cells, has orientation, that is differ from orientation of top Shell.
|
2003-04-20 11:41:01
| 1,050,850,000 |
resolved fixed
|
46ea407
| 1,051,020,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PopupList.java
|
SWT
|
3,725 | 36,684 |
Bug 36684 BIDI: LTR-oriented MessageBox can't be created, if it's parent has RTL orientation.
|
Currently MesageBox is always created with MB_RTLREADING bit, if it's parent has rtl orientation. It isn't correct, because it is supposed, that MessageBox should be created with orientation, which correspond to explicitly assigned orientation style. Only if orientation style isn't assigned, MessageBox should inherit orientation from it's parent.
|
2003-04-21 04:46:54
| 1,050,910,000 |
resolved fixed
|
c596fe8
| 1,051,020,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java
|
SWT
|
3,726 | 36,541 |
Bug 36541 Printing of java program causes failure
|
When I try to print a java program in the text editor, one page prints out and the platform crashes (closes) with the following error: JAVAW caused a general protection fault in module <unknown> at 0000:00000939. Registers: EAX=ffffffff CS=04bf EIP=00000939 EFLGS=00000202 EBX=00000000 SS=04a7 ESP=00000040 EBP=000088e4 ECX=000004a7 DS=042f ESI=00000613 FS=1a3f EDX=04bf0934 ES=0000 EDI=0099b150 GS=069f Bytes at CS:EIP: 26 8b 2f 33 e8 81 e5 c0 00 00 00 33 e8 26 89 2f Stack dump: 00000000 88e4641f 00000000 00000000 00000000 00000000 00000000 00000000 03020100 07060504 0b0a0908 0f0e0d0c 03010200 07050604 0b090a08 0f0d0e0c This problem started only after I updated the platform to version 2.1. I've tried serveral different printing options (e.g., selection, pages) and re- installed my print drivers, but no correction of the problem. Thanks for the input.
|
2003-04-15 17:01:02
| 1,050,440,000 |
verified fixed
|
e6026eb
| 1,050,610,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,727 | 33,492 |
Bug 33492 Addition of tasks to task window is too slow
|
When attacking a new code base, I am likely to get up to a thousand warnings in the task window. Eclipse adds these warnings individually, which takes a long time. If I do a full rebuild of all projects, it will first remove, then re-add all of the warnings. (This process can take several seconds for a large number of warnings on a TiBook 667.) Either the table component in the MacOS X M5 release needs to be sped up dramatically, or Eclipse needs to disconnect the view from the model while tasks are added. (That second option is based on my experience with Swing components, and so may not apply to SWT.)
|
2003-02-27 15:24:31
| 1,046,380,000 |
resolved fixed
|
b0ade0f
| 1,050,510,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/TableItem.java
|
SWT
|
3,728 | 35,915 |
Bug 35915 Need a locale String from FontData
|
2.1 We need a way to get the Locale information so that it can be displayed. On Motif the FontDialog is laid out in such a way that the encoding looks like the name and as a result it looks to the user like we have not displayed anything. We need to be able to display this value in the FontPreferencePage. Something like getLocaleValue() would be fine.
|
2003-04-01 10:38:44
| 1,049,210,000 |
resolved fixed
|
b4a3cd3
| 1,050,500,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/gtk1x/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/graphics/FontData.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java
|
SWT
|
3,729 | 33,316 |
Bug 33316 FontDialog needs FontData[] API
|
FontDialog's open() and setFontData() methods are the only way to receive/provide FontData for specifying a font. But on motif, Fonts are often made up of multiple FontDatas. Now that there's a Font constructor that takes FontData[], the dialog should really be extended to also receive/provide FontData[] when needed. This is particularly important in locales like chinese and japanese.
|
2003-02-26 13:48:49
| 1,046,290,000 |
resolved fixed
|
58c80ff
| 1,050,440,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/gtk1x/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/FontDialog.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java
|
SWT
|
3,730 | 35,842 |
Bug 35842 Outline view crashes on WinXP & Win2K
|
I can reproduce this crash consistently. 1. Open specific Java source file with 75 methods 2. Press Ctrl-O 3. Type first character 'c' of one of the methods 4. CRASH An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x773607AB Function=ImageList_SetOverlayImage+0x68C0 Library=C:\WINDOWS\system32\COMCTL32.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1236) at org.eclipse.swt.widgets.Tree.callWindowProc(Tree.java:156) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2839) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2361) at org.eclipse.swt.internal.win32.OS.SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:1785) at org.eclipse.swt.widgets.Control.setCursor(Control.java:1865) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:63) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:289) at org.eclipse.jface.viewers.AbstractTreeViewer.internalExpandToLevel(AbstractTreeViewer.java:840) at org.eclipse.jface.viewers.AbstractTreeViewer.internalExpandToLevel(AbstractTreeViewer.java:848) at org.eclipse.jface.viewers.AbstractTreeViewer.internalExpandToLevel(AbstractTreeViewer.java:848) at org.eclipse.jface.viewers.AbstractTreeViewer.internalExpandToLevel(AbstractTreeViewer.java:848) at org.eclipse.jface.viewers.AbstractTreeViewer.internalExpandToLevel(AbstractTreeViewer.java:848) at org.eclipse.jface.viewers.AbstractTreeViewer.expandToLevel(AbstractTreeViewer.java:442) at org.eclipse.jface.viewers.AbstractTreeViewer.expandToLevel(AbstractTreeViewer.java:428) at org.eclipse.jface.viewers.AbstractTreeViewer.expandAll(AbstractTreeViewer.java:419) at org.eclipse.jdt.internal.ui.text.JavaOutlineInformationControl$5.modifyText(JavaOutlineInformationControl.java:413) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:183) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:865) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:845) at org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:1755) at org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:2914) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2766) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2361) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1236) at org.eclipse.swt.widgets.Text.callWindowProc(Text.java:96) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2839) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2361) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1303) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1543) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:845) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Dynamic libraries: 0x00400000 - 0x00406000 C:\apps\j2sdk1.4.1_01\bin\javaw.exe 0x77F50000 - 0x77FF7000 C:\WINDOWS\System32\ntdll.dll 0x77E60000 - 0x77F46000 C:\WINDOWS\system32\kernel32.dll 0x77DD0000 - 0x77E5D000 C:\WINDOWS\system32\ADVAPI32.dll 0x78000000 - 0x78086000 C:\WINDOWS\system32\RPCRT4.dll 0x77D40000 - 0x77DCC000 C:\WINDOWS\system32\USER32.dll 0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll 0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll 0x6D330000 - 0x6D45A000 C:\apps\j2sdk1.4.1_01\jre\bin\client\jvm.dll 0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll 0x6D1D0000 - 0x6D1D7000 C:\apps\j2sdk1.4.1_01\jre\bin\hpi.dll 0x6D300000 - 0x6D30D000 C:\apps\j2sdk1.4.1_01\jre\bin\verify.dll 0x6D210000 - 0x6D229000 C:\apps\j2sdk1.4.1_01\jre\bin\java.dll 0x6D320000 - 0x6D32D000 C:\apps\j2sdk1.4.1_01\jre\bin\zip.dll 0x132A0000 - 0x132A8000 C:\Apps\eclipse\plugins\org.eclipse.core.resources.win32_2.1.0\os\win32\x86\core_2_1_0a.dll 0x133C0000 - 0x13407000 C:\Apps\eclipse\plugins\org.eclipse.swt.win32_2.1.0\os\win32\x86\swt-win32-2133.dll 0x771B0000 - 0x772D1000 C:\WINDOWS\system32\ole32.dll 0x77340000 - 0x773CB000 C:\WINDOWS\system32\COMCTL32.dll 0x763B0000 - 0x763F5000 C:\WINDOWS\system32\comdlg32.dll 0x70A70000 - 0x70AD4000 C:\WINDOWS\system32\SHLWAPI.dll 0x773D0000 - 0x77BC7000 C:\WINDOWS\system32\SHELL32.dll 0x77120000 - 0x771AB000 C:\WINDOWS\system32\OLEAUT32.dll 0x76390000 - 0x763AC000 C:\WINDOWS\System32\IMM32.dll 0x71950000 - 0x71A34000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.10.0_x-ww_f7fb5805\comctl32.dll 0x5AD70000 - 0x5ADA4000 C:\WINDOWS\System32\uxtheme.dll 0x74C80000 - 0x74CAC000 C:\WINDOWS\System32\oleacc.dll 0x55900000 - 0x55961000 C:\WINDOWS\System32\MSVCP60.dll 0x76380000 - 0x76385000 C:\WINDOWS\System32\msimg32.dll 0x135C0000 - 0x135C8000 C:\Apps\eclipse\plugins\com.example.autorefresh.win32_2.0.0\win32refresh.dll 0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll 0x6D510000 - 0x6D58D000 C:\WINDOWS\system32\DBGHELP.dll 0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll 0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL Local Time = Fri Mar 28 20:50:25 2003 Elapsed Time = 1979 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.1_01-b01 mixed mode) #
|
2003-03-29 01:50:09
| 1,048,920,000 |
resolved fixed
|
1c62052
| 1,050,430,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,731 | 35,012 |
Bug 35012 Setting the toolbar's background on RC2 doesn't work.
|
In the attached zip I've added a changed version of the PDE's "Plugin with a view" project. I've changed the ToolBarTest.views.SampleView.createPartControl (Composite) method in order to "wrap" the table view in a ViewForm with a toolbar. I've also set the toolbar background to white (actually as you will see I've set it to white twice). If you run the plugin in RC2 the background color of the toolbar button is gray. Running it on 2.02 and 2.03 the background of the toolbar button is white.
|
2003-03-14 09:50:23
| 1,047,650,000 |
resolved fixed
|
55a4e12
| 1,050,350,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java
|
SWT
|
3,732 | 29,788 |
Bug 29788 BIDI: rtl-oriented Tracker has wrong behavior.
|
BIDI: behavior of rtl-oriented Tracker (moving, resizing, cursor position) is wrong.
|
2003-01-20 06:30:42
| 1,043,060,000 |
resolved fixed
|
6ddae93
| 1,050,350,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
|
SWT
|
3,733 | 35,837 |
Bug 35837 [DirectoryDialog] There is no disk in the drive. Please insert a disk into drive \Device\Harddisk0\DR0
|
Any operation which brings up a file dialog box rooted at "My Computer" tosses up a dialog box with the above error message whenever a harddrive is expanded. Click cancel or try again on dialog (has cancel, try again, and continue) twice, and then it opens up the disk, and proceeds normally. If you un-expand a drive, it does the same thing. Then again when you re-expand a drive. Examples: Import -> File System -> click Browse Feature.xml -> Export -> click Browse I have seen this all the way back through M4. May have existed sooner. Currently using RC3. Platform: Windows 2K SP3
|
2003-03-28 15:18:22
| 1,048,880,000 |
resolved fixed
|
a0c9251
| 1,050,340,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/DirectoryDialog.java
|
SWT
|
3,734 | 28,800 |
Bug 28800 Switching to a not yet activated perspective doesn't set focus an on any view
|
I2002-12-18 Using Cmd-F8 to switch to a view that has not yet been activated during the session doesn't set the input focus on any view. This results in keyboard commands not being processed (e.g. Cmd-F8 again). This can be reproduced by - Opening two perspectives - Restarting Eclipse - Pressing Cmd-F8 to switch to next perspective - After the perspective is displayed pressing Cmd-F8 has no result
|
2002-12-22 05:11:42
| 1,040,550,000 |
resolved fixed
|
43cccb7
| 1,050,090,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Combo.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Decorations.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Group.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/List.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Text.java bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/Table.java bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,735 | 34,996 |
Bug 34996 Tab Event weirdly handled in motif
| null |
2003-03-14 00:33:22
| 1,047,620,000 |
resolved fixed
|
35b3e5a
| 1,050,010,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Decorations.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Menu.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/MenuItem.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/ToolItem.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,736 | 36,270 |
Bug 36270 BIDI: Some custom widgets can't be created with explicitly assigned orientation.
|
Each of custom widgets from following list: CCombo,CLabel,CTabFolder,SashForm, ScrolledComposite and ViewForm - filter styles, which are assigned to it, using it's own method checkStyle(). Only some current widget's specific styles remain after this filtering. One more widget, TableTree, doesn't work with assigned styles (only send them to Table, which is internaly used). In all cases "orientation" styles are removed before creating handle of widget, therefore these widgets can't be created with explicitly assigned orientation and only can inherit orientation from their parents.
|
2003-04-09 05:52:26
| 1,049,880,000 |
resolved fixed
|
36baafc
| 1,050,010,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableTree.java bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewForm.java
|
SWT
|
3,737 | 34,270 |
Bug 34270 [RC2] Single-click in popups dismisses them (was: Quick Fix trouble)
|
Today I started using RC2, and since then there were a number of occasions in which quick fix didn't work. I could click on the bulb in the margin, the quick fix suggestions came up, but when I selected one nothing happened. I could do that repeatably. In one occasion, after saving the source file and retrying, it did work as it should. I didn't find a regularity in this yet.
|
2003-03-10 06:04:37
| 1,047,290,000 |
resolved fixed
|
1907711
| 1,049,990,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Display.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,738 | 19,228 |
Bug 19228 Try to control motif focus reassignments
|
The following seem to make motif sometimes reassign focus: - XtUnmanageChild - XtManageChild - XtDestroyWidget - XmNtraverseOn - "sensitive" Also, the line that's commented out of ToolItem that gets it focus (?) can probably be reintroduced.
|
2002-06-04 17:24:54
| 1,023,230,000 |
resolved fixed
|
3f82915
| 1,049,910,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Composite.java bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,739 | 33,068 |
Bug 33068 [JUNIT]Label.setAlignment not implemented
|
I20030221 Failed in Test_org_eclipse_swt_widgets_Label.test_setAlignmentI junit.framework.AssertionFailedError: expected:<16384> but was:<131072> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at junit.framework.Assert.assertEquals(Assert.java:207) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Label.test_setAlignmentI(Test_ org_eclipse_swt_widgets_Label.java:138) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Label.runTest(Test_org_eclips e_swt_widgets_Label.java:201) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67)
|
2003-02-25 13:38:03
| 1,046,200,000 |
resolved fixed
|
7d74281
| 1,049,840,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,740 | 36,000 |
Bug 36000 [StyledText] ContentWidthCache initialization
| null |
2003-04-02 17:50:36
| 1,049,320,000 |
resolved fixed
|
8380cc1
| 1,049,840,000 |
bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
|
SWT
|
3,741 | 36,192 |
Bug 36192 Native crash when closing tree nodes
|
2.1 I frequently crash when closing tree nodes in the top left pane of the Sync view. I cannot reproduce it, but the typical scenario is: - Synchronize with HEAD on SWT project - reviewing all incoming changes by opening the nodes in the resource pane either manually or with a Expand All - after reviewing the changes I close some of expanded TreeNodes There is no entry in .log, however the console shows this: Date/Time: 2003-04-08 10:56:12 +0200 OS Version: 10.2.4 (Build 6I32) Host: lipari.zrh.oti.com Command: java PID: 1916 Exception: EXC_BAD_ACCESS (0x0001) Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000004 Thread 0: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x03475000 in 0x3475000 #3 0x90180fe4 in CFRunLoopRunSpecific #4 0x000048d4 in 0x48d4 #5 0x0000237c in 0x237c #6 0x000021fc in 0x21fc Thread 1 Crashed: #0 0x96a25b24 in TContainer::ListItemRef::ItemSelected() const #1 0x96a0d66c in TListData::RowIsSelected(unsigned long) const #2 0x96bf68fc in ITableData::NextSelection(Cell32&, bool, bool) const #3 0x96a2a7f4 in TTableView::GetData(unsigned long, unsigned long, long, char*, long*) const #4 0x96a3d480 in TListView::GetData(unsigned long, unsigned long, long, char*, long* ) const #5 0x96a18744 in TBrowser::GetData(unsigned long, unsigned long, long, char*, long* ) const #6 0x969d3cb0 in HLTB_CDEF::EntryPoint(short, OpaqueControlRef*, short, long) #7 0x969fd138 in DataBrowserCDEF(short, OpaqueControlRef*, short, long) #8 0x969af3e8 in DispatchMessage(HIView*, short, long, unsigned char, unsigned char) #9 0x969ddc9c in GetData(HIView*, OpaqueEventRef*) #10 0x969b6760 in ClassicCDEFAdapter::EventHandler(OpaqueEventHandlerCallRef* , OpaqueEventRef*, void*) #11 0x969a2244 in DispatchEventToHandlers #12 0x969a25ac in SendEventToEventTargetInternal #13 0x969a59c0 in SendEventToEventTargetWithOptions #14 0x969bbde4 in SendControlDefGetData(HIView*, unsigned long, short, void*, long, long*) #15 0x969ead6c in GetControlData #16 0x96af0010 in GetDataBrowserSelectionAnchor #17 0x04987fcc in Java_org_eclipse_swt_internal_carbon_OS_GetDataBrowserSelectionAnchor #18 0x0134a580 in 0x134a580 #19 0x01781b18 in 0x1781b18 #20 0x01343ef0 in 0x1343ef0 #21 0x0134116c in 0x134116c #22 0x966a8208 in JVM_Read #23 0x966cde94 in JVM_FillInStackTrace #24 0x966b8c80 in JVM_GetCPMethodClassNameUTF #25 0x9676d788 in JVM_EnableCompiler #26 0x049ce274 in callback #27 0x049a89ec in fn7_3 #28 0x96c929a4 in CacheSelectionNotifications::ItemNotificationBottleneck(OpaqueControlRef*, unsigned long, unsigned long, void*) #29 0x96a0fa20 in TBrowser::NotifyItemEvent(unsigned long, unsigned long, TItemData*) const #30 0x96a44f9c in TContainer::ListItemRef::ItemSelected(BinaryState, IClientProxy const&, bool) #31 0x96a20534 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #32 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #33 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #34 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #35 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #36 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #37 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #38 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #39 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #40 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #41 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #42 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #43 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #44 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #45 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #46 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #47 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #48 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #49 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #50 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #51 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #52 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #53 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #54 0x96a32a58 in TContainer::ListItemRef::PreflightRemoval(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #55 0x96a20548 in TContainer::RemoveItems(IClientProxy const&, TContainerTree*, TContainer::ItemRefArray*) #56 0x96ab3c04 in TContainerTree::CloseContainerTree(unsigned long, IClientProxy const&, TContainer::ItemRefArray*) #57 0x96baa394 in TContainerTree::CloseChildContainer(TContainer::ListItemRef&, IClientProxy const&, TContainer::ItemRefArray*) #58 0x96bf0530 in TListData::CloseContainer(TContainer::ListItemRef&, bool) #59 0x96bf010c in TListData::DiscloseRow(unsigned long, BinaryState, bool) #60 0x96aba77c in TListView::TrackCell(TTableCell const&, Point, long, unsigned short) #61 0x96a78438 in TTableView::TrackItem(Point, long, unsigned short) #62 0x96aa40a0 in TBrowserView::TrackMouse(short&, Point, long, unsigned short) #63 0x96aba490 in TListView::TrackMouse(short&, Point, long, unsigned short) #64 0x96a77c8c in TBrowserView::Track(Point, long, unsigned short) #65 0x96aa1224 in TBrowser::Track(Point, long, unsigned short) #66 0x969d3d8c in HLTB_CDEF::EntryPoint(short, OpaqueControlRef*, short, long) #67 0x969fd138 in DataBrowserCDEF(short, OpaqueControlRef*, short, long) #68 0x969af3e8 in DispatchMessage(HIView*, short, long, unsigned char, unsigned char) #69 0x96a72880 in Track(HIView*, OpaqueEventRef*) #70 0x969b66e0 in ClassicCDEFAdapter::EventHandler(OpaqueEventHandlerCallRef* , OpaqueEventRef*, void*) #71 0x969a2244 in DispatchEventToHandlers #72 0x969a25ac in SendEventToEventTargetInternal #73 0x969a59c0 in SendEventToEventTargetWithOptions #74 0x96a29144 in SendControlDefTrack(HIView*, CGPoint const&, unsigned long*, void (*)(OpaqueControlRef*, short), short*) #75 0x96bdc4b4 in HIView::ClickInternal(CGPoint const&, unsigned long, void (* )(OpaqueControlRef*, short), bool) #76 0x96a70fec in HandleControlClick #77 0x96a608f8 in DoControlClick #78 0x96aa0ffc in HandleControlEvent #79 0x969ed820 in StandardWindowEventHandler #80 0x969a2244 in DispatchEventToHandlers #81 0x969a25ac in SendEventToEventTargetInternal #82 0x969b4aac in SendEventToEventTarget #83 0x96a6079c in HIView::Click(OpaqueEventRef*) #84 0x96aa0fb4 in HIViewClick #85 0x96aa0f60 in HandleClickAsHIView #86 0x96a777fc in HandleClickInContent #87 0x969dc830 in HandleWindowEvent #88 0x969ed814 in StandardWindowEventHandler #89 0x969a2244 in DispatchEventToHandlers #90 0x969a25ac in SendEventToEventTargetInternal #91 0x969b4aac in SendEventToEventTarget #92 0x96a77680 in SendEventFromMouseDown #93 0x96a51198 in HandleWindowClick #94 0x96b008d0 in HandleMouseEvent #95 0x969ed808 in StandardWindowEventHandler #96 0x969a2244 in DispatchEventToHandlers #97 0x969a25ac in SendEventToEventTargetInternal #98 0x96a0d8cc in CallNextEventHandler #99 0x04982340 in Java_org_eclipse_swt_internal_carbon_OS_CallNextEventHandler #100 0x0134a580 in 0x134a580 #101 0x01343ef0 in 0x1343ef0 #102 0x0182b448 in 0x182b448 #103 0x01662584 in 0x1662584 #104 0x0134116c in 0x134116c #105 0x966a8208 in JVM_Read #106 0x966cde94 in JVM_FillInStackTrace #107 0x966b8c80 in JVM_GetCPMethodClassNameUTF #108 0x9676d788 in JVM_EnableCompiler #109 0x049ce274 in callback #110 0x049a8bcc in fn13_3 #111 0x969a2244 in DispatchEventToHandlers #112 0x969a25ac in SendEventToEventTargetInternal #113 0x969b4aac in SendEventToEventTarget #114 0x969bfe04 in HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) #115 0x969b8f40 in HandleMouseEvent(OpaqueEventRef*) #116 0x969b1e94 in ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) #117 0x969a22fc in DispatchEventToHandlers #118 0x969a25ac in SendEventToEventTargetInternal #119 0x969b4aac in SendEventToEventTarget #120 0x0498f998 in Java_org_eclipse_swt_internal_carbon_OS_SendEventToEventTarget #121 0x016796e0 in 0x16796e0 #122 0x01661798 in 0x1661798 #123 0x01343e30 in 0x1343e30 #124 0x01343fb0 in 0x1343fb0 #125 0x01344220 in 0x1344220 #126 0x01343ec0 in 0x1343ec0 #127 0x0134116c in 0x134116c #128 0x966a8208 in JVM_Read #129 0x966cde94 in JVM_FillInStackTrace #130 0x967338bc in JVM_GetClassCPTypes #131 0x9673cce8 in JVM_Write #132 0x96744f00 in JVM_InvokeMethod #133 0x0134a580 in 0x134a580 #134 0x01343ec0 in 0x1343ec0 #135 0x01343ec0 in 0x1343ec0 #136 0x01344220 in 0x1344220 #137 0x01343ec0 in 0x1343ec0 #138 0x01343ec0 in 0x1343ec0 #139 0x01343ec0 in 0x1343ec0 #140 0x0134116c in 0x134116c #141 0x966a8208 in JVM_Read #142 0x966cde94 in JVM_FillInStackTrace #143 0x966c1f94 in JVM_GetCPFieldClassNameUTF #144 0x966c36f0 in JVM_GetMethodIxLocalsCount #145 0x00002c9c in 0x2c9c #146 0x000047b8 in 0x47b8 #147 0x90020d48 in _pthread_body Thread 2: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x9676b04c in JNI_CreateJavaVM_Impl #3 0x9676b1d0 in JNI_CreateJavaVM_Impl #4 0x967641fc in JVM_IsSupportedJNIVersion #5 0x90020d48 in _pthread_body Thread 3: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966d072c in JVM_FillInStackTrace #4 0x966e173c in JVM_RawMonitorEnter #5 0x9685d46c in JVM_UnloadLibrary #6 0x967641fc in JVM_IsSupportedJNIVersion #7 0x90020d48 in _pthread_body Thread 4: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x0134a580 in 0x134a580 #7 0x01343fb0 in 0x1343fb0 #8 0x01343fb0 in 0x1343fb0 #9 0x0134116c in 0x134116c #10 0x966a8208 in JVM_Read #11 0x96750af4 in JVM_StartThread #12 0x96755bd0 in JVM_GC #13 0x96755b64 in JVM_GC #14 0x96744174 in JVM_GetClassInterfaces #15 0x967641fc in JVM_IsSupportedJNIVersion #16 0x90020d48 in _pthread_body Thread 5: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x016b61a4 in 0x16b61a4 #7 0x017061cc in 0x17061cc #8 0x01705f28 in 0x1705f28 #9 0x01343ec0 in 0x1343ec0 #10 0x0134116c in 0x134116c #11 0x966a8208 in JVM_Read #12 0x96750af4 in JVM_StartThread #13 0x96755bd0 in JVM_GC #14 0x96755b64 in JVM_GC #15 0x96744174 in JVM_GetClassInterfaces #16 0x967641fc in JVM_IsSupportedJNIVersion #17 0x90020d48 in _pthread_body Thread 6: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966a29c4 in JVM_CurrentTimeMillis #4 0x966a2a60 in JVM_CurrentTimeMillis #5 0x967641fc in JVM_IsSupportedJNIVersion #6 0x90020d48 in _pthread_body Thread 7: #0 0x90034848 in semaphore_wait_trap #1 0x96764bfc in JVM_IsSupportedJNIVersion #2 0x967649e4 in JVM_IsSupportedJNIVersion #3 0x96744174 in JVM_GetClassInterfaces #4 0x967641fc in JVM_IsSupportedJNIVersion #5 0x90020d48 in _pthread_body Thread 8: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d078c in JVM_FillInStackTrace #4 0x9670b5bc in JVM_IsConstructorIx #5 0x966ec7f0 in JVM_RawMonitorEnter #6 0x96744174 in JVM_GetClassInterfaces #7 0x967641fc in JVM_IsSupportedJNIVersion #8 0x90020d48 in _pthread_body Thread 9: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966a28d4 in JVM_CurrentTimeMillis #4 0x96729c10 in JVM_Sleep #5 0x0134a580 in 0x134a580 #6 0x01343fb0 in 0x1343fb0 #7 0x01344310 in 0x1344310 #8 0x0134116c in 0x134116c #9 0x966a8208 in JVM_Read #10 0x96750af4 in JVM_StartThread #11 0x96755bd0 in JVM_GC #12 0x96755b64 in JVM_GC #13 0x96744174 in JVM_GetClassInterfaces #14 0x967641fc in JVM_IsSupportedJNIVersion #15 0x90020d48 in _pthread_body Thread 10: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697d34 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x0134a580 in 0x134a580 #7 0x01343fb0 in 0x1343fb0 #8 0x01343fb0 in 0x1343fb0 #9 0x01343ec0 in 0x1343ec0 #10 0x01344310 in 0x1344310 #11 0x0134116c in 0x134116c #12 0x966a8208 in JVM_Read #13 0x96750af4 in JVM_StartThread #14 0x96755bd0 in JVM_GC #15 0x96755b64 in JVM_GC #16 0x96744174 in JVM_GetClassInterfaces #17 0x967641fc in JVM_IsSupportedJNIVersion #18 0x90020d48 in _pthread_body Thread 11: #0 0x90073c48 in mach_msg_trap #1 0x90005f90 in mach_msg #2 0x96697dd0 in __cmpdi2 #3 0x966d9264 in JVM_GetCPFieldSignatureUTF #4 0x966fc7ac in JVM_GetMethodIxModifiers #5 0x966f9a48 in JVM_MonitorWait #6 0x0134a580 in 0x134a580 #7 0x01343fb0 in 0x1343fb0 #8 0x01344310 in 0x1344310 #9 0x0134116c in 0x134116c #10 0x966a8208 in JVM_Read #11 0x96750af4 in JVM_StartThread #12 0x96755bd0 in JVM_GC #13 0x96755b64 in JVM_GC #14 0x96744174 in JVM_GetClassInterfaces #15 0x967641fc in JVM_IsSupportedJNIVersion #16 0x90020d48 in _pthread_body PPC Thread State: srr0: 0x96a25b24 srr1: 0x0200f030 vrsave: 0x00000000 xer: 0x20000000 lr: 0x96a25b20 ctr: 0x96a546ec mq: 0x00000000 r0: 0x00020000 r1: 0xf007b4e0 r2: 0x00000000 r3: 0x00000000 r4: 0x00000000 r5: 0x00000000 r6: 0x00000001 r7: 0x00000000 r8: 0x00000000 r9: 0x080eedf8 r10: 0x00000000 r11: 0xf007b580 r12: 0x96a546ec r13: 0x00088f00 r14: 0x06176110 r15: 0x04987f14 r16: 0xf007be50 r17: 0x6b2c04c8 r18: 0x00000000 r19: 0x00000000 r20: 0x00000003 r21: 0x00000000 r22: 0x00000000 r23: 0x0755f3b0 r24: 0xf007bc50 r25: 0xf007ba60 r26: 0x00000000 r27: 0x00000001 r28: 0xf007b640 r29: 0x00000000 r30: 0x00000000 r31: 0x96a2a588
|
2003-04-08 05:13:09
| 1,049,790,000 |
resolved fixed
|
f3c9326
| 1,049,830,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon2/org/eclipse/swt/widgets/Tree.java
|
SWT
|
3,742 | 35,607 |
Bug 35607 Sash missing cursor in Structure Compare of the Sync view
|
In the Structure Compare, the structure "pane" is separated from the text pane by a sash. On Windows, you get a SE cursor on that sash, but not on GTK.
|
2003-03-24 16:54:13
| 1,048,540,000 |
resolved fixed
|
64cbe9d
| 1,049,820,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java
|
SWT
|
3,743 | 34,122 |
Bug 34122 Control Example
|
Eclipse 200303062359 RH 8.0 Combo Tab The SWT.BORDER button does not seem accessible. The SWT.READ_ONLY button is only valid when SWT.DROP_DOWN is selected, but it is not disabled when SWT.SIMPLE is selected Dialog Tab Dialog type = message box Button Styles SWT.CANCEL SWT.YES: Dialog opens with ok button. Button Styles SWT.CANCEL SWT.NO: Dialog opens with ok button. Table Tab Select SWT.CHECK: there is a lot of flash when an item is checked
|
2003-03-07 13:07:27
| 1,047,060,000 |
resolved fixed
|
1c03c03
| 1,049,810,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/DialogTab.java
|
SWT
|
3,744 | 34,445 |
Bug 34445 Reverse sort for AddressBook example
|
When you click on the header for a column in the AddressBook example, it sorts the selected column. It would be nice if selecting it again reversed the sort as most client applications would.
|
2003-03-10 15:40:05
| 1,047,330,000 |
resolved fixed
|
aedecef
| 1,049,810,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/addressbook/AddressBook.java
|
SWT
|
3,745 | 34,499 |
Bug 34499 Can't select styles in combo example
|
RC2 Linux-GTK 1. Launch the ControlExample and go to the Combo tab. 2. With SWT.SIMPLE selected, try to select SWT.READ_ONLY or SWT.BORDER. 3. The checkboxes appear enabled but clicking in them only causes them to flash. 4. Select SWT.DROP_DOWN and repeat step 2. 5. Now SWT.READ_ONLY can be selected, but SWT.BORDER still cannot. The checkboxes should appear disabled when they're not applicable. Also, if the SWT.BORDER style is never usable it probably shouldn't appear in the tab?
|
2003-03-10 16:47:37
| 1,047,330,000 |
resolved fixed
|
0574277
| 1,049,490,000 |
examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/ComboTab.java
|
SWT
|
3,746 | 35,496 |
Bug 35496 Setting font for Table headers does not work
|
Assigning a new font to a Table sets the new font for the rows within the table, but leaves the Table headers as they are. It DOES work under Win32, though. I looked in the SWT source code (for Win32) for table s setFont() method, and found the following ... Maybe something similiar needs to be done for GTK, too ? public void setFont (Font font) { checkWidget (); super.setFont (font); setScrollWidth (); /* * Bug in Windows. Setting the font will cause the * table area to be redrawn but not the column headers. * Fix is to force a redraw on the column headers. */ ... doing the native stuff ... }
|
2003-03-21 12:46:40
| 1,048,270,000 |
resolved fixed
|
dcf857f
| 1,049,400,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/TableColumn.java
|
SWT
|
3,747 | 34,515 |
Bug 34515 GTK: Cascade MenuItem doesn't support image
|
RC2 Linux-GTK 1. Launch the ControlExample and go to the Coolbar tab. 2. Select the SWT.DROP_DOWN style. 3. In the middle coolbar, grab the sash and pull it all the way to the left such that the pulldown menu appears for the second item. 4. Click on the pulldown arrow. 5. The item in the pulldown has no icon. The buttons in the right toolbar (the ones with no chevron) retain their icons when they appear in the pulldown.
|
2003-03-10 17:19:00
| 1,047,330,000 |
resolved fixed
|
a1d2449
| 1,049,400,000 |
bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java
|
SWT
|
3,748 | 34,385 |
Bug 34385 Setting direction on SWT.ARROW Button displays warnings
|
RC2, using gtk2.2.1 - run the Control Example, go to the Button tab - select the ARROW radio and will get the following warning spew: (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtklabel.c: line 1230 (gtk_label_set_justify): assertion `GTK_IS_LABEL (label)' failed (<unknown>:1756): Gtk-CRITICAL **: file gtkmisc.c: line 210 (gtk_misc_set_alignment): assertion `GTK_IS_MISC (misc)' failed
|
2003-03-10 13:01:53
| 1,047,320,000 |
resolved fixed
|
27ddda3
| 1,049,400,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,749 | 35,156 |
Bug 35156 Ctrl+F1 works only on some fields in the help search
|
OS: Linux - GTK Build: RC2 with IBMJava2-131 JRE Steps to reproduce: 1. Launch eclipse with DBCS locale. 2. Select from the menu bar Search -> Help 3. When the window pops up, click on the first text field and press ctrl+F1. Expected Result: A help pop up screen should come up displaying information about the Help Search. Execution result: Nothing Happens Comments: 1. This occurs on all DBCS languages. 2. This event only happens in the first text field. When cycling through all the other fields using the tab key, the ctrl+F1 functions properly by displaying the correct text. 3. The attachment will show exactly which field is not responding to the ctrl+F1, for it is circled in red. The fields circled in green work properly.
|
2003-03-17 13:20:01
| 1,047,930,000 |
resolved fixed
|
1d3ef3b
| 1,049,390,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java
|
SWT
|
3,750 | 35,773 |
Bug 35773 Disposing a toolbar does not dispose the child controls properly
|
GEF and others place drop-down combo controls on the Toolbar via a custom ContributionItem. At some point in our code we ask the Combo if it is disposed, and it says no. Then we try to do something, and it throws widget is disposed exception. The Toolbar is getting disposed, but is not disposing its child, the Combo.
|
2003-03-27 14:04:58
| 1,048,790,000 |
resolved fixed
|
dd59f5c
| 1,049,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java
|
SWT
|
3,751 | 33,369 |
Bug 33369 [JUNIT] Button fails
|
I20030221 setLocation fails. setImage has a serious error and hangs the execution of the tests.
|
2003-02-26 16:30:30
| 1,046,300,000 |
resolved fixed
|
dabb5d2
| 1,049,320,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Button.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java
|
SWT
|
3,752 | 35,628 |
Bug 35628 Rapid button pressing
|
I've noticed that the buttons I create with SWT seem to have problems responding to rapid mouse clicks. Here's the basic scenario: I create a button on a Composite, without necessarily adding any SelectionListeners. Then I (compile, run, and) click it many times in fast succession. Visually, the button appears to depress on about every other click. However (by adding a listener), I can tell that selection events are being fired with every click. The overall effect is jolting -- the button appears to do its business too many times (since I intuitively expect it to function only as many times as it depresses). When I use a native windows app, I can quick as fast as I like, and I will see a depression with each click. If you compile the following, and click on the button quickly 10 times, the "click" counter will run up to 9, but you'll see 5 depresses (I think ... it's hard to count). import java.io.*; import java.util.*; import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.layout.*; public class Test { static int count = 0; public static void main (String [] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); final Button button = new Button(shell, SWT.PUSH); button.setText("click me"); button.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { System.out.println("click: " + count++); button.update(); } }); shell.pack(); shell.open(); while (!shell.isDisposed ()) if (!display.readAndDispatch ()) display.sleep (); display.dispose (); } }
|
2003-03-25 00:32:40
| 1,048,570,000 |
resolved fixed
|
d91f47f
| 1,049,310,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java
|
SWT
|
3,753 | 24,877 |
Bug 24877 Cannot get file extension from swt FileDialog
|
There's no way to get the file extension that the user selected from the FileDialog. It makes this dialog almost unusable since we can't determine the correct file extension to append to the file name. We need an api for the file dialog to return the "Save as type" field that the user selected in the FileDialog. Athough we are using this dialog in our own product, this problem can be illustrated when you export to a jar file. Select *.zip in the "Save as type" and enter a file name (eg. test). The export wizard should use the file "test.zip" when this happens. STEPS: 1) Select a java file 2) Select File->Export... 3) Select JAR file and press Next 4) Press Browse... to select a Save As file dialog 5) Enter test for the file name 6) Select *.zip for the "Save as type" field 7) Press Save Result: The JAR export wizard uses "test" for the JAR file field. Expected result: The JAR export wizard should use the "test.zip" for the JAR file field.
|
2002-10-16 17:15:55
| 1,034,800,000 |
resolved fixed
|
8bc2069
| 1,049,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java
|
SWT
|
3,754 | 33,086 |
Bug 33086 [JUNIT]TabFolder.setSelection to an invalid index does not leave selection unchanged
|
I20030221 Test_org_eclipse_swt_widgets_TabFolder.test_setSelectionI junit.framework.AssertionFailedError: expected:< [Lorg.eclipse.swt.widgets.TabItem;@2ea957> but was:< [Lorg.eclipse.swt.widgets.TabItem;@6f9335> at junit.framework.Assert.fail(Assert.java:47) at org.eclipse.swt.tests.junit.SwtTestCase.failNotEquals(SwtTestCase.java:99) at org.eclipse.swt.tests.junit.SwtTestCase.assertEquals(SwtTestCase.java:67) at org.eclipse.swt.tests.junit.SwtTestCase.assertEquals(SwtTestCase.java:71) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_TabFolder.test_setSelectionI(T est_org_eclipse_swt_widgets_TabFolder.java:311) at org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_TabFolder.runTest(Test_org_e clipse_swt_widgets_TabFolder.java:419) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.jav a:377) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:261) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:15 2) at java.lang.reflect.Method.invoke(Native Method) at com.apple.buckyball.app.LaunchRunner.run(LaunchRunner.java:82) at com.apple.buckyball.app.LaunchRunner.callMain(LaunchRunner.java:44) at com.apple.buckyball.app.CarbonLibApp.launch(CarbonLibApp.java:67)
|
2003-02-25 14:35:02
| 1,046,200,000 |
resolved fixed
|
c3f6a1d
| 1,049,230,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/TabFolder.java
|
SWT
|
3,755 | 29,765 |
Bug 29765 BIDI: ToolTiptext do not have Right to left Reading order
|
Using Win2k with Arabic locale set as default locale, Using build eclipse-SDK- I20030115-win32.zip. Using SWT components, create a button with SWT.RIGHT_TO_LEFT extended style, put a tool tip text that contains mixed Arabic with English text, The tool tip text do not have a rigth to left reading order.
|
2003-01-19 07:36:25
| 1,042,980,000 |
resolved fixed
|
0eda67c
| 1,049,230,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/Composite.java
|
SWT
|
3,756 | 34,457 |
Bug 34457 Changing SWT.BORDER increments ProgressBar
|
RC2 - run the ControlExample, go to the ProgressBar tab - repeatedly click on the SWT.BORDER checkbox, and note that the sample ProgressBar increments each time
|
2003-03-10 15:53:51
| 1,047,330,000 |
resolved fixed
|
de2fef0
| 1,049,220,000 |
bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scale.java
|
SWT
|
3,757 | 28,589 |
Bug 28589 RedHat 8.0 - DefaultInformationControl hangs workbench
|
Using DefaultInformationControl to provide tooltips for table items. Works flawlessly in windows and almost flawlessly in GTK. Almost in that they work great in Views and in my editor. However, I have a Dialog that includes a Table. The tooltip for an item in that table appears, but then its like the tooltip has grabbed focus and will not let go. Once the tip is visible, there's no way to get rid of it and I have to kill the Eclipse process. See soon to be attached file for how I'm using DefaultInformationControl and AbstractHoverInformationControlManager to achieve this.
|
2002-12-17 21:27:43
| 1,040,180,000 |
resolved fixed
|
ccc4cee
| 1,049,220,000 |
bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java
|
SWT
|
3,758 | 33,529 |
Bug 33529 Banded background shows through in text's focus rings
|
RC1 - open any plugin.xml file with PDE editor Observe: banded background shows through in the focus ring are of all text fields (editable and non editable)
|
2003-02-28 07:14:42
| 1,046,430,000 |
resolved fixed
|
7062e8f
| 1,049,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Composite.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
|
3,759 | 35,602 |
Bug 35602 parent with background color results in "box" around widget
|
Eclipse 2.1 RC3a Set the parent's background to some color and there appears to be a box around the child widget: public static void main(String[] args) { Display d = Display.getDefault(); Shell shell = new Shell(d); shell.setLayout(new GridLayout()); shell.setBackground(d.getSystemColor(SWT.COLOR_RED)); Button b = new Button(shell, SWT.PUSH); //b.setBackground(d.getSystemColor(SWT.COLOR_RED)); b.setText("Hello"); final Combo c = new Combo(shell, SWT.READ_ONLY); //c.setBackground(d.getSystemColor(SWT.COLOR_RED)); c.setItems(new String[] {"a", "b", "c"}); shell.open(); while (!shell.isDisposed()) { while (!d.readAndDispatch()) { d.sleep(); } } } Possible fix, look for a prent widget with a background color in Control.colorProc: case OS.kControlMsgSetUpBackground: { float [] background = null; Shell shell = getShell (); Control temp = this; while (temp != null && background == null) { background = temp.background; temp = temp.parent; } if (background != null) { OS.RGBBackColor (toRGBColor (background)); } else { OS.SetThemeBackground ((short) OS.kThemeBrushDialogBackgroundActive, (short) inDrawDepth, inDrawInColor != 0); } return OS.noErr; }
|
2003-03-24 15:57:14
| 1,048,540,000 |
resolved fixed
|
914ccb6
| 1,049,150,000 |
bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Control.java bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Shell.java
|
SWT
|
3,760 | 35,588 |
Bug 35588 Cannot assume that FontStruct.per_char is != 0
| null |
2003-03-24 12:37:55
| 1,048,530,000 |
resolved fixed
|
f370a24
| 1,049,140,000 |
bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/graphics/GC.java
|
SWT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.