Qt

  • Introduction to Qt (VoidRealms Video)
    http://www.youtube.com/watch?v=6KtOzh0StTc

    YouTube 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
    http://jpgrady28.azurewebsites.net/Home/Docs/185

    Brief 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
    http://jpgrady28.azurewebsites.net/Home/Docs/184

    Tutorial 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
    http://jpgrady28.azurewebsites.net/Home/Docs/183

    Brief tutorial showing you to create a local Git repository for an existing Qt project.

  • Qt & Git: How to Configure Git
    http://jpgrady28.azurewebsites.net/Home/Docs/182

    Brief 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-oss

    Download the latest version of Qt here. Choose the Online installer that matches your OS.

  • Qt Install (Open Source)
    http://jpgrady28.azurewebsites.net/Home/Docs/134

    Walks 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=W3EWVLPAoeA

    Short 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=tKdfpA74HYY

    Video 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=zwCjcZD7GlU

    Video 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_QPushButton

    Tutorial and quick reference for making and using basic buttons in Qt.

  • Qt: QRadioButton (VoidRealms video)
    https://www.youtube.com/watch?v=gDaeZtjitc8

    Short 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=n9ekbNw3xjY

    Video tutorial demonstrating how to use QStringList objects in your Qt GUI application.

  • Qt: QTimer Class Tutorial
    http://www.bogotobogo.com/Qt/Qt5_QTimer.php

    Tutorial 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_Tutorial

    A step-by-step tutorial introduction to Qt programming using Qt Creator.

  • Qt: Calculator Form Example
    http://doc.qt.io/qt-5/qtdesigner-calculatorform-example.html

    Qt sample code for a very simple calculator GUI application

  • Qt: Converting Text and Numbers to and from QString
    http://jpgrady28.azurewebsites.net/Home/Docs/176

    Reference that provides several examples of conversions among QString objects, standard strings, and numbers. Also provides an example of how to format numbers using QLocale.

  • Qt: Model/View Tutorial
    https://doc.qt.io/qt-5/modelview.html

    An 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=JtyCM4BTbYo

    Video 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.html

    Qt 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.