summaryrefslogtreecommitdiffstats
path: root/collectionwidget.h
Commit message (Collapse)AuthorAgeFilesLines
* Always show an existing directoryArno2019-01-191-0/+3
| | | | | | | | | | When the current directory was deleted otherwhere while in CollectionFoldersView, a refresh left the user with no choice at all. Set mCurrentFolder to default (QSetting->folderdir) and say so in the status bar. For the latter add a signal to CollectionWidget and connect it to PlayerWidget::message.
* Expand the level when filteringArno2018-05-111-0/+1
| | | | E.g., expand the artist to albums.
* Add customActions to CollectionWidgetArno2018-02-191-1/+3
| | | | | This is supposed to be an easy way to add custom QActions to the context menu. The idea seems sound, but let's see how it turns out...
* Re-add QActions "Add to playlist (and clear)"Arno2018-02-171-5/+4
|
* Make filtering usefulArno2018-02-171-2/+0
| | | | | Add a custom QSortFilterProxyModel which filterAcceptsRow() returns true if the uppermost parent matches the filter RegExp.
* Re-Add filterArno2018-02-171-0/+2
| | | | | It's a replacement for search. It isn't very useful yet, since it doesn't show the children yet :)
* Fix sorting in CollectionWidgetsArno2018-02-171-1/+3
| | | | Sort everything ascending, except CollectionDatesView.
* Introduce new class CollectionWidgetArno2018-02-171-0/+35
It's intended to be the base class/widget for different views of the collection, eg. Artists or Songs. Each collection view should have its own widget to make it easier to keep the state when switching between collection views. Let's see how it turns out :)