Yes you did. What does that have to do with writing a native UI app in C++?
Dr Brain - Sat May 06, 2006 3:30 am
Post subject:
Recap:
I say Java allows native looks
You say Java's look sucks
I say C++ is no better
You say at least C++ uses native looks
I'm now confused
Mr Ekted - Sat May 06, 2006 3:38 am
Post subject:
Windows UI looks nice.
Various Linux UI look nice.
Mac UI looks nice.
All attempts by Java to make a nice non-native UI fail.
Using a platform-independent language like Java, but then specifically using native UI is pretty hypocritical. Therefore Java either sucks or is hyprocritical.
D1st0rt - Sat May 06, 2006 3:09 pm
Post subject:
I'll admit I couldn't stand the way swing looked until 1.5, though I don't use the default look and feel for stuff anymore. In my opinion, the use of the JGoodies Looks package in combination with the Abeille Forms Designer produces the best looking results.
Bak - Sat May 06, 2006 4:58 pm
Post subject:
Yeah when I make GUIs in Java I always use the native look and feel
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}
catch (Exception e) { }
|
and it looks like any other application