Qt:自定义LineEditDelegate的绘制功能

时间:2013-09-17 06:28:47

标签: c++ qt delegates paint qlineedit

我已经实现了ComboBoxDelegate。它源自QStyledItemDelegate。绘制功能用于在不编辑节点时显示单元格的内容。

void ComboBoxDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const {
    QStyleOptionComboBox comboBoxOption;
    comboBoxOption.rect = option.rect;
    comboBoxOption.state = QStyle::State_Active | QStyle::State_Enabled;
    comboBoxOption.frame = true;
    comboBoxOption.currentText = index.model()->data(index).toString();
    QApplication::style()->drawComplexControl(QStyle::CC_ComboBox, &comboBoxOption, painter);
    QApplication::style()->drawControl(QStyle::CE_ComboBoxLabel, &comboBoxOption, painter);
}

现在我正在尝试实现LineEditDelegate。我不知道怎么写它的绘画功能。 QLineEdit是否有QStyleOptionComboBox类?如果有人这样做,你可以分享你的代码吗?

1 个答案:

答案 0 :(得分:0)

尝试this answer

它使用QStyle::drawPrimitiveQStyle::PE_PanelLineEdit元素。