QTabWidget只设置一个选项卡的标题字体
我使用 QTabWidget
创建了一个带有界面的聊天程序。如果选项卡中有更新,我想将选项卡标题字体设置为粗体。使用 QTabWidget::font 我只能设置所有选项卡的标题字体。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我使用 QTabWidget
创建了一个带有界面的聊天程序。如果选项卡中有更新,我想将选项卡标题字体设置为粗体。使用 QTabWidget::font 我只能设置所有选项卡的标题字体。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
不幸的是,您只能访问文本本身。文本的字体未在 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
withtabAt(int index)
but, unfortunately, they removed that.您可以使用 QTabBar::setTabTextColor() 方法,如下所示:
You can use QTabBar::setTabTextColor() method, like this:
现在 Qt 还没有靠近我,但想法是您应该尝试为选项卡小部件的特定页面项目设置字体。尝试这样的事情:
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: