Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Qt 6 C++ GUI Programming Cookbook - Third Edition

You're reading from  Qt 6 C++ GUI Programming Cookbook - Third Edition

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781805122630
Pages 428 pages
Edition 3rd Edition
Languages
Author (1):
Lee Zhi Eng Lee Zhi Eng
Profile icon Lee Zhi Eng

Table of Contents (17) Chapters

Preface 1. Chapter 1: Look-and-Feel Customization with Qt Designer 2. Chapter 2: Event Handling – Signals and Slots 3. Chapter 3: States and Animations with Qt and QML 4. Chapter 4: QPainter and 2D Graphics 5. Chapter 5: OpenGL Implementation 6. Chapter 6: Transitioning from Qt 5 to Qt 6 7. Chapter 7: Using Network and Managing Large Documents 8. Chapter 8: Threading Basics –Asynchronous Programming 9. Chapter 9: Building a Touch Screen Application with Qt 6 10. Chapter 10: JSON Parsing Made Easy 11. Chapter 11: Conversion Library 12. Chapter 12: Accessing Databases with SQL Driver and Qt 13. Chapter 13: Developing Web Applications Using Qt WebEngine 14. Chapter 14: Performance Optimization 15. Index 16. Other Books You May Enjoy

Working with QRunnable processes

In this recipe, we will learn how to use another type of high-level method to easily create a multithreading Qt 6 application. We will use the QRunnable and QThreadPool classes in this recipe.

How to do it…

  1. Create a new Qt widget application project and then a new C++ class called MyProcess, which inherits the QRunnable class.
  2. Next, open up myprocess.h and add the following headers:
    #include <QRunnable>
    #include <QDebug>
  3. Then, declare the run() function, as follows:
    class MyProcess : public QRunnable {
        public:
                MyProcess();
                void run();
    };
  4. After that, open up myprocess.cpp and define the run() function:
    void MyProcess::run() {
        int myNumber = 0;
        for (int i = 0; i < 100000000; ++i) {
       ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}