├── Chapter01 ├── HelloWorldConsole │ ├── HelloWorldConsole.pro │ └── main.cpp ├── HelloWorldGui │ ├── HelloWorldGui.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── HelloWorldQtQuick │ ├── HelloWorldQtQuick.pro │ ├── MyGui.qml │ ├── MyGuiForm.ui.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter02 ├── MathFunctions │ ├── MathFunctions.pro │ ├── mathfunctions.cpp │ └── mathfunctions.h └── MathFunctionsTest │ ├── MathFunctionsTest.pro │ └── main.cpp ├── Chapter03 ├── QtGuiCalculator │ ├── QtGuiCalculator.pro │ ├── icon.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── resources.qrc │ ├── resultdialog.cpp │ ├── resultdialog.h │ └── resultdialog.ui └── QtQuickCalculator │ ├── Button.qml │ ├── QtQuickCalculator.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter04 ├── ParsingJson │ ├── json.pro │ └── main.cpp └── ParsingXml │ ├── main.cpp │ ├── sample.xml │ ├── workerthread.cpp │ ├── workerthread.h │ └── xml.pro ├── Chapter05 ├── QtWidgets │ ├── QtWidgets.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Qt_MVC │ ├── Qt_MVC.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── WebEngine │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── webengineview.pro ├── Chapter06 ├── AnalogClock │ ├── AnalogClock.pro │ ├── analogclock.cpp │ ├── analogclock.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── QtDrawing │ ├── QtDrawing.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── TowersAndSpaceship │ ├── TowersAndSpaceship.pro │ ├── lightTower.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mobileunit.cpp │ ├── mobileunit.h │ ├── resource.qrc │ ├── scene.cpp │ ├── scene.h │ ├── simpletower.cpp │ ├── simpletower.h │ └── spacecraft00.png ├── Chapter07 ├── QtQuickControls2 │ ├── QtQuick.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── QtQuickCpp │ ├── QtQuickCpp.pro │ ├── main.cpp │ ├── main.qml │ ├── nativeobject.h │ └── qml.qrc ├── QtQuickLayout │ ├── QtQuickLayout.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── QtQuickListModel │ ├── ContactModel.qml │ ├── ListModelDelegate.qml │ ├── QtQuickListModel.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── QtQuickState │ ├── QtQuickState.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── QtQuickWebEngineView │ ├── QtQuickWebEngineView.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── QtQuick_Gallery │ ├── QtQuick.pro │ ├── fileimageprovider.cpp │ ├── fileimageprovider.h │ ├── imagegallerycontroller.cpp │ ├── imagegallerycontroller.h │ ├── imagegallerymodel.cpp │ ├── imagegallerymodel.h │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── SCXML │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ ├── scxml.pro │ ├── scxml.pro.user │ └── statemachine.scxml ├── Chapter08 ├── Audio │ ├── Audio.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Video │ ├── Video.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── Webcam │ ├── Multimedia.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter09 ├── MapView │ ├── android │ │ ├── 32bit │ │ │ ├── libcrypto.so │ │ │ └── libssl.so │ │ ├── 64bit │ │ │ ├── libcrypto.so │ │ │ └── libssl.so │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── res │ │ │ └── values │ │ │ └── libs.xml │ ├── main.cpp │ ├── main.qml │ ├── mapmarker.png │ ├── mapview.pro │ ├── marker.qml │ ├── qml.qrc │ └── resource.qrc ├── Sensor │ ├── LabelThreePart.qml │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── res │ │ │ └── values │ │ │ └── libs.xml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── sensor.pro └── Sensor_cpp │ ├── SensorCPP.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter10 └── Qt Linguist │ ├── Linguist.pro │ ├── Linguist.qm │ ├── Linguist.ts │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── Chapter11 ├── Autotest_Boost │ ├── autotest_boost.pro │ └── main.cpp ├── Autotest_Google │ ├── autotest_Google.pro │ ├── gtest_dependency.pri │ ├── main.cpp │ └── tst_testcase.h ├── Autotest_Qt │ ├── autotest.pro │ └── tst_testing.cpp ├── QMLProfiler_QtQuick │ ├── QMLProfiler_QtQuick.pro │ ├── main.cpp │ ├── main.qml │ ├── myRectangle.qml │ └── qml.qrc ├── QtLeakyButton_Windows │ ├── QtLeakyButton.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── SlowButton │ ├── Button.qml │ ├── SlowButton.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter12 └── Android_Toast │ ├── android │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── res │ │ └── values │ │ │ └── libs.xml │ └── src │ │ └── org │ │ └── qtproject │ │ └── example │ │ └── MyToast.java │ ├── main.cpp │ ├── main.qml │ ├── mobile.pro │ ├── mytoast.cpp │ ├── mytoast.h │ └── qml.qrc ├── Chapter13 └── VirtualKeyboard │ ├── VirtualKeyboard.pro │ ├── main.cpp │ ├── main.qml │ └── qml.qrc ├── Chapter14 ├── Multiple_Debugger │ ├── Console │ │ ├── Console.pro │ │ ├── Console.pro.user │ │ └── main.cpp │ ├── Multiple_Projects.pro │ ├── QtQuick │ │ ├── QtQuick.pro │ │ ├── QtQuick.pro.user │ │ ├── main.cpp │ │ ├── main.qml │ │ ├── qml.qrc │ │ └── qtquickcontrols2.conf │ ├── Widget │ │ ├── Widget.pro │ │ ├── Widget.pro.user │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── mainwindow.ui │ └── autostart.bat ├── QtQuickWindowDisplayOptions │ ├── main.cpp │ ├── main.qml │ ├── resource.qrc │ └── untitled1.pro └── Qt_CMake │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── LICENSE └── README.md /Chapter01/HelloWorldConsole/HelloWorldConsole.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldConsole/HelloWorldConsole.pro -------------------------------------------------------------------------------- /Chapter01/HelloWorldConsole/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldConsole/main.cpp -------------------------------------------------------------------------------- /Chapter01/HelloWorldGui/HelloWorldGui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldGui/HelloWorldGui.pro -------------------------------------------------------------------------------- /Chapter01/HelloWorldGui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldGui/main.cpp -------------------------------------------------------------------------------- /Chapter01/HelloWorldGui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldGui/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter01/HelloWorldGui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldGui/mainwindow.h -------------------------------------------------------------------------------- /Chapter01/HelloWorldGui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldGui/mainwindow.ui -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/HelloWorldQtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldQtQuick/HelloWorldQtQuick.pro -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/MyGui.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.4 2 | 3 | MyGuiForm { 4 | } 5 | -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/MyGuiForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldQtQuick/MyGuiForm.ui.qml -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldQtQuick/main.cpp -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldQtQuick/main.qml -------------------------------------------------------------------------------- /Chapter01/HelloWorldQtQuick/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter01/HelloWorldQtQuick/qml.qrc -------------------------------------------------------------------------------- /Chapter02/MathFunctions/MathFunctions.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter02/MathFunctions/MathFunctions.pro -------------------------------------------------------------------------------- /Chapter02/MathFunctions/mathfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter02/MathFunctions/mathfunctions.cpp -------------------------------------------------------------------------------- /Chapter02/MathFunctions/mathfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter02/MathFunctions/mathfunctions.h -------------------------------------------------------------------------------- /Chapter02/MathFunctionsTest/MathFunctionsTest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter02/MathFunctionsTest/MathFunctionsTest.pro -------------------------------------------------------------------------------- /Chapter02/MathFunctionsTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter02/MathFunctionsTest/main.cpp -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/QtGuiCalculator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/QtGuiCalculator.pro -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/icon.png -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/main.cpp -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/mainwindow.h -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/mainwindow.ui -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/resources.qrc -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/resultdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/resultdialog.cpp -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/resultdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/resultdialog.h -------------------------------------------------------------------------------- /Chapter03/QtGuiCalculator/resultdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtGuiCalculator/resultdialog.ui -------------------------------------------------------------------------------- /Chapter03/QtQuickCalculator/Button.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtQuickCalculator/Button.qml -------------------------------------------------------------------------------- /Chapter03/QtQuickCalculator/QtQuickCalculator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtQuickCalculator/QtQuickCalculator.pro -------------------------------------------------------------------------------- /Chapter03/QtQuickCalculator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtQuickCalculator/main.cpp -------------------------------------------------------------------------------- /Chapter03/QtQuickCalculator/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtQuickCalculator/main.qml -------------------------------------------------------------------------------- /Chapter03/QtQuickCalculator/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter03/QtQuickCalculator/qml.qrc -------------------------------------------------------------------------------- /Chapter04/ParsingJson/json.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingJson/json.pro -------------------------------------------------------------------------------- /Chapter04/ParsingJson/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingJson/main.cpp -------------------------------------------------------------------------------- /Chapter04/ParsingXml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingXml/main.cpp -------------------------------------------------------------------------------- /Chapter04/ParsingXml/sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingXml/sample.xml -------------------------------------------------------------------------------- /Chapter04/ParsingXml/workerthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingXml/workerthread.cpp -------------------------------------------------------------------------------- /Chapter04/ParsingXml/workerthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingXml/workerthread.h -------------------------------------------------------------------------------- /Chapter04/ParsingXml/xml.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter04/ParsingXml/xml.pro -------------------------------------------------------------------------------- /Chapter05/QtWidgets/QtWidgets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/QtWidgets/QtWidgets.pro -------------------------------------------------------------------------------- /Chapter05/QtWidgets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/QtWidgets/main.cpp -------------------------------------------------------------------------------- /Chapter05/QtWidgets/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/QtWidgets/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/QtWidgets/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/QtWidgets/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/QtWidgets/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/QtWidgets/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/Qt_MVC/Qt_MVC.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/Qt_MVC/Qt_MVC.pro -------------------------------------------------------------------------------- /Chapter05/Qt_MVC/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/Qt_MVC/main.cpp -------------------------------------------------------------------------------- /Chapter05/Qt_MVC/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/Qt_MVC/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/Qt_MVC/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/Qt_MVC/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/Qt_MVC/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/Qt_MVC/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/WebEngine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/WebEngine/main.cpp -------------------------------------------------------------------------------- /Chapter05/WebEngine/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/WebEngine/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/WebEngine/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/WebEngine/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/WebEngine/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/WebEngine/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/WebEngine/webengineview.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter05/WebEngine/webengineview.pro -------------------------------------------------------------------------------- /Chapter06/AnalogClock/AnalogClock.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/AnalogClock.pro -------------------------------------------------------------------------------- /Chapter06/AnalogClock/analogclock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/analogclock.cpp -------------------------------------------------------------------------------- /Chapter06/AnalogClock/analogclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/analogclock.h -------------------------------------------------------------------------------- /Chapter06/AnalogClock/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/main.cpp -------------------------------------------------------------------------------- /Chapter06/AnalogClock/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/AnalogClock/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/AnalogClock/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/AnalogClock/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/QtDrawing/QtDrawing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/QtDrawing/QtDrawing.pro -------------------------------------------------------------------------------- /Chapter06/QtDrawing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/QtDrawing/main.cpp -------------------------------------------------------------------------------- /Chapter06/QtDrawing/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/QtDrawing/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/QtDrawing/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/QtDrawing/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/QtDrawing/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/QtDrawing/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/TowersAndSpaceship.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/TowersAndSpaceship.pro -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/lightTower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/lightTower.png -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/main.cpp -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/mobileunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/mobileunit.cpp -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/mobileunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/mobileunit.h -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/resource.qrc -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/scene.cpp -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/scene.h -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/simpletower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/simpletower.cpp -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/simpletower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/simpletower.h -------------------------------------------------------------------------------- /Chapter06/TowersAndSpaceship/spacecraft00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter06/TowersAndSpaceship/spacecraft00.png -------------------------------------------------------------------------------- /Chapter07/QtQuickControls2/QtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickControls2/QtQuick.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickControls2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickControls2/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickControls2/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickControls2/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickControls2/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickControls2/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuickControls2/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickControls2/qtquickcontrols2.conf -------------------------------------------------------------------------------- /Chapter07/QtQuickCpp/QtQuickCpp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickCpp/QtQuickCpp.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickCpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickCpp/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickCpp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickCpp/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickCpp/nativeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickCpp/nativeobject.h -------------------------------------------------------------------------------- /Chapter07/QtQuickCpp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickCpp/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuickLayout/QtQuickLayout.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickLayout/QtQuickLayout.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickLayout/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickLayout/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickLayout/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickLayout/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickLayout/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickLayout/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/ContactModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/ContactModel.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/ListModelDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/ListModelDelegate.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/QtQuickListModel.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/QtQuickListModel.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickListModel/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickListModel/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuickState/QtQuickState.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickState/QtQuickState.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickState/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickState/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickState/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickState/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickState/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickState/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuickWebEngineView/QtQuickWebEngineView.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickWebEngineView/QtQuickWebEngineView.pro -------------------------------------------------------------------------------- /Chapter07/QtQuickWebEngineView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickWebEngineView/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuickWebEngineView/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickWebEngineView/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuickWebEngineView/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuickWebEngineView/qml.qrc -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/QtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/QtQuick.pro -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/fileimageprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/fileimageprovider.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/fileimageprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/fileimageprovider.h -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/imagegallerycontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/imagegallerycontroller.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/imagegallerycontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/imagegallerycontroller.h -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/imagegallerymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/imagegallerymodel.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/imagegallerymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/imagegallerymodel.h -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/main.cpp -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/main.qml -------------------------------------------------------------------------------- /Chapter07/QtQuick_Gallery/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/QtQuick_Gallery/qml.qrc -------------------------------------------------------------------------------- /Chapter07/SCXML/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/main.cpp -------------------------------------------------------------------------------- /Chapter07/SCXML/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/main.qml -------------------------------------------------------------------------------- /Chapter07/SCXML/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/qml.qrc -------------------------------------------------------------------------------- /Chapter07/SCXML/scxml.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/scxml.pro -------------------------------------------------------------------------------- /Chapter07/SCXML/scxml.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/scxml.pro.user -------------------------------------------------------------------------------- /Chapter07/SCXML/statemachine.scxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter07/SCXML/statemachine.scxml -------------------------------------------------------------------------------- /Chapter08/Audio/Audio.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Audio/Audio.pro -------------------------------------------------------------------------------- /Chapter08/Audio/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Audio/main.cpp -------------------------------------------------------------------------------- /Chapter08/Audio/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Audio/main.qml -------------------------------------------------------------------------------- /Chapter08/Audio/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Audio/qml.qrc -------------------------------------------------------------------------------- /Chapter08/Video/Video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Video/Video.pro -------------------------------------------------------------------------------- /Chapter08/Video/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Video/main.cpp -------------------------------------------------------------------------------- /Chapter08/Video/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Video/main.qml -------------------------------------------------------------------------------- /Chapter08/Video/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Video/qml.qrc -------------------------------------------------------------------------------- /Chapter08/Webcam/Multimedia.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Webcam/Multimedia.pro -------------------------------------------------------------------------------- /Chapter08/Webcam/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Webcam/main.cpp -------------------------------------------------------------------------------- /Chapter08/Webcam/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Webcam/main.qml -------------------------------------------------------------------------------- /Chapter08/Webcam/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter08/Webcam/qml.qrc -------------------------------------------------------------------------------- /Chapter09/MapView/android/32bit/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/32bit/libcrypto.so -------------------------------------------------------------------------------- /Chapter09/MapView/android/32bit/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/32bit/libssl.so -------------------------------------------------------------------------------- /Chapter09/MapView/android/64bit/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/64bit/libcrypto.so -------------------------------------------------------------------------------- /Chapter09/MapView/android/64bit/libssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/64bit/libssl.so -------------------------------------------------------------------------------- /Chapter09/MapView/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter09/MapView/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/build.gradle -------------------------------------------------------------------------------- /Chapter09/MapView/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter09/MapView/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter09/MapView/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/gradlew -------------------------------------------------------------------------------- /Chapter09/MapView/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter09/MapView/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/android/res/values/libs.xml -------------------------------------------------------------------------------- /Chapter09/MapView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/main.cpp -------------------------------------------------------------------------------- /Chapter09/MapView/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/main.qml -------------------------------------------------------------------------------- /Chapter09/MapView/mapmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/mapmarker.png -------------------------------------------------------------------------------- /Chapter09/MapView/mapview.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/mapview.pro -------------------------------------------------------------------------------- /Chapter09/MapView/marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/marker.qml -------------------------------------------------------------------------------- /Chapter09/MapView/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/qml.qrc -------------------------------------------------------------------------------- /Chapter09/MapView/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/MapView/resource.qrc -------------------------------------------------------------------------------- /Chapter09/Sensor/LabelThreePart.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/LabelThreePart.qml -------------------------------------------------------------------------------- /Chapter09/Sensor/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter09/Sensor/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/build.gradle -------------------------------------------------------------------------------- /Chapter09/Sensor/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter09/Sensor/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter09/Sensor/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/gradlew -------------------------------------------------------------------------------- /Chapter09/Sensor/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter09/Sensor/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/android/res/values/libs.xml -------------------------------------------------------------------------------- /Chapter09/Sensor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/main.cpp -------------------------------------------------------------------------------- /Chapter09/Sensor/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/main.qml -------------------------------------------------------------------------------- /Chapter09/Sensor/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/qml.qrc -------------------------------------------------------------------------------- /Chapter09/Sensor/sensor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor/sensor.pro -------------------------------------------------------------------------------- /Chapter09/Sensor_cpp/SensorCPP.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor_cpp/SensorCPP.pro -------------------------------------------------------------------------------- /Chapter09/Sensor_cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor_cpp/main.cpp -------------------------------------------------------------------------------- /Chapter09/Sensor_cpp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor_cpp/main.qml -------------------------------------------------------------------------------- /Chapter09/Sensor_cpp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter09/Sensor_cpp/qml.qrc -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/Linguist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/Linguist.pro -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/Linguist.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/Linguist.qm -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/Linguist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/Linguist.ts -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/main.cpp -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/mainwindow.h -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/mainwindow.ui -------------------------------------------------------------------------------- /Chapter10/Qt Linguist/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter10/Qt Linguist/resource.qrc -------------------------------------------------------------------------------- /Chapter11/Autotest_Boost/autotest_boost.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Boost/autotest_boost.pro -------------------------------------------------------------------------------- /Chapter11/Autotest_Boost/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Boost/main.cpp -------------------------------------------------------------------------------- /Chapter11/Autotest_Google/autotest_Google.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Google/autotest_Google.pro -------------------------------------------------------------------------------- /Chapter11/Autotest_Google/gtest_dependency.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Google/gtest_dependency.pri -------------------------------------------------------------------------------- /Chapter11/Autotest_Google/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Google/main.cpp -------------------------------------------------------------------------------- /Chapter11/Autotest_Google/tst_testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Google/tst_testcase.h -------------------------------------------------------------------------------- /Chapter11/Autotest_Qt/autotest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Qt/autotest.pro -------------------------------------------------------------------------------- /Chapter11/Autotest_Qt/tst_testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/Autotest_Qt/tst_testing.cpp -------------------------------------------------------------------------------- /Chapter11/QMLProfiler_QtQuick/QMLProfiler_QtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QMLProfiler_QtQuick/QMLProfiler_QtQuick.pro -------------------------------------------------------------------------------- /Chapter11/QMLProfiler_QtQuick/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QMLProfiler_QtQuick/main.cpp -------------------------------------------------------------------------------- /Chapter11/QMLProfiler_QtQuick/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QMLProfiler_QtQuick/main.qml -------------------------------------------------------------------------------- /Chapter11/QMLProfiler_QtQuick/myRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QMLProfiler_QtQuick/myRectangle.qml -------------------------------------------------------------------------------- /Chapter11/QMLProfiler_QtQuick/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QMLProfiler_QtQuick/qml.qrc -------------------------------------------------------------------------------- /Chapter11/QtLeakyButton_Windows/QtLeakyButton.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QtLeakyButton_Windows/QtLeakyButton.pro -------------------------------------------------------------------------------- /Chapter11/QtLeakyButton_Windows/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QtLeakyButton_Windows/main.cpp -------------------------------------------------------------------------------- /Chapter11/QtLeakyButton_Windows/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QtLeakyButton_Windows/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter11/QtLeakyButton_Windows/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QtLeakyButton_Windows/mainwindow.h -------------------------------------------------------------------------------- /Chapter11/QtLeakyButton_Windows/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/QtLeakyButton_Windows/mainwindow.ui -------------------------------------------------------------------------------- /Chapter11/SlowButton/Button.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/SlowButton/Button.qml -------------------------------------------------------------------------------- /Chapter11/SlowButton/SlowButton.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/SlowButton/SlowButton.pro -------------------------------------------------------------------------------- /Chapter11/SlowButton/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/SlowButton/main.cpp -------------------------------------------------------------------------------- /Chapter11/SlowButton/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/SlowButton/main.qml -------------------------------------------------------------------------------- /Chapter11/SlowButton/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter11/SlowButton/qml.qrc -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/build.gradle -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/gradlew -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/gradlew.bat -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/res/values/libs.xml -------------------------------------------------------------------------------- /Chapter12/Android_Toast/android/src/org/qtproject/example/MyToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/android/src/org/qtproject/example/MyToast.java -------------------------------------------------------------------------------- /Chapter12/Android_Toast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/main.cpp -------------------------------------------------------------------------------- /Chapter12/Android_Toast/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/main.qml -------------------------------------------------------------------------------- /Chapter12/Android_Toast/mobile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/mobile.pro -------------------------------------------------------------------------------- /Chapter12/Android_Toast/mytoast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/mytoast.cpp -------------------------------------------------------------------------------- /Chapter12/Android_Toast/mytoast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/mytoast.h -------------------------------------------------------------------------------- /Chapter12/Android_Toast/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter12/Android_Toast/qml.qrc -------------------------------------------------------------------------------- /Chapter13/VirtualKeyboard/VirtualKeyboard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter13/VirtualKeyboard/VirtualKeyboard.pro -------------------------------------------------------------------------------- /Chapter13/VirtualKeyboard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter13/VirtualKeyboard/main.cpp -------------------------------------------------------------------------------- /Chapter13/VirtualKeyboard/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter13/VirtualKeyboard/main.qml -------------------------------------------------------------------------------- /Chapter13/VirtualKeyboard/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter13/VirtualKeyboard/qml.qrc -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Console/Console.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Console/Console.pro -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Console/Console.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Console/Console.pro.user -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Console/main.cpp -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Multiple_Projects.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Multiple_Projects.pro -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/QtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/QtQuick.pro -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/QtQuick.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/QtQuick.pro.user -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/main.cpp -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/main.qml -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/qml.qrc -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/QtQuick/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/QtQuick/qtquickcontrols2.conf -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/Widget.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/Widget.pro -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/Widget.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/Widget.pro.user -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/main.cpp -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/mainwindow.h -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/Widget/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/Widget/mainwindow.ui -------------------------------------------------------------------------------- /Chapter14/Multiple_Debugger/autostart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Multiple_Debugger/autostart.bat -------------------------------------------------------------------------------- /Chapter14/QtQuickWindowDisplayOptions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/QtQuickWindowDisplayOptions/main.cpp -------------------------------------------------------------------------------- /Chapter14/QtQuickWindowDisplayOptions/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/QtQuickWindowDisplayOptions/main.qml -------------------------------------------------------------------------------- /Chapter14/QtQuickWindowDisplayOptions/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/QtQuickWindowDisplayOptions/resource.qrc -------------------------------------------------------------------------------- /Chapter14/QtQuickWindowDisplayOptions/untitled1.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/QtQuickWindowDisplayOptions/untitled1.pro -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Qt_CMake/CMakeLists.txt -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Qt_CMake/main.cpp -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Qt_CMake/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Qt_CMake/mainwindow.h -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/Chapter14/Qt_CMake/mainwindow.ui -------------------------------------------------------------------------------- /Chapter14/Qt_CMake/resource.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Application-Development-with-Qt-Creator-Third-Edition/HEAD/README.md --------------------------------------------------------------------------------