2014-05-30 17:38:27 +00:00
|
|
|
#ifndef DIVEPICTUREWIDGET_H
|
|
|
|
#define DIVEPICTUREWIDGET_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QListView>
|
|
|
|
#include <QThread>
|
2015-03-10 17:22:34 +00:00
|
|
|
#include <QFuture>
|
2015-03-02 15:18:16 +00:00
|
|
|
#include <QNetworkReply>
|
2014-05-30 17:38:27 +00:00
|
|
|
|
2015-03-02 15:18:16 +00:00
|
|
|
class ImageDownloader : public QObject {
|
|
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
|
|
ImageDownloader(struct picture *picture);
|
|
|
|
void load();
|
|
|
|
private:
|
|
|
|
struct picture *picture;
|
|
|
|
QNetworkAccessManager manager;
|
|
|
|
private slots:
|
|
|
|
void saveImage(QNetworkReply *reply);
|
|
|
|
};
|
2015-02-26 13:39:42 +00:00
|
|
|
|
2014-06-03 23:48:59 +00:00
|
|
|
class DivePictureWidget : public QListView {
|
2014-05-30 17:38:27 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-05-30 17:50:49 +00:00
|
|
|
DivePictureWidget(QWidget *parent);
|
2014-06-27 12:16:55 +00:00
|
|
|
signals:
|
|
|
|
void photoDoubleClicked(const QString filePath);
|
|
|
|
private
|
|
|
|
slots:
|
|
|
|
void doubleClicked(const QModelIndex &index);
|
2014-05-30 17:38:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DivePictureThumbnailThread : public QThread {
|
|
|
|
};
|
|
|
|
|
2014-06-27 12:16:55 +00:00
|
|
|
#endif
|