Qt
-
Introduction to Qt (VoidRealms Video)
http://www.youtube.com/watch?v=6KtOzh0StTcYouTube video series by Bryan Cairns (@VoidRealms) demonstrating all facets of developing a GUI with Qt Creator. The link takes you to Part 1 of the series.
-
Qt & Git: Committing Changes
https://jpgrady28.azurewebsites.net/Home/Docs/185Brief tutorial showing you how to commit code changes to your Qt project's local Git repository.
-
Qt & Git: Configuring and Pushing to a Remote Git Respository
https://jpgrady28.azurewebsites.net/Home/Docs/184Tutorial showing you to configure a remote Git repository for use with a Qt project, then push your commits to that repository. Assumes you have created a local Git repository for your project.
-
Qt & Git: Creating a Local Git Repository
https://jpgrady28.azurewebsites.net/Home/Docs/183Brief tutorial showing you to create a local Git repository for an existing Qt project.
-
Qt & Git: How to Configure Git
https://jpgrady28.azurewebsites.net/Home/Docs/182Brief tutorial walking you through how to configure Qt to use Git. This assumes that you have downloaded and installed Git for Windows from the Git website.
-
Qt Download (Open Source)
https://www.qt.io/download-qt-installer-ossDownload the latest version of Qt here. Choose the Online installer that matches your OS.
-
Qt Install (Open Source)
https://jpgrady28.azurewebsites.net/Home/Docs/134Walks you through the process of installing Qt, assuming you have downloaded the Qt Online Installer. Windows Users: be sure to follow these directions and install the MinGW compiler. DO NOT INSTALL ANY OF THE VISUAL C++ Compilers
-
Qt:
QCheckBox
(VoidRealms video)
https://www.youtube.com/watch?v=W3EWVLPAoeAShort video tutorial demonstrating how to set up and use check boxes (
QCheckBox
) in your Qt GUI application. -
Qt:
QFileDialog
: HowTo
https://www.youtube.com/watch?v=tKdfpA74HYYVideo tutorial demonstrating how to set up and use a file dialog box (
QFileDialog
) to open a file in Qt. -
Qt:
QMessageBox
(VoidRealms video)
https://www.youtube.com/watch?v=zwCjcZD7GlUVideo tutorial demonstrating how to set up and use a message box (
QMessageBox
) in your Qt GUI application. -
Qt:
QPushButton
: HowTo
http://wiki.qt.io/How_to_Use_QPushButtonTutorial and quick reference for making and using basic buttons in Qt.
-
Qt:
QRadioButton
(VoidRealms video)
https://www.youtube.com/watch?v=gDaeZtjitc8Short video tutorial demonstrating how to set up and use radio buttons (
QRadioButton
) in your Qt GUI application. -
Qt:
QStringList
(VoidRealms video)
https://www.youtube.com/watch?v=n9ekbNw3xjYVideo tutorial demonstrating how to use
QStringList
objects in your Qt GUI application. -
Qt:
QTimer
Class Tutorial
http://www.bogotobogo.com/Qt/Qt5_QTimer.phpTutorial walking through how to set up a
QTimer
timer to run at a fixed intervals in a Qt application. -
Qt: Basic Programming Tutorial
http://wiki.qt.io/Basic_Qt_Programming_TutorialA step-by-step tutorial introduction to Qt programming using Qt Creator.
-
Qt: Calculator Form Example
http://doc.qt.io/qt-5/qtdesigner-calculatorform-example.htmlQt sample code for a very simple calculator GUI application
-
Qt: Converting Text and Numbers to and from QString
https://jpgrady28.azurewebsites.net/Home/Docs/176Reference that provides several examples of conversions among
QString
objects, standard strings, and numbers. Also provides an example of how to format numbers usingQLocale
. -
Qt: Model/View Tutorial
https://doc.qt.io/qt-5/modelview.htmlAn introduction to the Model/View architecture design pattern used by Qt Widget applications, separating data from presentation
-
Qt: Signals and Slots (VoidRealms video)
https://www.youtube.com/watch?v=JtyCM4BTbYoVideo tutorial explaining Qt signals and slots: events and event handlers
-
Qt: SQLite database with Qt - step by step
https://katecpp.wordpress.com/2015/08/28/sqlite-with-qt/A tutorial explaining how to use Qt to connect to a database and run queries. The author uses SQLite, but you can easily adapt what she does to SQL Server and MySQL
-
Qt: Style Sheets Examples
http://doc.qt.io/qt-5/stylesheet-examples.htmlQt documentation page with many examples of using a style sheet to control the appearance of GUI widgets. Particularly helpful as a reference for Qt-specific CSS selectors.