我有一个QTreeWidget
,我有一个样式表应用于它。我希望一些QTreeWidgetItem
具有与其他 styesheet 样式项目不同的hover
和selected
颜色。我用setData(columnNumber, Qt::ForegroundRole, colorName)
为normal
状态着色,但我无法更改悬停和选定状态的颜色。
有谁知道是否有可能以某种方式Qt
实现这一目标?
谢谢!
AFAIK 样式表并不是万能的。你想要非常具体的东西,所以你应该更深入地研究并使用更强大的东西。我建议你使用委托。您没有提供规范,所以我提供了主要思想。在QStyledItemDelegate
子类中重新实现paint
.例如:
void ItemDelegatePaint::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QString txt = index.model()->data( index, Qt::DisplayRole ).toString();
if( option.state & QStyle::State_Selected )//it is your selection
{
if(index.row()%2)//here we try to see is it a specific item
painter->fillRect( option.rect,Qt::green );//special color
else
painter->fillRect( option.rect, option.palette.highlight() );
painter->drawText(option.rect,txt);//text of item
} else
if(option.state & QStyle::State_MouseOver)//it is your hover
{
if(index.row()%2)
painter->fillRect( option.rect,Qt::yellow );
else
painter->fillRect( option.rect, Qt::transparent );
painter->drawText(option.rect,txt);
}
else
{
QStyledItemDelegate::paint(painter,option,index);//standard process
}
}
在这里,我为每隔一项设置一些特定属性,但您可以使用另一个特定项。
QTreeWidget
继承QTreeView
因此使用:
ui->treeWidget->setItemDelegate(new ItemDelegatePaint);
看来你的小部件很复杂,所以我希望你理解主要思想,你将能够编写绝对适合你的委托。如果您以前没有使用过委托,请检查示例,它不是很复杂。
http://qt-project.org/doc/qt-4.8/itemviews-stardelegate-stardelegate-h.html
http://qt-project.org/doc/qt-4.8/itemviews-stardelegate-stardelegate-cpp.html
在我的回答中,我使用了下一个代表:
#ifndef ITEMDELEGATEPAINT_H
#define ITEMDELEGATEPAINT_H
#include <QStyledItemDelegate>
class ItemDelegatePaint : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit ItemDelegatePaint(QObject *parent = 0);
ItemDelegatePaint(const QString &txt, QObject *parent = 0);
protected:
void paint( QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index ) const;
QSize sizeHint( const QStyleOptionViewItem &option,
const QModelIndex &index ) const;
QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
void setEditorData(QWidget * editor, const QModelIndex & index) const;
void setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const;
void updateEditorGeometry(QWidget * editor, const QStyleOptionViewItem & option, const QModelIndex & index) const;
signals:
public slots:
};
#endif // ITEMDELEGATEPAINT_H
这里有很多方法,但paint
对您来说是最重要的。