┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinviewactionhandler.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2011-07-30 20:13:09 +0200
committerPeter Penz <[email protected]>2011-07-30 20:13:41 +0200
commitf23e9496f303995557b744c03178f5dbd9b35016 (patch)
tree1139c4340ac173718d1fa847e0124d6175781fd9 /src/views/dolphinviewactionhandler.h
parent69e4007e5e330f2ca87c0176a186967b5ca156e8 (diff)
Merged very early alpha-version of Dolphin 2.0
Dolphin 2.0 will get a new view-engine with the following improvements: - Better performance - Animated transitions - No clipped filenames due to dynamic item-sizes - Grouping support for all view-modes - Non-rectangular selection areas - Simplified code for better maintenance More details will be provided in a blog-entry during the next days. Please note that the code is in a very early alpha-stage and although the most tricky parts have been implemented already very basic things like drag and drop or selections have not been pushed yet. Those things are rather trivial to implement but this still will take some time.
Diffstat (limited to 'src/views/dolphinviewactionhandler.h')
-rw-r--r--src/views/dolphinviewactionhandler.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/views/dolphinviewactionhandler.h b/src/views/dolphinviewactionhandler.h
index 72e768375..4e5a0d32f 100644
--- a/src/views/dolphinviewactionhandler.h
+++ b/src/views/dolphinviewactionhandler.h
@@ -124,7 +124,7 @@ private Q_SLOTS:
void togglePreview(bool);
/** Updates the state of the 'Show preview' menu action. */
- void slotShowPreviewChanged();
+ void slotPreviewsShownChanged(bool shown);
/** Increases the size of the current set view mode. */
void zoomIn();
@@ -156,7 +156,7 @@ private Q_SLOTS:
/**
* Updates the state of the 'Zoom In' and 'Zoom Out' actions.
*/
- void slotZoomLevelChanged(int level);
+ void slotZoomLevelChanged(int current, int previous);
/**
* Switches on or off the displaying of additional information
@@ -172,7 +172,8 @@ private Q_SLOTS:
/**
* Updates the state of the 'Additional Information' actions.
*/
- void slotAdditionalInfoChanged();
+ void slotAdditionalInfoListChanged(const QList<DolphinView::AdditionalInfo>& current,
+ const QList<DolphinView::AdditionalInfo>& previous);
/**
* Switches between sorting by categories or not.
@@ -182,7 +183,7 @@ private Q_SLOTS:
/**
* Updates the state of the 'Categorized sorting' menu action.
*/
- void slotCategorizedSortingChanged();
+ void slotCategorizedSortingChanged(bool sortCategorized);
/**
* Switches between showing and hiding of hidden marked files
@@ -192,7 +193,7 @@ private Q_SLOTS:
/**
* Updates the state of the 'Show hidden files' menu action.
*/
- void slotShowHiddenFilesChanged();
+ void slotHiddenFilesShownChanged(bool shown);
/**
* Opens the view properties dialog, which allows to modify the properties
@@ -234,16 +235,16 @@ private:
KToggleAction* iconsModeAction();
/**
- * Returns the "switch to details mode" action.
+ * Returns the "switch to compact mode" action.
* Helper method for createActions();
*/
- KToggleAction* detailsModeAction();
+ KToggleAction* compactModeAction();
/**
- * Returns the "switch to columns mode" action.
+ * Returns the "switch to details mode" action.
* Helper method for createActions();
*/
- KToggleAction* columnsModeAction();
+ KToggleAction* detailsModeAction();
KActionCollection* m_actionCollection;
DolphinView* m_currentView;