├── .DS_Store ├── .gitattributes ├── Client ├── Controller │ ├── Controller │ ├── clientcontroller.cpp │ ├── clientcontroller.h │ ├── clientcontroller_chat.cpp │ ├── clientcontroller_file.cpp │ ├── clientcontroller_friend.cpp │ ├── clientcontroller_group.cpp │ ├── clientcontroller_modify.cpp │ └── clientcontroller_reg_login.cpp ├── DataModel │ ├── DataModel │ ├── Msg │ │ ├── Msg │ │ ├── msg.cpp │ │ ├── msg.h │ │ └── msgtype.h │ ├── chatmessage.cpp │ ├── chatmessage.h │ ├── datamodel.h │ ├── filemeta.cpp │ ├── filemeta.h │ ├── filepackage.cpp │ ├── filepackage.h │ ├── group_chat_message.cpp │ ├── group_chat_message.h │ ├── groupinfo.cpp │ ├── groupinfo.h │ ├── userinfo.cpp │ └── userinfo.h ├── Developer │ ├── new_windows.cpp │ ├── new_windows.h │ ├── new_windows.ui │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── GUI │ ├── GUI │ ├── GUI新增的界面.rar │ ├── addfriend.cpp │ ├── addfriend.h │ ├── addfriend.ui │ ├── addfriendalert.cpp │ ├── addfriendalert.h │ ├── addfriendalert.ui │ ├── addgroup.cpp │ ├── addgroup.h │ ├── addgroup.ui │ ├── addgroupalert.cpp │ ├── addgroupalert.h │ ├── addgroupalert.ui │ ├── addsuccess.cpp │ ├── addsuccess.h │ ├── addsuccess.ui │ ├── alarmwidget.cpp │ ├── alarmwidget.h │ ├── alarmwidget.ui │ ├── alterimg.cpp │ ├── alterimg.h │ ├── alterimg.ui │ ├── altername.cpp │ ├── altername.h │ ├── altername.ui │ ├── alterpwd.cpp │ ├── alterpwd.h │ ├── alterpwd.ui │ ├── choosefile.cpp │ ├── choosefile.h │ ├── choosefile.ui │ ├── chooseimage.cpp │ ├── chooseimage.h │ ├── chooseimage.ui │ ├── chooseimg.cpp │ ├── chooseimg.h │ ├── chooseimg.ui │ ├── creategroup.cpp │ ├── creategroup.h │ ├── creategroup.ui │ ├── dialog.pro.user │ ├── dialog.qrc │ ├── img │ │ ├── 1.png │ │ ├── addFriends.png │ │ ├── button.png │ │ ├── button2.png │ │ ├── button3.png │ │ ├── button4.png │ │ ├── button5.png │ │ ├── chatting.png │ │ ├── close.png │ │ ├── colorChangebtn.png │ │ ├── defaultimg.png │ │ ├── dialogbg.png │ │ ├── friendRequest.png │ │ ├── friends.png │ │ ├── groupchat.png │ │ ├── img │ │ ├── login.png │ │ ├── loginbtn.png │ │ ├── loginbtnhover.png │ │ ├── logintext.PNG │ │ ├── logo.ico │ │ ├── no.png │ │ ├── registertext.PNG │ │ ├── scShotbtn.png │ │ ├── search.png │ │ ├── sendFilebtn.png │ │ ├── sendImgbtn.png │ │ └── settings.png │ ├── itemwidget.cpp │ ├── itemwidget.h │ ├── itemwidget.ui │ ├── login.cpp │ ├── login.h │ ├── login.ui │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── new_reg.cpp │ ├── new_reg.h │ ├── new_reg.ui │ ├── register.cpp │ ├── register.h │ ├── register.ui │ └── resourse.qrc ├── Network │ ├── Handlers │ │ ├── Handlers │ │ ├── add_group_result_handler.cpp │ │ ├── add_group_result_handler.h │ │ ├── chat_msg_handler.cpp │ │ ├── chat_msg_handler.h │ │ ├── friend_request_handler.cpp │ │ ├── friend_request_handler.h │ │ ├── friend_request_result_handler.cpp │ │ ├── friend_request_result_handler.h │ │ ├── friendlist_handler.cpp │ │ ├── friendlist_handler.h │ │ ├── group_add_request_result.h │ │ ├── group_add_result_handler.cpp │ │ ├── group_msg_handler.cpp │ │ ├── group_msg_handler.h │ │ ├── grouplist_handler.cpp │ │ ├── grouplist_handler.h │ │ ├── login_handler.cpp │ │ ├── login_handler.h │ │ ├── logout_handler.cpp │ │ ├── logout_handler.h │ │ ├── modify_username_result_handler.cpp │ │ ├── modify_username_result_handler.h │ │ ├── msghandler.h │ │ ├── register_group_handler.cpp │ │ ├── register_group_handler.h │ │ ├── register_handler.cpp │ │ ├── register_handler.h │ │ ├── userinfo_handler.cpp │ │ └── userinfo_handler.h │ ├── Network │ ├── ResAssist │ │ ├── ResAssist │ │ ├── downloader.cpp │ │ ├── downloader.h │ │ ├── localcache.cpp │ │ ├── localcache.h │ │ ├── res.h │ │ ├── ressocket.cpp │ │ ├── ressocket.h │ │ ├── uploader.cpp │ │ └── uploader.h │ ├── handlerreg.cpp │ ├── handlerreg.h │ ├── handlers.h │ ├── tcpclientsocket.cpp │ └── tcpclientsocket.h ├── README.md ├── Utilities │ ├── Utilities │ ├── log.cpp │ ├── log.h │ ├── qbytearraylistutility.cpp │ ├── qbytearraylistutility.h │ ├── safeutilities.cpp │ ├── safeutilities.h │ ├── standarddatetimeutilities.h │ ├── utilities.h │ ├── verifyutilities.cpp │ └── verifyutilities.h ├── developer.qrc ├── dialog.pro ├── dialog.pro.user ├── dialog.pro.user.2be356f ├── dialog.pro.user.79fbf67 ├── logo.ico ├── logo.png ├── user.cpp └── user.h ├── LICENSE ├── README.md ├── Server ├── .DS_Store ├── DataBase │ ├── datadb.cpp │ └── datadb.h ├── DataModel │ ├── .DS_Store │ ├── Msg │ │ ├── msg.cpp │ │ ├── msg.h │ │ └── msgtype.h │ ├── chatmessage.cpp │ ├── chatmessage.h │ ├── datamodel.h │ ├── filemeta.cpp │ ├── filemeta.h │ ├── filepackage.cpp │ ├── filepackage.h │ ├── groupinfo.cpp │ ├── groupinfo.h │ ├── userinfo.cpp │ └── userinfo.h ├── Network │ ├── .DS_Store │ ├── Handlers │ │ ├── FriendshipHandler.cpp │ │ ├── FriendshipHandler.h │ │ ├── LoginHandler.cpp │ │ ├── LoginHandler.h │ │ ├── LogoutHandler.cpp │ │ ├── LogoutHandler.h │ │ ├── RegisterHandler.cpp │ │ ├── RegisterHandler.h │ │ ├── addGroupHandler.cpp │ │ ├── addGroupHandler.h │ │ ├── addfriendresulthandler.cpp │ │ ├── addfriendresulthandler.h │ │ ├── chatmsghandler.cpp │ │ ├── chatmsghandler.h │ │ ├── group_msg_handler.cpp │ │ ├── group_msg_handler.h │ │ ├── modifyUsernameHandler.cpp │ │ ├── modifyUsernameHandler.h │ │ ├── modifyavatarhandler.cpp │ │ ├── modifyavatarhandler.h │ │ ├── msghandler.h │ │ ├── offlinemsghandler.cpp │ │ ├── offlinemsghandler.h │ │ ├── registerGroupHandler.cpp │ │ ├── registerGroupHandler.h │ │ ├── requestAllGroupListHandler.cpp │ │ ├── requestAllGroupListHandler.h │ │ ├── requestUserInfoHandler.cpp │ │ ├── requestUserInfoHandler.h │ │ ├── requestallfriendlisthandler.cpp │ │ └── requestallfriendlisthandler.h │ ├── ResAssist │ │ ├── .DS_Store │ │ ├── localcache.cpp │ │ ├── localcache.h │ │ ├── res.h │ │ ├── ressocket.cpp │ │ └── ressocket.h │ ├── Server │ │ ├── resserver.cpp │ │ ├── resserver.h │ │ ├── server.cpp │ │ ├── server.h │ │ ├── tcpserver.cpp │ │ └── tcpserver.h │ ├── serverhandlerreg.cpp │ ├── serverhandlerreg.h │ ├── tcpclientsocket.cpp │ └── tcpclientsocket.h ├── README.md ├── Utilities │ ├── log.cpp │ ├── log.h │ ├── qbytearraylistutility.cpp │ ├── qbytearraylistutility.h │ ├── standarddatetimeutilities.h │ └── utilities.h ├── main.cpp ├── serverDemo.pro ├── serverDemo.pro.user ├── serverDemo.pro.user.150939b ├── serverDemo.pro.user.51fb0d7 ├── serverDemo.pro.user.79fbf67 ├── servercontroller.cpp ├── servercontroller.h ├── widget.cpp ├── widget.h └── widget.ui ├── dev ├── .DS_Store ├── ClientController_alpha1.0.0.zip └── ServerController_alpha1.0.0.zip ├── doc ├── 概要设计书-祖安聊天宝-第11组.doc └── 项目运行录屏.mp4 └── img ├── .DS_Store ├── addfriend1.png ├── addfriend2.png ├── addfriend3.png ├── addfriend4.png ├── chat1.png ├── chat2.png ├── devmode.png ├── file1.png ├── group1.png ├── group2.png ├── group3.png ├── group4.png ├── group5.png ├── img1.png ├── login1.png ├── logo.png ├── reg.png ├── screenshot2.png └── 架构.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /Client/Controller/Controller: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/Controller/clientcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller.h -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_chat.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_file.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_friend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_friend.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_group.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_modify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_modify.cpp -------------------------------------------------------------------------------- /Client/Controller/clientcontroller_reg_login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Controller/clientcontroller_reg_login.cpp -------------------------------------------------------------------------------- /Client/DataModel/DataModel: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/DataModel/Msg/Msg: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/DataModel/Msg/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/Msg/msg.cpp -------------------------------------------------------------------------------- /Client/DataModel/Msg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/Msg/msg.h -------------------------------------------------------------------------------- /Client/DataModel/Msg/msgtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/Msg/msgtype.h -------------------------------------------------------------------------------- /Client/DataModel/chatmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/chatmessage.cpp -------------------------------------------------------------------------------- /Client/DataModel/chatmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/chatmessage.h -------------------------------------------------------------------------------- /Client/DataModel/datamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/datamodel.h -------------------------------------------------------------------------------- /Client/DataModel/filemeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/filemeta.cpp -------------------------------------------------------------------------------- /Client/DataModel/filemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/filemeta.h -------------------------------------------------------------------------------- /Client/DataModel/filepackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/filepackage.cpp -------------------------------------------------------------------------------- /Client/DataModel/filepackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/filepackage.h -------------------------------------------------------------------------------- /Client/DataModel/group_chat_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/group_chat_message.cpp -------------------------------------------------------------------------------- /Client/DataModel/group_chat_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/group_chat_message.h -------------------------------------------------------------------------------- /Client/DataModel/groupinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/groupinfo.cpp -------------------------------------------------------------------------------- /Client/DataModel/groupinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/groupinfo.h -------------------------------------------------------------------------------- /Client/DataModel/userinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/userinfo.cpp -------------------------------------------------------------------------------- /Client/DataModel/userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/DataModel/userinfo.h -------------------------------------------------------------------------------- /Client/Developer/new_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/new_windows.cpp -------------------------------------------------------------------------------- /Client/Developer/new_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/new_windows.h -------------------------------------------------------------------------------- /Client/Developer/new_windows.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/new_windows.ui -------------------------------------------------------------------------------- /Client/Developer/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/widget.cpp -------------------------------------------------------------------------------- /Client/Developer/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/widget.h -------------------------------------------------------------------------------- /Client/Developer/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Developer/widget.ui -------------------------------------------------------------------------------- /Client/GUI/GUI: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/GUI/GUI新增的界面.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/GUI新增的界面.rar -------------------------------------------------------------------------------- /Client/GUI/addfriend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriend.cpp -------------------------------------------------------------------------------- /Client/GUI/addfriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriend.h -------------------------------------------------------------------------------- /Client/GUI/addfriend.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriend.ui -------------------------------------------------------------------------------- /Client/GUI/addfriendalert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriendalert.cpp -------------------------------------------------------------------------------- /Client/GUI/addfriendalert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriendalert.h -------------------------------------------------------------------------------- /Client/GUI/addfriendalert.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addfriendalert.ui -------------------------------------------------------------------------------- /Client/GUI/addgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroup.cpp -------------------------------------------------------------------------------- /Client/GUI/addgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroup.h -------------------------------------------------------------------------------- /Client/GUI/addgroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroup.ui -------------------------------------------------------------------------------- /Client/GUI/addgroupalert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroupalert.cpp -------------------------------------------------------------------------------- /Client/GUI/addgroupalert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroupalert.h -------------------------------------------------------------------------------- /Client/GUI/addgroupalert.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addgroupalert.ui -------------------------------------------------------------------------------- /Client/GUI/addsuccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addsuccess.cpp -------------------------------------------------------------------------------- /Client/GUI/addsuccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addsuccess.h -------------------------------------------------------------------------------- /Client/GUI/addsuccess.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/addsuccess.ui -------------------------------------------------------------------------------- /Client/GUI/alarmwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alarmwidget.cpp -------------------------------------------------------------------------------- /Client/GUI/alarmwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alarmwidget.h -------------------------------------------------------------------------------- /Client/GUI/alarmwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alarmwidget.ui -------------------------------------------------------------------------------- /Client/GUI/alterimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterimg.cpp -------------------------------------------------------------------------------- /Client/GUI/alterimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterimg.h -------------------------------------------------------------------------------- /Client/GUI/alterimg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterimg.ui -------------------------------------------------------------------------------- /Client/GUI/altername.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/altername.cpp -------------------------------------------------------------------------------- /Client/GUI/altername.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/altername.h -------------------------------------------------------------------------------- /Client/GUI/altername.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/altername.ui -------------------------------------------------------------------------------- /Client/GUI/alterpwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterpwd.cpp -------------------------------------------------------------------------------- /Client/GUI/alterpwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterpwd.h -------------------------------------------------------------------------------- /Client/GUI/alterpwd.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/alterpwd.ui -------------------------------------------------------------------------------- /Client/GUI/choosefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/choosefile.cpp -------------------------------------------------------------------------------- /Client/GUI/choosefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/choosefile.h -------------------------------------------------------------------------------- /Client/GUI/choosefile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/choosefile.ui -------------------------------------------------------------------------------- /Client/GUI/chooseimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimage.cpp -------------------------------------------------------------------------------- /Client/GUI/chooseimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimage.h -------------------------------------------------------------------------------- /Client/GUI/chooseimage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimage.ui -------------------------------------------------------------------------------- /Client/GUI/chooseimg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimg.cpp -------------------------------------------------------------------------------- /Client/GUI/chooseimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimg.h -------------------------------------------------------------------------------- /Client/GUI/chooseimg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/chooseimg.ui -------------------------------------------------------------------------------- /Client/GUI/creategroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/creategroup.cpp -------------------------------------------------------------------------------- /Client/GUI/creategroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/creategroup.h -------------------------------------------------------------------------------- /Client/GUI/creategroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/creategroup.ui -------------------------------------------------------------------------------- /Client/GUI/dialog.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/dialog.pro.user -------------------------------------------------------------------------------- /Client/GUI/dialog.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/dialog.qrc -------------------------------------------------------------------------------- /Client/GUI/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/1.png -------------------------------------------------------------------------------- /Client/GUI/img/addFriends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/addFriends.png -------------------------------------------------------------------------------- /Client/GUI/img/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/button.png -------------------------------------------------------------------------------- /Client/GUI/img/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/button2.png -------------------------------------------------------------------------------- /Client/GUI/img/button3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/button3.png -------------------------------------------------------------------------------- /Client/GUI/img/button4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/button4.png -------------------------------------------------------------------------------- /Client/GUI/img/button5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/button5.png -------------------------------------------------------------------------------- /Client/GUI/img/chatting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/chatting.png -------------------------------------------------------------------------------- /Client/GUI/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/close.png -------------------------------------------------------------------------------- /Client/GUI/img/colorChangebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/colorChangebtn.png -------------------------------------------------------------------------------- /Client/GUI/img/defaultimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/defaultimg.png -------------------------------------------------------------------------------- /Client/GUI/img/dialogbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/dialogbg.png -------------------------------------------------------------------------------- /Client/GUI/img/friendRequest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/friendRequest.png -------------------------------------------------------------------------------- /Client/GUI/img/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/friends.png -------------------------------------------------------------------------------- /Client/GUI/img/groupchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/groupchat.png -------------------------------------------------------------------------------- /Client/GUI/img/img: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/GUI/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/login.png -------------------------------------------------------------------------------- /Client/GUI/img/loginbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/loginbtn.png -------------------------------------------------------------------------------- /Client/GUI/img/loginbtnhover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/loginbtnhover.png -------------------------------------------------------------------------------- /Client/GUI/img/logintext.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/logintext.PNG -------------------------------------------------------------------------------- /Client/GUI/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/logo.ico -------------------------------------------------------------------------------- /Client/GUI/img/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/no.png -------------------------------------------------------------------------------- /Client/GUI/img/registertext.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/registertext.PNG -------------------------------------------------------------------------------- /Client/GUI/img/scShotbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/scShotbtn.png -------------------------------------------------------------------------------- /Client/GUI/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/search.png -------------------------------------------------------------------------------- /Client/GUI/img/sendFilebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/sendFilebtn.png -------------------------------------------------------------------------------- /Client/GUI/img/sendImgbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/sendImgbtn.png -------------------------------------------------------------------------------- /Client/GUI/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/img/settings.png -------------------------------------------------------------------------------- /Client/GUI/itemwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/itemwidget.cpp -------------------------------------------------------------------------------- /Client/GUI/itemwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/itemwidget.h -------------------------------------------------------------------------------- /Client/GUI/itemwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/itemwidget.ui -------------------------------------------------------------------------------- /Client/GUI/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/login.cpp -------------------------------------------------------------------------------- /Client/GUI/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/login.h -------------------------------------------------------------------------------- /Client/GUI/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/login.ui -------------------------------------------------------------------------------- /Client/GUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/main.cpp -------------------------------------------------------------------------------- /Client/GUI/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/mainwindow.cpp -------------------------------------------------------------------------------- /Client/GUI/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/mainwindow.h -------------------------------------------------------------------------------- /Client/GUI/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/mainwindow.ui -------------------------------------------------------------------------------- /Client/GUI/new_reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/new_reg.cpp -------------------------------------------------------------------------------- /Client/GUI/new_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/new_reg.h -------------------------------------------------------------------------------- /Client/GUI/new_reg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/new_reg.ui -------------------------------------------------------------------------------- /Client/GUI/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/register.cpp -------------------------------------------------------------------------------- /Client/GUI/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/register.h -------------------------------------------------------------------------------- /Client/GUI/register.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/register.ui -------------------------------------------------------------------------------- /Client/GUI/resourse.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/GUI/resourse.qrc -------------------------------------------------------------------------------- /Client/Network/Handlers/Handlers: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/Network/Handlers/add_group_result_handler.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/Network/Handlers/add_group_result_handler.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /Client/Network/Handlers/chat_msg_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/chat_msg_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/chat_msg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/chat_msg_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/friend_request_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friend_request_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/friend_request_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friend_request_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/friend_request_result_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friend_request_result_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/friend_request_result_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friend_request_result_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/friendlist_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friendlist_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/friendlist_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/friendlist_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/group_add_request_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/group_add_request_result.h -------------------------------------------------------------------------------- /Client/Network/Handlers/group_add_result_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/group_add_result_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/group_msg_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/group_msg_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/group_msg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/group_msg_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/grouplist_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/grouplist_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/grouplist_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/grouplist_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/login_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/login_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/login_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/login_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/logout_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/logout_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/logout_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/logout_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/modify_username_result_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/modify_username_result_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/modify_username_result_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/modify_username_result_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/msghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/msghandler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/register_group_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/register_group_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/register_group_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/register_group_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/register_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/register_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/register_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/register_handler.h -------------------------------------------------------------------------------- /Client/Network/Handlers/userinfo_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/userinfo_handler.cpp -------------------------------------------------------------------------------- /Client/Network/Handlers/userinfo_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/Handlers/userinfo_handler.h -------------------------------------------------------------------------------- /Client/Network/Network: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/Network/ResAssist/ResAssist: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/Network/ResAssist/downloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/downloader.cpp -------------------------------------------------------------------------------- /Client/Network/ResAssist/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/downloader.h -------------------------------------------------------------------------------- /Client/Network/ResAssist/localcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/localcache.cpp -------------------------------------------------------------------------------- /Client/Network/ResAssist/localcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/localcache.h -------------------------------------------------------------------------------- /Client/Network/ResAssist/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/res.h -------------------------------------------------------------------------------- /Client/Network/ResAssist/ressocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/ressocket.cpp -------------------------------------------------------------------------------- /Client/Network/ResAssist/ressocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/ressocket.h -------------------------------------------------------------------------------- /Client/Network/ResAssist/uploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/uploader.cpp -------------------------------------------------------------------------------- /Client/Network/ResAssist/uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/ResAssist/uploader.h -------------------------------------------------------------------------------- /Client/Network/handlerreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/handlerreg.cpp -------------------------------------------------------------------------------- /Client/Network/handlerreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/handlerreg.h -------------------------------------------------------------------------------- /Client/Network/handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/handlers.h -------------------------------------------------------------------------------- /Client/Network/tcpclientsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/tcpclientsocket.cpp -------------------------------------------------------------------------------- /Client/Network/tcpclientsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Network/tcpclientsocket.h -------------------------------------------------------------------------------- /Client/README.md: -------------------------------------------------------------------------------- 1 | #BFZD_UI 2 | -------------------------------------------------------------------------------- /Client/Utilities/Utilities: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Client/Utilities/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/log.cpp -------------------------------------------------------------------------------- /Client/Utilities/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/log.h -------------------------------------------------------------------------------- /Client/Utilities/qbytearraylistutility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/qbytearraylistutility.cpp -------------------------------------------------------------------------------- /Client/Utilities/qbytearraylistutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/qbytearraylistutility.h -------------------------------------------------------------------------------- /Client/Utilities/safeutilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/safeutilities.cpp -------------------------------------------------------------------------------- /Client/Utilities/safeutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/safeutilities.h -------------------------------------------------------------------------------- /Client/Utilities/standarddatetimeutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/standarddatetimeutilities.h -------------------------------------------------------------------------------- /Client/Utilities/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/utilities.h -------------------------------------------------------------------------------- /Client/Utilities/verifyutilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/verifyutilities.cpp -------------------------------------------------------------------------------- /Client/Utilities/verifyutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/Utilities/verifyutilities.h -------------------------------------------------------------------------------- /Client/developer.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Client/dialog.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/dialog.pro -------------------------------------------------------------------------------- /Client/dialog.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/dialog.pro.user -------------------------------------------------------------------------------- /Client/dialog.pro.user.2be356f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/dialog.pro.user.2be356f -------------------------------------------------------------------------------- /Client/dialog.pro.user.79fbf67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/dialog.pro.user.79fbf67 -------------------------------------------------------------------------------- /Client/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/logo.ico -------------------------------------------------------------------------------- /Client/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/logo.png -------------------------------------------------------------------------------- /Client/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/user.cpp -------------------------------------------------------------------------------- /Client/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Client/user.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/README.md -------------------------------------------------------------------------------- /Server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/.DS_Store -------------------------------------------------------------------------------- /Server/DataBase/datadb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataBase/datadb.cpp -------------------------------------------------------------------------------- /Server/DataBase/datadb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataBase/datadb.h -------------------------------------------------------------------------------- /Server/DataModel/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/.DS_Store -------------------------------------------------------------------------------- /Server/DataModel/Msg/msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/Msg/msg.cpp -------------------------------------------------------------------------------- /Server/DataModel/Msg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/Msg/msg.h -------------------------------------------------------------------------------- /Server/DataModel/Msg/msgtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/Msg/msgtype.h -------------------------------------------------------------------------------- /Server/DataModel/chatmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/chatmessage.cpp -------------------------------------------------------------------------------- /Server/DataModel/chatmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/chatmessage.h -------------------------------------------------------------------------------- /Server/DataModel/datamodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/datamodel.h -------------------------------------------------------------------------------- /Server/DataModel/filemeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/filemeta.cpp -------------------------------------------------------------------------------- /Server/DataModel/filemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/filemeta.h -------------------------------------------------------------------------------- /Server/DataModel/filepackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/filepackage.cpp -------------------------------------------------------------------------------- /Server/DataModel/filepackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/filepackage.h -------------------------------------------------------------------------------- /Server/DataModel/groupinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/groupinfo.cpp -------------------------------------------------------------------------------- /Server/DataModel/groupinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/groupinfo.h -------------------------------------------------------------------------------- /Server/DataModel/userinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/userinfo.cpp -------------------------------------------------------------------------------- /Server/DataModel/userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/DataModel/userinfo.h -------------------------------------------------------------------------------- /Server/Network/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/.DS_Store -------------------------------------------------------------------------------- /Server/Network/Handlers/FriendshipHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/FriendshipHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/FriendshipHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/FriendshipHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/LoginHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/LoginHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/LoginHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/LoginHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/LogoutHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/LogoutHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/LogoutHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/LogoutHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/RegisterHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/RegisterHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/RegisterHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/RegisterHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/addGroupHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/addGroupHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/addGroupHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/addGroupHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/addfriendresulthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/addfriendresulthandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/addfriendresulthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/addfriendresulthandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/chatmsghandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/chatmsghandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/chatmsghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/chatmsghandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/group_msg_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/group_msg_handler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/group_msg_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/group_msg_handler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/modifyUsernameHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/modifyUsernameHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/modifyUsernameHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/modifyUsernameHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/modifyavatarhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/modifyavatarhandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/modifyavatarhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/modifyavatarhandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/msghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/msghandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/offlinemsghandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/offlinemsghandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/offlinemsghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/offlinemsghandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/registerGroupHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/registerGroupHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/registerGroupHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/registerGroupHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/requestAllGroupListHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestAllGroupListHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/requestAllGroupListHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestAllGroupListHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/requestUserInfoHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestUserInfoHandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/requestUserInfoHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestUserInfoHandler.h -------------------------------------------------------------------------------- /Server/Network/Handlers/requestallfriendlisthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestallfriendlisthandler.cpp -------------------------------------------------------------------------------- /Server/Network/Handlers/requestallfriendlisthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Handlers/requestallfriendlisthandler.h -------------------------------------------------------------------------------- /Server/Network/ResAssist/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/.DS_Store -------------------------------------------------------------------------------- /Server/Network/ResAssist/localcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/localcache.cpp -------------------------------------------------------------------------------- /Server/Network/ResAssist/localcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/localcache.h -------------------------------------------------------------------------------- /Server/Network/ResAssist/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/res.h -------------------------------------------------------------------------------- /Server/Network/ResAssist/ressocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/ressocket.cpp -------------------------------------------------------------------------------- /Server/Network/ResAssist/ressocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/ResAssist/ressocket.h -------------------------------------------------------------------------------- /Server/Network/Server/resserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/resserver.cpp -------------------------------------------------------------------------------- /Server/Network/Server/resserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/resserver.h -------------------------------------------------------------------------------- /Server/Network/Server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/server.cpp -------------------------------------------------------------------------------- /Server/Network/Server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/server.h -------------------------------------------------------------------------------- /Server/Network/Server/tcpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/tcpserver.cpp -------------------------------------------------------------------------------- /Server/Network/Server/tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/Server/tcpserver.h -------------------------------------------------------------------------------- /Server/Network/serverhandlerreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/serverhandlerreg.cpp -------------------------------------------------------------------------------- /Server/Network/serverhandlerreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/serverhandlerreg.h -------------------------------------------------------------------------------- /Server/Network/tcpclientsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/tcpclientsocket.cpp -------------------------------------------------------------------------------- /Server/Network/tcpclientsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Network/tcpclientsocket.h -------------------------------------------------------------------------------- /Server/README.md: -------------------------------------------------------------------------------- 1 | # ServerController 2 | 3 | ## Version: Alpha 1.0.0 4 | 5 | -------------------------------------------------------------------------------- /Server/Utilities/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/log.cpp -------------------------------------------------------------------------------- /Server/Utilities/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/log.h -------------------------------------------------------------------------------- /Server/Utilities/qbytearraylistutility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/qbytearraylistutility.cpp -------------------------------------------------------------------------------- /Server/Utilities/qbytearraylistutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/qbytearraylistutility.h -------------------------------------------------------------------------------- /Server/Utilities/standarddatetimeutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/standarddatetimeutilities.h -------------------------------------------------------------------------------- /Server/Utilities/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/Utilities/utilities.h -------------------------------------------------------------------------------- /Server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/main.cpp -------------------------------------------------------------------------------- /Server/serverDemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/serverDemo.pro -------------------------------------------------------------------------------- /Server/serverDemo.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/serverDemo.pro.user -------------------------------------------------------------------------------- /Server/serverDemo.pro.user.150939b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/serverDemo.pro.user.150939b -------------------------------------------------------------------------------- /Server/serverDemo.pro.user.51fb0d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/serverDemo.pro.user.51fb0d7 -------------------------------------------------------------------------------- /Server/serverDemo.pro.user.79fbf67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/serverDemo.pro.user.79fbf67 -------------------------------------------------------------------------------- /Server/servercontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/servercontroller.cpp -------------------------------------------------------------------------------- /Server/servercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/servercontroller.h -------------------------------------------------------------------------------- /Server/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/widget.cpp -------------------------------------------------------------------------------- /Server/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/widget.h -------------------------------------------------------------------------------- /Server/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/Server/widget.ui -------------------------------------------------------------------------------- /dev/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/dev/.DS_Store -------------------------------------------------------------------------------- /dev/ClientController_alpha1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/dev/ClientController_alpha1.0.0.zip -------------------------------------------------------------------------------- /dev/ServerController_alpha1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/dev/ServerController_alpha1.0.0.zip -------------------------------------------------------------------------------- /doc/概要设计书-祖安聊天宝-第11组.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/doc/概要设计书-祖安聊天宝-第11组.doc -------------------------------------------------------------------------------- /doc/项目运行录屏.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/doc/项目运行录屏.mp4 -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/addfriend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/addfriend1.png -------------------------------------------------------------------------------- /img/addfriend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/addfriend2.png -------------------------------------------------------------------------------- /img/addfriend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/addfriend3.png -------------------------------------------------------------------------------- /img/addfriend4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/addfriend4.png -------------------------------------------------------------------------------- /img/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/chat1.png -------------------------------------------------------------------------------- /img/chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/chat2.png -------------------------------------------------------------------------------- /img/devmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/devmode.png -------------------------------------------------------------------------------- /img/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/file1.png -------------------------------------------------------------------------------- /img/group1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/group1.png -------------------------------------------------------------------------------- /img/group2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/group2.png -------------------------------------------------------------------------------- /img/group3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/group3.png -------------------------------------------------------------------------------- /img/group4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/group4.png -------------------------------------------------------------------------------- /img/group5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/group5.png -------------------------------------------------------------------------------- /img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/img1.png -------------------------------------------------------------------------------- /img/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/login1.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/reg.png -------------------------------------------------------------------------------- /img/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/screenshot2.png -------------------------------------------------------------------------------- /img/架构.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbji/ZaunChat/HEAD/img/架构.png --------------------------------------------------------------------------------