2

カスタム デリゲートを使用して、QTableView にコンボ ボックスの列を表示します。値はすべてのコンボボックスで同じであるため、実際に問題になるのは人口部分ではありません。

データベースから取得できる値を、選択したアイテムとして表示したいのです。デリゲートからデータベースにアクセスできますが、リクエストを送信するには、コンボ ボックスの行が必要です。

だから私の質問は次のとおりだと思います:テーブルのすべての行を反復処理して、カスタムデリゲート内から何らかのアクションを実行するにはどうすればよいですか?

ここで役立つ場合は、私のカスタム デリゲート クラスです。

class ComboBoxDelegate(QtGui.QItemDelegate):

def __init__(self, parent, itemslist):
    QtGui.QItemDelegate.__init__(self, parent)
    self.itemslist = itemslist
    self.parent = parent

def paint(self, painter, option, index):        
    # Get Item Data
    value = index.data(QtCore.Qt.DisplayRole).toInt()[0]
    # value = self.itemslist[index.data(QtCore.Qt.DisplayRole).toInt()[0]]
    # fill style options with item data
    style = QtGui.QApplication.style()
    opt = QtGui.QStyleOptionComboBox()
    opt.currentText = str(self.itemslist[value])
    opt.rect = option.rect


    # draw item data as ComboBox
    style.drawComplexControl(QtGui.QStyle.CC_ComboBox, opt, painter)
    self.parent.openPersistentEditor(index)

def createEditor(self, parent, option, index):

    ##get the "check" value of the row
    # for row in range(self.parent.model.rowCount(self.parent)):
        # print row

    self.editor = QtGui.QComboBox(parent)
    self.editor.addItems(self.itemslist)
    self.editor.setCurrentIndex(0)
    self.editor.installEventFilter(self)    
    self.connect(self.editor, QtCore.SIGNAL("currentIndexChanged(int)"), self.editorChanged)

    return self.editor

# def setEditorData(self, editor, index):
    # value = index.data(QtCore.Qt.DisplayRole).toInt()[0]
    # editor.setCurrentIndex(value)

def setEditorData(self, editor, index):
    text = self.itemslist[index.data(QtCore.Qt.DisplayRole).toInt()[0]]
    pos = self.editor.findText(text)
    if pos == -1:  
        pos = 0
    self.editor.setCurrentIndex(pos)


def setModelData(self,editor,model,index):
    value = self.editor.currentIndex()
    model.setData(index, QtCore.QVariant(value))


def updateEditorGeometry(self, editor, option, index):
    self.editor.setGeometry(option.rect)

def editorChanged(self, index):
    check = self.editor.itemText(index)
    id_seq = self.parent.selectedIndexes[0][0]
    update.updateCheckSeq(self.parent.db, id_seq, check)

そして、次のように QTableView から呼び出します。

self.setEditTriggers(QtGui.QAbstractItemView.CurrentChanged)
self.viewport().installEventFilter(self)
self.setItemDelegateForColumn(13,ComboBoxDelegate(self, self.checkValues))

ご清聴ありがとうございました。

4

1 に答える 1

1

デリゲートからデータベースにアクセスすることが正しいことかどうかはわかりません。デリゲートには、QTableView が参照する QAbstractTableModel のインスタンスへの参照を含めることができます。次に、モデル内のメソッドを使用して、テーブルの行を反復処理できます。

于 2011-05-11T17:40:53.750 に答える