diff options
author | Arno <arno@disconnect.de> | 2018-02-17 07:03:44 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-02-17 07:03:44 +0100 |
commit | 3095a50fe57b9ccefca133106651f3bc2c3d7895 (patch) | |
tree | e8dadeb57be1a78f39592cda4307536303fc18dd /collectionfavoritesview.h | |
parent | ca1d008ebaa5a28284cdba97046b48be421ccacd (diff) | |
download | BeetPlayer-3095a50fe57b9ccefca133106651f3bc2c3d7895.tar.gz BeetPlayer-3095a50fe57b9ccefca133106651f3bc2c3d7895.tar.bz2 BeetPlayer-3095a50fe57b9ccefca133106651f3bc2c3d7895.zip |
New class: CollectionFavoritesView
Basically the same as populateByFavorites, just wrapped in a shiny, new
CollectionWidget.
Diffstat (limited to 'collectionfavoritesview.h')
-rw-r--r-- | collectionfavoritesview.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/collectionfavoritesview.h b/collectionfavoritesview.h new file mode 100644 index 0000000..f7722c8 --- /dev/null +++ b/collectionfavoritesview.h @@ -0,0 +1,14 @@ +#ifndef COLLECTIONFAVORITESVIEW_H +#define COLLECTIONFAVORITESVIEW_H + +#include "collectionwidget.h" + +class CollectionFavoritesView : public CollectionWidget { + public: + CollectionFavoritesView(QWidget *parent = nullptr); + + public slots: + virtual void populate(); +}; + +#endif // COLLECTIONFAVORITESVIEW_H |