CheckBoxes的ComboBox?

问题描述 投票:14回答:4

我试图使ComboBox项目可检查。我试过这个:

http://programmingexamples.net/wiki/Qt/ModelView/ComboBoxOfCheckBoxes

我将QStandardItemModel子类化并重新实现了flags()函数以使项目可检查。然后我将这个模型添加到ComboBox。不幸的是,项目不会出现复选框。任何人都可以看到我哪里出错了?

qt qt4
4个回答
16
投票

您是否设置了检查状态并使其可检查?

在下面的示例中,此行非常重要:

item->setData(Qt::Unchecked, Qt::CheckStateRole);

如果省略,则不会呈现复选框,因为没有要呈现的有效检查状态。

该示例显示了组合框,列表和表格中的复选框,因为我最初也无法使其工作,因此我尝试了不同的视图。

TEST.CPP

#include <QtGui>

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

    QStandardItemModel model(3, 1); // 3 rows, 1 col
    for (int r = 0; r < 3; ++r)
    {
        QStandardItem* item = new QStandardItem(QString("Item %0").arg(r));

        item->setFlags(Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
        item->setData(Qt::Unchecked, Qt::CheckStateRole);

        model.setItem(r, 0, item);
    }

    QComboBox* combo = new QComboBox();
    combo->setModel(&model);

    QListView* list = new QListView();
    list->setModel(&model);

    QTableView* table = new QTableView();
    table->setModel(&model);

    QWidget container;
    QVBoxLayout* containerLayout = new QVBoxLayout();
    container.setLayout(containerLayout);
    containerLayout->addWidget(combo);
    containerLayout->addWidget(list);
    containerLayout->addWidget(table);

    container.show();

    return app.exec();
}

test.pro

QT=core gui
SOURCES=test.cpp

13
投票

我有一点补充。

如果编译skyhisi的代码然后Mac OS X上的组合框看起来不像组合框与本机复选框。你可以在截图上看到它。

用qt-4.8.5和5.1.1测试。

似乎Qt自己绘制了这些控件。我们的团队通过纯粹的意外找到了以下解决方法。您可以通过以下方式继承QStyledItemDelegate并重新实现paint()

void SubclassOfQStyledItemDelegate::paint(QPainter * painter_, const QStyleOptionViewItem & option_, const QModelIndex & index_) const
{
    QStyleOptionViewItem & refToNonConstOption = const_cast<QStyleOptionViewItem &>(option_);
    refToNonConstOption.showDecorationSelected = false;
    //refToNonConstOption.state &= ~QStyle::State_HasFocus & ~QStyle::State_MouseOver;

    QStyledItemDelegate::paint(painter_, refToNonConstOption, index_);
}

然后,您可以通过将以下行添加到skyhisi的代码中将此委托设置为组合框:

SubclassOfQStyledItemDelegate *delegate = new SubclassOfQStyledItemDelegate(this);
combo->setItemDelegate(delegate);

与此委托一起安装的comboBox具有以下方式:

在Windows上可能存在不同的问题:checkBoxes的文本在项目周围粘贴了背景或虚线边框:

要更改此外观,可以在行QStyledItemDelegate :: paint(painter_,refToNonConstOption,index_)之前将以下行添加到重写的绘制中(在此行注释的代码示例中):

refToNonConstOption.state &= ~QStyle::State_HasFocus & ~QStyle::State_MouseOver;

结果:


1
投票

我试图在Linux Mint上制作这个例子,但我无法使复选框可见。我必须实现SubclassOfQStyledItemDelegate类并将委托设置为Neptilo和gshep建议的复选框。


0
投票

您可以使用QListView尝试:

QStringList values = QStringList << "check 1" << "check 2" << "check 3" << "check 4";

QStandardItemModel model = new QStandardItemModel;
for (int i = 0; i < values.count(); i++)
{
    QStandardItem *item = new QStandardItem();
    item->setText(values[i]);
    item->setCheckable(true);
    item->setCheckState(Qt::Unchecked);
    model->setItem(i, item);
}

ui->list->setModel(model);
© www.soinside.com 2019 - 2024. All rights reserved.