如何访问 QTabWidget 中的小部件?

发布于 2024-12-04 22:55:27 字数 364 浏览 0 评论 0原文

我认为这很容易,但我坚持了...... 我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

栩栩如生 2024-12-11 22:55:27

因此,通过插入新选项卡,选项卡/页面本身就是您的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文