QToolButton在Windows中不可见

时间:2017-07-21 07:39:31

标签: c++ windows qt qtabbar qtoolbutton

我使用QTabBar(类似于谷歌浏览器)推导了"+"类来实现new tab buttonQToolButton)按钮。但是,它在我的Linux机器上工作,但在我的Windows机器上不起作用。如果不工作,我的意思是QToolButtonwindows machine中不可见,但在我的Linux机器(Ubuntu)中可见。我无法进一步调试,因为我已经尝试了很少的实验来理解原因,但它没有用。

我的源文件:

#include "tabbar.h"

TabBar::TabBar(QWidget *parent) : QTabBar(parent)
{
    new_button_ = new QToolButton(this);
    new_button_->setObjectName(QStringLiteral("AddButton"));
    new_button_->setText("+");
    new_button_->setFixedSize(QSize(20, 20));
    connect(new_button_, SIGNAL(released()), this, SLOT(emit_new()));
    movePlusButton();
}

QSize TabBar::sizeHint(void) const
{
    QSize old = QTabBar::sizeHint();
    return QSize(old.width() + 45, old.height());
}

void TabBar::emit_new(void)
{
    emit newClicked();
}

void TabBar::movePlusButton(void)
{
    quint64 totalWidth = 0;
    for (long i=0; i < count(); i++)
        totalWidth += tabRect(i).width();

    quint64 h = geometry().top();
    quint64 tab_height = height();
    quint64 w = width();

    if (totalWidth > w)
        new_button_->move(w-40, tab_height - 30);
    else
        new_button_->move(totalWidth + 5, tab_height - 30);
}

void TabBar::resizeEvent(QResizeEvent *p_evt)
{
    QTabBar::resizeEvent(p_evt);
    movePlusButton();
}

void TabBar::tabLayoutChange(void)
{
    QTabBar::tabLayoutChange();
    movePlusButton();
}

我的标题文件:

#ifndef TABBAR_H
#define TABBAR_H

#include <QObject>
#include <QToolButton>
#include <QTabBar>
#include <QResizeEvent>
#include <QLabel>

class TabBar : public QTabBar {
Q_OBJECT

public:
    TabBar(QWidget *parent=nullptr);
    ~TabBar() { }

    void movePlusButton(void);


    void resizeEvent(QResizeEvent *p_evt) override;
    void tabLayoutChange(void) override;
    QSize sizeHint(void) const override;

private slots:
    void emit_new(void);

signals:
    void newClicked(void);

private:
    QToolButton *new_button_;
};

#endif // TABBAR_H

编辑:

我已经尝试了更多的实验,并且知道QToolButton隐藏在Tab栏旁边的区域后面。请参阅屏幕截图。

enter image description here

1 个答案:

答案 0 :(得分:3)

显然,您的应用程序使用样式表或其他内容来自定义显示,这与您的TabBar类不兼容。

下载你的代码,写了一个简单的主要内容:

#include <QApplication>
#include <QMainWindow>
#include "tabbar.h"

int main( int argc, char* argv[] )
{
    QApplication app(argc, argv);

    QMainWindow wnd;

    TabBar* tabBar = new TabBar(&wnd);
    wnd.setCentralWidget( tabBar );

    tabBar->addTab( "Foo" );

    wnd.show();

    return app.exec();
}

在Windows上编译并执行并获得(经过测试的经典和航空风格): enter image description here

显然你的代码很好。但是,如果您通过样式表定制QTabBar渲染(当我看到它在GUI中的外观时我怀疑),您可能需要调整您的代码(可能是movePlusButton,因为它有一些硬编码的值可能与当前的显示风格不兼容):

if (totalWidth > w)
    new_button_->move(w-40, tab_height - 30);
else
    new_button_->move(totalWidth + 5, tab_height - 30);