summaryrefslogtreecommitdiffstats
path: root/playerwidget.h
Commit message (Collapse)AuthorAgeFilesLines
* Implement previous and nextArno2017-02-271-0/+4
|
* Implement basic play controlsArno2017-02-271-1/+8
| | | | | Actually make play, pause and stop do something. Also implement mute and volume control.
* Finally play something!Arno2017-02-271-0/+2
| | | | Far from there, but it finally, actually plays songs!
* Implement random selectionArno2017-02-271-0/+1
| | | | Hard code limit to 1000 songs.
* Implement shuffle playlistArno2017-02-271-0/+1
| | | | And add some artwork for icons...
* Implement clear playlistArno2017-02-271-0/+1
|
* Implement remove from playlistArno2017-02-271-0/+1
| | | | | | Isn't as easy as it sounds. We have to convert the QModelIndexes to remove into persistant ones, because the row number changes when the first one is removed.
* Implement add to PlaylistArno2017-02-271-1/+5
|
* Turned IndexerWidget into a dialogArno2017-02-261-0/+1
| | | | and got rid of the TabWidget!
* Artwork and GUI modificationsArno2017-02-261-3/+6
| | | | | | | | 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.
* Implement filteringArno2017-02-251-3/+6
| | | | | | 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-8/+6
| | | | | | | | | | 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...
* Populate albumsArno2017-02-251-0/+2
|
* Implement basic player layoutArno2017-02-251-0/+42
Does nothing yet, just for show :)