2

カスタムモデルで を実装しQTableViewていますが、次のようなセルが必要です:

現在、以下のデリゲート(他の回答から適応)を使用して、単一のセルにフラグ(html色付きのテキスト)を描画し、セル全体をクリックするとフラグが変更されます。

class HTMLDelegate(QtGui.QStyledItemDelegate):
    def Doc(self, options):
        if options.text == "0":
            return ""
        elif options.text == "1":
            return "<b><font align='right' color='green'>V</font></b>"
        elif options.text == "2":
            return "<font align='right' color='#FF8400'>!!</font>"
        elif options.text == "3":
            return "<b><font align='right' color='#CC0000'>F</font></b>"
        elif options.text == "4":
            return "<b><font align='right' color='#000000'>X</font></b>"

    def paint(self, painter, option, index):
        options = QtGui.QStyleOptionViewItemV4(option)
        self.initStyleOption(options,index)

        style = QtGui.QApplication.style() if options.widget is None else options.widget.style()

        doc = QtGui.QTextDocument()

        background = None
        doc.setHtml(self.Doc(options))

        options.text = ""
        style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter);

        ctx = QtGui.QAbstractTextDocumentLayout.PaintContext()

        # Highlighting text if item is selected
        #if (optionV4.state & QStyle::State_Selected)
        #    ctx.palette.setColor(QPalette::Text, optionV4.palette.color(QPalette::Active, QPalette::HighlightedText));

        textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options, None)
        painter.save()
        if background:
            painter.fillRect(options.rect, QtCore.Qt.yellow)
        painter.translate(textRect.topLeft())
        painter.setClipRect(textRect.translated(-textRect.topLeft()))

        doc.documentLayout().draw(painter, ctx)

        painter.restore()

    def editorEvent(self, event, model, option, index):
        if not (index.flags() & QtCore.Qt.ItemIsEditable) > 0:
            return False

        # Do not change the checkbox-state
        if event.type() == QtCore.QEvent.MouseButtonRelease or event.type() == QtCore.QEvent.MouseButtonDblClick:
            if event.button() != QtCore.Qt.LeftButton:
                return False
            if event.type() == QtCore.QEvent.MouseButtonDblClick:
                return True
        elif event.type() == QtCore.QEvent.KeyPress:
            if event.key() != QtCore.Qt.Key_Space and event.key() != QtCore.Qt.Key_Select:
                return False
        else:
            return False
                         
        # Change the flag-state
        self.setModelData(None, model, index)
        return False


    def setModelData (self, editor, model, index):
        '''
        The user wanted to change the old flag into the next
        '''
        #newValue = not bool(index.model().data(index, QtCore.Qt.DisplayRole))
        #model.setData(index, newValue, QtCore.Qt.EditRole)
        oldFlagIndex = model.index(index.row(), COD_COL_FLAGS)
        oldFlag = model.data(oldFlagIndex)

        if type(oldFlag) == long:
            newFlag = oldFlag + 1
            if newFlag > 4:
                newFlag = 0
        else:
            newFlag = 0
        model.setData(index, newFlag, QtCore.Qt.EditRole)

どうすればこれを達成できますか?
私が考えているオプションは次のとおりです。

  • テキスト (リッチまたはシンプル) とピックスマップを右側に描画するデリゲート

  • 2 つのテキスト文字列 (1 つの通常テキストと 1 つのリッチ テキスト、または両方のリッチ テキスト) を左と右に配置して描画するデリゲート

演習として、アプリには必須ではありませんが、セル全体ではなく、クリックしたときにのみフラグの変更をトリガーするとよいでしょう。

ありがとう

4

1 に答える 1