2014-06-28 20:39:23 +05:30
|
|
|
#include "ScreenshotsPage.h"
|
|
|
|
#include "ui_ScreenshotsPage.h"
|
|
|
|
|
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QMutableListIterator>
|
2014-07-05 16:56:37 +05:30
|
|
|
#include <QMap>
|
|
|
|
#include <QSet>
|
2014-06-28 20:39:23 +05:30
|
|
|
#include <QFileIconProvider>
|
|
|
|
#include <QFileSystemModel>
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include <QLineEdit>
|
2014-07-13 02:32:52 +05:30
|
|
|
#include <QEvent>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QClipboard>
|
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QKeyEvent>
|
2014-06-28 20:39:23 +05:30
|
|
|
|
|
|
|
#include <pathutils.h>
|
2015-03-02 02:50:57 +05:30
|
|
|
#include <MultiMC.h>
|
2014-06-28 20:39:23 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "dialogs/ProgressDialog.h"
|
|
|
|
#include "dialogs/CustomMessageBox.h"
|
|
|
|
#include "net/NetJob.h"
|
|
|
|
#include "screenshots/ImgurUpload.h"
|
|
|
|
#include "screenshots/ImgurAlbumCreation.h"
|
|
|
|
#include "tasks/SequentialTask.h"
|
2014-06-28 20:39:23 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "RWStorage.h"
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-07-05 16:56:37 +05:30
|
|
|
typedef RWStorage<QString, QIcon> SharedIconCache;
|
|
|
|
typedef std::shared_ptr<SharedIconCache> SharedIconCachePtr;
|
|
|
|
|
|
|
|
class ThumbnailingResult : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-07-13 02:32:52 +05:30
|
|
|
public slots:
|
|
|
|
inline void emitResultsReady(const QString &path) { emit resultsReady(path); }
|
|
|
|
inline void emitResultsFailed(const QString &path) { emit resultsFailed(path); }
|
|
|
|
signals:
|
2014-07-05 16:56:37 +05:30
|
|
|
void resultsReady(const QString &path);
|
|
|
|
void resultsFailed(const QString &path);
|
|
|
|
};
|
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
class ThumbnailRunnable : public QRunnable
|
2014-07-05 16:56:37 +05:30
|
|
|
{
|
|
|
|
public:
|
2014-07-13 02:32:52 +05:30
|
|
|
ThumbnailRunnable(QString path, SharedIconCachePtr cache)
|
2014-07-05 16:56:37 +05:30
|
|
|
{
|
|
|
|
m_path = path;
|
|
|
|
m_cache = cache;
|
|
|
|
}
|
|
|
|
void run()
|
|
|
|
{
|
|
|
|
QFileInfo info(m_path);
|
2014-07-13 02:32:52 +05:30
|
|
|
if (info.isDir())
|
2014-07-05 16:56:37 +05:30
|
|
|
return;
|
2014-07-13 02:32:52 +05:30
|
|
|
if ((info.suffix().compare("png", Qt::CaseInsensitive) != 0))
|
2014-07-05 16:56:37 +05:30
|
|
|
return;
|
|
|
|
int tries = 5;
|
2014-07-13 02:32:52 +05:30
|
|
|
while (tries)
|
2014-07-05 16:56:37 +05:30
|
|
|
{
|
2014-07-13 02:32:52 +05:30
|
|
|
if (!m_cache->stale(m_path))
|
2014-07-05 16:56:37 +05:30
|
|
|
return;
|
|
|
|
QImage image(m_path);
|
|
|
|
if (image.isNull())
|
|
|
|
{
|
|
|
|
QThread::msleep(500);
|
|
|
|
tries--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QImage small;
|
2014-07-13 02:32:52 +05:30
|
|
|
if (image.width() > image.height())
|
2014-07-05 16:56:37 +05:30
|
|
|
small = image.scaledToWidth(512).scaledToWidth(256, Qt::SmoothTransformation);
|
|
|
|
else
|
|
|
|
small = image.scaledToHeight(512).scaledToHeight(256, Qt::SmoothTransformation);
|
2014-07-13 02:32:52 +05:30
|
|
|
QPoint offset((256 - small.width()) / 2, (256 - small.height()) / 2);
|
|
|
|
QImage square(QSize(256, 256), QImage::Format_ARGB32);
|
2014-07-05 16:56:37 +05:30
|
|
|
square.fill(Qt::transparent);
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-07-05 16:56:37 +05:30
|
|
|
QPainter painter(&square);
|
|
|
|
painter.drawImage(offset, small);
|
|
|
|
painter.end();
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-07-05 16:56:37 +05:30
|
|
|
QIcon icon(QPixmap::fromImage(square));
|
|
|
|
m_cache->add(m_path, icon);
|
|
|
|
m_resultEmitter.emitResultsReady(m_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_resultEmitter.emitResultsFailed(m_path);
|
|
|
|
}
|
|
|
|
QString m_path;
|
|
|
|
SharedIconCachePtr m_cache;
|
|
|
|
ThumbnailingResult m_resultEmitter;
|
|
|
|
};
|
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
// this is about as elegant and well written as a bag of bricks with scribbles done by insane
|
|
|
|
// asylum patients.
|
2014-06-28 20:39:23 +05:30
|
|
|
class FilterModel : public QIdentityProxyModel
|
|
|
|
{
|
2014-07-05 16:56:37 +05:30
|
|
|
Q_OBJECT
|
2014-06-30 05:32:57 +05:30
|
|
|
public:
|
2014-07-13 02:32:52 +05:30
|
|
|
explicit FilterModel(QObject *parent = 0) : QIdentityProxyModel(parent)
|
2014-07-05 16:56:37 +05:30
|
|
|
{
|
|
|
|
m_thumbnailingPool.setMaxThreadCount(4);
|
|
|
|
m_thumbnailCache = std::make_shared<SharedIconCache>();
|
2015-03-02 02:50:57 +05:30
|
|
|
m_thumbnailCache->add("placeholder", MMC->getThemedIcon("screenshot-placeholder"));
|
2014-07-05 16:56:37 +05:30
|
|
|
connect(&watcher, SIGNAL(fileChanged(QString)), SLOT(fileChanged(QString)));
|
|
|
|
// FIXME: the watched file set is not updated when files are removed
|
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
virtual ~FilterModel() { m_thumbnailingPool.waitForDone(500); }
|
2014-06-28 20:39:23 +05:30
|
|
|
virtual QVariant data(const QModelIndex &proxyIndex, int role = Qt::DisplayRole) const
|
|
|
|
{
|
|
|
|
auto model = sourceModel();
|
2014-06-30 05:32:57 +05:30
|
|
|
if (!model)
|
2014-06-28 20:39:23 +05:30
|
|
|
return QVariant();
|
2014-06-30 05:32:57 +05:30
|
|
|
if (role == Qt::DisplayRole || role == Qt::EditRole)
|
|
|
|
{
|
|
|
|
QVariant result = sourceModel()->data(mapToSource(proxyIndex), role);
|
|
|
|
return result.toString().remove(QRegExp("\\.png$"));
|
|
|
|
}
|
|
|
|
if (role == Qt::DecorationRole)
|
2014-06-28 20:39:23 +05:30
|
|
|
{
|
2014-07-13 02:32:52 +05:30
|
|
|
QVariant result =
|
|
|
|
sourceModel()->data(mapToSource(proxyIndex), QFileSystemModel::FilePathRole);
|
2014-06-30 05:32:57 +05:30
|
|
|
QString filePath = result.toString();
|
2014-07-05 16:56:37 +05:30
|
|
|
QIcon temp;
|
2014-07-13 02:32:52 +05:30
|
|
|
if (!watched.contains(filePath))
|
2014-06-30 05:32:57 +05:30
|
|
|
{
|
2014-07-05 16:56:37 +05:30
|
|
|
((QFileSystemWatcher &)watcher).addPath(filePath);
|
|
|
|
((QSet<QString> &)watched).insert(filePath);
|
2014-06-30 05:32:57 +05:30
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
if (m_thumbnailCache->get(filePath, temp))
|
2014-06-30 05:32:57 +05:30
|
|
|
{
|
2014-07-05 16:56:37 +05:30
|
|
|
return temp;
|
2014-06-30 05:32:57 +05:30
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
if (!m_failed.contains(filePath))
|
2014-07-05 16:56:37 +05:30
|
|
|
{
|
|
|
|
((FilterModel *)this)->thumbnailImage(filePath);
|
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
return (m_thumbnailCache->get("placeholder"));
|
2014-06-28 20:39:23 +05:30
|
|
|
}
|
2014-07-05 16:56:37 +05:30
|
|
|
return sourceModel()->data(mapToSource(proxyIndex), role);
|
2014-06-28 20:39:23 +05:30
|
|
|
}
|
|
|
|
virtual bool setData(const QModelIndex &index, const QVariant &value,
|
2014-06-30 05:32:57 +05:30
|
|
|
int role = Qt::EditRole)
|
2014-06-28 20:39:23 +05:30
|
|
|
{
|
|
|
|
auto model = sourceModel();
|
2014-06-30 05:32:57 +05:30
|
|
|
if (!model)
|
2014-06-28 20:39:23 +05:30
|
|
|
return false;
|
2014-06-30 05:32:57 +05:30
|
|
|
if (role != Qt::EditRole)
|
2014-06-28 20:39:23 +05:30
|
|
|
return false;
|
|
|
|
// FIXME: this is a workaround for a bug in QFileSystemModel, where it doesn't
|
|
|
|
// sort after renames
|
|
|
|
{
|
|
|
|
((QFileSystemModel *)model)->setNameFilterDisables(true);
|
|
|
|
((QFileSystemModel *)model)->setNameFilterDisables(false);
|
|
|
|
}
|
|
|
|
return model->setData(mapToSource(index), value.toString() + ".png", role);
|
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
private:
|
2014-07-05 16:56:37 +05:30
|
|
|
void thumbnailImage(QString path)
|
|
|
|
{
|
|
|
|
auto runnable = new ThumbnailRunnable(path, m_thumbnailCache);
|
2014-07-13 02:32:52 +05:30
|
|
|
connect(&(runnable->m_resultEmitter), SIGNAL(resultsReady(QString)),
|
|
|
|
SLOT(thumbnailReady(QString)));
|
|
|
|
connect(&(runnable->m_resultEmitter), SIGNAL(resultsFailed(QString)),
|
|
|
|
SLOT(thumbnailFailed(QString)));
|
2014-07-05 16:56:37 +05:30
|
|
|
((QThreadPool &)m_thumbnailingPool).start(runnable);
|
|
|
|
}
|
2014-07-13 02:32:52 +05:30
|
|
|
private slots:
|
|
|
|
void thumbnailReady(QString path) { emit layoutChanged(); }
|
|
|
|
void thumbnailFailed(QString path) { m_failed.insert(path); }
|
2014-07-05 16:56:37 +05:30
|
|
|
void fileChanged(QString filepath)
|
|
|
|
{
|
|
|
|
m_thumbnailCache->setStale(filepath);
|
|
|
|
thumbnailImage(filepath);
|
|
|
|
// reinsert the path...
|
|
|
|
watcher.removePath(filepath);
|
|
|
|
watcher.addPath(filepath);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SharedIconCachePtr m_thumbnailCache;
|
|
|
|
QThreadPool m_thumbnailingPool;
|
|
|
|
QSet<QString> m_failed;
|
|
|
|
QSet<QString> watched;
|
|
|
|
QFileSystemWatcher watcher;
|
2014-06-28 20:39:23 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
class CenteredEditingDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
2014-07-13 02:32:52 +05:30
|
|
|
explicit CenteredEditingDelegate(QObject *parent = 0) : QStyledItemDelegate(parent) {}
|
|
|
|
virtual ~CenteredEditingDelegate() {}
|
2014-06-28 20:39:23 +05:30
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
auto widget = QStyledItemDelegate::createEditor(parent, option, index);
|
2014-06-30 05:32:57 +05:30
|
|
|
auto foo = dynamic_cast<QLineEdit *>(widget);
|
|
|
|
if (foo)
|
2014-06-28 20:39:23 +05:30
|
|
|
{
|
|
|
|
foo->setAlignment(Qt::AlignHCenter);
|
|
|
|
foo->setFrame(true);
|
|
|
|
foo->setMaximumWidth(192);
|
|
|
|
}
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
ScreenshotsPage::ScreenshotsPage(QString path, QWidget *parent)
|
2014-06-28 20:39:23 +05:30
|
|
|
: QWidget(parent), ui(new Ui::ScreenshotsPage)
|
|
|
|
{
|
|
|
|
m_model.reset(new QFileSystemModel());
|
|
|
|
m_filterModel.reset(new FilterModel());
|
|
|
|
m_filterModel->setSourceModel(m_model.get());
|
|
|
|
m_model->setFilter(QDir::Files | QDir::Writable | QDir::Readable);
|
|
|
|
m_model->setReadOnly(false);
|
2014-07-05 16:56:37 +05:30
|
|
|
m_model->setNameFilters({"*.png"});
|
|
|
|
m_model->setNameFilterDisables(false);
|
2015-01-28 03:01:07 +05:30
|
|
|
m_folder = path;
|
2014-06-28 20:39:23 +05:30
|
|
|
m_valid = ensureFolderPathExists(m_folder);
|
|
|
|
|
|
|
|
ui->setupUi(this);
|
2014-07-21 03:40:13 +05:30
|
|
|
ui->tabWidget->tabBar()->hide();
|
2014-06-28 20:39:23 +05:30
|
|
|
ui->listView->setModel(m_filterModel.get());
|
|
|
|
ui->listView->setIconSize(QSize(128, 128));
|
2014-07-05 16:56:37 +05:30
|
|
|
ui->listView->setGridSize(QSize(192, 160));
|
2014-06-28 20:39:23 +05:30
|
|
|
ui->listView->setSpacing(9);
|
|
|
|
// ui->listView->setUniformItemSizes(true);
|
|
|
|
ui->listView->setLayoutMode(QListView::Batched);
|
|
|
|
ui->listView->setViewMode(QListView::IconMode);
|
|
|
|
ui->listView->setResizeMode(QListView::Adjust);
|
|
|
|
ui->listView->installEventFilter(this);
|
|
|
|
ui->listView->setEditTriggers(0);
|
|
|
|
ui->listView->setItemDelegate(new CenteredEditingDelegate(this));
|
|
|
|
connect(ui->listView, SIGNAL(activated(QModelIndex)), SLOT(onItemActivated(QModelIndex)));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ScreenshotsPage::eventFilter(QObject *obj, QEvent *evt)
|
|
|
|
{
|
|
|
|
if (obj != ui->listView)
|
|
|
|
return QWidget::eventFilter(obj, evt);
|
|
|
|
if (evt->type() != QEvent::KeyPress)
|
|
|
|
{
|
|
|
|
return QWidget::eventFilter(obj, evt);
|
|
|
|
}
|
|
|
|
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(evt);
|
|
|
|
switch (keyEvent->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
on_deleteBtn_clicked();
|
|
|
|
return true;
|
|
|
|
case Qt::Key_F2:
|
|
|
|
on_renameBtn_clicked();
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return QWidget::eventFilter(obj, evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreenshotsPage::~ScreenshotsPage()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::onItemActivated(QModelIndex index)
|
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
auto info = m_model->fileInfo(index);
|
|
|
|
QString fileName = info.absoluteFilePath();
|
|
|
|
openFileInDefaultProgram(info.absoluteFilePath());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::on_viewFolderBtn_clicked()
|
|
|
|
{
|
|
|
|
openDirInDefaultProgram(m_folder, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::on_uploadBtn_clicked()
|
|
|
|
{
|
|
|
|
auto selection = ui->listView->selectionModel()->selectedIndexes();
|
|
|
|
if (selection.isEmpty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
QList<ScreenshotPtr> uploaded;
|
2015-04-05 18:20:58 +05:30
|
|
|
auto job = NetJobPtr(new NetJob("Screenshot Upload"));
|
2014-06-28 20:39:23 +05:30
|
|
|
for (auto item : selection)
|
|
|
|
{
|
|
|
|
auto info = m_model->fileInfo(item);
|
|
|
|
auto screenshot = std::make_shared<ScreenShot>(info);
|
|
|
|
uploaded.push_back(screenshot);
|
|
|
|
job->addNetAction(ImgurUpload::make(screenshot));
|
|
|
|
}
|
|
|
|
SequentialTask task;
|
2015-04-05 18:20:58 +05:30
|
|
|
auto albumTask = NetJobPtr(new NetJob("Imgur Album Creation"));
|
2014-06-28 20:39:23 +05:30
|
|
|
auto imgurAlbum = ImgurAlbumCreation::make(uploaded);
|
|
|
|
albumTask->addNetAction(imgurAlbum);
|
2015-04-05 18:20:58 +05:30
|
|
|
task.addTask(job.unwrap());
|
|
|
|
task.addTask(albumTask.unwrap());
|
2014-06-28 20:39:23 +05:30
|
|
|
ProgressDialog prog(this);
|
2015-09-26 07:34:09 +05:30
|
|
|
if (prog.execWithTask(&task) != QDialog::Accepted)
|
2014-06-28 20:39:23 +05:30
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(this, tr("Failed to upload screenshots!"),
|
|
|
|
tr("Unknown error"), QMessageBox::Warning)->exec();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-07 03:32:04 +05:30
|
|
|
auto link = QString("https://imgur.com/a/%1").arg(imgurAlbum->id());
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
clipboard->setText(link);
|
|
|
|
QDesktopServices::openUrl(link);
|
2014-06-28 20:39:23 +05:30
|
|
|
CustomMessageBox::selectable(
|
|
|
|
this, tr("Upload finished"),
|
2014-07-13 02:32:52 +05:30
|
|
|
tr("The <a href=\"%1\">link to the uploaded album</a> has been opened in the "
|
|
|
|
"default browser and placed in your clipboard.<br/>Delete hash: %2 (save "
|
2014-06-28 20:39:23 +05:30
|
|
|
"this if you want to be able to edit/delete the album)")
|
2014-07-07 03:32:04 +05:30
|
|
|
.arg(link, imgurAlbum->deleteHash()),
|
2014-06-28 20:39:23 +05:30
|
|
|
QMessageBox::Information)->exec();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::on_deleteBtn_clicked()
|
|
|
|
{
|
|
|
|
auto mbox = CustomMessageBox::selectable(
|
|
|
|
this, tr("Are you sure?"), tr("This will delete all selected screenshots."),
|
|
|
|
QMessageBox::Warning, QMessageBox::Yes | QMessageBox::No);
|
|
|
|
std::unique_ptr<QMessageBox> box(mbox);
|
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
if (box->exec() != QMessageBox::Yes)
|
2014-06-28 20:39:23 +05:30
|
|
|
return;
|
|
|
|
|
|
|
|
auto selected = ui->listView->selectionModel()->selectedIndexes();
|
2014-06-30 05:32:57 +05:30
|
|
|
for (auto item : selected)
|
2014-06-28 20:39:23 +05:30
|
|
|
{
|
|
|
|
m_model->remove(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::on_renameBtn_clicked()
|
|
|
|
{
|
|
|
|
auto selection = ui->listView->selectionModel()->selectedIndexes();
|
|
|
|
if (selection.isEmpty())
|
|
|
|
return;
|
|
|
|
ui->listView->edit(selection[0]);
|
|
|
|
// TODO: mass renaming
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotsPage::opened()
|
|
|
|
{
|
|
|
|
if (m_valid)
|
|
|
|
{
|
|
|
|
QString path = QDir(m_folder).absolutePath();
|
|
|
|
m_model->setRootPath(path);
|
|
|
|
ui->listView->setRootIndex(m_filterModel->mapFromSource(m_model->index(path)));
|
|
|
|
}
|
|
|
|
}
|
2014-07-05 16:56:37 +05:30
|
|
|
|
|
|
|
#include "ScreenshotsPage.moc"
|