如果在 Mac OS X 上将模态 QDialog 作为父级,则 QMainDialog 变为模态
我使用父窗口小部件创建 QMainWindow,该窗口小部件是模态 QDialog。 QMainWindow 创建为对话框顶部的 modl 窗口,没有主动关闭、最小化按钮,并且菜单呈灰色(无法访问)。
我想对 QMainWindow 菜单的访问受到限制,因为有 模式标志处于活动状态的 QDialog。但我需要一个带有可以访问的菜单的非模态 QMainWindow 。
是否可以?我使用 qt 4.5.2 和 os x lion。 谢谢!
I create QMainWindow with parent widget which is modal QDialog. QMainWindow created as modl window ontop of dialog and doesn't has active close, minimize buttons and has grayed(unaccessable) menu.
I suppose access to QMainWindow's menu restricted since there is
QDialog with modal flag active. But I need to have a non modal QMainWindow with menu which can be accessed.
Is it possible? I use qt 4.5.2 and os x lion.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法想象打开一个以模式
QDialog
为父级的QMainWindow
的上下文。但是,如果您希望 QMainWindow 充当顶级窗口,请不要设置父窗口。
I'm having trouble imagining the context in which one would open a
QMainWindow
parented to a modalQDialog
.However, if you want the
QMainWindow
to act as a top-level window, don't set a parent.