├── Chapter01 ├── MyProject.pro ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── Chapter02 ├── Chapter2.pro ├── README.md ├── login_bg.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── resource.qrc ├── Chapter03 ├── DatabaseConnection │ ├── DatabaseConnection.pro │ ├── README.md │ └── main.cpp ├── FunctionalLoginPage │ ├── FunctionalLoginPage.pro │ ├── README.md │ ├── login_bg.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc └── README.md ├── Chapter04 ├── CreateChart │ ├── CreateChart.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── DashboardPage │ ├── DashboardPage.pro │ ├── README.md │ ├── login_bg.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc └── README.md ├── Chapter05 ├── DialogWindows_FileSelectionDialog │ ├── DialogWindows_FileSelectionDialog.pro │ ├── README.md │ ├── icon.png │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── resource.qrc ├── ImageCropping │ ├── ImageCropping.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── ListView │ ├── ListView.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui └── README.md ├── Chapter06 ├── Cpp_Js │ ├── Cpp_Js.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── resource.qrc │ └── test.html ├── README.md └── WebBrowser │ ├── README.md │ ├── WebBrowser.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── Chapter07 ├── MapView.pro ├── README.md ├── circle.qml ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── map-marker-icon.png ├── mapview.qml ├── marker.qml ├── polygon.qml ├── rectangle.qml └── resource.qrc ├── Chapter08 ├── GraphicsView.pro ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── person-icon-blue.png ├── profilebox.cpp ├── profilebox.h ├── profileline.cpp ├── profileline.h └── resource.qrc ├── Chapter09 ├── README.md ├── Webcam.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── Chapter10 ├── Client │ ├── Client.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── README.md └── Server │ ├── README.md │ ├── Server.pro │ ├── main.cpp │ ├── server.cpp │ └── server.h ├── Chapter11 ├── Paint │ ├── Paint.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── README.md └── Vector_Graphics │ ├── README.md │ ├── Vector_Graphics.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ └── tux.png ├── Chapter12 ├── Ftp_Client.pro ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── Chapter13 ├── ImageViewer │ ├── ImageViewer.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.ui ├── MoviePlayer │ ├── MoviePlayer.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── pause.png │ ├── play.png │ ├── resource.qrc │ ├── stop.png │ └── volume.png ├── MusicPlayer │ ├── MusicPlayer.pro │ ├── README.md │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── pause.png │ ├── play.png │ ├── resource.qrc │ ├── stop.png │ └── volume.png └── README.md ├── Chapter14 ├── MainForm.ui.qml ├── QtQuick.pro ├── README.md ├── background.jpg ├── email-icon.png ├── logo_sample.png ├── main.cpp ├── main.qml ├── password-icon.png └── qml.qrc ├── Chapter15 └── README.md ├── Chapter16 ├── Debugging.pro ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── LICENSE └── README.md /Chapter01/MyProject.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter01/MyProject.pro -------------------------------------------------------------------------------- /Chapter01/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter01/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter01/main.cpp -------------------------------------------------------------------------------- /Chapter01/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter01/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter01/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter01/mainwindow.h -------------------------------------------------------------------------------- /Chapter01/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter01/mainwindow.ui -------------------------------------------------------------------------------- /Chapter02/Chapter2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/Chapter2.pro -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/login_bg.png -------------------------------------------------------------------------------- /Chapter02/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/main.cpp -------------------------------------------------------------------------------- /Chapter02/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter02/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/mainwindow.h -------------------------------------------------------------------------------- /Chapter02/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/mainwindow.ui -------------------------------------------------------------------------------- /Chapter02/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter02/resource.qrc -------------------------------------------------------------------------------- /Chapter03/DatabaseConnection/DatabaseConnection.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/DatabaseConnection/DatabaseConnection.pro -------------------------------------------------------------------------------- /Chapter03/DatabaseConnection/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/DatabaseConnection/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/DatabaseConnection/main.cpp -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/FunctionalLoginPage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/FunctionalLoginPage.pro -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/login_bg.png -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/main.cpp -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/mainwindow.h -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/mainwindow.ui -------------------------------------------------------------------------------- /Chapter03/FunctionalLoginPage/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter03/FunctionalLoginPage/resource.qrc -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter04/CreateChart/CreateChart.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/CreateChart/CreateChart.pro -------------------------------------------------------------------------------- /Chapter04/CreateChart/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter04/CreateChart/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/CreateChart/main.cpp -------------------------------------------------------------------------------- /Chapter04/CreateChart/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/CreateChart/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter04/CreateChart/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/CreateChart/mainwindow.h -------------------------------------------------------------------------------- /Chapter04/CreateChart/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/CreateChart/mainwindow.ui -------------------------------------------------------------------------------- /Chapter04/DashboardPage/DashboardPage.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/DashboardPage.pro -------------------------------------------------------------------------------- /Chapter04/DashboardPage/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter04/DashboardPage/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/login_bg.png -------------------------------------------------------------------------------- /Chapter04/DashboardPage/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/main.cpp -------------------------------------------------------------------------------- /Chapter04/DashboardPage/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter04/DashboardPage/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/mainwindow.h -------------------------------------------------------------------------------- /Chapter04/DashboardPage/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/mainwindow.ui -------------------------------------------------------------------------------- /Chapter04/DashboardPage/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter04/DashboardPage/resource.qrc -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/DialogWindows_FileSelectionDialog.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/DialogWindows_FileSelectionDialog.pro -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/icon.png -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/main.cpp -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/DialogWindows_FileSelectionDialog/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/DialogWindows_FileSelectionDialog/resource.qrc -------------------------------------------------------------------------------- /Chapter05/ImageCropping/ImageCropping.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ImageCropping/ImageCropping.pro -------------------------------------------------------------------------------- /Chapter05/ImageCropping/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter05/ImageCropping/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ImageCropping/main.cpp -------------------------------------------------------------------------------- /Chapter05/ImageCropping/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ImageCropping/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/ImageCropping/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ImageCropping/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/ImageCropping/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ImageCropping/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/ListView/ListView.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ListView/ListView.pro -------------------------------------------------------------------------------- /Chapter05/ListView/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter05/ListView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ListView/main.cpp -------------------------------------------------------------------------------- /Chapter05/ListView/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ListView/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter05/ListView/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ListView/mainwindow.h -------------------------------------------------------------------------------- /Chapter05/ListView/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter05/ListView/mainwindow.ui -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/Cpp_Js.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/Cpp_Js.pro -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/main.cpp -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/mainwindow.ui -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/resource.qrc -------------------------------------------------------------------------------- /Chapter06/Cpp_Js/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/Cpp_Js/test.html -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter06/WebBrowser/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter06/WebBrowser/WebBrowser.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/WebBrowser/WebBrowser.pro -------------------------------------------------------------------------------- /Chapter06/WebBrowser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/WebBrowser/main.cpp -------------------------------------------------------------------------------- /Chapter06/WebBrowser/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/WebBrowser/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter06/WebBrowser/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/WebBrowser/mainwindow.h -------------------------------------------------------------------------------- /Chapter06/WebBrowser/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter06/WebBrowser/mainwindow.ui -------------------------------------------------------------------------------- /Chapter07/MapView.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/MapView.pro -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter07/circle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/circle.qml -------------------------------------------------------------------------------- /Chapter07/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/main.cpp -------------------------------------------------------------------------------- /Chapter07/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter07/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/mainwindow.h -------------------------------------------------------------------------------- /Chapter07/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/mainwindow.ui -------------------------------------------------------------------------------- /Chapter07/map-marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/map-marker-icon.png -------------------------------------------------------------------------------- /Chapter07/mapview.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/mapview.qml -------------------------------------------------------------------------------- /Chapter07/marker.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/marker.qml -------------------------------------------------------------------------------- /Chapter07/polygon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/polygon.qml -------------------------------------------------------------------------------- /Chapter07/rectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/rectangle.qml -------------------------------------------------------------------------------- /Chapter07/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter07/resource.qrc -------------------------------------------------------------------------------- /Chapter08/GraphicsView.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/GraphicsView.pro -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/main.cpp -------------------------------------------------------------------------------- /Chapter08/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter08/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/mainwindow.h -------------------------------------------------------------------------------- /Chapter08/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/mainwindow.ui -------------------------------------------------------------------------------- /Chapter08/person-icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/person-icon-blue.png -------------------------------------------------------------------------------- /Chapter08/profilebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/profilebox.cpp -------------------------------------------------------------------------------- /Chapter08/profilebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/profilebox.h -------------------------------------------------------------------------------- /Chapter08/profileline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/profileline.cpp -------------------------------------------------------------------------------- /Chapter08/profileline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/profileline.h -------------------------------------------------------------------------------- /Chapter08/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter08/resource.qrc -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter09/Webcam.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter09/Webcam.pro -------------------------------------------------------------------------------- /Chapter09/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter09/main.cpp -------------------------------------------------------------------------------- /Chapter09/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter09/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter09/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter09/mainwindow.h -------------------------------------------------------------------------------- /Chapter09/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter09/mainwindow.ui -------------------------------------------------------------------------------- /Chapter10/Client/Client.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Client/Client.pro -------------------------------------------------------------------------------- /Chapter10/Client/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter10/Client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Client/main.cpp -------------------------------------------------------------------------------- /Chapter10/Client/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Client/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter10/Client/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Client/mainwindow.h -------------------------------------------------------------------------------- /Chapter10/Client/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Client/mainwindow.ui -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter10/Server/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter10/Server/Server.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Server/Server.pro -------------------------------------------------------------------------------- /Chapter10/Server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Server/main.cpp -------------------------------------------------------------------------------- /Chapter10/Server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Server/server.cpp -------------------------------------------------------------------------------- /Chapter10/Server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter10/Server/server.h -------------------------------------------------------------------------------- /Chapter11/Paint/Paint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Paint/Paint.pro -------------------------------------------------------------------------------- /Chapter11/Paint/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter11/Paint/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Paint/main.cpp -------------------------------------------------------------------------------- /Chapter11/Paint/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Paint/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter11/Paint/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Paint/mainwindow.h -------------------------------------------------------------------------------- /Chapter11/Paint/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Paint/mainwindow.ui -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/Vector_Graphics.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/Vector_Graphics.pro -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/main.cpp -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/mainwindow.h -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/mainwindow.ui -------------------------------------------------------------------------------- /Chapter11/Vector_Graphics/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter11/Vector_Graphics/tux.png -------------------------------------------------------------------------------- /Chapter12/Ftp_Client.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter12/Ftp_Client.pro -------------------------------------------------------------------------------- /Chapter12/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter12/main.cpp -------------------------------------------------------------------------------- /Chapter12/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter12/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter12/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter12/mainwindow.h -------------------------------------------------------------------------------- /Chapter12/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter12/mainwindow.ui -------------------------------------------------------------------------------- /Chapter13/ImageViewer/ImageViewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/ImageViewer/ImageViewer.pro -------------------------------------------------------------------------------- /Chapter13/ImageViewer/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter13/ImageViewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/ImageViewer/main.cpp -------------------------------------------------------------------------------- /Chapter13/ImageViewer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/ImageViewer/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter13/ImageViewer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/ImageViewer/mainwindow.h -------------------------------------------------------------------------------- /Chapter13/ImageViewer/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/ImageViewer/mainwindow.ui -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/MoviePlayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/MoviePlayer.pro -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/main.cpp -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/mainwindow.h -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/mainwindow.ui -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/pause.png -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/play.png -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/resource.qrc -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/stop.png -------------------------------------------------------------------------------- /Chapter13/MoviePlayer/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MoviePlayer/volume.png -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/MusicPlayer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/MusicPlayer.pro -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/main.cpp -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/mainwindow.h -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/mainwindow.ui -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/pause.png -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/play.png -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/resource.qrc -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/stop.png -------------------------------------------------------------------------------- /Chapter13/MusicPlayer/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter13/MusicPlayer/volume.png -------------------------------------------------------------------------------- /Chapter13/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter14/MainForm.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/MainForm.ui.qml -------------------------------------------------------------------------------- /Chapter14/QtQuick.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/QtQuick.pro -------------------------------------------------------------------------------- /Chapter14/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter14/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/background.jpg -------------------------------------------------------------------------------- /Chapter14/email-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/email-icon.png -------------------------------------------------------------------------------- /Chapter14/logo_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/logo_sample.png -------------------------------------------------------------------------------- /Chapter14/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/main.cpp -------------------------------------------------------------------------------- /Chapter14/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/main.qml -------------------------------------------------------------------------------- /Chapter14/password-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/password-icon.png -------------------------------------------------------------------------------- /Chapter14/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter14/qml.qrc -------------------------------------------------------------------------------- /Chapter15/README.md: -------------------------------------------------------------------------------- 1 | There is no project source code for Chapter 15. 2 | -------------------------------------------------------------------------------- /Chapter16/Debugging.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter16/Debugging.pro -------------------------------------------------------------------------------- /Chapter16/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter16/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter16/main.cpp -------------------------------------------------------------------------------- /Chapter16/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter16/mainwindow.cpp -------------------------------------------------------------------------------- /Chapter16/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter16/mainwindow.h -------------------------------------------------------------------------------- /Chapter16/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/Chapter16/mainwindow.ui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-GUI-Programming-with-CPP-and-Qt5/HEAD/README.md --------------------------------------------------------------------------------