Qt实现QQ好友下拉列表(用QListView实现,所以还得定义它的Model)
偶然发现Qt有个控件可以实现下拉列表,所以就试着实现一下类似QQ面板的下拉列表,这里主要实现几个功能:
1.可以删除列表中图标
2.可以像qq一样的,把某个分组下的图标转移到另外的分组
3.添加分组
代码里写了注释了,这里就不重复了,下面直接看代码吧。
自定义的数据模型
- struct ListItemData
- {
- QString iconPath;
- QString Name;
- };
- class ListModel:public QAbstractListModel
- {
- Q_OBJECT
- public:
- ListModel(QObject *parent = NULL);
- ~ListModel();
- void init();
- void addItem(ListItemData *pItem);
- QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const ;
- int rowCount ( const QModelIndex & parent = QModelIndex() ) const;
- void deleteItem(int index);
- ListItemData* getItem(int index );
- protected:
- private:
- vector<ListItemData*> m_ItemDataVec;
- };
- <pre name="code" class="cpp">ListModel::ListModel( QObject *parent /*= NULL*/ ):QAbstractListModel(parent)
- {
- init();
- }
- ListModel::~ListModel()
- {
- }
- QVariant ListModel::data( const QModelIndex & index, int role /*= Qt::DisplayRole */ ) const
- {
- if (index.row() > m_ItemDataVec.size())
- {
- return QVariant();
- }
- else
- {
- switch (role)
- {
- case Qt::DisplayRole:
- {
- return m_ItemDataVec[index.row()]->Name;
- }
- break;
- case Qt::DecorationRole:
- {
- return QIcon(m_ItemDataVec[index.row()]->iconPath);
- }
- break;
- case Qt::SizeHintRole:
- {
- return QSize(10,50);
- }
- }
- }
- return QVariant();
- }
- int ListModel::rowCount( const QModelIndex & parent /*= QModelIndex() */ ) const
- {
- return m_ItemDataVec.size();
- }
- void ListModel::init()
- {
- for (int i = 1; i < 26; ++i)
- {
- ListItemData *pItem = new ListItemData;
- pItem->Name = QString::number(i);
- pItem->iconPath = QString(":/QQPanel/Resources/%1.jpg").arg(i);
- QFile Iconfile(pItem->iconPath);
- if (Iconfile.exists())
- {
- m_ItemDataVec.push_back(pItem);
- }
- }
- }
- void ListModel::deleteItem( int index )
- {
- vector<ListItemData*>::iterator it = m_ItemDataVec.begin();
- m_ItemDataVec.erase(it + index);
- }
- void ListModel::addItem( ListItemData *pItem )
- {
- if (pItem)
- {
- this->beginInsertRows(QModelIndex(),m_ItemDataVec.size(),m_ItemDataVec.size() + 1);
- <span style="white-space:pre"> </span>m_ItemDataVec.push_back(pItem);
- <span style="white-space:pre"> </span>this->endInsertRows();
- }
- }
- ListItemData* ListModel::getItem( int index )
- {
- if (index > -1 && index < m_ItemDataVec.size())
- {
- return m_ItemDataVec[index];
- }
- }
- </pre><br>
- <br>
- <pre></pre>
- <h1><a name="t1"></a><br>
- </h1>
- <h1><a name="t2"></a>自定义的列表</h1>
- <div>这个类才是重点,因为这里实现了删除和转移图标的几个重要的函数。</div>
- <pre name="code" class="cpp">class MyListView:public QListView
- {
- Q_OBJECT
- public:
- MyListView(QWidget *parent = NULL);
- ~MyListView();
- void setListMap(map<MyListView*,QString> *pListMap);
- void addItem(ListItemData *pItem);
- protected:
- void contextMenuEvent ( QContextMenuEvent * event );
- private slots:
- void deleteItemSlot(bool bDelete);
- void moveSlot(bool bMove);
- private:
- int m_hitIndex;
- ListModel *m_pModel;
- ////记录分组和分组名字的映射关系,这个值跟QQPanel类中的映射组的值保持一致
- //这里还有一个用处就是在弹出的菜单需要分组的名称
- map<MyListView*,QString> *m_pListMap;
- //记录每个菜单项对应的列表,才能知道要转移到那个分组
- map<QAction*,MyListView*> m_ActionMap;
- };</pre><br>
- <pre name="code" class="cpp">MyListView::MyListView( QWidget *parent /*= NULL*/ ):QListView(parent)
- {
- m_hitIndex = -1;
- m_pModel = new ListModel;
- this->setModel(m_pModel);
- m_pListMap = NULL;
- }
- MyListView::~MyListView()
- {
- }
- void MyListView::contextMenuEvent( QContextMenuEvent * event )
- {
- int hitIndex = this->indexAt(event->pos()).column();
- if (hitIndex > -1)
- {
- QMenu *pMenu = new QMenu(this);
- QAction *pDeleteAct = new QAction(tr("删除"),pMenu);
- pMenu->addAction(pDeleteAct);
- connect(pDeleteAct,SIGNAL(triggered (bool)),this,SLOT(deleteItemSlot(bool)));
- QMenu *pSubMenu = NULL;
- map<MyListView*,QString>::iterator it = m_pListMap->begin();
- for (it;it != m_pListMap->end();++it)
- {
- if (!pSubMenu)
- {
- pSubMenu = new QMenu(tr("转移联系人至") ,pMenu);
- pMenu->addMenu(pSubMenu);
- }
- if (it->first != this)
- {
- QAction *pMoveAct = new QAction( it->second ,pMenu);
- //记录菜单与分组的映射,在moveSlot()响应时需要用到。
- m_ActionMap.insert(pair<QAction*,MyListView*>(pMoveAct,it->first));
- pSubMenu->addAction(pMoveAct);
- connect(pMoveAct,SIGNAL(triggered (bool)),this,SLOT(moveSlot(bool)));
- }
- }
- pMenu->popup(mapToGlobal(event->pos()));
- }
- }
- void MyListView::deleteItemSlot( bool bDelete )
- {
- int index = this->currentIndex().row();
- if (index > -1)
- {
- m_pModel->deleteItem(index);
- }
- }
- void MyListView::setListMap( map<MyListView*,QString> *pListMap )
- {
- m_pListMap = pListMap;
- }
- void MyListView::addItem( ListItemData *pItem )
- {
- m_pModel->addItem(pItem);
- }
- void MyListView::moveSlot( bool bMove )
- {
- QAction *pSender = qobject_cast<QAction*>(sender());
- if (pSender)
- {
- //根据点击的菜单,找到相应的列表,然后才能把图标转移过去
- MyListView *pList = m_ActionMap.find(pSender)->second;
- if (pList)
- {
- int index = this->currentIndex().row();
- ListItemData *pItem = m_pModel->getItem(index);
- pList->addItem(pItem);
- //添加到别的分组,就在原来的分组中删除掉了
- m_pModel->deleteItem(index);
- }
- }
- //操作完了要把这个临时的映射清空
- m_ActionMap.clear();
- }
- </pre><br>
- <h1><a name="t3"></a>自定义的主控件</h1>
- class QQPanel : public QWidget
- {
- Q_OBJECT
- public:
- QQPanel(QWidget *parent = 0, Qt::WFlags flags = 0);
- ~QQPanel();
- protected:
- void contextMenuEvent ( QContextMenuEvent * event );
- protected slots:
- void addGroupSlot(bool addgroup);
- private:
- QToolBox *m_pBox;
- map<MyListView*,QString> *m_pListMap; //记录分组和分组名字的映射关系,好在转移图标时知道转移到那个分组
- };
- QQPanel::QQPanel(QWidget *parent, Qt::WFlags flags)
- : QWidget(parent, flags)
- {
- m_pBox = new QToolBox(this);
- m_pListMap = new map<MyListView*,QString>();
- MyListView *pListView = new MyListView(this);
- pListView->setViewMode(QListView::ListMode);
- pListView->setStyleSheet("QListView{icon-size:40px}");
- m_pBox->addItem(pListView,tr("我的好友"));
- m_pListMap->insert(pair<MyListView*,QString>(pListView,tr("我的好友")));
- MyListView *pListView1 = new MyListView(this);
- pListView1->setViewMode(QListView::ListMode);
- pListView1->setStyleSheet("QListView{icon-size:40px}");
- m_pBox->addItem(pListView1,tr("陌生人"));
- m_pListMap->insert(pair<MyListView*,QString>(pListView1,tr("陌生人")));
- pListView->setListMap(m_pListMap);
- pListView1->setListMap(m_pListMap);
- m_pBox->setFixedWidth(150);
- m_pBox->setMinimumHeight(500);
- this->setMinimumSize(200,500);
- //ui.setupUi(this);
- }
- QQPanel::~QQPanel()
- {
- }
- void QQPanel::contextMenuEvent( QContextMenuEvent * event )
- {
- QMenu *pMenu = new QMenu(this);
- QAction *pAddGroupAct = new QAction(tr("添加分组"),pMenu);
- pMenu->addAction(pAddGroupAct);
- connect(pAddGroupAct,SIGNAL(triggered (bool)),this,SLOT(addGroupSlot(bool)));
- pMenu->popup(mapToGlobal(event->pos()));
- }
- void QQPanel::addGroupSlot( bool addgroup )
- {
- QString name = QInputDialog::getText(this,tr("输入分组名"),tr(""));
- if (!name.isEmpty())
- {
- MyListView *pListView1 = new MyListView(this);
- pListView1->setViewMode(QListView::ListMode);
- pListView1->setStyleSheet("QListView{icon-size:40px}");
- m_pBox->addItem(pListView1,name);
- m_pListMap->insert(pair<MyListView*,QString>(pListView1,name));
- }
- //要确保每个MyListView钟的m_pListMap都是一致的,不然就会有错了。
- //因为弹出的菜单进行转移的时候需要用到
- map<MyListView*,QString>::iterator it = m_pListMap->begin();
- for (it; it != m_pListMap->end(); ++it)
- {
- MyListView* pList = it->first;
- pList->setListMap(m_pListMap);
- }
- }
运行结果
以上三个截图显示了把黑名单里的图标5转移到了我的好友分组里了
当然这个程序算是比较简单的。还不能真正的跟QQ的面板相比,还不能把所有的分组都收起来。以后再慢慢研究怎么实现了,
http://blog.csdn.net/hai200501019/article/details/10283553
Qt实现QQ好友下拉列表(用QListView实现,所以还得定义它的Model)的更多相关文章
- Qt实现 QQ好友列表QToolBox
简述 QToolBox类提供了一个列(选项卡式的)部件条目. QToolBox可以在一个tab列上显示另外一个,并且当前的item显示在当前的tab下面.每个tab都在tab列中有一个索引位置.tab ...
- 基于Qt的相似QQ好友列表抽屉效果的实现
版权声明:本文为博主原创文章.未经博主同意不得转载. https://blog.csdn.net/shuideyidi/article/details/30619167 前段时间在忙毕业设计, ...
- Qt实现QQ界面
1.Qt实现QQ界面是通过QToolBox类来实现的,基本结构是:QToolBox里面装QGroupBox,然后QGroupBox里面装QToolButton,设置好相关属性即可 2.定义类继承QTo ...
- js实现打开网页自动弹出添加QQ好友邀请窗口
我们有时进一些网面或专题页面会自动弹出一个加为好友的对话框了,在研究了很久之后发现可以直接使用js来实现,下面我们一起来看js实现打开网页自动弹出添加QQ好友邀请窗口的方法. 第一步.JS脚本 这个是 ...
- 微信sdk分享,苹果手机分享到qq好友和qq空间没有反应
最近线上程序苹果手机进行微信分享时,分享到qq好友和qq空间,无法调用分享程序,从微信跳转到qq后就没有反应了,但是安卓手机分享就没事? 解决:调用微信sdk分享时,分享的url(link)的参数不能 ...
- iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一)
iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一) 一.项目结构和plist文件 二.实现代码 1.说明: 主控制器直接继承UITableViewController // ...
- java模仿qq好友面板的布局(BoxLayout问题)
.............. JLabel ll = new JLabel(dlg.getNameText() + ":" + dlg.getIPText(), ii[index] ...
- 使用Javascript无限添加QQ好友原理解析
做QQ营销的朋友都知道,QQ加好友是有诸多限制的,IP限制,次数限制,二维码限制,人数限制,使用软件自动加好友会遇到各种各样的问题,很多软件通过模拟人工添加QQ号码,在添加几个之后就会遇到腾讯规则限制 ...
- [iOS基础控件 - 6.9.3] QQ好友列表Demo TableView
A.需求 1.使用plist数据,展示类似QQ好友列表的分组.组内成员显示缩进功能 2.组名使用Header,展示箭头图标.组名.组内人数和上线人数 3.点击组名,伸展.缩回好友组 code so ...
随机推荐
- js超简单日历
用原生js写了一个超级简单的日历.当做是练习js中的Date类型. 思路: 获取某个日期,根据年份计算出每个月的天数. 利用Date中的getDay()知道该月份的第一天为星期几. 循环创建表格,显示 ...
- Onvif协议
ONVIF致力于通过全球性的开放界面标准来推进网络视频在安防市场的应用,这一接口界面标准将确保不同厂商生产的网络视频监控产品具有互通性.2008年11月,论坛正式发布了ONVIF第一版规范ONVIF核 ...
- 解决gnuplot中'Terminal type set to 'unknown'不能显示绘图的问题
安装gnuplot: sudo apt-get install gnuplot 安装成功后,在终端输入gnuplot,进入gnuplot. 直接进行一个小测试: plot sin(x) 发现不能显示绘 ...
- java覆写equals方法
何时需要重写equals() 当一个类有自己特有的“逻辑相等”概念(不同于对象身份的概念). object规范规定,如果要重写equals(),也要重写hashcode() 如何覆写equals() ...
- Android各种效果集合
QQ侧滑风格:http://www.cnblogs.com/lichenwei/p/4111252.html,通过继承HorizontalScrollView类来实现的.
- Nginx简单操作
Nginx简单操作 平滑重启:读取配置文件,正确后启动新nginx,关闭旧服务进程 # kill HUP nginx.pid # /usr/sbin/nginx -c /etc/nginx/nginx ...
- http://riddle.arthurluk.net walkthrough
MSVFMyU4MCU4MWh0dHAlM0ElMkYlMkZyaWRkbGUuYXJ0aHVybHVrLm5ldCUyRnN0YWdlb25lLnBocCUwRCUwQTIlRTMlODAlODFo ...
- 升级到iis7 的web.config配置
经典模式或集成模式都识别system.webServers节点 aspnet的isapi分32位和64位 不存在时会报404或403
- Nginx阅读笔记(三)之proxy_pass用法
在nginx中配置proxy_pass时,当在后面的url加上了/,相当于是绝对根路径,则nginx不会把location中匹配的路径部分代理走,如果没有/,则会把匹配的路径部分也给代理走. 假设访问 ...
- 高级UNIX环境编程3 FILE IO
POSIX中,STDIN_FILENO,STDOUT_FILENO,STDERR_FILENO 对应0,1,2 每个打开的文件都有一个与其想关联的 "current file offset& ...