How can I (natively) implement the fullscreen feature of OSX Lion in a Java application?

The current answers given incorporate a good method for achieving a sort-of-fullscreen feature. I've read that Eclipse may be able to use the "native" fullscreen feature of Lion. That's what I'm asking about.

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

I found this on Apple's Java release notes:

Mac OS X 10.7 Lion Fullscreen Support

Java applications on Lion can now opt into the Fullscreen window feature per-window. Developers can use the com.apple.eawt.FullScreenUtilities class to mark windows as able to be full screened, and the com.apple.eawt.Application.requestToggleFullScreen(Window) method to programmatically request the window enter and exit full screen mode. This API does nothing on Mac OS X 10.6 Snow Leopard.

link|improve this answer
feedback

I don't know about natively, but Java does support fullscreen applications without needing native code:

http://www.exampledepot.com/egs/java.awt/screen_FullWin.html

The question is has Apple implemented that with Lion in their JDK.

link|improve this answer
This FS is actually more like the "exclusive gaming FS", where you can select resolution, refresh rate, etc. – Eduardo Costa Nov 27 '11 at 16:04
feedback

Java allows you full screen mode, that has nothing to do with Lion. (via chubbard)

If you want to write native Cocoa applications with Java, you need to use JavaBridge. However, JavaBridge is deprecated.

My recommendation is: If you want to write native OSX Cocoa applications, do it in Objective C or Macruby. MacRuby is currently receiving funding from Apple (Sansonetti is a full-time Apple employee) and might just have a future with Cocoa. Java doesn't.

link|improve this answer
Your link is the same as the one above. Your native-recommendation makes sense, but we already have a full blown and mature Java implementation of the product. Apple usually had special OSX API's for Java - I hoped Oracle had something similar for the Lion version already. – gamma Jul 31 '11 at 9:48
I know the link is the same, I'm trying to give a complete answer. I attribute it to chubbard. Apple did provide that, it was called JavaBridge. The link is above. – nes1983 Aug 1 '11 at 19:21
I can add multi platform applications like NetBeans. When running on Mac, the menu is integrated to OSX menu (i.e. no "menu bar" inside the window). They have a "fullscreen" feature, but it's not like Lion's FS. I would love to create a patch and submit it to NB team. – Eduardo Costa Nov 27 '11 at 15:50
feedback

Please file a bug report with Apple. They maintain Java on OS X and it should conform to their published standards.

link|improve this answer
Not after Java 6 – no.good.at.coding Aug 14 '11 at 8:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.