3

セパレーター付きのqcomboboxに2つのアイテムを追加しました

addItem("New");
addItem("Delete");
insertSeparator(2);

異なるスタイルのアイテムの選択を強調表示するために、スタイルシートで QComboBox ビューに QLIstView を使用しました

QListView * listView = new QListView(this);
this->setView(listView);

listView->setStyleSheet("QListView::item {                              \
                            color: black;                                    \
                            background: white;                           }  \
                            QListView::item:selected {                     \
                            color: white;                                  \
                            background-color: #0093D6  \
                            }                                               \
                            ");

問題は、セパレーターがまったく表示されないことです..アイテム間に空の空白が表示されています。私はスタイルシートが苦手なので、セパレーター用の新しいスタイルシートを作成する方法について明確な考えがありません..

4

1 に答える 1

5

のカスタムを作成する必要がありitemDelegateますQListView

サブクラス化QItemDelegateして、独自のデリゲート クラスを作成できます。関数を使用sizeHintしてセパレータのサイズを設定し、paint関数でペイントします。項目が で区切られているかどうかを確認しindex.data(Qt::AccessibleDescriptionRole).toString()ます。

#ifndef COMBOBOXDELEGATE_H
#define COMBOBOXDELEGATE_H

#include <QItemDelegate>

class ComboBoxDelegate : public QItemDelegate
{
    Q_OBJECT
public:
    explicit ComboBoxDelegate(QObject *parent = 0);

protected:
    void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
    QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
};

#endif // COMBOBOXDELEGATE_H

 

void ComboBoxDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
    if(index.data(Qt::AccessibleDescriptionRole).toString() == QLatin1String("separator"))
    {
        painter->setPen(Qt::red);
        painter->drawLine(option.rect.left(), option.rect.center().y(), option.rect.right(), option.rect.center().y());
    }
    else
        QItemDelegate::paint(painter, option, index);
}

QSize ComboBoxDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
{
    QString type = index.data(Qt::AccessibleDescriptionRole).toString();
    if(type == QLatin1String("separator"))
        return QSize(0, 2);
    return QItemDelegate::sizeHint( option, index );
}

次に、カスタム デリゲートを次のように設定しますlistView

listView->setItemDelegate(new ComboBoxDelegate);.

于 2013-11-07T08:14:05.050 に答える