summaryrefslogtreecommitdiffstats
path: root/collectionwidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* GUI changesArno2018-11-241-11/+14
| | | | | | Play nice with themes, especially dark ones. Most likely the light icons will look crappy with a light theme, but theming support is another thing entirely. Right now I'm using a dark theme, so this is it...
* Expand the level when filteringArno2018-05-111-1/+13
| | | | E.g., expand the artist to albums.
* Add customActions to CollectionWidgetArno2018-02-191-0/+1
| | | | | 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-1/+2
|
* Make filtering usefulArno2018-02-171-5/+6
| | | | | Add a custom QSortFilterProxyModel which filterAcceptsRow() returns true if the uppermost parent matches the filter RegExp.
* Re-Add filterArno2018-02-171-1/+20
| | | | | 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/+5
| | | | Sort everything ascending, except CollectionDatesView.
* Restore alternating row colorsArno2018-02-171-0/+1
|
* Introduce new class CollectionWidgetArno2018-02-171-0/+18
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 :)