Submitted On 31-DEC-2000
i7wegman
I have the same problem under SuSE 7.0
Submitted On 31-JAN-2001
sreilly
Please fix this! The java.awt.PrintJob window shows up as
extremely large (many thousands of pixels) because of this
bug. All of my users who run Mandrake 7.2 cannot print because of this! I don't know if it is specific to Mandrake 7.2, or KDE 2, but non-Java programs have no problems!
Calling setSize(...) on these windows seems to have no effect. Many windows show up with very incorrect sizes and are very annoying, but the PrintJob window is a show stopper.
The same problem appears in the 1.3.1 release beta!
Submitted On 06-FEB-2001
Arino
I assume it is closely related to 4395578,
both seem to have the same reason
Submitted On 28-FEB-2001
sreilly
I don't know if this is helpful or not, but the IBM JRE 1.3.0 doesn't have this problem, so I have switched to using that for a little while.
Submitted On 13-APR-2001
helged
Still the same problem with jdk1.3.1 and Redhat7.0.
Get Blackdown until SUN realizes this bug makes their jdk
unusable for swing and KDE2
Submitted On 01-MAY-2001
djsnider
Under SuSE 7.1 using 1.3.1 rc2 - the sizing problem now
seems fixed but the problem with windows dissapearing does
not!
Submitted On 19-JUL-2001
narape
I see this problem too, I have Mandrake 8 with KDE 2.1.1. I
can't use Jbuilder 5 with Sun JDK 1.3 and Sun JDK 1.4 beta,
but with JDK 1.3.1 it works fine, but then i get another bug
with autocompletion not working.
Submitted On 29-JUL-2001
eca2503
Problem of this kind also appears under fvwm/fvwm2.
I switched to ctwm, it appears to work better.
Submitted On 31-JUL-2001
cheiny
Occurs on RedHat 7.1, KDE 2.1.1, JDK 1.3.1. Critical blocking problem for our project - development proceeding under Gnome, but customer base wants KDE.
Submitted On 10-AUG-2001
bca
This bug can also be seen when running either Forte 3 under
Linux Mandrake 8.1 . The main window appears a lot too small
and is not usable(bad menu drawing,...)
It can also be seen but at a less problematic level with
Together Control Center (www.togethersoft.com).
When you show up the property window, switch to another
desktop an then re-switch to Together, your property window
doesn't appear anymore on the screen and all action to show
it up via menu or shortcuts has no effect. You must
minimize and then maximize Together again to make the
property window show up again.
Those bugs are present on the j2sdk1.3 and j2sdk1.4.0
downloaded from java.sun.com.
For reference my Linux system is hte following :
Linux version 2.4.2-3mdk (jgarzik@no.mandrakesoft.com) (gcc
version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release))
#1 Tue Feb 27 02:14:17 CET 2001
Submitted On 12-AUG-2001
JohanF
One possible workaround is to use Xnest and use the sawfish
windowmanager in Xnest.
But pretty please fix this. KDE is a major player in the
desktop world on Linux.
Submitted On 14-AUG-2001
cairn
Was JDK 1.3 even *tested* on KDE before being released?
This is a pretty serious bug to have in production software.
Submitted On 23-AUG-2001
SJS
I have similiar windowing grief with Java using fvwm2 on
Solaris 2.6 and Solaris 2.5.1 SPARC machines. Switching to
CDE or WindowMaker solves the problem. I suspect it's a
window manager issue and not solely a Java problem.
Submitted On 03-SEP-2001
mfo
Please fix the KDE2 problems, there also seems to be a
problem with JBuilder 5's Code Insight windows which do not
always appear 'on top' (you need to click them to front by
locating them in the list of windows).
Submitted On 11-SEP-2001
maxmaz
I've the same problem under RedHat 7.1
A *lot* of people use KDE as desktop and KWin is part of
core KDE.
Perhaps a KDE developer (look at bug 14732 in
bugs.kde.org) can assist.
Submitted On 20-SEP-2001
RDaluz
I'm using RedHat Linux 7.1 with KDE 2.2 When pressing the
run button the size of the window that will appear is
about .75"x.75" (inches). Then if you double click it the
phone will appear but the window is close and open. I'm
using blackdown 1.3.1. But in gnome 1.4 it is working
properly.
Submitted On 25-OCT-2001
cairn
For anyone interested, here's a workaround we're using for
this bug. Unfortunately, you have to create a subclass of
JDialog...
public class FixDialog extends JDialog
{
private static final boolean IS_LINUX = System.getProperty
("os.name", "").indexOf("Linux") != -1;
public void pack()
{
if ( IS_LINUX && !isResizable() )
{
packFix();
}
else
{
super.pack();
}
}
private void packFix()
{
setResizable( true );
super.pack();
setResizable( false );
}
}
Submitted On 09-NOV-2001
kirkjwalker
This should be fixed.
Submitted On 12-NOV-2001
Chondo
A decision to not include a solution for this bug in version
1.4 could
make Java unusable for our product on Linux. Using the beta
1.4
release on fvwm causes our product to have numerous
windowing
problems (see 4472864). I was hoping we could use KDE as a
temporary work-around, and now I see KDE also has similar
problems.
Can anyone at Sun tell us what window manager Java will
support on
the Linux platform? The installation notes for 1.3.1:
http://java.sun.com/j2se/1.3/install-linux-sdk.html
make it sound like KDE/KWM are recommended.
Submitted On 21-NOV-2001
martindudle
had same problem. digging a bit deeper showed the following:
window
manager WindowMaker KDE FVWM twm
jdk
------------------------------------------------------------
jdk1.1.8(sun) no no
jdk1.2.2(sun) no no
jdk1.3.1_01(sun) no no no yes
j2sdk1.3.1(blackdown) no no
IBMJava2-13 yes yes
-----------------------------------------------------------
now with IBMJava2-13 everything works fine for me.
Submitted On 27-NOV-2001
saifi_khan
<subject>Workaround</subject>
Hi folks:
I faced the same issue on my Linux box.
The current environment is:
Redhat Linux
Linux Kernel: 2.4.2-4
glibc 2.2.2-10
kde 2.1.x
The J2ME Wireless Toolkit seems to work fine with
SUN JDK 1.4.0 Beta but not with JDK 1.3.x!
Hope this work around would be helpful for some of you.
regards
Saifi Khan.
Submitted On 11-DEC-2001
unoengborg
The marketing departments decision not to support KDE is
a very bad one, As KDE is the most complete desktop
availabel on Linux today, and probably the most widely used.
Very sad indeed!
Submitted On 14-DEC-2001
szeflerm
java1.3.x is requesting that un-resizable transient
windows such as JProbe's splash screens and JBuilder
code-insight popups are started in the iconified state,
which kwin respects. Iconifying the application, and then
de-iconifying it returns the windows to the appropriate
(non-iconified) state. This is a very serious problem and
is certainly a bug in java not kde (the iconify request is
certainly wrong, and probably a hack for some other wm).
Submitted On 11-JAN-2002
Toojays
Major problem for our application: JOptionPane comes up with
no text in KDE 2.2.2 on Linux. If I use twm as the window
manager on Linux JOptionPane works fine. If I use KDE 2.2.2 on
Solaris it also works.
One bizarre thing is that if I first
start a bare xsession (like with "xinit $(which xterm)") and
load kwin, it works fine (JOptionPane shows text). I can load
kdesktop and kicker and it still works. But if I load all of
KDE with the startkde script (which loads ksmserver, don't know
what that does), my JOptionPanes come up blank. They have the
icon, but there is no button or text. I don't know how to
explain to people that the readability of error messages in our
app are window manager dependant! It seems ridiculous.
Submitted On 21-JAN-2002
paul.lewis
Not support KDE! *shakes head in disbelief* Dumb, dumb,
DUMB! Fire the marketting manager, now! (Has he ever even
used a Linux desktop?)
Submitted On 24-JAN-2002
maxmaz
Perharps SUN decides that a KDE user can't be a Java
developer?!?
Submitted On 29-JAN-2002
uwe_guenther
It works fine with JDK1.4.0-rc an my Linux Box with
KDE2.2.1pre. So it seems that the Bug has been fixed in JDK
1.4.
Submitted On 31-JAN-2002
strider01
This bug MUST be fixed!!
Strider <><
Submitted On 07-FEB-2002
jrm@klgroup.com
I know the decision not to support KDE/kwin is in part
political (Sun backs Gnome) and part pragmatic (there is
only enough resource to support so many wms), but this
is a serious problem for a very common desktop environment.
We deploy a java app on Linux, with JRE, and right now
we are using Blackdown 1.3.0 which does not have this
problem (though Blackdown 1.3.1 does). We'd like to use
a newer JVM and we may have to go with IBM if Sun does
not fix this.
Submitted On 30-MAR-2002
alvaro_ortiz
Please give your marketing manager a Linux box to play with,
and she will understand eventually. In the mean time I would
recommend using the IBM JVM, which supports KDE and
WindowMaker.
Submitted On 08-APR-2002
gholmer
"I should report that our marketing department,
specifically the Product Manager for Java2 SDK, Standard
Edition, version 1.4,
has decided that we won't support KDE/kwin."
*WRONG* answer. KDE is the standard in our shop, as it is
in many other places. Modal dialog issues under 1.4 final
are keeping us from migrating from 1.3.1 to 1.4.
Submitted On 09-APR-2002
Gniarf
"I should report that our marketing department,
specifically the Product Manager for Java2 SDK, Standard
Edition, version 1.4, has decided that we won't support
KDE/kwin. Gnome/sawfish would be the only fully-supported
configuration."
all religious wars aside, facts are KDE and Gnome really
have about the same popularity (say 30-35 % each) and
seeing Sun doing such a bad move is a frightening sight.
Submitted On 10-APR-2002
cbruccoleri
Please fix this bug!
I hope that news about sun decision to drop KDE support is
false, it is simply frightening to me (and about 50% linux-
java community) I guess.
Submitted On 13-APR-2002
jdode
CodeInsight of JBuilder6 doesn't work with KDE 2.2.2 (SuSE
7.3). I don't think I'm the first to report this...
I don't know if the following problem is also related:
The "About" dialogbox of a Swing App "generated" by
JBuilder6 is just as big enough to show the "Ok" button.
An attempt to resize it collapses it and it can't be
accessed anymore at all. When I set "setResizable(false);"
to "true", the dialogbox looks normal (but is resizable...)
Will go and get JDK 1.4 now...
Submitted On 18-APR-2002
robert-x
I had the same problems with the Wireless Toolkit running on SuSE 7.1 using
KDE 2.2 but not when I use the Gnome desktop. Today I installed KDE 3.0 (QT
3.0) and everything worked fine!!!
Submitted On 19-JUN-2002
user_at
I'm running suse 8.0 / kde 3.0 / java1.3.1_02 and the toFront() method
isn't working. one has to pick the window from the taskbar, which is highly
undesirable.
why is sun dropping the support for kde? i can't see any good in that move.
Submitted On 28-JUN-2002
mechie
does this bug occur on KDE 3, SUSe 7.0, with JRE 1.4.0_01
too? in that case, it explains all the headache i've had from
improperly sized windows! *damn*
Submitted On 29-JUN-2002
mechie
sorry, I meany SuSE 8.0 =p
Submitted On 04-JUL-2002
noselasd
This issue shows up under Redhat Linux 7.x as well...
Submitted On 03-AUG-2002
alflanagan
Using Mandrake Linux 8.2, KDE 3, and java 1.4.1 beta, I do
NOT see this problem. So maybe there's hope.
Submitted On 15-OCT-2002
stewert
Hi all,
I have found a entry in the forum about getInsets()
(http://forum.java.sun.com/thread.jsp?
forum=57&thread=302473). And a guy wrote there following:
"On most systems, the size of decorations around a native
window depends on external parameters which are not known
to the program (accessibility, window manager configuration
on unix systems, etc).
Because of that, the insets of the window is 0 until it
becomes visible, at which point the inset is added to the
current size.
Note that this is why most java programs incorrectly save the
size to their main window:
- they save their size while being visible (including inset)
- they restore their size before setVisible(true), which does
not include insets
- when becoming visible, their size increases."
I think that's interesting. Some guys here wrote that they
haven't this problem under KDE3. May be in KDE3 will be
the "insets" known before the window is displayed.
regards
Submitted On 01-NOV-2002
jpersson1
Seeing a bug like this sticking around for a few years really
makes me wonder what's going on at the headquarters at Sun.
I've been developing in Java since the early days and always
loved the language, but it really makes me sad to see Sun
wasting it all away by focusing on the wrong issues all the
time.
I'm also an avid Python user and when I compare Sun's
behaviour with the development model of Python (where each
user actually means something to the core team) I really think
Sun has a few lessons to learn. If Java would have been an
Open Source(TM) project, bugs like this would have been
fixed in a few days.
If Sun really want Java to succeed I think it is time they stop
listening to their marketing department and start adressing
the real issues.
PLEASE NOTE: JDK6 is formerly known as Project Mustang
|