┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincolumnview.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2007-09-25 13:53:08 +0000
committerPeter Penz <[email protected]>2007-09-25 13:53:08 +0000
commit41f8286a568f01bc2723eb74e763556b4c397546 (patch)
tree4ecb9bd1c530dc7ce27b64c2eaee1a1881a2479e /src/dolphincolumnview.h
parent1db9b6c3c4d494e055696e5d96629f33ea109abc (diff)
assure that "Select All" and "Invert Selection" only operate on the active column of the column-view instead of selecting the whole hierarchy of the model
svn path=/trunk/KDE/kdebase/apps/; revision=716885
Diffstat (limited to 'src/dolphincolumnview.h')
-rw-r--r--src/dolphincolumnview.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dolphincolumnview.h b/src/dolphincolumnview.h
index 75d07ce07..639ccec32 100644
--- a/src/dolphincolumnview.h
+++ b/src/dolphincolumnview.h
@@ -57,6 +57,9 @@ public:
*/
void reload();
+ /** Inverts the selection of the currently active column. */
+ void invertSelection();
+
public slots:
/**
* Shows the column which represents the URL \a url. If the column
@@ -64,6 +67,9 @@ public slots:
*/
void showColumn(const KUrl& url);
+ /** @see QAbstractItemView::selectAll() */
+ virtual void selectAll();
+
protected:
virtual bool isIndexHidden(const QModelIndex& index) const;
virtual QModelIndex moveCursor(CursorAction cursorAction, Qt::KeyboardModifiers modifiers);