QtabBar 文本和图标

发布于 2024-11-10 08:22:45 字数 93 浏览 0 评论 0原文

您好,我想在 QtabBar 小部件中选项卡栏的每个选项卡中的图标下方放置图标和文本。默认情况下,文本和图标设置为彼此相邻,我想将一个显示在另一个下方。我们怎样才能做到呢?

hi i would like to place icon and an text below the icon in each tab of an tabbar in QtabBar widget. by default the text and icon are set next to each other i would like to display one below the other . how can we do it .

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

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

发布评论

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

评论(1

战皆罪 2024-11-17 08:22:45

似乎只有一种方法可以更改图标位置 - 重新实现 QTabBar 的paintEvent。
这样的代码可能会有所帮助:

class MyTabBar : public QTabBar
{
    ...
protected:
    void paintEvent(QPaintEvent *) {
        QStylePainter painter(this);
        for(int i = 0; i < 3; ++i) {
            QStyleOptionTabV2 option;
            initStyleOption(&option, i);
            painter.drawItemPixmap(option.rect, Qt::AlignTop|Qt::AlignHCenter, option.icon);
            painter.drawItemText(option.rect, Qt::AlignBottom|Qt::AlignHCenter, palette(), 1, option.text);
        }
    }
};

There seems to be only one way to change icon placement - reimplement QTabBar's paintEvent.
Code like this may help:

class MyTabBar : public QTabBar
{
    ...
protected:
    void paintEvent(QPaintEvent *) {
        QStylePainter painter(this);
        for(int i = 0; i < 3; ++i) {
            QStyleOptionTabV2 option;
            initStyleOption(&option, i);
            painter.drawItemPixmap(option.rect, Qt::AlignTop|Qt::AlignHCenter, option.icon);
            painter.drawItemText(option.rect, Qt::AlignBottom|Qt::AlignHCenter, palette(), 1, option.text);
        }
    }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文