有没有办法在横向中使用按钮之间的空间
经过大量挖掘,我意识到在 S50v5 的横向模式下没有 Qt 方式使用 3 个中间按钮,但是我不想浪费这个宝贵的空间。我尝试将我的小部件放在那里,但菜单栏位于顶部并且小部件不可见。
有没有办法在不使用本机 Symbian API 的情况下利用这个空间?
After much digging I've realised there is no Qt-way to use 3 middle buttons in landscape mode in S50v5, however I don't like to waste this precious space. I've tried to place my widgets there but menu bar is on top and widgets aren't visible.
Is there any way to utilise this space without using native Symbian APIs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
控制 Qt 中的常用软键是一件痛苦的事情。我使用的策略是使用
showFullScreen()
使QMainWindow
全屏显示,这样您就可以自己使用软键空间。您必须确保您创建的任何小部件最终都是主窗口的父窗口,并注意 创建弹出窗口时出现此错误。Controlling the stock softkeys in Qt is a pain. The strategy I have used is to make the
QMainWindow
full-screen withshowFullScreen()
which allows you to use the softkey space yourself. You will have to make sure any widgets you create are ultimately parents of the main window, and be mindful of this bug when creating pop-ups.