2009-04-06 5 views
3

설명서를 둘러 보았으나 아무 것도 발견되지 않았습니다. Shoes 앱을 전체 화면으로 표시 할 수있는 방법이 있습니까? 소스 코드에서 보면 아마도 뭔가 같은전체 화면 신발 응용 프로그램입니까?

..

Shoes.app :fullscreen => true do 
    para "test" 
end 

는, 다음 줄은 (다른 사람의 사이에서) "전체 화면"언급 :

shoes/app.c:58: app->fullscreen = FALSE; 
shoes/native/cocoa.m:851: if (app->fullscreen) { 
shoes/native/gtk.c:557: if (app->fullscreen) 
shoes/native/cocoa.m:872:shoes_native_app_fullscreen(shoes_app *app, char yn) 
shoes/native/windows.c:934: if (app->fullscreen) 
shoes/native/windows.c:935: style = WINDOW_STYLE_FULLSCREEN; 

모두가 될 것으로 보인다 ..so 저기, 그냥 :fullscreen => true 아무런 효과가없는 것 같습니다?

답변

4

된 기회, 질문에 인용 app->fullscreen 코드가없는 현재 2/Raisins 자료, 최신 개발 코드에서였다 ..

$ git co 2/Raisins 
HEAD is now at 42dda8a... * bugs: closing some bugs, moving others to the next release. 
$ grep -r -i fullscreen * 
[nothing] 
$ git co master 
Switched to branch "master" 
$ grep -r -i fullscreen * 
shoes/app.c: app->fullscreen = FALSE; 
[...] 

:fullscreen은 다음 버전에서 작동합니다!