在qt中,用到最多就是model/view的结构来表示数据层及表示层的关系。model用于给view提供数据。那如何来实现一个简单的树形model呢。

实现一个自己的model需要重载以下的方法:

  1. QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  2. bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
  3. int rowCount(const QModelIndex &parent = QModelIndex()) const;
  4. int columnCount(const QModelIndex &parent = QModelIndex()) const<pre name="code" class="cpp">QVariant headerData(int section, Qt::Orientation orientation,
  5. int role = Qt::DisplayRole) const;
  6. bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value,
  7. int role = Qt::EditRole);
  8. QModelIndex index(int row, int column,
  9. const QModelIndex &parent = QModelIndex()) const;
  10. QModelIndex parent(const QModelIndex &child) const;
  11. virtual Qt::ItemFlags flags(const QModelIndex &index) const;

下面通过一个小例子来说明每个方法的作用。想实现下面一个树形结构。

既然实现一个model里面肯定得构造自己的数据结构

  1. class RowNode
  2. {
  3. public:
  4. RowNode() { m_pNode = NULL; }
  5. ~RowNode() {}
  6. public:
  7. inline void setParent(RowNode *rowNode) { m_pNode = rowNode; }
  8. inline RowNode *parent() { return m_pNode; }
  9. private:
  10. RowNode *m_pNode;
  11. };

model构造里

  1. m_child1 = new RowNode();
  2. m_child2 = new RowNode();
  3. m_child2->setParent(m_child1);

1)data方法:这个方法用于提供model所需要的各种数据。根据不同的index跟role返回不同的值。

  1. QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
  2. {
  3. <pre name="code" class="cpp">if (Qt::DisplayRole == role)
  4. {
  5. RowNode *pRowNode = static_cast<RowNode *>(index.internalPointer());
  6. if (m_child1 == pRowNode)
  7. {
  8. if (0 == index.column())
  9. {
  10. return "Test";
  11. }
  12. else if (1 == index.column())
  13. {
  14. return "Icon";
  15. }
  16. else if (2 == index.column())
  17. {
  18. return "comboBox";
  19. }
  20. }
  21. else
  22. {
  23. if (0 == index.column())
  24. {
  25. return "col0";
  26. }
  27. else if (1 == index.column())
  28. {
  29. return "col1";
  30. }
  31. else
  32. {
  33. return "col2";
  34. }
  35. }
  36. }
  37. else
  38. return QVariant();
  39. }

2)setData:这个方法用于设置model的各种数据,根据不同的index跟role的值.原理跟data一样,这里就不直接写了,直接返回True.

  1. bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
  2. {
  3. return true;
  4. }

3)rowCount:用于设置行数。需要注意的是返回是指parent下面有几个子,而不是指整个TableView有多少行。因为显示树形的话,返回的RowCount只是指那个父结点有几个子。

  1. int rowCount(const QModelIndex &parent = QModelIndex()) const;
  2. {
  3. <pre name="code" class="cpp">if (! parent.isValid())
  4. {
  5. return 1;
  6. }
  7. else
  8. {
  9. RowNode *pNode = static_cast<RowNode *>(parent.internalPointer());
  10. if (pNode == m_child1)
  11. {
  12. return 1;
  13. }
  14. else
  15. {
  16. return 0;
  17. }
  18. }

4)columnCount:用于设置列数,这个是整个TableView的列数。

  1. int columnCount(const QModelIndex &parent = QModelIndex()) const;
  2. {
  3. return 4;
  4. }

5)headerData及setHeadData

  1. QVariant headerData(int section, Qt::Orientation orientation,
  2. int role = Qt::DisplayRole) const;
  3. {
  4. <pre name="code" class="cpp">    if (orientation == Qt::Vertical)
  5. {
  6. if (Qt::DisplayRole == role)
  7. {
  8. return "2";
  9. }
  10. }
  11. if (Qt::DisplayRole == role)
  12. {
  13. return "1";
  14. }
  15. else
  16. return QVariant();

}
 bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole);
{
return true;
}


同data跟setData一样,但是是用于设置header的值,就是标题行及固定列的值。

6)index:用于设置返回的index的值。

  1. QModelIndex index(int row, int column,
  2. const QModelIndex &parent = QModelIndex()) const;
  3. {
  4. <pre name="code" class="cpp">    if (! parent.isValid())
  5. {
  6. return createIndex(row, column, m_child1);
  7. }
  8. else
  9. {
  10. return createIndex(row, column, m_child2);
  11. }

}


7)parent:用于设置父index。

  1. QModelIndex parent(const QModelIndex &child) const;
  2. {
  1. RowNode *pRowNode = static_cast<RowNode *>(child.internalPointer());
  2. if (pRowNode == m_child2)
  3. {
  4. return createIndex(0, 0, m_child1);
  5. }
  6. return QModelIndex();
  7. }

8)flags:用于返回model一些flags,如是否可以编辑的话,会加上Qt::itemIsEditable.

  1. virtual Qt::ItemFlags flags(const QModelIndex &index) const;
  2. {
  3. <pre name="code" class="cpp">    Qt::ItemFlags oFlags = QAbstractItemModel::flags(index);
  4. return oFlags | Qt::ItemIsEditable;
  5. }

这样一个简单的model就实现了。

http://blog.csdn.net/hpjx1987/article/details/28005011

Qt中如何写一个model的更多相关文章

  1. Qt中如何写一个model(自定义一个RowNode,我没有碰到过)

    在qt中,用到最多就是model/view的结构来表示数据层及表示层的关系.model用于给view提供数据.那如何来实现一个简单的树形model呢. 实现一个自己的model需要重载以下的方法: Q ...

  2. mvc中动态给一个Model类的属性设置验证

    原文:mvc中动态给一个Model类的属性设置验证 在mvc中有自带的验证机制,比如如果某个字段的类型是数字或者日期,那么用户在输入汉字或者英文字符时,那么编译器会自动验证并提示用户格式不正确,不过这 ...

  3. C语言中如何写一个简单可移植而又足够随机的随机数生成器

    在C语言中标准库中的随机数产生函数的返回可能不是最优的,因为有些随机数生成器的低位并不随机,而另一些返回随机数的函数实现上又太复杂鸟.所以rand()%N并不是一个好方法,牛人给出的建议是使用: ra ...

  4. QT 中如何实现一个简单的动画

    QT可以实现一下简单的动画,比如 运动的时钟 闪烁的按钮. 动画的实现: (1)创建一个定时器 (2)调用QWidget::update()通知界面重绘 实现一个按钮闪烁的例子: circlewidg ...

  5. (转载)QT中PRO文件写法的详细介绍,很有用,很重要!

    版权声明:本文为博主原创文章,未经博主允许不得转载. 在QT中,有一个工具qmake可以生成一个makefile文件,它是由.pro文件生成而来的,.pro文件的写法如下: 1. 注释从“#”开始,到 ...

  6. QT中PRO文件写法的详细介绍

    学习Qt时,发现有些知识看了不经常用就忘了,以下是书本上写的一些关于qmake的相关知识,自己看后,打算把一些经常用到的记下来,整理整理. Qt程序一般使用Qt提供的qmake工具来编译. qmake ...

  7. 【SSH网上商城项目实战24】Struts2中如何处理多个Model请求

       转自: https://blog.csdn.net/eson_15/article/details/51465067 1. 问题的提出 Struts2中如果实现了ModelDriven<m ...

  8. Qt中的多线程与线程池浅析+实例

    1. Qt中的多线程与线程池 今天学习了Qt中的多线程和线程池,特写这篇博客来记录一下 2. 多线程 2.1 线程类 QThread Qt 中提供了一个线程类,通过这个类就可以创建子线程了,Qt 中一 ...

  9. 从零开始写一个武侠冒险游戏-8-用GPU提升性能(3)

    从零开始写一个武侠冒险游戏-8-用GPU提升性能(3) ----解决因绘制雷达图导致的帧速下降问题 作者:FreeBlues 修订记录 2016.06.23 初稿完成. 2016.08.07 增加对 ...

随机推荐

  1. PHP 判断客户端请求是 Android 还是 IOS

    <?php if(strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone')||strpos($_SERVER['HTTP_USER_AGENT'], 'iPad ...

  2. R简易入门(一)

    本文内容来源:https://www.dataquest.io/mission/126/introduction-to-r 本文数据来源:https://www.whitehouse.gov/21st ...

  3. MySQL主从修复

    MySQL主从故障修复 测试库:192.168.1.2 主192.168.1.3 从 192.168.1.4 主 4又是2的从库192.168.1.5 从 有人修改了192.168.1.2和192.1 ...

  4. oracle作业

    http://blog.csdn.net/hao_ds/article/details/38382931 oracle作业各种参数的详细介绍

  5. 键盘样式风格有关设置-iOS开发

    一.键盘风格 UIKit框架支持8种风格键盘. typedef  enum  { UIKeyboardTypeDefault,                 // 默认键盘:支持所有字符 UIKey ...

  6. Entity Framework4.0 (六) EF4的 增加、删除、更改

    前面介绍了EF4的查询功能,主要是借助于LINQ的强大的查询功能和它简单的语法.让我们可以完全面向对象集体去进行查询,而不必去劳心处理那些关系型数据库表的操作.这样我们更容易把主要精力集中在业务逻辑上 ...

  7. 2016 系统设计第一期 (档案一)jQuery checkbox 取值赋值

    <div class="form-group"> <label for="IsActive" class="col-sm-2 con ...

  8. c++各种排序

    1.插入排序 void InsertSort(int a[], int n) { int temp, i, j; ; i < n; i++) { ]) { temp = a[i]; ; j &g ...

  9. cocos2dx中的背景图层CCLayerColor和渐变图层CCLayerGradient

    1.CCLayerColor是专门用来处理背景颜色的图层,它继承自CCLayer,可以用来设置图层的背景颜色,因为CCLayer默认是透明色的,即无颜色的 2.CCLayerGradient是用来显示 ...

  10. [原创] zabbix学习之旅三:agent安装

    部署完zabbix server后,自然要部署zabbix agent.在官方描述中,agent是部署在被监控的机器上,用于采集CPU.内存.磁盘等统计信息,并上报给server用于进一步处理.age ...