QWidget 在 x11 中创建问题
我想使用 qt 来控制其他一些窗口,所以我编写了这段代码:
#define protected public //just for test
...
WId id = 0x00000001 //some real wid
QWidget w;
w.create(id, false, false);
w.hide();
运行这段代码后,窗口崩溃了,我得到:
:X Error: BadAccess (attempt to access private resource denied) 10
我正在将 ubuntu10.04 与 qt4 一起使用,有人在 QWidget::create 中有示例吗?
I want use qt to control some other windows, so I write this code:
#define protected public //just for test
...
WId id = 0x00000001 //some real wid
QWidget w;
w.create(id, false, false);
w.hide();
after I run this code, the window crashes, and I got:
:X Error: BadAccess (attempt to access private resource denied) 10
I'm using ubuntu10.04 with qt4, anyone has sample in QWidget::create?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我的方法,但仍然有错误。
this is my approach, still has bug though.