![]() |
QtConcurrent
Trial to use Doxygen to generate UML class diagram of QtConcurrent module.
|
Classes | |
struct | ImageTransform |
[10] More... | |
struct | Scaled |
[13] More... | |
Functions | |
U | function (const T &t) |
[0] More... | |
QImage | scaled (const QImage &image) |
[0] More... | |
U | function (T &t) |
[1] More... | |
void | scale (QImage &image) |
[2] More... | |
V | function (T &result, const U &intermediate) void addToCollage(QImage &collage |
[3] More... | |
p | drawImage (offset, thumbnail) |
void | computeAverage (int &average, int length) |
[8] More... | |
int | colorDistribution (const QImage &string) |
Variables | |
QList< QImage > | images = ... |
[5] More... | |
QFuture< QImage > | thumbnails = QtConcurrent::mapped(images, scaled) |
QFuture< void > | future = QtConcurrent::map(images, scale) |
V const QImage & | thumbnail |
QFuture< QImage > | collage = QtConcurrent::mappedReduced(images, scaled, addToCollage) |
QStringList | strings = ... |
[7] More... | |
QFuture< void > | squeezedStrings = QtConcurrent::map(strings, &QString::squeeze) |
QFuture< QImage > | bgrImages = QtConcurrent::mapped(images, &QImage::rgbSwapped) |
QFuture< QSet< int > > | wordLengths = QtConcurrent::mappedReduced(strings, &QString::length, &QSet<int>::insert) |
QFuture< int > | averageWordLength = QtConcurrent::mappedReduced(strings, &QString::length, computeAverage) |
QFuture< QSet< int > > | totalColorDistribution = QtConcurrent::mappedReduced(images, colorDistribution, QSet<int>::insert) |
QFuture< QImage > | thumbNails |
std::function< QImage(const QImage &)> | scale |
int colorDistribution | ( | const QImage & | string | ) |
p drawImage | ( | offset | , |
thumbnail | |||
) |
U function | ( | const T & | t | ) |
[0]
U function | ( | T & | t | ) |
[1]
[2]
V function | ( | T & | result, |
const U & | intermediate | ||
) | & |
[3]
[4] [4] [5]
void scale | ( | QImage & | image | ) |
[2]
[3]
QImage scaled | ( | const QImage & | image | ) |
[0]
[1]
QFuture<int> averageWordLength = QtConcurrent::mappedReduced(strings, &QString::length, computeAverage) |
QFuture<QImage> bgrImages = QtConcurrent::mapped(images, &QImage::rgbSwapped) |
QImage collage = QtConcurrent::mappedReduced(images, scaled, addToCollage) |
QList<QImage> future = QtConcurrent::map(images, scale) |
QList<QImage> images = ... |
[5]
[11]
[6]
[7]
[13]
std::function<QImage(const QImage &)> scale |
QFuture<void> squeezedStrings = QtConcurrent::map(strings, &QString::squeeze) |
QStringList strings = ... |
[7]
[8]
V const QImage& thumbnail |
QFuture< QImage > thumbnails = QtConcurrent::mapped(images, scaled) |
QFuture<QImage> thumbNails |
QFuture<QSet<int> > totalColorDistribution = QtConcurrent::mappedReduced(images, colorDistribution, QSet<int>::insert) |
QFuture<QSet<int> > wordLengths = QtConcurrent::mappedReduced(strings, &QString::length, &QSet<int>::insert) |