Qt: Threads, GUI and tools

Karel Kubíček

21.10.2014

Qt library

Threads

Why to use threads?

Threads

Basic concepts

Threads

Advanced things

Qt Threads

Possibilities

Qt Threads

QThread

Qt Threads

QThreadPool and QRunnable

Qt Threads

Qt Concurrent

Qt Threads

Synchronization

Synchronization - events

Qt Threads

Signals

GUI

Possibilities

GUI

Manual way

GUI

#include <QCoreApplication>

#include "client.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    Client myClient;
    myClient.show();

    return app.exec();
}

Questions?