按下F11时,如何使我的跷跷板程序全屏显示?(不仅仅是最大化)
我现在有这个:
(defn toggle-full-screen [e]
(-> (to-root e)
magic!)
(def full-screen-action (action :name "Full Screen" :tip "Full Screen"
:mnemonic f :key (keystroke "F11")
:handler toggle-full-screen))
(def view-menu (menu :text "View"
:mnemonic v
:items [full-screen-action]))
(def top-menubar (menubar :items [view-menu]))
[...]
toggle-full-screen
在按下F11时运行,但我不知道如何使帧全屏。
Caveat scriptor,我还没有在seesaw中尝试过这一点,但我认为这主要是为了直接利用swing中可用的东西。
以下建议使用swing API可以做些什么:http://weblogs.java.net/blog/mkarg/archive/2010/01/03/fullscreen-mode-cool
此外:http://docs.oracle.com/javase/tutorial/extra/fullscreen/index.html
技巧的至少一部分是在帧上调用setUndecorated
。
我还没有研究过你是如何在跷跷板中找到必要的摆动物体的。