fix: should clear gallery when paste image
This commit is contained in:
parent
f49ed645fc
commit
6b0e4b6767
@ -113,6 +113,10 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
connect(quitAppShorucut, &QShortcut::activated,
|
connect(quitAppShorucut, &QShortcut::activated,
|
||||||
std::bind(&MainWindow::quitAppAction, this, false));
|
std::bind(&MainWindow::quitAppAction, this, false));
|
||||||
|
|
||||||
|
QShortcut * quitAppShorucut2 = new QShortcut(QKeySequence(Qt::Key_Escape), this);
|
||||||
|
connect(quitAppShorucut2, &QShortcut::activated,
|
||||||
|
std::bind(&MainWindow::quitAppAction, this, false));
|
||||||
|
|
||||||
QShortcut * prevPictureShorucut = new QShortcut(QKeySequence(Qt::Key_PageUp), this);
|
QShortcut * prevPictureShorucut = new QShortcut(QKeySequence(Qt::Key_PageUp), this);
|
||||||
connect(prevPictureShorucut, &QShortcut::activated,
|
connect(prevPictureShorucut, &QShortcut::activated,
|
||||||
this, &MainWindow::galleryPrev);
|
this, &MainWindow::galleryPrev);
|
||||||
@ -185,6 +189,12 @@ QUrl MainWindow::currentImageFileUrl() const
|
|||||||
return QUrl();
|
return QUrl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::clearGallery()
|
||||||
|
{
|
||||||
|
m_currentFileIndex = -1;
|
||||||
|
m_files.clear();
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::loadGalleryBySingleLocalFile(const QString &path)
|
void MainWindow::loadGalleryBySingleLocalFile(const QString &path)
|
||||||
{
|
{
|
||||||
QFileInfo info(path);
|
QFileInfo info(path);
|
||||||
@ -198,8 +208,7 @@ void MainWindow::loadGalleryBySingleLocalFile(const QString &path)
|
|||||||
|
|
||||||
std::sort(entryList.begin(), entryList.end(), collator);
|
std::sort(entryList.begin(), entryList.end(), collator);
|
||||||
|
|
||||||
m_currentFileIndex = -1;
|
clearGallery();
|
||||||
m_files.clear();
|
|
||||||
|
|
||||||
for (int i = 0; i < entryList.count(); i++) {
|
for (int i = 0; i < entryList.count(); i++) {
|
||||||
const QString & oneEntry = entryList.at(i);
|
const QString & oneEntry = entryList.at(i);
|
||||||
@ -357,6 +366,7 @@ void MainWindow::contextMenuEvent(QContextMenuEvent *event)
|
|||||||
|
|
||||||
QAction * pasteImage = new QAction(tr("&Paste Image"));
|
QAction * pasteImage = new QAction(tr("&Paste Image"));
|
||||||
connect(pasteImage, &QAction::triggered, this, [ = ](){
|
connect(pasteImage, &QAction::triggered, this, [ = ](){
|
||||||
|
clearGallery();
|
||||||
m_graphicsView->showImage(clipboardImage);
|
m_graphicsView->showImage(clipboardImage);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -27,6 +27,7 @@ public:
|
|||||||
void adjustWindowSizeBySceneRect();
|
void adjustWindowSizeBySceneRect();
|
||||||
QUrl currentImageFileUrl() const;
|
QUrl currentImageFileUrl() const;
|
||||||
|
|
||||||
|
void clearGallery();
|
||||||
void loadGalleryBySingleLocalFile(const QString &path);
|
void loadGalleryBySingleLocalFile(const QString &path);
|
||||||
void galleryPrev();
|
void galleryPrev();
|
||||||
void galleryNext();
|
void galleryNext();
|
||||||
|
Loading…
Reference in New Issue
Block a user