├── .gitignore ├── FileTransfer.pro ├── LICENSE ├── README.md ├── demonstrate └── FileTransfer.gif ├── image ├── winIcon.ico └── winIcon.png ├── qml.qrc ├── qml ├── DiscoverPage.qml ├── FileProgress.qml ├── FileView.qml ├── FlatInput.qml ├── GlowRectangle.qml ├── MyButton.qml ├── MyToolTip.qml ├── TransferPage.qml └── main.qml └── src ├── connectionmanager.cpp ├── connectionmanager.h ├── discoverconnection.cpp ├── discoverconnection.h ├── fileapi.cpp ├── fileapi.h ├── fileblock.cpp ├── fileblock.h ├── filemanager.cpp ├── filemanager.h ├── filetransfer.cpp ├── filetransfer.h ├── framelesswindow.cpp ├── framelesswindow.h ├── main.cpp ├── scanneritem.cpp ├── scanneritem.h ├── transfersocket.cpp └── transfersocket.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/.gitignore -------------------------------------------------------------------------------- /FileTransfer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/FileTransfer.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/README.md -------------------------------------------------------------------------------- /demonstrate/FileTransfer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/demonstrate/FileTransfer.gif -------------------------------------------------------------------------------- /image/winIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/image/winIcon.ico -------------------------------------------------------------------------------- /image/winIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/image/winIcon.png -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml.qrc -------------------------------------------------------------------------------- /qml/DiscoverPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/DiscoverPage.qml -------------------------------------------------------------------------------- /qml/FileProgress.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/FileProgress.qml -------------------------------------------------------------------------------- /qml/FileView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/FileView.qml -------------------------------------------------------------------------------- /qml/FlatInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/FlatInput.qml -------------------------------------------------------------------------------- /qml/GlowRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/GlowRectangle.qml -------------------------------------------------------------------------------- /qml/MyButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/MyButton.qml -------------------------------------------------------------------------------- /qml/MyToolTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/MyToolTip.qml -------------------------------------------------------------------------------- /qml/TransferPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/TransferPage.qml -------------------------------------------------------------------------------- /qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/qml/main.qml -------------------------------------------------------------------------------- /src/connectionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/connectionmanager.cpp -------------------------------------------------------------------------------- /src/connectionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/connectionmanager.h -------------------------------------------------------------------------------- /src/discoverconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/discoverconnection.cpp -------------------------------------------------------------------------------- /src/discoverconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/discoverconnection.h -------------------------------------------------------------------------------- /src/fileapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/fileapi.cpp -------------------------------------------------------------------------------- /src/fileapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/fileapi.h -------------------------------------------------------------------------------- /src/fileblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/fileblock.cpp -------------------------------------------------------------------------------- /src/fileblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/fileblock.h -------------------------------------------------------------------------------- /src/filemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/filemanager.cpp -------------------------------------------------------------------------------- /src/filemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/filemanager.h -------------------------------------------------------------------------------- /src/filetransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/filetransfer.cpp -------------------------------------------------------------------------------- /src/filetransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/filetransfer.h -------------------------------------------------------------------------------- /src/framelesswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/framelesswindow.cpp -------------------------------------------------------------------------------- /src/framelesswindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/framelesswindow.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/scanneritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/scanneritem.cpp -------------------------------------------------------------------------------- /src/scanneritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/scanneritem.h -------------------------------------------------------------------------------- /src/transfersocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/transfersocket.cpp -------------------------------------------------------------------------------- /src/transfersocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengps/FileTransfer/HEAD/src/transfersocket.h --------------------------------------------------------------------------------