首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

QModelIndex的疑点

2013-07-09 
QModelIndex的疑问我在使用tableWidget用了一个双击槽函数on_tableWidget_doubleClicked(QModelIndex inde

QModelIndex的疑问
我在使用tableWidget用了一个双击槽函数on_tableWidget_doubleClicked(QModelIndex index)
。会传递一个参数QModelIndex index,会在槽函数中判断是第几行,执行响应的操作,我现在的问题是我想在其他地方也触发这个槽函数,我就是不知道怎么给QModelIndex类型赋值,谢谢。 qt QModelIndex
[解决办法]
自己想办法取:modelIndex。
[解决办法]
QModelIndex QAbstractItemModel::createIndex(int row, int column, void * ptr = 0) const [protected]
Creates a model index for the given row and column with the internal pointer ptr.

When using a QSortFilterProxyModel, its indexes have their own internal pointer. It is not advisable to access this internal pointer outside of the model. Use the data() function instead.

This function provides a consistent interface that model subclasses must use to create model indexes.

热点排行