全屏鞋子应用程序?
我查看了文档,但一无所获 - 有没有办法让 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;
..所以一切似乎都在那里,只需执行 :fullscreen =>; true
好像没有什么作用?
I looked around the documentation but found nothing - is there a way to make a Shoes app display full screen?
Possibly something like..
Shoes.app :fullscreen => true do
para "test"
end
Looking in the source-code, the following lines mentioning "fullscreen" (among others):
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 it all seems to be there, just doing :fullscreen => true
seems to have no effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Opps,问题中引用的
app->fullscreen
代码来自最新的开发代码,而不是当前的2/Raisins
版本..:fullscreen 将在下一个版本中工作!
Opps, the
app->fullscreen
code quoted in the question was from the latest development code, not the current2/Raisins
release..:fullscreen
will work in the next version!