├── .gitignore ├── .travis.yml ├── LICENSE ├── QtFileExplorer.pro ├── README.md ├── deletetask.cpp ├── deletetask.h ├── example2.png ├── fileinfo.cpp ├── fileinfo.h ├── imagepreview.cpp ├── imagepreview.h ├── keypresseater.cpp ├── keypresseater.h ├── main.cpp ├── mywindows.cpp ├── mywindows.h ├── q.ico ├── refreshtask.cpp ├── refreshtask.h ├── ressources.qrc └── test.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /QtFileExplorer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/QtFileExplorer.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/README.md -------------------------------------------------------------------------------- /deletetask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/deletetask.cpp -------------------------------------------------------------------------------- /deletetask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/deletetask.h -------------------------------------------------------------------------------- /example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/example2.png -------------------------------------------------------------------------------- /fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/fileinfo.cpp -------------------------------------------------------------------------------- /fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/fileinfo.h -------------------------------------------------------------------------------- /imagepreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/imagepreview.cpp -------------------------------------------------------------------------------- /imagepreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/imagepreview.h -------------------------------------------------------------------------------- /keypresseater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/keypresseater.cpp -------------------------------------------------------------------------------- /keypresseater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/keypresseater.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/main.cpp -------------------------------------------------------------------------------- /mywindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/mywindows.cpp -------------------------------------------------------------------------------- /mywindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/mywindows.h -------------------------------------------------------------------------------- /q.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/q.ico -------------------------------------------------------------------------------- /refreshtask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/refreshtask.cpp -------------------------------------------------------------------------------- /refreshtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/refreshtask.h -------------------------------------------------------------------------------- /ressources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/ressources.qrc -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lightjohn/QtFileExplorer/HEAD/test.png --------------------------------------------------------------------------------