├── .qmake.stash ├── Makefile ├── README.md ├── about.cpp ├── about.h ├── about.o ├── about.ui ├── img ├── apps.png ├── back.png ├── home.png └── phone.png ├── keyboard.ui ├── main.cpp ├── main.o ├── moc_about.cpp ├── moc_about.o ├── moc_predefs.h ├── moc_specialcharacter.cpp ├── moc_specialcharacter.o ├── moc_touchcontrol.cpp ├── moc_touchcontrol.o ├── qrc_touchcontrol.cpp ├── qrc_touchcontrol.o ├── specialcharacter.cpp ├── specialcharacter.h ├── specialcharacter.o ├── specialcharacter.ui ├── tools ├── adb └── droidAtScreen.jar ├── touchcontrol ├── touchcontrol.cpp ├── touchcontrol.h ├── touchcontrol.o ├── touchcontrol.pro ├── touchcontrol.pro.user ├── touchcontrol.pro.user.ep1021 ├── touchcontrol.qrc ├── ui_about.h ├── ui_keyboard.h └── ui_specialcharacter.h /.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/.qmake.stash -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/README.md -------------------------------------------------------------------------------- /about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/about.cpp -------------------------------------------------------------------------------- /about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/about.h -------------------------------------------------------------------------------- /about.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/about.o -------------------------------------------------------------------------------- /about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/about.ui -------------------------------------------------------------------------------- /img/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/img/apps.png -------------------------------------------------------------------------------- /img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/img/back.png -------------------------------------------------------------------------------- /img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/img/home.png -------------------------------------------------------------------------------- /img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/img/phone.png -------------------------------------------------------------------------------- /keyboard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/keyboard.ui -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/main.cpp -------------------------------------------------------------------------------- /main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/main.o -------------------------------------------------------------------------------- /moc_about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_about.cpp -------------------------------------------------------------------------------- /moc_about.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_about.o -------------------------------------------------------------------------------- /moc_predefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_predefs.h -------------------------------------------------------------------------------- /moc_specialcharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_specialcharacter.cpp -------------------------------------------------------------------------------- /moc_specialcharacter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_specialcharacter.o -------------------------------------------------------------------------------- /moc_touchcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_touchcontrol.cpp -------------------------------------------------------------------------------- /moc_touchcontrol.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/moc_touchcontrol.o -------------------------------------------------------------------------------- /qrc_touchcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/qrc_touchcontrol.cpp -------------------------------------------------------------------------------- /qrc_touchcontrol.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/qrc_touchcontrol.o -------------------------------------------------------------------------------- /specialcharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/specialcharacter.cpp -------------------------------------------------------------------------------- /specialcharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/specialcharacter.h -------------------------------------------------------------------------------- /specialcharacter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/specialcharacter.o -------------------------------------------------------------------------------- /specialcharacter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/specialcharacter.ui -------------------------------------------------------------------------------- /tools/adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/tools/adb -------------------------------------------------------------------------------- /tools/droidAtScreen.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/tools/droidAtScreen.jar -------------------------------------------------------------------------------- /touchcontrol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol -------------------------------------------------------------------------------- /touchcontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.cpp -------------------------------------------------------------------------------- /touchcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.h -------------------------------------------------------------------------------- /touchcontrol.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.o -------------------------------------------------------------------------------- /touchcontrol.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.pro -------------------------------------------------------------------------------- /touchcontrol.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.pro.user -------------------------------------------------------------------------------- /touchcontrol.pro.user.ep1021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.pro.user.ep1021 -------------------------------------------------------------------------------- /touchcontrol.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/touchcontrol.qrc -------------------------------------------------------------------------------- /ui_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/ui_about.h -------------------------------------------------------------------------------- /ui_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/ui_keyboard.h -------------------------------------------------------------------------------- /ui_specialcharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternes3/TouchControl-for-Android/HEAD/ui_specialcharacter.h --------------------------------------------------------------------------------