Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Qt5 C++ GUI Programming Cookbook
Qt5 C++ GUI Programming Cookbook

Qt5 C++ GUI Programming Cookbook: Practical recipes for building cross-platform GUI applications, widgets, and animations with Qt 5 , Second Edition

eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Qt5 C++ GUI Programming Cookbook

Event Handling - Signals and Slots

In this chapter, we will cover the following recipes:

  • New signals and slots syntax
  • UI events with signals and slots
  • Asynchronous programming made easier
  • Function callbacks

Introduction

The signals and slots mechanism in Qt 5 is one of its most important features. It's a method that allows communication between objects, which is a crucial part of a program's graphical user interface. A signal can be emitted from any QObject objects or its subclasses, which will then trigger any slot functions of any objects that are connected to the signal.

Compared to callbacks (which Qt 5 also support), the signals and slots mechanism is comparably more fluid and flexible for the programmer to use. The signals and slots mechanism is both type safe and not strongly coupled to the processing function, which makes it better than the callback's implementation.

A signal of an arbitrary class can trigger any private slots of an unrelated class that is going to be invoked, which is not possible with callbacks.
...

Technical requirements

New signals and slots syntax

The signals and slots mechanism has gone through some changes in the recent version of Qt, most notably its coding syntax. Qt 5 continues to support the older syntax for future releases, but there is no mention of how long it will be before it will be dropped completely. Therefore, it's better for us to start learning the new syntax before that day comes.

How to do it...

Let's get started by following these steps:

  1. Let's create a Qt Widgets Application project and open up mainwindow.ui.
  2. Drag and drop a PushButton from the Widget Box to the UI canvas:
  1. Right-click on the PushButton and select Go to slot. A window will appear:
  1. You will see a list of built-in slot functions available...

UI events with signals and slots

In the previous example, we demonstrated the use of signals and slots on a push button. Now, let's explore the signals and slots that are available in other common widget types.

How to do it...

To learn how to use signals and slots with UI events, follow these steps:

  1. Let's create a new Qt Widgets Application project.
  2. Drag and drop a Push Button, Combo Box, Line Edit, Spin Box, and Slider from the Widget Box into your UI canvas:
  1. Then, right-click on the push button and select clicked() and press the OK button to proceed. A slot function will be created for you by Qt Creator:
  1. Repeat the previous step, but this time, select the next selection until every function in QAbstractButton...

Asynchronous programming made easier

Since the signals and slots mechanism is asynchronous in nature, we can make use of it for things other than user interfaces. In programming terms, an asynchronous operation is a process that works independently, allowing the program to continue its operation without waiting for the process to complete, which may stall the whole program.

Qt 5 allows you to make use of its signals and slots mechanism to easily achieve asynchronous processes without much effort. This is even more true after Qt 5 introduced the new syntax for signals and slots, which allows a signal to trigger a normal function instead of a slot function from a QObject.

In the following example, we will further explore this opportunity and learn how we can improve our program's efficiency by using asynchronous operations through the signals and slots mechanism that's...

Function callbacks

Even though Qt 5 supports the signals and slots mechanism, some of the features in Qt 5 still use function callbacks, such as keyboard input, window resize, graphics painting, and others. Since these events only need to be implemented once, there is no need to use the signals and slots mechanism.

How to do it...

Let's get started by following this example:

  1. Create a Qt Widgets Application project, open up mainwindow.h, and add the following headers:

#include <QDebug>
#include <QResizeEvent>
#include <QKeyEvent>
#include <QMouseEvent>

  1. Then, declare these functions in mainwindow.h:
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();

void resizeEvent(QResizeEvent...
Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn to use Qt 5 to design and customize the look and feel of your application
  • Improve the visual quality of an application by using graphics rendering and animation
  • Understand the balance of presentation and web content that will make an application appealing yet functional

Description

With the growing need to develop GUIs for multiple targets and multiple screens, improving the visual quality of your application becomes important so that it stands out from your competitors. With its cross-platform ability and the latest UI paradigms, Qt makes it possible to build intuitive, interactive, and user-friendly user interfaces for your applications. Qt5 C++ GUI Programming Cookbook, Second Edition teaches you how to develop functional and appealing user interfaces using the latest version of QT5 and C++. This book will help you learn a variety of topics such as GUI customization and animation, graphics rendering, implementing Google Maps, and more. You will also be taken through advanced concepts like asynchronous programming, event handling using signals and slots, network programming, various aspects of optimizing your application. By the end of the book, you will be confident to design and customize GUI applications that meet your clients' expectations and have an understanding of best practice solutions for common problems.

Who is this book for?

This intermediate-level book is designed for those who want to develop software using Qt 5. If you want to improve the visual quality and content presentation of your software application, this book is for you. Prior experience of C++ programming is required.

What you will learn

  • Animate GUI elements using Qt5 s built-in animation system
  • Draw shapes and 2D images using Qt5 s powerful rendering system
  • Implement an industry-standard OpenGL library in your project
  • Build a mobile app that supports touch events and exports it onto devices
  • Parse and extract data from an XML file and present it on your GUI
  • Interact with web content by calling JavaScript functions from C++
  • Access MySQL and SQLite databases to retrieve data and display it on your GUI

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 27, 2019
Length: 428 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789802528
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Mar 27, 2019
Length: 428 pages
Edition : 2nd
Language : English
ISBN-13 : 9781789802528
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 102.97
Qt5 C++ GUI Programming Cookbook
€32.99
Hands-On Mobile and Embedded Development with Qt 5
€32.99
Mastering Qt  5
€36.99
Total 102.97 Stars icon
Banner background image

Table of Contents

14 Chapters
Look-and-Feel Customization with Qt Designer Chevron down icon Chevron up icon
Event Handling - Signals and Slots Chevron down icon Chevron up icon
States and Animations with Qt and QML Chevron down icon Chevron up icon
QPainter and 2D Graphics Chevron down icon Chevron up icon
OpenGL Implementation Chevron down icon Chevron up icon
Using Network and Managing Large Documents Chevron down icon Chevron up icon
Threading Basics - Asynchronous Programming Chevron down icon Chevron up icon
Building a Touch Screen Application with Qt5 Chevron down icon Chevron up icon
XML Parsing Made Easy Chevron down icon Chevron up icon
Conversion Library Chevron down icon Chevron up icon
Accessing Databases with SQL Driver and Qt Chevron down icon Chevron up icon
Develop Web Applications using Qt WebEngine Chevron down icon Chevron up icon
Performance Optimization Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
(4 Ratings)
5 star 25%
4 star 0%
3 star 25%
2 star 50%
1 star 0%
Terrence Andrews May 22, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As someone new to Qt5 and C++ in this cookbook provides you with great examples and philosophy to get the job done
Amazon Verified review Amazon
Amazon Customer May 06, 2019
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Used for my projects
Amazon Verified review Amazon
hehedaozuiteng Dec 29, 2019
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
good book for qt beginer, but have some errors though the whole book. Cannot find the way to connect the author.
Amazon Verified review Amazon
Mike Torchia Feb 05, 2024
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
Typos, missing code, screenshots that dont match. Steer clear
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.