在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Qt 图形界面开发 → Qt5 局域网通信软件(模仿QQ)

Qt5 局域网通信软件(模仿QQ)

Qt 图形界面开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:3.61M
  • 下载次数:84
  • 浏览次数:637
  • 发布时间:2020-04-04
  • 实例类别:Qt 图形界面开发
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Qt5 局域网 QQ 软件

实例介绍

【实例简介】采用Qt5进行开发的局域网通信客户端 Server,界面模仿QQ的界面,聊天界面采用QWidget绘制的气泡!

【实例截图】

【核心代码】

│  基于Qt的基于网CS聊天代码阅读说明.txt
│  基于Qt的局域网通信设计说明书.doc
│  
├─ChatClient
│  │  ChatClient.pro
│  │  chatclient_plugin_import.cpp
│  │  clientsocket.cpp
│  │  clientsocket.h
│  │  databasemagr.cpp
│  │  databasemagr.h
│  │  images.qrc
│  │  loginwidget.cpp
│  │  loginwidget.h
│  │  loginwidget.ui
│  │  main.cpp
│  │  mainwindow.cpp
│  │  mainwindow.h
│  │  mainwindow.ui
│  │  
│  ├─basewidget
│  │  │  animationstackedwidget.cpp
│  │  │  animationstackedwidget.h
│  │  │  basewidget.pri
│  │  │  chatbubble.cpp
│  │  │  chatbubble.h
│  │  │  clineedit.cpp
│  │  │  clineedit.h
│  │  │  customwidget.cpp
│  │  │  customwidget.h
│  │  │  rotatingstackedwidget.cpp
│  │  │  rotatingstackedwidget.h
│  │  │  
│  │  ├─pictureedit
│  │  │      cutdialog.cpp
│  │  │      cutdialog.h
│  │  │      photoshotdialog.cpp
│  │  │      photoshotdialog.h
│  │  │      pictureeditwidget.cpp
│  │  │      pictureeditwidget.h
│  │  │      pictureeditwidget.ui
│  │  │      
│  │  └─qqlist
│  │          qqlistviewchild.cpp
│  │          qqlistviewchild.h
│  │          qqlistviewgroup.cpp
│  │          qqlistviewgroup.h
│  │          qqlistviewgroup.ui
│  │          qqlistwidget.cpp
│  │          qqlistwidget.h
│  │          qqpopmenuwidget.cpp
│  │          qqpopmenuwidget.h
│  │          
│  ├─comapi
│  │      comapi.pri
│  │      global.h
│  │      iteminfo.cpp
│  │      iteminfo.h
│  │      myapp.cpp
│  │      myapp.h
│  │      qqcell.cpp
│  │      qqcell.h
│  │      unit.h
│  │      
│  ├─debug
│  ├─media
│  │  │  AudioRecorder.cpp
│  │  │  AudioRecorder.h
│  │  │  media.pri
│  │  │  voice.cpp
│  │  │  voice.h
│  │  │  
│  │  ├─fmod
│  │  │  ├─include
│  │  │  │      fmod.h
│  │  │  │      fmod.hpp
│  │  │  │      fmod_codec.h
│  │  │  │      fmod_dsp.h
│  │  │  │      fmod_errors.h
│  │  │  │      fmod_memoryinfo.h
│  │  │  │      
│  │  │  └─libs
│  │  │          fmodex.dll
│  │  │          libfmodex.a
│  │  │          
│  │  ├─test
│  │  │      testmedia.cpp
│  │  │      testmedia.h
│  │  │      
│  │  └─voice
│  │      ├─include
│  │      │      msp_cmn.h
│  │      │      msp_errors.h
│  │      │      msp_types.h
│  │      │      qisr.h
│  │      │      qtts.h
│  │      │      
│  │      └─libs
│  │              msc.dll
│  │              
│  ├─pictureedit
│  │      cutdialog.cpp
│  │      cutdialog.h
│  │      photoshotdialog.cpp
│  │      photoshotdialog.h
│  │      picturecutdialog.cpp
│  │      picturecutdialog.cpp.Wo9620
│  │      picturecutdialog.h
│  │      picturecutdialog.ui
│  │      pictureedit.pri
│  │      
│  ├─release
│  ├─resource
│  │  ├─background
│  │  │      app.png
│  │  │      background.png
│  │  │      ic_picture.png
│  │  │      logo.png
│  │  │      
│  │  ├─common
│  │  │      aio_arrow_down.png
│  │  │      aio_arrow_right.png
│  │  │      ic_arrow_down.png
│  │  │      ic_calendar.png
│  │  │      ic_close.png
│  │  │      ic_close_white.png
│  │  │      ic_color.png
│  │  │      ic_cut.png
│  │  │      ic_file.png
│  │  │      ic_font.png
│  │  │      ic_lock.png
│  │  │      ic_login_cfg.png
│  │  │      ic_menu_down.png
│  │  │      ic_min.png
│  │  │      ic_min_white.png
│  │  │      ic_notes.png
│  │  │      ic_picture.png
│  │  │      ic_record.png
│  │  │      ic_setting.png
│  │  │      ic_smile.png
│  │  │      ic_sysmen.png
│  │  │      ic_user.png
│  │  │      ic_user_add.png
│  │  │      ic_weather.png
│  │  │      
│  │  ├─head
│  │  │      0.bmp
│  │  │      1.bmp
│  │  │      2.bmp
│  │  │      3.bmp
│  │  │      4.bmp
│  │  │      5.bmp
│  │  │      6.bmp
│  │  │      7.bmp
│  │  │      8.bmp
│  │  │      9.bmp
│  │  │      head-48.png
│  │  │      head-64.png
│  │  │      
│  │  ├─ico
│  │  │      app.ico
│  │  │      app.rc
│  │  │      
│  │  ├─images
│  │  │      applay.png
│  │  │      applay_hover.png
│  │  │      contacts.png
│  │  │      contacts_hover.png
│  │  │      conversation_hover.png
│  │  │      conversation_normal.png
│  │  │      group_hover.png
│  │  │      group_normal.png
│  │  │      ic_app.png
│  │  │      ic_chat.png
│  │  │      ic_check_hover.png
│  │  │      ic_check_normal.png
│  │  │      ic_file.png
│  │  │      ic_friend.png
│  │  │      ic_group.png
│  │  │      ic_info.png
│  │  │      ic_mainsetting.png
│  │  │      ic_question.png
│  │  │      ic_set_hover.png
│  │  │      ic_uncheck.png
│  │  │      ic_user.png
│  │  │      ic_warning.png
│  │  │      ic_zip.png
│  │  │      robot.png
│  │  │      
│  │  ├─qss
│  │  │      default.css
│  │  │      
│  │  └─sound
│  │          message.wav
│  │          msg.wav
│  │          ringin.wav
│  │          system.wav
│  │          userlogon.wav
│  │          
│  └─uipage
│          chatwindow.cpp
│          chatwindow.h
│          chatwindow.ui
│          systemmessagedialog.cpp
│          systemmessagedialog.h
│          systemmessagedialog.ui
│          systemsetting.cpp
│          systemsetting.cpp.kf4960
│          systemsetting.h
│          systemsetting.ui
│          uipage.pri
│          weatherwidget.cpp
│          weatherwidget.h
│          widgethead.cpp
│          widgethead.h
│          
├─ChatServer
│  │  ChatServer.pro
│  │  clientsocket.cpp
│  │  clientsocket.h
│  │  databasemagr.cpp
│  │  databasemagr.h
│  │  global.h
│  │  images.qrc
│  │  main.cpp
│  │  mainwindow.cpp
│  │  mainwindow.h
│  │  mainwindow.ui
│  │  myapp.cpp
│  │  myapp.h
│  │  tcpserver.cpp
│  │  tcpserver.h
│  │  unit.h
│  │  
│  ├─basewidget
│  │      animationstackedwidget.cpp
│  │      animationstackedwidget.h
│  │      basewidget.pri
│  │      clineedit.cpp
│  │      clineedit.h
│  │      customwidget.cpp
│  │      customwidget.h
│  │      
│  ├─bin
│  ├─debug
│  ├─libexcel
│  │  ├─include
│  │  │      xlsxabstractooxmlfile.h
│  │  │      xlsxabstractooxmlfile_p.h
│  │  │      xlsxabstractsheet.h
│  │  │      xlsxabstractsheet_p.h
│  │  │      xlsxcell.h
│  │  │      xlsxcellformula.h
│  │  │      xlsxcellformula_p.h
│  │  │      xlsxcellrange.h
│  │  │      xlsxcellreference.h
│  │  │      xlsxcell_p.h
│  │  │      xlsxchart.h
│  │  │      xlsxchartsheet.h
│  │  │      xlsxchartsheet_p.h
│  │  │      xlsxchart_p.h
│  │  │      xlsxcolor_p.h
│  │  │      xlsxconditionalformatting.h
│  │  │      xlsxconditionalformatting_p.h
│  │  │      xlsxcontenttypes_p.h
│  │  │      xlsxdatavalidation.h
│  │  │      xlsxdatavalidation_p.h
│  │  │      xlsxdocpropsapp_p.h
│  │  │      xlsxdocpropscore_p.h
│  │  │      xlsxdocument.h
│  │  │      xlsxdocument_p.h
│  │  │      xlsxdrawinganchor_p.h
│  │  │      xlsxdrawing_p.h
│  │  │      xlsxformat.h
│  │  │      xlsxformat_p.h
│  │  │      xlsxglobal.h
│  │  │      xlsxmediafile_p.h
│  │  │      xlsxnumformatparser_p.h
│  │  │      xlsxrelationships_p.h
│  │  │      xlsxrichstring.h
│  │  │      xlsxrichstring_p.h
│  │  │      xlsxsharedstrings_p.h
│  │  │      xlsxsimpleooxmlfile_p.h
│  │  │      xlsxstyles_p.h
│  │  │      xlsxtheme_p.h
│  │  │      xlsxutility_p.h
│  │  │      xlsxworkbook.h
│  │  │      xlsxworkbook_p.h
│  │  │      xlsxworksheet.h
│  │  │      xlsxworksheet_p.h
│  │  │      xlsxzipreader_p.h
│  │  │      xlsxzipwriter_p.h
│  │  │      
│  │  └─lib
│  │          Qt5Xlsx.dll
│  │          
│  ├─release
│  └─resource
│      ├─background
│      │      background.png
│      │      未标题-1.psd
│      │      
│      ├─common
│      │      aio_arrow_down.png
│      │      aio_arrow_right.png
│      │      ic_arrow_down.png
│      │      ic_close.png
│      │      ic_close_white.png
│      │      ic_min.png
│      │      ic_min_white.png
│      │      
│      ├─ico
│      │      app.ico
│      │      app.rc
│      │      
│      ├─images
│      │      app.png
│      │      ic_add.png
│      │      ic_app.png
│      │      ic_backup.png
│      │      ic_cancel.png
│      │      ic_data_backup.png
│      │      ic_data_udo.png
│      │      ic_delete.png
│      │      ic_edit.png
│      │      ic_excel.png
│      │      ic_exit.png
│      │      ic_find.png
│      │      ic_goods.png
│      │      ic_home.png
│      │      ic_info.png
│      │      ic_key.png
│      │      ic_ok.png
│      │      ic_question.png
│      │      ic_refresh.png
│      │      ic_warning.png
│      │      if_users.png
│      │      
│      └─qss
│              default.css
│              
└─截图
        QQ截图20170606140751.png
        QQ截图20170606140820.png
        QQ截图20170606140852.png
        QQ截图20170606140942.png
        QQ截图20170606140948.png
        QQ截图20170606141829.png
        QQ截图20170606141858.png
        



标签: Qt5 局域网 QQ 软件

实例下载地址

Qt5 局域网通信软件(模仿QQ)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警