┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index b9a9db3d8..fcfab60f0 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -358,6 +358,24 @@ private slots:
/** Open a new main window. */
void openNewMainWindow();
+ /**
+ * Moves the items indicated by m_droppedUrls to the URL
+ * m_destination.
+ */
+ void moveDroppedItems();
+
+ /**
+ * Copies the items indicated by m_droppedUrls to the URL
+ * m_destination.
+ */
+ void copyDroppedItems();
+
+ /**
+ * Links the items indicated by m_droppedUrls to the URL
+ * m_destination.
+ */
+ void linkDroppedItems();
+
private:
DolphinMainWindow();
void init();
@@ -371,7 +389,6 @@ private:
void updateEditActions();
void updateViewActions();
void updateGoActions();
- void updateViewProperties(const KUrl::List& urls);
void copyUrls(const KUrl::List& source, const KUrl& dest);
void moveUrls(const KUrl::List& source, const KUrl& dest);
void addPendingUndoJob(KIO::Job* job,
@@ -392,6 +409,9 @@ private:
QSplitter* m_splitter;
DolphinView* m_activeView;
+ KUrl m_dropDestination;
+ KUrl::List m_droppedUrls;
+
/**
* DolphinMainWindowsupports only one or two views, which
* are handled internally as primary and secondary view.