├── .gitignore ├── INSTALL ├── LICENSE ├── README.md ├── advanced.png ├── back.png ├── close.png ├── f3-qt.desktop ├── f3-qt.pro ├── f3.png ├── f3_launcher.cpp ├── f3_launcher.h ├── help.png ├── helpwindow.cpp ├── helpwindow.h ├── helpwindow.ui ├── icon.qrc ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | f3-qt 2 | *.o 3 | moc* 4 | ui*.h 5 | *.pro.user* 6 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/README.md -------------------------------------------------------------------------------- /advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/advanced.png -------------------------------------------------------------------------------- /back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/back.png -------------------------------------------------------------------------------- /close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/close.png -------------------------------------------------------------------------------- /f3-qt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/f3-qt.desktop -------------------------------------------------------------------------------- /f3-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/f3-qt.pro -------------------------------------------------------------------------------- /f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/f3.png -------------------------------------------------------------------------------- /f3_launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/f3_launcher.cpp -------------------------------------------------------------------------------- /f3_launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/f3_launcher.h -------------------------------------------------------------------------------- /help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/help.png -------------------------------------------------------------------------------- /helpwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/helpwindow.cpp -------------------------------------------------------------------------------- /helpwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/helpwindow.h -------------------------------------------------------------------------------- /helpwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/helpwindow.ui -------------------------------------------------------------------------------- /icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/icon.qrc -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwpwjwtz/f3-qt/HEAD/screenshot.png --------------------------------------------------------------------------------