c++ QTableWidget行未正确调整大小

cmssoen2  于 12个月前  发布在  其他
关注(0)|答案(1)|浏览(133)

我正在实现一个小示例,使用带有特定头的QTableWidget
然而,当我运行这个例子时,行不能正确地拉伸,正如在下面的例子中可以看到的那样(这是错误的行为):


的数据
在手动搜索之后,我得到了我想要的东西(这是预期的行为):


prescriptiondialog.h

class PrescriptionDialog : public QDialog
{
    Q_OBJECT

public:
    PrescriptionDialog();
    ~PrescriptionDialog();

    QPushButton *mAddButton;
    QPushButton *mRemoveButton;
    QLineEdit *durationEdit;
    QLabel *durationLbl;
    DrugTable *mTable;
};
#endif // PRESCRIPTIONDIALOG_H

字符串

prescriptiondialog.cpp

#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QHeaderView>

PrescriptionDialog::PrescriptionDialog()
{
    setWindowTitle("Drug Mixer");
    mTable = new DrugTable();
    mTable->horizontalHeader()->setStretchLastSection(4);
    mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
    mTable->show();
    QObject::connect(mAddButton, &QPushButton::clicked, mTable, &DrugTable::addCustomRow);
    QObject::connect(mRemoveButton, &QPushButton::clicked, mTable, &DrugTable::removeCustomRow);
    setLayout(mLay);
    show();
}

到目前为止我做了什么:

1.我试着以下面的方式使用头文件,但这并没有给予预期的行为。
这种方法的问题是,列是等间距的(我不是在寻找这种特定的行为,因为我需要用户调整他们,因为他们想要的)。最重要的是,行占用了应用程序窗口的整个空间,使行非常大。

PrescriptionDialog::PrescriptionDialog()
{
    setWindowTitle("Drug Mixer");
    mTable = new DrugTable();
    mTable->horizontalHeader()->setStretchLastSection(4);
    mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
    QHeaderView* header = mTable->horizontalHeader();
    header->setSectionResizeMode(QHeaderView::Stretch);
    QHeaderView* headerRows = mTable->verticalHeader();
    headerRows->setSectionResizeMode(QHeaderView::Stretch);
    mTable->show();
}


1.我尝试了使用QTableWidget提供的horizontalHeader()的选项,但这并没有提供任何改进,我实际上获得了第一个屏幕截图的效果(“何时拍摄”列都被压缩,直到我手动调整)。

PrescriptionDialog::PrescriptionDialog()
{
    setWindowTitle("Drug Mixer");
    mTable = new DrugTable();
    mTable->horizontalHeader()->setStretchLastSection(4);
    mTable->verticalHeader()->setStretchLastSection(QHeaderView::Interactive);
    mTable->resizeRowsToContents();
    mTable->horizontalHeader()->setSectionResizeMode(4, QHeaderView::Stretch);
    mTable->show();
}


1.我遇到了Qt Centre — How to resize qtablewidget rowsQt Centre — how can i have QTableWidget with autosize row height,但没有找到解决方案。
1.我遍历了Qt Centre — QTableView QTableWidget and resizeRowsToContents resizes wrongly,它使用了我在示例中使用的方法resizeRowsToContents(),但在最终结果中没有改变任何东西。

jv2fixgn

jv2fixgn1#

我试着用resizeRowsToContents()做了一个小例子,它对我来说很好。
在Qt 5.15.1 MinGW上测试。

#include "mainwindow.h"

#include <QTableView>
#include <QPushButton>
#include <QHBoxLayout>
#include <QVBoxLayout>
#include <QStandardItemModel>
#include <QHeaderView>

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
{
    QStandardItemModel *model = new QStandardItemModel{this};
    model->appendRow({new QStandardItem{tr("Drug")}, new QStandardItem{}});

    QTableView *view = new QTableView{this};
    view->setModel(model);

    QHBoxLayout *horz_layout = new QHBoxLayout;
    horz_layout->addWidget(new QPushButton{tr("Add when"), this});
    horz_layout->addWidget(new QPushButton{tr("Remove when"), this});

    QStandardItemModel *inner_model = new QStandardItemModel{this};
    inner_model->setHorizontalHeaderLabels({tr("Select"), tr("When to take")});

    QTableView *inner_view = new QTableView{this};
    inner_view->setModel(inner_model);

    QWidget *widget = new QWidget;
    QVBoxLayout *vert_layout = new QVBoxLayout{widget};
    vert_layout->addLayout(horz_layout);
    vert_layout->addWidget(inner_view);

    view->horizontalHeader()->setStretchLastSection(true);
    view->setIndexWidget(model->index(0, 1), widget);
    view->resizeRowToContents(0);

    this->setCentralWidget(view);
    this->resize(500, 500);
}

MainWindow::~MainWindow()
{
}

字符串
测试结果:


的数据

相关问题