pyqt model/view框架 1.第一个model

本文介绍了如何使用Qt的mvc模式创建自定义模型,并通过委托实现视图的自由渲染效果。重点阐述了模型、视图和委托之间的交互,以及Qt.ItemDataRole的使用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

>关于Qt的mvc模式就不多说了,网上很多很多,这里按着 Chen Chun-Chia的`《PyQt's Model/View Framework》`走一边 我的第一个model --- class MyListModel(QAbstractListModel): """ 我的第一个模型 """ def __init__(self,parent=None): super(MyListModel,self).__init__(parent) #这是数据 self._data=[70,90,20,50] pass def rowCount(self, parent=QModelIndex()): """ 这个方法返回了数据的行数 也就是有多少个条目得数据 """ return len(self._data) def data(self,index,role=Qt.DisplayRole): """ 根据当前index索引,返回当前的数据 然后再由Qt进行渲染显示 """ #如果当前得索引是不活动得 if not index.isValid() or not 0 <= index.row() < self.rowCount(): #亦或者当前的索引值不在合理范围,即小于等于0,超出总行数 return QVariant() #返回一个QVariant,相当与空条目 #从索引取得当前的航号 row=index.row() #如果当前角色是DisplayRole if role==Qt.DisplayRole: #返回当前行的数据 return self._data[row] #如果角色不满足需求,则返回QVariant return QVariant() 代码中,我们覆盖了一个model中最基本得方法: `rowCount` 数据总行数; `data` 获取数据; 并在__init__构造方法中,设置好数据源`self._data` 运行下面的代码试试看: # -*- coding: utf-8 -*- import sys from PyQt4.QtCore import * from PyQt4.QtGui import * #################################################################### def main(): app=QApplication(sys.argv) #新建一个ListView view=QListView() #新建一个自定义Model model=MyListModel() #设置view的model view.setModel(model) view.show() sys.exit(app.exec_()) #################################################################### class MyListModel(QAbstractListModel): """ 我的第一个模型 """ def __init__(self,parent=None): super(MyListModel,self).__init__(parent) #这是数据 self._data=[70,90,20,50] pass def rowCount(self, parent=QModelIndex()): """ 这个方法返回了数据的行数 也就是有多少个条目得数据 """ return len(self._data) def data(self,index,role=Qt.DisplayRole): """ 根据当前index索引,返回当前的数据 然后再由Qt进行渲染显示 """ #如果当前得索引是不活动得 if not index.isValid() or not 0 <= index.row() < self.rowCount(): #亦或者当前的索引值不在合理范围,即小于等于0,超出总行数 return QVariant() #返回一个QVariant,相当与空条目 #从索引取得当前的航号 row=index.row() #如果当前角色是DisplayRole if role==Qt.DisplayRole: #返回当前行的数据 return self._data[row] #如果角色不满足需求,则返回QVariant return QVariant() #################################################################### if __name__ == "__main__": main() 角色类型(Qt.ItemDataRole) --- The general purpose roles (and the associated types) are: Constant Value Description Qt.DisplayRole 0 The key data to be rendered in the form of text. (QString) Qt.DecorationRole 1 The data to be rendered as a decoration in the form of an icon. (QColor, QIcon or QPixmap) Qt.EditRole 2 The data in a form suitable for editing in an editor. (QString) Qt.ToolTipRole 3 The data displayed in the item's tooltip. (QString) Qt.StatusTipRole 4 The data displayed in the status bar. (QString) Qt.WhatsThisRole 5 The data displayed for the item in "What's This?" mode. (QString) Qt.SizeHintRole 13 The size hint for the item that will be supplied to views. (QSize) Roles describing appearance and meta data (with associated types): Constant Value Description Qt.FontRole 6 The font used for items rendered with the default delegate. (QFont) Qt.TextAlignmentRole 7 The alignment of the text for items rendered with the default delegate. (Qt.AlignmentFlag) Qt.BackgroundRole 8 The background brush used for items rendered with the default delegate. (QBrush) Qt.BackgroundColorRole 8 This role is obsolete. Use BackgroundRole instead. Qt.ForegroundRole 9 The foreground brush (text color, typically) used for items rendered with the default delegate. (QBrush) Qt.TextColorRole 9 This role is obsolete. Use ForegroundRole instead. Qt.CheckStateRole 10 This role is used to obtain the checked state of an item. (Qt.CheckState) Qt.InitialSortOrderRole 14 This role is used to obtain the initial sort order of a header view section. (Qt.SortOrder). This role was introduced in Qt 4.8. Accessibility roles (with associated types): Constant Value Description Qt.AccessibleTextRole 11 The text to be used by accessibility extensions and plugins, such as screen readers. (QString) Qt.AccessibleDescriptionRole 12 A description of the item for accessibility purposes. (QString) User roles: Constant Value Description Qt.UserRole 32 The first role that can be used for application-specific purposes. 最后的`Qt.UserRole`是用户自定义Role,如果多个Role,可在他的基础上加数字,比如`Qt.UserRole+1`,`Qt.UserRole+2` >目前为止,我们使用自定义Model完成了一个最基本的demo,并且知道了Qt.ItemDataRole的各种类型 > >[下一篇](http://www.cnblogs.com/hangxin1940/archive/2012/12/07/2806449.html),将介绍Qt Model/View 中的委托 `Delegate`,通过它我们可以自由渲染view的显示效果
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值