如何访问 QTabWidget 中的小部件?
我认为这很容易,但我坚持了...... 我有一个 QTabwidget 并使用 insertTab 插入了一个新选项卡。
tabwidget.insertTab(idx, new QWebView, "uninterestingTitle");
现在我想访问包含的 QWebView (或者通常我放入选项卡中的任何小部件)进行修改......但是如何? 我知道如何访问任何选项卡(currentIndex、currentWidget,...),但我不确定如何访问包含的小部件(如上面的 QWebView)。
currentWidget 返回我的 QWebView 吗?
抱歉,但我很困惑,感谢您的任何建议。 =)
I think it's easy but i stuck...
I've got a QTabwidget and inserted a new tab with insertTab.
tabwidget.insertTab(idx, new QWebView, "uninterestingTitle");
Now I would like to access the containing QWebView (or in general any widget, that i put into my tab), for modify... but how?
I know how to access any tab (currentIndex, currentWidget,...), but im not sure how to access a containing widget (like above my QWebView).
Does currentWidget return my QWebView?
Sry, but i'm confused and thankful for any advice. =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,通过插入新选项卡,选项卡/页面本身就是您的 QWebView,即
tabwidget.widget(idx)
是您的 QWebView。这就是我从 Qt 文档 中了解到的内容; (如果错了请告诉我)如果在调用此函数之前 QTabWidget 为空,则新页面将成为当前页面。在小于或等于当前索引的索引处插入新选项卡将增加当前索引,但保留当前页面。
So by inserting a new tab the tab/page itself is your QWebView i.e.
tabwidget.widget(idx)
is your QWebView. Thats what I understand from Qt documentation; (let me know if am wrong)If the QTabWidget was empty before this function is called, the new page becomes the current page. Inserting a new tab at an index less than or equal to the current index will increment the current index, but keep the current page.