QTreeView具有固定的列宽

时间:2017-12-12 09:25:19

标签: c++ qt qtreeview qstyleditemdelegate qheaderview

今天我尝试配置QTreeView以满足我的要求。我的观点基本上有三列。无论是第二列和第三列都应该是50像素宽,可能是小部件的大小。第一列应占据剩余空间。

如果我放大我的小部件,第一列应自动占用需要的空闲空间,而第二列和第三列应保持其给定宽度为50像素。

这是我到目前为止所尝试的:

的main.cpp

#include <QApplication>
#include <QTreeView>
#include <QDebug>
#include <QStandardItemModel>
#include <QHeaderView>
#include "ColumnDelegate.h"

int main(int argc, char** args) {
    QApplication app(argc, args);
    auto widget = new QTreeView;
    auto model = new QStandardItemModel;
    model->insertRow(0, { new QStandardItem{ "Variable width" }, new QStandardItem{ "Fixed width 1" }, new QStandardItem{ "Fixed width 2" } });
    model->insertRow(0, { new QStandardItem{ "Variable width" }, new QStandardItem{ "Fixed width 1" }, new QStandardItem{ "Fixed width 2" } });
    widget->setModel(model);
    widget->setItemDelegateForColumn(1, new ColumnDelegate);
    widget->setItemDelegateForColumn(2, new ColumnDelegate);
    auto header=widget->header();

    header->setSectionResizeMode(QHeaderView::Fixed);
    header->resizeSection(1, 50);
    header->resizeSection(2, 50);
    widget->show();
    app.exec();
}

ColumnDelegate.h

#pragma once

#include <QStyledItemDelegate>

class ColumnDelegate : public QStyledItemDelegate {
    Q_OBJECT
public:
    virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override
    {
        QSize ret= QStyledItemDelegate::sizeHint(option, index);
        ret.setWidth(50);
        return ret;
    }
};

但执行后我得到了:

Third column occupies to much space

Third column occupies even more space, but the first column should occupy more space

有没有人知道如何以最少的工作量实现我想要的行为?

1 个答案:

答案 0 :(得分:4)

问题是调整大小模式统一应用于所有部分。您可以使用允许按部分设置进行细粒度调整的QHeaderView::setSectionResizeMode重载。在您的情况下,使用resize modesQHeaderView::Stretch组合来扩展列,QHeaderView::Fixed组合使用固定宽度的列。

此外,您必须禁用自动拉伸最后一部分的设置。使用QHeaderView::setStretchLastSection

示例:

header->setSectionResizeMode(0, QHeaderView::Stretch);
header->setSectionResizeMode(1, QHeaderView::Fixed);
header->setSectionResizeMode(2, QHeaderView::Fixed);
header->setStretchLastSection(false);

最后,QItemDelegate::sizeHint对标有QHeaderView::Fixed调整大小模式的部分没有任何影响。只需调用具有所需宽度的resizeSection并忘记项目委托(除非您需要其他任何内容)。