┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/dolphinview.h')
-rw-r--r--src/views/dolphinview.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h
index 911103b5d..2df1cf9e4 100644
--- a/src/views/dolphinview.h
+++ b/src/views/dolphinview.h
@@ -577,6 +577,7 @@ private slots:
void slotModelChanged(KItemModelBase* current, KItemModelBase* previous);
void slotMouseButtonPressed(int itemIndex, Qt::MouseButtons buttons);
void slotRenameDialogRenamingFinished(const QList<QUrl>& urls);
+ void slotSelectedItemTextPressed(int index);
/*
* Is called when new items get pasted or dropped.
@@ -707,6 +708,8 @@ private slots:
*/
void calculateItemCount(int& fileCount, int& folderCount, KIO::filesize_t& totalFileSize) const;
+ void slotTwoClicksRenamingTimerTimeout();
+
private:
void loadDirectory(const QUrl& url, bool reload = false);
@@ -769,6 +772,8 @@ private:
*/
void forceUrlsSelection(const QUrl& current, const QList<QUrl>& selected);
+ void abortTwoClicksRenaming();
+
private:
void updatePalette();
@@ -804,6 +809,9 @@ private:
VersionControlObserver* m_versionControlObserver;
+ QTimer* m_twoClicksRenamingTimer;
+ QUrl m_twoClicksRenamingItemUrl;
+
// For unit tests
friend class TestBase;
friend class DolphinDetailsViewTest;