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