diff options
| author | Nate Graham <[email protected]> | 2021-08-05 08:34:04 -0600 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2021-08-05 08:34:04 -0600 |
| commit | 3e95a6cccc76d61473a2815457beefaaae62ec7c (patch) | |
| tree | 8af9529b3953a67be9b7e49b230e627fef391666 /src/views/dolphinview.h | |
| parent | 8f093e6b74d17ad4025740df3aa917d9c1e44a29 (diff) | |
| parent | fd2203bb3925edb5d657d49a706e26ea736362d2 (diff) | |
Merge branch 'release/21.08'
Diffstat (limited to 'src/views/dolphinview.h')
| -rw-r--r-- | src/views/dolphinview.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index e4d779830..75c9dd985 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -206,6 +206,10 @@ public: void setSortFoldersFirst(bool foldersFirst); bool sortFoldersFirst() const; + /** Sets a separate sorting with hidden files and folders last (true) or not (false). */ + void setSortHiddenLast(bool hiddenLast); + bool sortHiddenLast() const; + /** Sets the additional information which should be shown for the items. */ void setVisibleRoles(const QList<QByteArray>& roles); @@ -470,6 +474,11 @@ Q_SIGNALS: */ void sortFoldersFirstChanged(bool foldersFirst); + /** + * Is emitted if the sorting of hidden files has been changed. + */ + void sortHiddenLastChanged(bool hiddenLast); + /** Is emitted if the additional information shown for this view has been changed. */ void visibleRolesChanged(const QList<QByteArray>& current, const QList<QByteArray>& previous); @@ -680,6 +689,12 @@ private Q_SLOTS: void updateSortFoldersFirst(bool foldersFirst); /** + * Updates the view properties of the current URL to the + * sorting of hidden files given by \a hiddenLast. + */ + void updateSortHiddenLast(bool hiddenLast); + + /** * Indicates in the status bar that the delete operation * of the job \a job has been finished. */ |
