在QListWidget中,我有一组条目。现在我想让用户通过两个按钮(向上/向下)对这些条目进行排序(重新排序)。
这是我的代码的一部分:
def __init__(self):
QtGui.QMainWindow.__init__(self)
self.ventana = Ui_MainWindow()
self.ventana.setupUi(self)
self.connect(self.ventana.btExit, QtCore.SIGNAL('clicked()'), QtCore.SLOT('close()'))
self.connect(self.ventana.btAdd, QtCore.SIGNAL('clicked()'), self.addButton)
self.connect(self.ventana.btQuit, QtCore.SIGNAL('clicked()'), self.quitButton)
self.connect(self.ventana.btQuitAll, QtCore.SIGNAL('clicked()'), self.quitAllButton)
self.connect(self.ventana.btUp, QtCore.SIGNAL('clicked()'), self.upButton)
self.connect(self.ventana.btDown, QtCore.SIGNAL('clicked()'), self.downButton)
def addButton(self):
fileNames = QtGui.QFileDialog.getOpenFileNames(self, 'Agregar archivos')
self.ventana.listWidget.addItems(fileNames)
def quitButton(self):
item = self.ventana.listWidget.takeItem(self.ventana.listWidget.currentRow())
item = None
def quitAllButton(self):
self.ventana.listWidget.clear()
def upButton(self):
# HOW TO MOVE ITEM
答案 0 :(得分:3)
好吧,在以不同的方式尝试之后,通过获取所选条目并将其插入新位置来解决此问题。
对于Up按钮是这样的:
currentRow = self.ventana.listWidget.currentRow()
currentItem = self.ventana.listWidget.takeItem(currentRow)
self.ventana.listWidget.insertItem(currentRow - 1, currentItem)
对于向下按钮它是相同的,除了在第三行中“ - ”符号被“+”改变。