├── .gitattributes ├── .gitignore ├── AccListMgr.cpp ├── AccListMgr.h ├── BrowserTabUI.cpp ├── BrowserTabUI.h ├── CefWndWrapManager.cpp ├── CefWndWrapManager.h ├── CircleImageUI.cpp ├── CircleImageUI.h ├── ClassLive.cpp ├── DBClickLabelUI.cpp ├── DBClickLabelUI.h ├── HelpWebWindow.cpp ├── HelpWebWindow.h ├── Include ├── ByteFreqChecker.h ├── Common.h ├── CommonMsgDef.h ├── DDBUtil.h ├── FontMgr.h ├── IMDataDef.h ├── SendUserDataType.h ├── StarDataDef.h ├── UICommonDef.h ├── URLDetector.h ├── XDictIMRTFParser.h └── clipboard.h ├── LoginUserDataMgr.cpp ├── LoginUserDataMgr.h ├── LoginWindow.cpp ├── LoginWindow.h ├── Mainframe.cpp ├── Mainframe.h ├── MessageUserdefine.h ├── MsgBox ├── CommonPopupWindow.cpp ├── CommonPopupWindow.h ├── DuiCloseMessageBox.cpp ├── DuiCommMessageBox.cpp ├── DuiCommMessageBox.h ├── DuiMessageBoxDefine.h └── duiclosemessagebox.h ├── NetTask ├── PicTransServ.cpp ├── PicTransServ.h ├── PicTransTask.cpp └── PicTransTask.h ├── ReadMe.md ├── Resource.h ├── Rocket.h ├── Rocket.ico ├── Rocket.rc ├── Rocket.sln ├── Rocket.vcxproj ├── Rocket.vcxproj.filters ├── RoomWindow.cpp ├── RoomWindow.h ├── SACModule.cpp ├── SACModule.h ├── TimeMgr.h ├── TroyControls.h ├── UICef3Web.cpp ├── UICef3Web.h ├── UIImageAnimate.cpp ├── UIImageAnimate.h ├── UIListItemCust.cpp ├── UIListItemCust.h ├── UIVerticalLayoutBK.cpp ├── UIVerticalLayoutBK.h ├── UIVideo.cpp ├── UIVideo.h ├── UserDatMgr.cpp ├── UserDataMgr.h ├── VideoWnd.cpp ├── VideoWnd.h ├── small.ico ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/.gitignore -------------------------------------------------------------------------------- /AccListMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/AccListMgr.cpp -------------------------------------------------------------------------------- /AccListMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/AccListMgr.h -------------------------------------------------------------------------------- /BrowserTabUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/BrowserTabUI.cpp -------------------------------------------------------------------------------- /BrowserTabUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/BrowserTabUI.h -------------------------------------------------------------------------------- /CefWndWrapManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/CefWndWrapManager.cpp -------------------------------------------------------------------------------- /CefWndWrapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/CefWndWrapManager.h -------------------------------------------------------------------------------- /CircleImageUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/CircleImageUI.cpp -------------------------------------------------------------------------------- /CircleImageUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/CircleImageUI.h -------------------------------------------------------------------------------- /ClassLive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/ClassLive.cpp -------------------------------------------------------------------------------- /DBClickLabelUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/DBClickLabelUI.cpp -------------------------------------------------------------------------------- /DBClickLabelUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/DBClickLabelUI.h -------------------------------------------------------------------------------- /HelpWebWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/HelpWebWindow.cpp -------------------------------------------------------------------------------- /HelpWebWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/HelpWebWindow.h -------------------------------------------------------------------------------- /Include/ByteFreqChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/ByteFreqChecker.h -------------------------------------------------------------------------------- /Include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/Common.h -------------------------------------------------------------------------------- /Include/CommonMsgDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/CommonMsgDef.h -------------------------------------------------------------------------------- /Include/DDBUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/DDBUtil.h -------------------------------------------------------------------------------- /Include/FontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/FontMgr.h -------------------------------------------------------------------------------- /Include/IMDataDef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Include/SendUserDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/SendUserDataType.h -------------------------------------------------------------------------------- /Include/StarDataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/StarDataDef.h -------------------------------------------------------------------------------- /Include/UICommonDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/UICommonDef.h -------------------------------------------------------------------------------- /Include/URLDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/URLDetector.h -------------------------------------------------------------------------------- /Include/XDictIMRTFParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/XDictIMRTFParser.h -------------------------------------------------------------------------------- /Include/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Include/clipboard.h -------------------------------------------------------------------------------- /LoginUserDataMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/LoginUserDataMgr.cpp -------------------------------------------------------------------------------- /LoginUserDataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/LoginUserDataMgr.h -------------------------------------------------------------------------------- /LoginWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/LoginWindow.cpp -------------------------------------------------------------------------------- /LoginWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/LoginWindow.h -------------------------------------------------------------------------------- /Mainframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Mainframe.cpp -------------------------------------------------------------------------------- /Mainframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Mainframe.h -------------------------------------------------------------------------------- /MessageUserdefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MessageUserdefine.h -------------------------------------------------------------------------------- /MsgBox/CommonPopupWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/CommonPopupWindow.cpp -------------------------------------------------------------------------------- /MsgBox/CommonPopupWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/CommonPopupWindow.h -------------------------------------------------------------------------------- /MsgBox/DuiCloseMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/DuiCloseMessageBox.cpp -------------------------------------------------------------------------------- /MsgBox/DuiCommMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/DuiCommMessageBox.cpp -------------------------------------------------------------------------------- /MsgBox/DuiCommMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/DuiCommMessageBox.h -------------------------------------------------------------------------------- /MsgBox/DuiMessageBoxDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/DuiMessageBoxDefine.h -------------------------------------------------------------------------------- /MsgBox/duiclosemessagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/MsgBox/duiclosemessagebox.h -------------------------------------------------------------------------------- /NetTask/PicTransServ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/NetTask/PicTransServ.cpp -------------------------------------------------------------------------------- /NetTask/PicTransServ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/NetTask/PicTransServ.h -------------------------------------------------------------------------------- /NetTask/PicTransTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/NetTask/PicTransTask.cpp -------------------------------------------------------------------------------- /NetTask/PicTransTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/NetTask/PicTransTask.h -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Resource.h -------------------------------------------------------------------------------- /Rocket.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /Rocket.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Rocket.ico -------------------------------------------------------------------------------- /Rocket.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Rocket.rc -------------------------------------------------------------------------------- /Rocket.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Rocket.sln -------------------------------------------------------------------------------- /Rocket.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Rocket.vcxproj -------------------------------------------------------------------------------- /Rocket.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/Rocket.vcxproj.filters -------------------------------------------------------------------------------- /RoomWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/RoomWindow.cpp -------------------------------------------------------------------------------- /RoomWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/RoomWindow.h -------------------------------------------------------------------------------- /SACModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/SACModule.cpp -------------------------------------------------------------------------------- /SACModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/SACModule.h -------------------------------------------------------------------------------- /TimeMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/TimeMgr.h -------------------------------------------------------------------------------- /TroyControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/TroyControls.h -------------------------------------------------------------------------------- /UICef3Web.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UICef3Web.cpp -------------------------------------------------------------------------------- /UICef3Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UICef3Web.h -------------------------------------------------------------------------------- /UIImageAnimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIImageAnimate.cpp -------------------------------------------------------------------------------- /UIImageAnimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIImageAnimate.h -------------------------------------------------------------------------------- /UIListItemCust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIListItemCust.cpp -------------------------------------------------------------------------------- /UIListItemCust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIListItemCust.h -------------------------------------------------------------------------------- /UIVerticalLayoutBK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIVerticalLayoutBK.cpp -------------------------------------------------------------------------------- /UIVerticalLayoutBK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIVerticalLayoutBK.h -------------------------------------------------------------------------------- /UIVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIVideo.cpp -------------------------------------------------------------------------------- /UIVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UIVideo.h -------------------------------------------------------------------------------- /UserDatMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/UserDatMgr.cpp -------------------------------------------------------------------------------- /UserDataMgr.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | -------------------------------------------------------------------------------- /VideoWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/VideoWnd.cpp -------------------------------------------------------------------------------- /VideoWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/VideoWnd.h -------------------------------------------------------------------------------- /small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/small.ico -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kwan-Yiu/Live-streaming-app/HEAD/targetver.h --------------------------------------------------------------------------------