如何在QT中将QComboBox设置为多选?

5
如何将QComboBox作为QT中的多选?
在QT中,Combox没有MultiSelect选项?
或者,有人可以建议我一些不同的控件,但外观和感觉应该像QCombobox。
2个回答

2

//这是名为CheckBoxList.h的文件

#ifndef CHECKBOXLIST_H
#define CHECKBOXLIST_H

#include <QtGui>

class CheckBoxList: public QComboBox
{
    Q_OBJECT;

public:
    CheckBoxList(QWidget *widget = 0);
    virtual ~CheckBoxList();
    bool eventFilter(QObject *object, QEvent *event);
    virtual void paintEvent(QPaintEvent *);
    void SetDisplayText(QString text);
    QString GetDisplayText() const;

private:
    QString m_DisplayText;
};

#endif // CHECKBOXLIST_H

//这是名为 CheckBoxList.cpp 的文件

#include "CheckBoxList.h"
#include <QtGui>

// internal private delegate
class CheckBoxListDelegate : public QItemDelegate
{
public:

    CheckBoxListDelegate(QObject *parent)
         : QItemDelegate(parent)
    {
        ;
    }

    void paint(QPainter *painter, const QStyleOptionViewItem &option,
                          const QModelIndex &index) const
    {
        //Get item data
        bool value = index.data(Qt::UserRole).toBool();
        QString text = index.data(Qt::DisplayRole).toString();

        // fill style options with item data
        const QStyle *style = QApplication::style();
        QStyleOptionButton opt;
        opt.state |= value ? QStyle::State_On : QStyle::State_Off;
        opt.state |= QStyle::State_Enabled;
        opt.text = text;
        opt.rect = option.rect;

        // draw item data as CheckBox
        style->drawControl(QStyle::CE_CheckBox,&opt,painter);
//QMessageBox::information(0,"Info",text);

    }

        QWidget *createEditor(QWidget *parent,
         const QStyleOptionViewItem & option ,
         const QModelIndex & index ) const
    {
        // create check box as our editor

         QCheckBox *editor = new QCheckBox(parent);

         return editor;
    }

     void setEditorData(QWidget *editor,
                                         const QModelIndex &index) const
     {

         //set editor data
         QCheckBox *myEditor = static_cast<QCheckBox*>(editor);
         myEditor->setText(index.data(Qt::DisplayRole).toString());
         myEditor->setChecked(index.data(Qt::UserRole).toBool());

//
     }

     void setModelData(QWidget *editor, QAbstractItemModel *model,
                                        const QModelIndex &index) const
     {
         //get the value from the editor (CheckBox)
         QCheckBox *myEditor = static_cast<QCheckBox*>(editor);
         bool value = myEditor->isChecked();


         //set model data
         QMap<int,QVariant> data;
         data.insert(Qt::DisplayRole,myEditor->text());
         data.insert(Qt::UserRole,value);
         model->setItemData(index,data);

     }

     void updateEditorGeometry(QWidget *editor,
         const QStyleOptionViewItem &option, const QModelIndex &index ) const
     {

         editor->setGeometry(option.rect);


     }
 };     
//min-width:10em; 
     CheckBoxList::CheckBoxList(QWidget *widget )
     :QComboBox(widget),m_DisplayText(0)
     {
    // set delegate items view 
    view()->setItemDelegate(new CheckBoxListDelegate(this));
    //view()->setStyleSheet("  padding: 15px; ");
    // Enable editing on items view
    view()->setEditTriggers(QAbstractItemView::CurrentChanged);

    // set "CheckBoxList::eventFilter" as event filter for items view 
    view()->viewport()->installEventFilter(this);


    // it just cool to have it as defualt ;)
    view()->setAlternatingRowColors(true);
     }


CheckBoxList::~CheckBoxList()
{
    ;
}
bool CheckBoxList::eventFilter(QObject *object, QEvent *event)
{
    // don't close items view after we release the mouse button
    // by simple eating MouseButtonRelease in viewport of items view
    if(event->type() == QEvent::MouseButtonRelease && object==view()->viewport()) 
    {
        return true;
    }
    return QComboBox::eventFilter(object,event);
}
void CheckBoxList::paintEvent(QPaintEvent *)
{
    QStylePainter painter(this);
    painter.setPen(palette().color(QPalette::Text));

    // draw the combobox frame, focusrect and selected etc.
    QStyleOptionComboBox opt;
    initStyleOption(&opt);

    // if no display text been set , use "..." as default
    if(m_DisplayText.isNull())
        opt.currentText = "......";
    else
        opt.currentText = m_DisplayText;
    painter.drawComplexControl(QStyle::CC_ComboBox, opt);

    // draw the icon and text
    painter.drawControl(QStyle::CE_ComboBoxLabel, opt);

}


void CheckBoxList::SetDisplayText(QString text)
{
    m_DisplayText = text;

}

QString CheckBoxList::GetDisplayText() const
{
    return m_DisplayText;
}

你如何知道哪些复选框被选中,以便生成显示文本? - CompEng88
看起来你的代码在视图中只有一个复选框时存在问题。它似乎忽略了鼠标点击并且不会被选中。我猜测这与你的组合框中的事件过滤器有关。有什么解决方法吗? - CompEng88
QComboBox派生此类是一个错误,因为您无法正确地覆盖不再相关的功能,因为相关函数不是“虚拟的”。 - Daniel Kamil Kozar

0

一种替代方案是将可勾选操作菜单设置为按钮,如我在这里所示。
或者您可以更改组合框的选择模型,并控制弹出窗口的显示和隐藏,如这里所示。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接