├── Chapter01 ├── Chapter01-a │ ├── Chapter01-a.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter01-graphicsview │ ├── Chapter01-graphicsview.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── textgraphic.cpp │ └── textgraphic.h ├── Chapter01-layouts │ ├── Chapter01-layouts.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── README.md ├── Chapter02 ├── Chapter02-1 │ ├── Chapter02-1.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-1b │ ├── Chapter02-1b.pro │ ├── icons8-sedan-64.png │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-1c │ ├── Chapter02-1c.pro │ ├── icons8-sedan-64.png │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-2 │ ├── Chapter02-2.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-2a │ ├── Chapter02-2a.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-3 │ ├── Chapter02-3.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-3a │ ├── ch2-3a.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-3b │ ├── ch2-3b.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-3c │ ├── ch2-3c.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-4 │ ├── Chapter02-4.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-5 │ ├── Chapter02-5.pro │ ├── Page1Form.ui.qml │ ├── Page2Form.ui.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── Chapter02-6 │ ├── Chapter02-6.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-7 │ ├── Chapter02-7.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02-8 │ ├── Chapter02-8.pro │ ├── Chapter02-8.pro.user │ ├── images │ │ └── redBox.png │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02 │ ├── Chapter02.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── README.md ├── Chapter03 ├── Chapter03-1 │ ├── Chapter03-1.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter03-2 │ ├── Chapter02-2.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter03-3 │ ├── ch3-3.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter03-4 │ ├── Chapter03-4.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── README.md ├── Chapter04 ├── Chapter04-1 │ ├── Chapter04-1.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter04-2 │ ├── Chapter04-2.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter04-3 │ ├── Chapter04-3.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter04-4 │ ├── Chapter04-4.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter04-5 │ ├── Chapter04-5.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── README.md ├── Chapter05 ├── Chapter05-1 │ ├── Chapter05-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-2 │ ├── Chapter05-2.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-3 │ ├── Chapter05-3.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-4 │ ├── Chapter05-4.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-5a │ ├── Chapter05-5a.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-5b │ ├── Chapter05-5b.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter05-6 │ ├── Chapter05-6.pro │ ├── localhost.cert │ ├── localhost.key │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mysslserver.cpp │ └── mysslserver.h ├── Chapter05-6a │ ├── Chapter05-6a.pro │ ├── localhost.cert │ ├── localhost.key │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── README.md ├── Chapter06 ├── Chapter06-1 │ ├── Chapter06-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter06-1a │ ├── Chapter06-1a.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter06-2 │ ├── Chapter06-2.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── README.md ├── Chapter07 ├── Chapter07-1 │ ├── Chapter07-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter07-2 │ ├── qmlsaltsensor.cpp │ ├── qmlsaltsensor.h │ ├── qsaltsensor.cpp │ ├── qsaltsensor.h │ └── qsaltsensor_p.h ├── Chapter07-3 │ ├── Chapter07-3.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter07-4 │ ├── Chapter07-4.pro │ ├── Page1Form.ui.qml │ ├── Page2Form.ui.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── Chapter07-5 │ ├── Chapter07-5.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter07-6 │ ├── Chapter07-6.pro │ ├── main.cpp │ ├── sensorserver.cpp │ ├── sensorserver.h │ ├── websocketiodevice.cpp │ └── websocketiodevice.h └── README.md ├── Chapter08 ├── Chapter08-1 │ ├── Chapter08-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter08-2 │ ├── Chapter08-2.pro │ ├── Info.plist │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter08-3 │ ├── Chapter08-3.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter08-4 │ ├── Chapter08-4.pro │ ├── main.cpp │ ├── main.qml │ ├── map-pin.png │ ├── map-pin.svg │ ├── qml.qrc │ └── target.svg ├── LICENSE └── README.md ├── Chapter09 ├── Chapter09-1 │ ├── .DS_Store │ ├── Chapter09-1.pro │ ├── Chapter09-1.qrc │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── sample.mp3 │ └── sample.wav ├── Chapter09-2 │ ├── Chapter09-2.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter09-3 │ ├── Chapter09-3.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter09-3dAudio │ ├── Chapter09-3dAudio.pro │ ├── MyRoundButton.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── thunder.wav ├── Chapter09-4 │ ├── Chapter09-4.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter09-5 │ ├── Chapter09-5.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter09-6 │ ├── Chapter09-6.pro │ ├── hellowindow.m4v │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── LICENSE └── README.md ├── Chapter10 ├── Chapter10-1 │ ├── Chapter10-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── LICENSE └── README.md ├── Chapter11 ├── Chapter11-1 │ ├── Chapter11-1.pro │ ├── Page1Form.ui.qml │ ├── Page2Form.ui.qml │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ │ └── values │ │ │ └── libs.xml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── LICENSE └── README.md ├── Chapter12 ├── Chapter12-1 │ ├── Chapter12-1.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── LICENSE └── README.md ├── Chapter14 ├── Chapter14-1.html ├── Chapter14-1.wasm ├── Chapter14-1 │ ├── Chapter14-1.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── LICENSE ├── README.md ├── qtloader.js ├── qtlogo.svg └── run_Chapter14 ├── LICENSE └── README.md /Chapter01/Chapter01-a/Chapter01-a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-a/Chapter01-a.pro -------------------------------------------------------------------------------- /Chapter01/Chapter01-a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-a/main.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-a/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-a/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-a/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-a/mainwindow.h -------------------------------------------------------------------------------- /Chapter01/Chapter01-a/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-a/mainwindow.ui -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/Chapter01-graphicsview.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/Chapter01-graphicsview.pro -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/main.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/mainwindow.h -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/mainwindow.ui -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/textgraphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/textgraphic.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-graphicsview/textgraphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-graphicsview/textgraphic.h -------------------------------------------------------------------------------- /Chapter01/Chapter01-layouts/Chapter01-layouts.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-layouts/Chapter01-layouts.pro -------------------------------------------------------------------------------- /Chapter01/Chapter01-layouts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-layouts/main.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-layouts/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-layouts/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01-layouts/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-layouts/mainwindow.h -------------------------------------------------------------------------------- /Chapter01/Chapter01-layouts/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/Chapter01-layouts/mainwindow.ui -------------------------------------------------------------------------------- /Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter01/README.md -------------------------------------------------------------------------------- /Chapter02/Chapter02-1/Chapter02-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1/Chapter02-1.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-1b/Chapter02-1b.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1b/Chapter02-1b.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-1b/icons8-sedan-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1b/icons8-sedan-64.png -------------------------------------------------------------------------------- /Chapter02/Chapter02-1b/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1b/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-1b/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1b/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-1b/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1b/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-1c/Chapter02-1c.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1c/Chapter02-1c.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-1c/icons8-sedan-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1c/icons8-sedan-64.png -------------------------------------------------------------------------------- /Chapter02/Chapter02-1c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1c/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-1c/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1c/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-1c/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-1c/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-2/Chapter02-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2/Chapter02-2.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-2/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-2/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-2a/Chapter02-2a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2a/Chapter02-2a.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-2a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2a/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-2a/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2a/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-2a/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-2a/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-3/Chapter02-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3/Chapter02-3.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-3/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-3/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-3a/ch2-3a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3a/ch2-3a.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-3a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3a/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-3a/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3a/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-3a/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3a/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-3b/ch2-3b.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3b/ch2-3b.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-3b/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3b/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-3b/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3b/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-3b/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3b/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-3c/ch2-3c.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3c/ch2-3c.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-3c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3c/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-3c/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3c/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-3c/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-3c/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-4/Chapter02-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-4/Chapter02-4.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-4/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-4/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-4/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-4/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-4/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/Chapter02-5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/Chapter02-5.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/Page1Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/Page1Form.ui.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/Page2Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/Page2Form.ui.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-5/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-5/qtquickcontrols2.conf -------------------------------------------------------------------------------- /Chapter02/Chapter02-6/Chapter02-6.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-6/Chapter02-6.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-6/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-6/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-6/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-6/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-6/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-7/Chapter02-7.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-7/Chapter02-7.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-7/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-7/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-7/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-7/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-7/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-7/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/Chapter02-8.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/Chapter02-8.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/Chapter02-8.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/Chapter02-8.pro.user -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/images/redBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/images/redBox.png -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02-8/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02-8/qml.qrc -------------------------------------------------------------------------------- /Chapter02/Chapter02/Chapter02.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02/Chapter02.pro -------------------------------------------------------------------------------- /Chapter02/Chapter02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02/main.qml -------------------------------------------------------------------------------- /Chapter02/Chapter02/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/Chapter02/qml.qrc -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter03/Chapter03-1/Chapter03-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-1/Chapter03-1.pro -------------------------------------------------------------------------------- /Chapter03/Chapter03-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-1/main.cpp -------------------------------------------------------------------------------- /Chapter03/Chapter03-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-1/main.qml -------------------------------------------------------------------------------- /Chapter03/Chapter03-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-1/qml.qrc -------------------------------------------------------------------------------- /Chapter03/Chapter03-2/Chapter02-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-2/Chapter02-2.pro -------------------------------------------------------------------------------- /Chapter03/Chapter03-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-2/main.cpp -------------------------------------------------------------------------------- /Chapter03/Chapter03-2/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-2/main.qml -------------------------------------------------------------------------------- /Chapter03/Chapter03-2/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-2/qml.qrc -------------------------------------------------------------------------------- /Chapter03/Chapter03-3/ch3-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-3/ch3-3.pro -------------------------------------------------------------------------------- /Chapter03/Chapter03-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-3/main.cpp -------------------------------------------------------------------------------- /Chapter03/Chapter03-3/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-3/main.qml -------------------------------------------------------------------------------- /Chapter03/Chapter03-3/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-3/qml.qrc -------------------------------------------------------------------------------- /Chapter03/Chapter03-4/Chapter03-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-4/Chapter03-4.pro -------------------------------------------------------------------------------- /Chapter03/Chapter03-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-4/main.cpp -------------------------------------------------------------------------------- /Chapter03/Chapter03-4/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-4/main.qml -------------------------------------------------------------------------------- /Chapter03/Chapter03-4/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/Chapter03-4/qml.qrc -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter04/Chapter04-1/Chapter04-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-1/Chapter04-1.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-1/main.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-1/main.qml -------------------------------------------------------------------------------- /Chapter04/Chapter04-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-1/qml.qrc -------------------------------------------------------------------------------- /Chapter04/Chapter04-2/Chapter04-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-2/Chapter04-2.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-2/main.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-2/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-2/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-2/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-2/mainwindow.h -------------------------------------------------------------------------------- /Chapter04/Chapter04-2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-2/mainwindow.ui -------------------------------------------------------------------------------- /Chapter04/Chapter04-3/Chapter04-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-3/Chapter04-3.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-3/main.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-3/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-3/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-3/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-3/mainwindow.h -------------------------------------------------------------------------------- /Chapter04/Chapter04-3/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-3/mainwindow.ui -------------------------------------------------------------------------------- /Chapter04/Chapter04-4/Chapter04-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-4/Chapter04-4.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-4/main.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-4/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-4/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-4/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-4/mainwindow.h -------------------------------------------------------------------------------- /Chapter04/Chapter04-4/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-4/mainwindow.ui -------------------------------------------------------------------------------- /Chapter04/Chapter04-5/Chapter04-5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-5/Chapter04-5.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04-5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-5/main.cpp -------------------------------------------------------------------------------- /Chapter04/Chapter04-5/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-5/main.qml -------------------------------------------------------------------------------- /Chapter04/Chapter04-5/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/Chapter04-5/qml.qrc -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter05/Chapter05-1/Chapter05-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-1/Chapter05-1.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-1/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-2/Chapter05-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-2/Chapter05-2.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-2/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-2/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-2/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-2/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-2/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-2/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-3/Chapter05-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-3/Chapter05-3.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-3/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-3/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-3/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-3/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-3/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-3/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-3/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-4/Chapter05-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-4/Chapter05-4.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-4/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-4/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-4/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-4/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-4/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-4/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-4/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-5a/Chapter05-5a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5a/Chapter05-5a.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-5a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5a/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-5a/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5a/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-5a/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5a/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-5a/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5a/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-5b/Chapter05-5b.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5b/Chapter05-5b.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-5b/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5b/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-5b/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5b/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-5b/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5b/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-5b/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-5b/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/Chapter05-6.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/Chapter05-6.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/localhost.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/localhost.cert -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/localhost.key -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/mysslserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/mysslserver.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-6/mysslserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6/mysslserver.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/Chapter05-6a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6a/Chapter05-6a.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/localhost.cert: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/localhost.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6a/main.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6a/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6a/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Chapter05-6a/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/Chapter05-6a/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter06/Chapter06-1/Chapter06-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1/Chapter06-1.pro -------------------------------------------------------------------------------- /Chapter06/Chapter06-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1/main.cpp -------------------------------------------------------------------------------- /Chapter06/Chapter06-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/Chapter06-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/Chapter06-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/Chapter06-1a/Chapter06-1a.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1a/Chapter06-1a.pro -------------------------------------------------------------------------------- /Chapter06/Chapter06-1a/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1a/main.cpp -------------------------------------------------------------------------------- /Chapter06/Chapter06-1a/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1a/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/Chapter06-1a/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1a/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/Chapter06-1a/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-1a/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/Chapter06-2/Chapter06-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-2/Chapter06-2.pro -------------------------------------------------------------------------------- /Chapter06/Chapter06-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-2/main.cpp -------------------------------------------------------------------------------- /Chapter06/Chapter06-2/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-2/main.qml -------------------------------------------------------------------------------- /Chapter06/Chapter06-2/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/Chapter06-2/qml.qrc -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter06/README.md -------------------------------------------------------------------------------- /Chapter07/Chapter07-1/Chapter07-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-1/Chapter07-1.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-1/main.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter07/Chapter07-2/qmlsaltsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-2/qmlsaltsensor.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-2/qmlsaltsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-2/qmlsaltsensor.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-2/qsaltsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-2/qsaltsensor.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-2/qsaltsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-2/qsaltsensor.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-2/qsaltsensor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-2/qsaltsensor_p.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-3/Chapter07-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-3/Chapter07-3.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-3/main.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-3/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-3/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-3/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-3/mainwindow.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-3/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-3/mainwindow.ui -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/Chapter07-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/Chapter07-4.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/Page1Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/Page1Form.ui.qml -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/Page2Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/Page2Form.ui.qml -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/main.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/main.qml -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/qml.qrc -------------------------------------------------------------------------------- /Chapter07/Chapter07-4/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-4/qtquickcontrols2.conf -------------------------------------------------------------------------------- /Chapter07/Chapter07-5/Chapter07-5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-5/Chapter07-5.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07-5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-5/main.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-5/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-5/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-5/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-5/mainwindow.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-5/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-5/mainwindow.ui -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/Chapter07-6.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/Chapter07-6.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/main.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/sensorserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/sensorserver.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/sensorserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/sensorserver.h -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/websocketiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/websocketiodevice.cpp -------------------------------------------------------------------------------- /Chapter07/Chapter07-6/websocketiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/Chapter07-6/websocketiodevice.h -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter08/Chapter08-1/Chapter08-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-1/Chapter08-1.pro -------------------------------------------------------------------------------- /Chapter08/Chapter08-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-1/main.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter08/Chapter08-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/Chapter08-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/Chapter08-2.pro -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/Info.plist -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/main.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/mainwindow.h -------------------------------------------------------------------------------- /Chapter08/Chapter08-2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-2/mainwindow.ui -------------------------------------------------------------------------------- /Chapter08/Chapter08-3/Chapter08-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-3/Chapter08-3.pro -------------------------------------------------------------------------------- /Chapter08/Chapter08-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-3/main.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-3/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-3/main.qml -------------------------------------------------------------------------------- /Chapter08/Chapter08-3/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-3/qml.qrc -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/Chapter08-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/Chapter08-4.pro -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/main.cpp -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/main.qml -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/map-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/map-pin.png -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/map-pin.svg -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/qml.qrc -------------------------------------------------------------------------------- /Chapter08/Chapter08-4/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/Chapter08-4/target.svg -------------------------------------------------------------------------------- /Chapter08/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/LICENSE -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/Chapter09-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/Chapter09-1.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/Chapter09-1.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/Chapter09-1.qrc -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/main.qml -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/qml.qrc -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/sample.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/sample.mp3 -------------------------------------------------------------------------------- /Chapter09/Chapter09-1/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-1/sample.wav -------------------------------------------------------------------------------- /Chapter09/Chapter09-2/Chapter09-2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-2/Chapter09-2.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-2/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-2/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-2/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-2/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-2/mainwindow.h -------------------------------------------------------------------------------- /Chapter09/Chapter09-2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-2/mainwindow.ui -------------------------------------------------------------------------------- /Chapter09/Chapter09-3/Chapter09-3.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3/Chapter09-3.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-3/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-3/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3/mainwindow.h -------------------------------------------------------------------------------- /Chapter09/Chapter09-3/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3/mainwindow.ui -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/Chapter09-3dAudio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/Chapter09-3dAudio.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/MyRoundButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/MyRoundButton.qml -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/main.qml -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/qml.qrc -------------------------------------------------------------------------------- /Chapter09/Chapter09-3dAudio/thunder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-3dAudio/thunder.wav -------------------------------------------------------------------------------- /Chapter09/Chapter09-4/Chapter09-4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-4/Chapter09-4.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-4/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-4/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-4/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-4/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-4/mainwindow.h -------------------------------------------------------------------------------- /Chapter09/Chapter09-4/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-4/mainwindow.ui -------------------------------------------------------------------------------- /Chapter09/Chapter09-5/Chapter09-5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-5/Chapter09-5.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-5/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-5/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-5/main.qml -------------------------------------------------------------------------------- /Chapter09/Chapter09-5/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-5/qml.qrc -------------------------------------------------------------------------------- /Chapter09/Chapter09-6/Chapter09-6.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-6/Chapter09-6.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09-6/hellowindow.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-6/hellowindow.m4v -------------------------------------------------------------------------------- /Chapter09/Chapter09-6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-6/main.cpp -------------------------------------------------------------------------------- /Chapter09/Chapter09-6/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-6/main.qml -------------------------------------------------------------------------------- /Chapter09/Chapter09-6/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/Chapter09-6/qml.qrc -------------------------------------------------------------------------------- /Chapter09/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/LICENSE -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter10/Chapter10-1/Chapter10-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/Chapter10-1/Chapter10-1.pro -------------------------------------------------------------------------------- /Chapter10/Chapter10-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/Chapter10-1/main.cpp -------------------------------------------------------------------------------- /Chapter10/Chapter10-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/Chapter10-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter10/Chapter10-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/Chapter10-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter10/Chapter10-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/Chapter10-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter10/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/LICENSE -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/Chapter11-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/Chapter11-1.pro -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/Page1Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/Page1Form.ui.qml -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/Page2Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/Page2Form.ui.qml -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/build.gradle -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/gradlew -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/android/res/values/libs.xml -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/main.cpp -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/main.qml -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/qml.qrc -------------------------------------------------------------------------------- /Chapter11/Chapter11-1/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/Chapter11-1/qtquickcontrols2.conf -------------------------------------------------------------------------------- /Chapter11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/LICENSE -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter11/README.md -------------------------------------------------------------------------------- /Chapter12/Chapter12-1/Chapter12-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/Chapter12-1/Chapter12-1.pro -------------------------------------------------------------------------------- /Chapter12/Chapter12-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/Chapter12-1/main.cpp -------------------------------------------------------------------------------- /Chapter12/Chapter12-1/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/Chapter12-1/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter12/Chapter12-1/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/Chapter12-1/mainwindow.h -------------------------------------------------------------------------------- /Chapter12/Chapter12-1/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/Chapter12-1/mainwindow.ui -------------------------------------------------------------------------------- /Chapter12/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/LICENSE -------------------------------------------------------------------------------- /Chapter12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter12/README.md -------------------------------------------------------------------------------- /Chapter14/Chapter14-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1.html -------------------------------------------------------------------------------- /Chapter14/Chapter14-1.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1.wasm -------------------------------------------------------------------------------- /Chapter14/Chapter14-1/Chapter14-1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1/Chapter14-1.pro -------------------------------------------------------------------------------- /Chapter14/Chapter14-1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1/main.cpp -------------------------------------------------------------------------------- /Chapter14/Chapter14-1/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1/main.qml -------------------------------------------------------------------------------- /Chapter14/Chapter14-1/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/Chapter14-1/qml.qrc -------------------------------------------------------------------------------- /Chapter14/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/LICENSE -------------------------------------------------------------------------------- /Chapter14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/README.md -------------------------------------------------------------------------------- /Chapter14/qtloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/qtloader.js -------------------------------------------------------------------------------- /Chapter14/qtlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/Chapter14/qtlogo.svg -------------------------------------------------------------------------------- /Chapter14/run_Chapter14: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | emrun cp14-1.html 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Mobile-and-Embedded-Development-with-Qt-5/HEAD/README.md --------------------------------------------------------------------------------