如何获取从 QListView 中选择的项目?
Posted
技术标签:
【中文标题】如何获取从 QListView 中选择的项目?【英文标题】:how to get the item selected from QListView? 【发布时间】:2014-03-20 15:53:51 【问题描述】:我有这个模型:
class PaletteListModel(QtCore.QAbstractListModel):
def __init__(self,colors = [[]],headers =[],parent=None):
QtCore.QAbstractTableModel.__init__(self, parent)
self.__colors=colors
def columnCount(self,parent):
return 0
def rowCount(self,parent):
return len(self.__colors)
def data(self,index,role):
if role==QtCore.Qt.EditRole:
row=index.row()
return self.__colors[row]
if role==QtCore.Qt.FontRole:
font=QtGui.QFont("Segoe UI")
font.setPixelSize(20)
return font
if role == QtCore.Qt.ForegroundRole:
brush = QtGui.QBrush()
brush.setColor(QtGui.QColor("black"))
return brush
if role ==QtCore.Qt.ToolTipRole:
row=index.row()
return "Mex code: "+self.__colors[row]
if role==QtCore.Qt.DisplayRole:
row=index.row()
column=index.column()
value=self.__colors[row]
return value
if role==QtCore.Qt.DecorationRole:
pixmap=QtGui.QPixmap(26,26)
pixmap.load("E:\\Users\\HA\\workspace\\Projet\\copy-icon.png")
icon=QtGui.QIcon(pixmap)
return icon
def setData(self,index,value,role=QtCore.Qt.EditRole):
if role==QtCore.Qt.EditRole:
row =index.row()
color=value
self.__colors[row]=color
self.dataChanged.emit(index,index)
return False
def flags(self, index):
return QtCore.Qt.ItemIsEnabled|QtCore.Qt.ItemIsSelectable|QtCore.Qt.ItemIsUserCheckable
我添加进入数据库的代码 然后我得到一个列表“listE”,我创建了一个模型实例然后我将此实例添加到 listeView 注意:此代码运行良好 问题仍然在于我如何在列表中获取所选项目
cnx=Connexion()
cnx.ouvrirConnexion()
c = cnx.connexion
cursor = cnx.connexion.cursor()
cursor.execute('SELECT titre From "Etude"')
rows = cursor.fetchall()
ListeE=[]
for row in rows:
ListeE.append(row[0])
cnx.fermerConnexion()
modele=PaletteListModel(ListeE)
self.listEtude.setModel(modele)
请帮帮我
【问题讨论】:
我没有找到任何结果,因为您无法在 ListView Selected 中返回项目..出于这个原因,我已经尝试使用 ListWidget 【参考方案1】:你要找的是,
http://qt-project.org/doc/qt-5/qabstractitemview.html#selectedIndexes
这个便利函数返回一个列表,其中包含所有选定和 视图中的非隐藏项索引。该列表不包含重复项, 并且没有排序。
另见 QItemSelectionModel::selectedIndexes()
所以你可以使用 QListView.selectedIndexes() 或 QListView.selectionModel().selectedIndexes()
【讨论】:
thnx :) 这里是代码:model=PaletteListModel(ListeE) self.listView.setModel(model) QObject.connect(self.listView,SIGNAL("clicked(QModelIndex)"),self。 clic) def clic(self,index): global Nom Nom= index.model().data(index,QtCore.Qt.DisplayRole) print Nom以上是关于如何获取从 QListView 中选择的项目?的主要内容,如果未能解决你的问题,请参考以下文章
如何从 SQL 模型中为连接到它的 QListView 选择行
Qt - 如何将 QListView 项目转移到另一个 QListView?