├── .qmake.conf ├── .tag ├── LGPL_EXCEPTION.txt ├── LICENSE.FDL ├── LICENSE.LGPL ├── LICENSE.PREVIEW.COMMERCIAL ├── examples ├── examples.pro └── qftp │ ├── doc │ ├── images │ │ └── ftp-example.png │ └── src │ │ └── ftp.qdoc │ ├── ftp.qrc │ ├── ftpwindow.cpp │ ├── ftpwindow.h │ ├── images │ ├── cdtoparent.png │ ├── dir.png │ └── file.png │ ├── main.cpp │ ├── qftp.desktop │ └── qftp.pro ├── modules └── qt_ftp.pri ├── qtftp.pro ├── readme.txt ├── src ├── qftp │ ├── qftp.cpp │ ├── qftp.h │ ├── qftp.pro │ ├── qurlinfo.cpp │ └── qurlinfo.h └── src.pro ├── sync.profile └── tests ├── auto ├── auto.pro ├── cmake │ ├── CMakeLists.txt │ └── cmake.pro ├── headersclean │ ├── headersclean.pro │ └── qt_headersclean_headers.h ├── network-settings.h └── qftp │ ├── qftp.pro │ ├── rfc3252.txt │ └── tst_qftp.cpp └── tests.pro /.qmake.conf: -------------------------------------------------------------------------------- 1 | load(qt_build_config) 2 | 3 | MODULE_VERSION = 5.0.0 4 | -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 75b21b033f413b4a32cc7e0cd6b780f59beadf18 2 | -------------------------------------------------------------------------------- /LGPL_EXCEPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/LGPL_EXCEPTION.txt -------------------------------------------------------------------------------- /LICENSE.FDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/LICENSE.FDL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /LICENSE.PREVIEW.COMMERCIAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/LICENSE.PREVIEW.COMMERCIAL -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += qftp 4 | -------------------------------------------------------------------------------- /examples/qftp/doc/images/ftp-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/doc/images/ftp-example.png -------------------------------------------------------------------------------- /examples/qftp/doc/src/ftp.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/doc/src/ftp.qdoc -------------------------------------------------------------------------------- /examples/qftp/ftp.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/ftp.qrc -------------------------------------------------------------------------------- /examples/qftp/ftpwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/ftpwindow.cpp -------------------------------------------------------------------------------- /examples/qftp/ftpwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/ftpwindow.h -------------------------------------------------------------------------------- /examples/qftp/images/cdtoparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/images/cdtoparent.png -------------------------------------------------------------------------------- /examples/qftp/images/dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/images/dir.png -------------------------------------------------------------------------------- /examples/qftp/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/images/file.png -------------------------------------------------------------------------------- /examples/qftp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/main.cpp -------------------------------------------------------------------------------- /examples/qftp/qftp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/qftp.desktop -------------------------------------------------------------------------------- /examples/qftp/qftp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/examples/qftp/qftp.pro -------------------------------------------------------------------------------- /modules/qt_ftp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/modules/qt_ftp.pri -------------------------------------------------------------------------------- /qtftp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/qtftp.pro -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/readme.txt -------------------------------------------------------------------------------- /src/qftp/qftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/src/qftp/qftp.cpp -------------------------------------------------------------------------------- /src/qftp/qftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/src/qftp/qftp.h -------------------------------------------------------------------------------- /src/qftp/qftp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/src/qftp/qftp.pro -------------------------------------------------------------------------------- /src/qftp/qurlinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/src/qftp/qurlinfo.cpp -------------------------------------------------------------------------------- /src/qftp/qurlinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/src/qftp/qurlinfo.h -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += qftp 4 | -------------------------------------------------------------------------------- /sync.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/sync.profile -------------------------------------------------------------------------------- /tests/auto/auto.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/auto.pro -------------------------------------------------------------------------------- /tests/auto/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/cmake/cmake.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/cmake/cmake.pro -------------------------------------------------------------------------------- /tests/auto/headersclean/headersclean.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/headersclean/headersclean.pro -------------------------------------------------------------------------------- /tests/auto/headersclean/qt_headersclean_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/headersclean/qt_headersclean_headers.h -------------------------------------------------------------------------------- /tests/auto/network-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/network-settings.h -------------------------------------------------------------------------------- /tests/auto/qftp/qftp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/qftp/qftp.pro -------------------------------------------------------------------------------- /tests/auto/qftp/rfc3252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/qftp/rfc3252.txt -------------------------------------------------------------------------------- /tests/auto/qftp/tst_qftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtftp/HEAD/tests/auto/qftp/tst_qftp.cpp -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | 3 | SUBDIRS += auto 4 | --------------------------------------------------------------------------------