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();
/**
* 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
/**
* 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.
/**
* Updates the state of the 'Categorized sorting' menu action.
*/
- void slotCategorizedSortingChanged();
+ void slotCategorizedSortingChanged(bool sortCategorized);
/**
* Switches between showing and hiding of hidden marked files
/**
* 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
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;