summaryrefslogtreecommitdiffstats
path: root/playerwidget.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Turned IndexerWidget into a dialogArno2017-02-261-0/+10
| | | | and got rid of the TabWidget!
* Artwork and GUI modificationsArno2017-02-261-2/+39
| | | | | | | | Added the necessary QActions. Except the ConfigAction they don't do anything yet, but they have nice icons :) I got rid of the menuBar(tm) and added a QToolBar to the center widget instead.
* Spread ineditable(false)Arno2017-02-261-0/+6
| | | | where needed
* Remove proxyArno2017-02-251-1/+0
| | | | Didn't work out...
* Implement filteringArno2017-02-251-15/+83
| | | | | | Well, as it turns out, QSortFilterProxyModel isn't the weapon of choice for this. Implement it by creating a separate model which is populated by SQL-Queries.
* Rethink GUIArno2017-02-251-36/+24
| | | | | | | | | | While figuring out how to populate the album view, I realized that I don't want to view my music by albums, only by artist, maybe by genre... So I removed the QComboBox for the different sort orders and concentrated on the filter, which is a good thing (tm). Just make the filter find anything you need. Name/Title is already implemented. Have to think about genre/year...
* Change font to courierArno2017-02-251-3/+6
| | | | ...again
* Fix IndexerArno2017-02-251-3/+4
| | | | | | Well, as it turns out, an artist is not married to an album, but to a song, and so is the genre. Adjust the database layout, indexer and view accordingly.
* Populate albumsArno2017-02-251-2/+50
|
* Implement basic player layoutArno2017-02-251-0/+125
Does nothing yet, just for show :)