├── .gitignore ├── Client ├── Login.pro ├── Login.pro.user ├── add.png ├── avatars │ ├── 1.jpg │ ├── 1b.jpg │ ├── 2.jpg │ ├── 2b.jpg │ ├── 3.jpg │ ├── 3b.jpg │ ├── 4.jpg │ ├── 4b.jpg │ ├── 5.jpg │ ├── 5b.jpg │ ├── 6.jpg │ ├── 6b.jpg │ └── group.jpg ├── ban.png ├── bg │ ├── black.png │ ├── blue.png │ ├── red.png │ ├── redpacknormal.png │ └── result.png ├── cash.png ├── chat │ ├── animate.css │ ├── chat.css │ ├── chat.html │ └── jquery.min.js ├── creatgroup.cpp ├── creatgroup.h ├── creatgroup.ui ├── dialog.cpp ├── dialog.h ├── dialog.ui ├── dialog │ ├── biaoqingselect.cpp │ ├── biaoqingselect.h │ ├── biaoqingselect.ui │ ├── editprofile.cpp │ ├── editprofile.h │ ├── editprofile.ui │ ├── garbresult.cpp │ ├── garbresult.h │ ├── garbresult.ui │ ├── luckyred.cpp │ ├── luckyred.h │ ├── luckyred.ui │ ├── normalred.cpp │ ├── normalred.h │ ├── normalred.ui │ ├── recordshow.cpp │ ├── recordshow.h │ ├── recordshow.ui │ ├── stylechange.cpp │ ├── stylechange.h │ └── stylechange.ui ├── do.png ├── file-b-17.png ├── filecontext.cpp ├── filecontext.h ├── group ├── home.cpp ├── home.h ├── home.ui ├── ico ├── loginthread.cpp ├── loginthread.h ├── logo.ico ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── message.cpp ├── message.h ├── messagethread.cpp ├── messagethread.h ├── purchase.cpp ├── purchase.h ├── purchase.ui ├── qwebchannel.js ├── regwindow.cpp ├── regwindow.h ├── regwindow.ui ├── res.qrc ├── sad.png ├── smile.png ├── user.h ├── useritem.cpp ├── useritem.h ├── useritem.ui ├── 抖动1.png ├── 窗口.png ├── 红包.png ├── 语音.png ├── 语音w.png ├── 麦克风.png └── 麦克风ico.png ├── README.md ├── Server ├── TelegraphServer.pro ├── TelegraphServer.pro.user ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── user.cpp └── user.h └── Sql └── telegraph.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/.gitignore -------------------------------------------------------------------------------- /Client/Login.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/Login.pro -------------------------------------------------------------------------------- /Client/Login.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/Login.pro.user -------------------------------------------------------------------------------- /Client/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/add.png -------------------------------------------------------------------------------- /Client/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/1.jpg -------------------------------------------------------------------------------- /Client/avatars/1b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/1b.jpg -------------------------------------------------------------------------------- /Client/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/2.jpg -------------------------------------------------------------------------------- /Client/avatars/2b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/2b.jpg -------------------------------------------------------------------------------- /Client/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/3.jpg -------------------------------------------------------------------------------- /Client/avatars/3b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/3b.jpg -------------------------------------------------------------------------------- /Client/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/4.jpg -------------------------------------------------------------------------------- /Client/avatars/4b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/4b.jpg -------------------------------------------------------------------------------- /Client/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/5.jpg -------------------------------------------------------------------------------- /Client/avatars/5b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/5b.jpg -------------------------------------------------------------------------------- /Client/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/6.jpg -------------------------------------------------------------------------------- /Client/avatars/6b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/6b.jpg -------------------------------------------------------------------------------- /Client/avatars/group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/avatars/group.jpg -------------------------------------------------------------------------------- /Client/ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/ban.png -------------------------------------------------------------------------------- /Client/bg/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/bg/black.png -------------------------------------------------------------------------------- /Client/bg/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/bg/blue.png -------------------------------------------------------------------------------- /Client/bg/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/bg/red.png -------------------------------------------------------------------------------- /Client/bg/redpacknormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/bg/redpacknormal.png -------------------------------------------------------------------------------- /Client/bg/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/bg/result.png -------------------------------------------------------------------------------- /Client/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/cash.png -------------------------------------------------------------------------------- /Client/chat/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/chat/animate.css -------------------------------------------------------------------------------- /Client/chat/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/chat/chat.css -------------------------------------------------------------------------------- /Client/chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/chat/chat.html -------------------------------------------------------------------------------- /Client/chat/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/chat/jquery.min.js -------------------------------------------------------------------------------- /Client/creatgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/creatgroup.cpp -------------------------------------------------------------------------------- /Client/creatgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/creatgroup.h -------------------------------------------------------------------------------- /Client/creatgroup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/creatgroup.ui -------------------------------------------------------------------------------- /Client/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog.cpp -------------------------------------------------------------------------------- /Client/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog.h -------------------------------------------------------------------------------- /Client/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog.ui -------------------------------------------------------------------------------- /Client/dialog/biaoqingselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/biaoqingselect.cpp -------------------------------------------------------------------------------- /Client/dialog/biaoqingselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/biaoqingselect.h -------------------------------------------------------------------------------- /Client/dialog/biaoqingselect.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/biaoqingselect.ui -------------------------------------------------------------------------------- /Client/dialog/editprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/editprofile.cpp -------------------------------------------------------------------------------- /Client/dialog/editprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/editprofile.h -------------------------------------------------------------------------------- /Client/dialog/editprofile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/editprofile.ui -------------------------------------------------------------------------------- /Client/dialog/garbresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/garbresult.cpp -------------------------------------------------------------------------------- /Client/dialog/garbresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/garbresult.h -------------------------------------------------------------------------------- /Client/dialog/garbresult.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/garbresult.ui -------------------------------------------------------------------------------- /Client/dialog/luckyred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/luckyred.cpp -------------------------------------------------------------------------------- /Client/dialog/luckyred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/luckyred.h -------------------------------------------------------------------------------- /Client/dialog/luckyred.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/luckyred.ui -------------------------------------------------------------------------------- /Client/dialog/normalred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/normalred.cpp -------------------------------------------------------------------------------- /Client/dialog/normalred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/normalred.h -------------------------------------------------------------------------------- /Client/dialog/normalred.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/normalred.ui -------------------------------------------------------------------------------- /Client/dialog/recordshow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/recordshow.cpp -------------------------------------------------------------------------------- /Client/dialog/recordshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/recordshow.h -------------------------------------------------------------------------------- /Client/dialog/recordshow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/recordshow.ui -------------------------------------------------------------------------------- /Client/dialog/stylechange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/stylechange.cpp -------------------------------------------------------------------------------- /Client/dialog/stylechange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/stylechange.h -------------------------------------------------------------------------------- /Client/dialog/stylechange.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/dialog/stylechange.ui -------------------------------------------------------------------------------- /Client/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/do.png -------------------------------------------------------------------------------- /Client/file-b-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/file-b-17.png -------------------------------------------------------------------------------- /Client/filecontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/filecontext.cpp -------------------------------------------------------------------------------- /Client/filecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/filecontext.h -------------------------------------------------------------------------------- /Client/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/group -------------------------------------------------------------------------------- /Client/home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/home.cpp -------------------------------------------------------------------------------- /Client/home.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/home.h -------------------------------------------------------------------------------- /Client/home.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/home.ui -------------------------------------------------------------------------------- /Client/ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/ico -------------------------------------------------------------------------------- /Client/loginthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/loginthread.cpp -------------------------------------------------------------------------------- /Client/loginthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/loginthread.h -------------------------------------------------------------------------------- /Client/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/logo.ico -------------------------------------------------------------------------------- /Client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/main.cpp -------------------------------------------------------------------------------- /Client/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/mainwindow.cpp -------------------------------------------------------------------------------- /Client/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/mainwindow.h -------------------------------------------------------------------------------- /Client/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/mainwindow.ui -------------------------------------------------------------------------------- /Client/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/message.cpp -------------------------------------------------------------------------------- /Client/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/message.h -------------------------------------------------------------------------------- /Client/messagethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/messagethread.cpp -------------------------------------------------------------------------------- /Client/messagethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/messagethread.h -------------------------------------------------------------------------------- /Client/purchase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/purchase.cpp -------------------------------------------------------------------------------- /Client/purchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/purchase.h -------------------------------------------------------------------------------- /Client/purchase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/purchase.ui -------------------------------------------------------------------------------- /Client/qwebchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/qwebchannel.js -------------------------------------------------------------------------------- /Client/regwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/regwindow.cpp -------------------------------------------------------------------------------- /Client/regwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/regwindow.h -------------------------------------------------------------------------------- /Client/regwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/regwindow.ui -------------------------------------------------------------------------------- /Client/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/res.qrc -------------------------------------------------------------------------------- /Client/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/sad.png -------------------------------------------------------------------------------- /Client/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/smile.png -------------------------------------------------------------------------------- /Client/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/user.h -------------------------------------------------------------------------------- /Client/useritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/useritem.cpp -------------------------------------------------------------------------------- /Client/useritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/useritem.h -------------------------------------------------------------------------------- /Client/useritem.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/useritem.ui -------------------------------------------------------------------------------- /Client/抖动1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/抖动1.png -------------------------------------------------------------------------------- /Client/窗口.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/窗口.png -------------------------------------------------------------------------------- /Client/红包.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/红包.png -------------------------------------------------------------------------------- /Client/语音.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/语音.png -------------------------------------------------------------------------------- /Client/语音w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/语音w.png -------------------------------------------------------------------------------- /Client/麦克风.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/麦克风.png -------------------------------------------------------------------------------- /Client/麦克风ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Client/麦克风ico.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/README.md -------------------------------------------------------------------------------- /Server/TelegraphServer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/TelegraphServer.pro -------------------------------------------------------------------------------- /Server/TelegraphServer.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/TelegraphServer.pro.user -------------------------------------------------------------------------------- /Server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/main.cpp -------------------------------------------------------------------------------- /Server/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/mainwindow.cpp -------------------------------------------------------------------------------- /Server/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/mainwindow.h -------------------------------------------------------------------------------- /Server/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/mainwindow.ui -------------------------------------------------------------------------------- /Server/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/user.cpp -------------------------------------------------------------------------------- /Server/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Server/user.h -------------------------------------------------------------------------------- /Sql/telegraph.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFO4/Telegraph/HEAD/Sql/telegraph.sql --------------------------------------------------------------------------------