2014-05-30 17:38:27 +00:00
|
|
|
#include "divepicturewidget.h"
|
2014-05-30 18:16:00 +00:00
|
|
|
#include <dive.h>
|
2014-05-31 03:42:54 +00:00
|
|
|
#include <qtconcurrentmap.h>
|
2014-05-30 17:38:27 +00:00
|
|
|
|
|
|
|
void DivePictureDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
}
|
|
|
|
|
2014-05-30 18:16:00 +00:00
|
|
|
DivePictureModel::DivePictureModel(QObject *parent): QAbstractTableModel(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-05-31 03:42:54 +00:00
|
|
|
typedef QPair<QString, QPixmap> SPixmap;
|
|
|
|
typedef QList<SPixmap> SPixmapList;
|
|
|
|
|
2014-06-02 21:41:19 +00:00
|
|
|
SPixmap scaleImages(const QString& s) {
|
2014-05-31 03:42:54 +00:00
|
|
|
QPixmap p = QPixmap(s).scaled(128,128, Qt::KeepAspectRatio);
|
|
|
|
SPixmap ret;
|
|
|
|
ret.first = s;
|
|
|
|
ret.second = p;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-05-30 18:16:00 +00:00
|
|
|
void DivePictureModel::updateDivePictures(int divenr)
|
|
|
|
{
|
2014-06-02 21:41:19 +00:00
|
|
|
if (numberOfPictures != 0) {
|
|
|
|
beginRemoveRows(QModelIndex(), 0, numberOfPictures-1);
|
|
|
|
numberOfPictures = 0;
|
|
|
|
endRemoveRows();
|
|
|
|
}
|
2014-05-30 18:16:00 +00:00
|
|
|
|
|
|
|
struct dive *d = get_dive(divenr);
|
2014-06-02 21:41:19 +00:00
|
|
|
int numberOfPictures = dive_get_picture_count(d);
|
|
|
|
if (!d || numberOfPictures == 0) {
|
2014-05-30 18:16:00 +00:00
|
|
|
return;
|
2014-05-31 03:42:54 +00:00
|
|
|
}
|
2014-06-02 21:41:19 +00:00
|
|
|
|
|
|
|
QStringList pictures;
|
|
|
|
FOR_EACH_PICTURE( d ) {
|
|
|
|
pictures.push_back(QString(picture->filename));
|
2014-05-30 18:16:00 +00:00
|
|
|
}
|
|
|
|
|
2014-06-02 21:41:19 +00:00
|
|
|
stringPixmapCache.clear();
|
2014-05-31 03:42:54 +00:00
|
|
|
SPixmapList retList = QtConcurrent::blockingMapped<SPixmapList>( pictures, scaleImages);
|
|
|
|
Q_FOREACH(const SPixmap & pixmap, retList)
|
|
|
|
stringPixmapCache[pixmap.first] = pixmap.second;
|
|
|
|
|
2014-05-30 18:16:00 +00:00
|
|
|
beginInsertRows(QModelIndex(), 0, numberOfPictures-1);
|
|
|
|
endInsertRows();
|
|
|
|
}
|
|
|
|
|
2014-05-30 17:38:27 +00:00
|
|
|
int DivePictureModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant DivePictureModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int DivePictureModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
2014-05-30 18:16:00 +00:00
|
|
|
return numberOfPictures;
|
2014-05-30 17:38:27 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 17:50:49 +00:00
|
|
|
DivePictureWidget::DivePictureWidget(QWidget *parent): QListView(parent)
|
2014-05-30 17:38:27 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|