QTabWidget只设置一个选项卡的标题字体

发布于 2024-10-21 18:05:16 字数 129 浏览 1 评论 0 原文

我使用 QTabWidget 创建了一个带有界面的聊天程序。如果选项卡中有更新,我想将选项卡标题字体设置为粗体。使用 QTabWidget::font 我只能设置所有选项卡的标题字体。

I've created a chat program with an Interface using QTabWidget. If there's an update in a tab i want to set the tabs title font to a bold font. With QTabWidget::font i can only set the font of the titles of all tabs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

﹂绝世的画 2024-10-28 18:05:16

不幸的是,您只能访问文本本身。文本的字体未在 QTabBar 中公开“http://doc.qt.nokia.com/4.7/qtabwidget.html%27”rel =“nofollow”>QTabWidget。也许更改选项卡的颜色就足够了?否则,您必须重写绘画算法,这可能会很麻烦。在 Qt 3 中,可以使用 QTab >tabAt(int index) 但不幸的是,他们删除了它。

Unfortunately, you can only access the text itself. The font of the text is not exposed in the QTabBar of the QTabWidget. Perhaps changing the color of the tab would suffice? Otherwise, you'd have to override the painting algorithms, which probably would prove to be cumbersome. In Qt 3 it was possible accessing the QTab with tabAt(int index) but, unfortunately, they removed that.

故事灯 2024-10-28 18:05:16

您可以使用 QTabBar::setTabTextColor() 方法,如下所示:

QTabBar* bar=tagWidget->tabBar();
bar->setTabTextColor(index, Qt::blue);

You can use QTabBar::setTabTextColor() method, like this:

QTabBar* bar=tagWidget->tabBar();
bar->setTabTextColor(index, Qt::blue);
握住你手 2024-10-28 18:05:16

现在 Qt 还没有靠近我,但想法是您应该尝试为选项卡小部件的特定页面项目设置字体。尝试这样的事情:

yourTabWidget.currentWidget()->setFont(/*bold font*/);

Haven't Qt close to me now, but the idea is that you should try to set the font for particular page item of the tab widget. Try something like this:

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