Qt 5 C++ GUI Development For Beginners : The Fundamentals
Qt 5 C++ GUI Development For Beginners : The Fundamentals, available at $74.99, has an average rating of 4.68, with 77 lectures, based on 1958 reviews, and has 9738 subscribers.
You will learn about The fundamentals of working with Qt to build C++ Gui Applications Working with Qt Widget Classes Working with Dialog Classes Using the Qt Resource System Styling Qt Applications Working with Networks to fetch HTTP Data Working with the File System Model View Architecture This course is ideal for individuals who are Anyone willing to Build Cross Platform Gui Software using Qt or Complete Beginners or Anyone willing to get a job building Qt Gui Applications or Students and Researchers willing to use Qt Gui features in their projects It is particularly useful for Anyone willing to Build Cross Platform Gui Software using Qt or Complete Beginners or Anyone willing to get a job building Qt Gui Applications or Students and Researchers willing to use Qt Gui features in their projects.
Enroll now: Qt 5 C++ GUI Development For Beginners : The Fundamentals
Summary
Title: Qt 5 C++ GUI Development For Beginners : The Fundamentals
Price: $74.99
Average Rating: 4.68
Number of Lectures: 77
Number of Published Lectures: 77
Number of Curriculum Items: 77
Number of Published Curriculum Objects: 77
Original Price: $19.99
Quality Status: approved
Status: Live
What You Will Learn
- The fundamentals of working with Qt to build C++ Gui Applications
- Working with Qt Widget Classes
- Working with Dialog Classes
- Using the Qt Resource System
- Styling Qt Applications
- Working with Networks to fetch HTTP Data
- Working with the File System
- Model View Architecture
Who Should Attend
- Anyone willing to Build Cross Platform Gui Software using Qt
- Complete Beginners
- Anyone willing to get a job building Qt Gui Applications
- Students and Researchers willing to use Qt Gui features in their projects
Target Audiences
- Anyone willing to Build Cross Platform Gui Software using Qt
- Complete Beginners
- Anyone willing to get a job building Qt Gui Applications
- Students and Researchers willing to use Qt Gui features in their projects
Important note : There is an update of this course to Qt 6. If you’re just starting out, that’s what you should take. Take this if you have a specific reason to target Qt 5.
This course will take you from zero to a level where you can write any Qt C++ Gui application you may want. It is aimed at complete beginners but people with varying levels of experience wishing to learn Qt C++ Gui will equally find it useful.
Qt is second to none in the field of building cross platform GUI application based on C++. It can currently be used to build software that runs on virtually any platform out there: Windows, Mac, Linux, Android, IOS and even embedded systems. You basically build your software once and all you have to do is build it for your desired platform and voila !
The course starts with a complete beginner to both C++ and Qt in mind, and we take you through the the process of getting your environment set up on your platform of choice :
-
We do a live install of Qt Creator on Windows
-
We do a live install of Qt Creator on Linux
-
We guide you though how you would install Qt Creator on a Mac
-
We guide you through Qt Creator showing you the tools that work together to get your application built
We then take you on a tour of the C++ programming language, covering the concepts deemed important to start working with Qt to build your shinny GUI applications. You don’t need to be a C++ wizard to start writing your applications using Qt. One of the goals behind Qt itself is to be as easy to use as possible, helping you to focus on your application logic rather than the C++ complex plumbing. This does not mean that you can do with zero C++ knowledge though. That’s why we take you on a tour to cover the basic concepts of the language covering topics like:
-
Running your first console application and understanding the main function
-
Streams that help you write and read data from your C++ applications
-
Variables and Data Types
-
Basic C++ Operators and Control flow where among other things you learn about if clauses and loops
-
Build an app to guess numbers and put together the concepts learned so far
-
C++ Functions
-
C++ classes
-
Building your first Qt C++ GUI Application
-
Building a GUI Version of your Number guessing game
We then visit the fascinating concept signals and slots in Qt where you learn the most flexible way to respond to events :
-
We’ll explore lambda functions in C++ in general, we’ll need them to use their SIGNAL SLOT syntax
-
We explore different ways to connect signals to slots in Qt
-
We then do a concept enforcing demo for you to try them out
Next we dive in the Qt Widgets section and visit some of the most important widget classes in Qt :
-
QWiget
-
QMainWindow
-
QMessageBox
-
QPushButton
-
QLineEdit
-
QTextEdit
-
QLabel
-
QHBoxLayout, QVBoxLayout, QGridLayout
-
We visit size policies and stretches and how they help tie the knots in your layouts
-
QCheckBox and QRadioButton
-
QList
-
QComboBox
-
QListWidget
-
QTabWidget
-
QMenu, QToolBar, QAction
Dialogs are explored next , we look at QDialog and how to build your own custom dialog class from scratch , QDialogButtonBox, QMessageBox, QFontDialog, QFileDialog, QInputDialog and how they add a layer of interactivity to your Qt GUI applications.
We then go on and explore how to work with the Qt Resource System , Styling your Qt applications with QStyle, QPalette and Style Sheets, Saving your application settings with QSetting, Working with Files and Directories using QFile and QDir and we wrap up the course with a tour of the network capabilities of Qt where we :
-
See the different classes that are available to work with networks in Qt
-
Build an application to download web pages in our Qt Applications
-
Build an application to consume Rest APIs in your Qt Applications
This course was designed to help you succeed in becoming a Qt Gui application developer regardless of your current level of expertise. The only requirement is to bring in an open mind and a strong willingness to learn. Now, please check out some of the preview videos andl let’s get you STARTED building cross platform GUI applications using Qt.
Course Curriculum
Chapter 1: Getting Started
Lecture 1: Important Notice: PLEASE READ!
Lecture 2: Getting Started
Lecture 3: Installing & Tools on Windows
Lecture 4: Teaser : Build your First Qt Gui App in 10 minutes!
Lecture 5: Installing & Tools on Linux
Lecture 6: Join the Official Support Channels
Lecture 7: Qt-An Overview of Qt Creator and Tooling (Compilers,Debuggers)
Lecture 8: About Qt Technologies
Chapter 2: C++ Beginner Crash Course
Lecture 1: Your First C++ console Program
Lecture 2: Streams-Input and Output
Lecture 3: C++ Variables and Data Types
Lecture 4: C++ Operators and Flow Control
Lecture 5: C++ Demo Game Program : Guess My Number
Lecture 6: Qt5.12 With srand()
Lecture 7: C++ Functions
Lecture 8: C++ Classes Part 1 of 3
Lecture 9: C++ Classes Part 2 of 3
Lecture 10: C++ Classes Part 3 of 3
Lecture 11: Your First Qt Gui Application
Lecture 12: Demo-Guess Numbers Gui
Chapter 3: Signals And Slots
Lecture 1: C++ Lambda Basics
Lecture 2: Connecting Signals to Slots : 3 Different Ways
Lecture 3: Demo -Your Try on Signals and Slots
Chapter 4: A Tour of Qt Widgets
Lecture 1: QWidget Class Part 1 of 2
Lecture 2: QWidget Class Part 2 of 2
Lecture 3: QMainWindow Class
Lecture 4: QMessageBox Class
Lecture 5: QPushButton Class
Lecture 6: QLineEdit Class
Lecture 7: QTextEdit Class
Lecture 8: QLabel Class
Lecture 9: Qt Layouts
Lecture 10: QHBoxLayout
Lecture 11: QVBoxLayout
Lecture 12: Size Policy and Stretches
Lecture 13: QGridLayout
Lecture 14: QCheckBox and QRadioButton Classes
Lecture 15: The QList Class : Store your Objects in a List
Lecture 16: QComboBox Class
Lecture 17: QListWidge Class
Lecture 18: QTabWidget Class
Lecture 19: Menus and Toolbars : QAction, QMenu, QToolbar
Chapter 5: Working With Dialogs
Lecture 1: QDialog Part 1 of 2
Lecture 2: QDialog Part 2 of 2
Lecture 3: QDialogButtonBox
Lecture 4: QMessageBox
Lecture 5: File Dialogs
Lecture 6: Font Dialog
Lecture 7: Color Dialog
Lecture 8: QInputDialog
Chapter 6: Working with Resources
Lecture 1: The Qt Resource System Explained
Lecture 2: Working with Resource Files in your Qt Application
Chapter 7: Styling your Qt Applications
Lecture 1: An Overview on Qt Styling Offerings
Lecture 2: QPalette Used Right
Lecture 3: Working with Style Sheets
Lecture 4: Style Sheets in External Files
Lecture 5: Demo : Doing More with Style Sheets
Chapter 8: Working with Settings
Lecture 1: QSettings Explained
Lecture 2: Working with QSettings in Qt App
Chapter 9: Working with Files and Directories
Lecture 1: QFile: Reading and Writting Files
Lecture 2: QDir : Manipulating Directories
Chapter 10: Model View Architecture Framework
Lecture 1: Introduction to the Model View Framework of Qt
Lecture 2: Your first try on QModelIndexes
Lecture 3: Working with QFileSystemModel
Lecture 4: Working with QStandardItemModel
Lecture 5: Working with QStringListModel
Lecture 6: Building your Custom Model
Lecture 7: Working with Roles in the Model
Lecture 8: Notifying the view of Changes in the Model
Lecture 9: Managing View Header Data
Lecture 10: QStandardItem API and QSelectionModel
Chapter 11: Working with Networks
Lecture 1: An Overview of Qt Network Offerings
Lecture 2: Downloading Html Pages in Your Qt App
Lecture 3: Handling SSL Warnings/Errors when Downloading SSL Protected Data
Lecture 4: Consuming REST APIs in your Qt App
Lecture 5: Farewell and Next Steps
Lecture 6: BONUS -Course List : Discounted!
Instructors
-
Daniel Gakwaya
Software Engineer at Blikoon Technologies
Rating Distribution
- 1 stars: 15 votes
- 2 stars: 31 votes
- 3 stars: 217 votes
- 4 stars: 744 votes
- 5 stars: 951 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Digital Marketing Foundation Course
- Google Shopping Ads Digital Marketing Course
- Multi Cloud Infrastructure for beginners
- Master Lead Generation: Grow Subscribers & Sales with Popups
- Complete Copywriting System : write to sell with ease
- Product Positioning Masterclass: Unlock Market Traction
- How to Promote Your Webinar and Get More Attendees?
- Digital Marketing Courses
- Create music with Artificial Intelligence in this new market
- Create CONVERTING UGC Content So Brands Will Pay You More
- Podcast: The top 8 ways to monetize by Podcasting
- TikTok Marketing Mastery: Learn to Grow & Go Viral
- Free Digital Marketing Basics Course in Hindi
- MailChimp Free Mailing Lists: MailChimp Email Marketing
- Automate Digital Marketing & Social Media with Generative AI
- Google Ads MasterClass – All Advanced Features
- Online Course Creator: Create & Sell Online Courses Today!
- Introduction to SEO – Basic Principles of SEO
- Affiliate Marketing For Beginners: Go From Novice To Pro
- Effective Website Planning Made Simple