┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-12-17 13:47:45 +0000
committerPeter Penz <[email protected]>2006-12-17 13:47:45 +0000
commit8b240249dbc3ea965cbcb4d311aeba5c30e85127 (patch)
tree49d90759d5903189f17549c17b6f9bff213195f9 /src/dolphinmainwindow.h
parentc28c72619cef1edaf6ca732d293b321f5ac220e5 (diff)
Use KonqMimeData for the cut- and copy-operation instead of using bool property inside DolphinMainWindow. This assures that cut- and copy-operations also work within multiple Dolphin main windows.
svn path=/trunk/playground/utils/dolphin/; revision=614351
Diffstat (limited to 'src/dolphinmainwindow.h')
-rw-r--r--src/dolphinmainwindow.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h
index e61e1775e..b9a9db3d8 100644
--- a/src/dolphinmainwindow.h
+++ b/src/dolphinmainwindow.h
@@ -94,19 +94,11 @@ public:
const KUrl& destination);
/**
- * Returns 'true', if the clipboard contains data
- * which has been cutted by the Cut action (Ctrl + X).
- */
- bool clipboardContainsCutData() const { return m_clipboardContainsCutData; }
-
- /**
* Returns the list of actions which are part of the file group
* of the 'Create New...' sub menu. Usually the list contains actions
* for creating folders, text files, HTML files etc.
*/
QLinkedList<QAction*> fileGroupActions() const { return m_fileGroupActions; }
- //QLinkedList<QAction*>& linkGroupActions() const { return m_linkGroupActions; }
- //QLinkedList<QAction*>& linkToDeviceActions() const { return m_linkToDeviceActions; }
/**
* Refreshs the views of the main window by recreating them dependent from
@@ -411,9 +403,6 @@ private:
};
DolphinView* m_view[SecondaryIdx + 1];
- /// If set to true, the clipboard contains data which should be cutted after pasting.
- bool m_clipboardContainsCutData;
-
/**
* Asynchronous operations like 'Move' and 'Copy' may only be added as undo
* operation after they have been finished successfully. When an asynchronous
@@ -442,11 +431,6 @@ private:
QLinkedList<QAction*> m_fileGroupActions;
KSortableList<CreateFileEntry,QString> m_createFileTemplates;
-
- // TODO: not used yet. See documentation of DolphinMainWindow::linkGroupActions()
- // and DolphinMainWindow::linkToDeviceActions() in for details.
- //QLinkedList<QAction*> m_linkGroupActions;
- //QLinkedList<QAction*> m_linkToDeviceActions;
};
#endif // _DOLPHIN_H_