summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add bindings for global KDE shortcutsArno2017-03-073-1/+53
| | | | | Hell, this was much harder than it should be. The API documentation is crap and I didn't find a single decent example with my google foo!
* Use the new color settings, make it buunt!Arno2017-03-073-0/+25
|
* Implement color choosing dialog for QTreeViewsArno2017-03-076-2/+94
| | | | | Hmm, this shouldn't be so hard. Quite a lot of code for such an easy thing, but maybe it's just me and I'm over-complicating things...
* Set correct window title when changing from pause to playArno2017-03-072-2/+4
|
* Implement help and about dialogsArno2017-03-062-0/+22
|
* Read and write settingsArno2017-03-063-1/+29
|
* Show messages when changing viewArno2017-03-061-0/+12
|
* Set appropriate window titleArno2017-03-063-5/+18
|
* Remove obsolete connection to setDuration(qint64)Arno2017-03-061-1/+0
|
* Add view: searchArno2017-03-064-5/+16
|
* Fix display of lengthArno2017-03-062-15/+8
| | | | | Stop the dance in setDuration. Get rid of the function and use TagLib::File::AudioProperties in play() to set it.
* Search for albums, tooArno2017-03-061-0/+1
| | | | The infrastructure was there, just not used...
* Add Splash ScreenArno2017-03-053-0/+7
|
* Set initial view to AlbumArno2017-03-051-1/+1
|
* Fix player statusArno2017-03-054-31/+44
| | | | | Display the appropriate status in statusBar. Don't use QMediaPlayer::State, but QMediaStatus::MediaStatus to signal EOF.
* Fix play ButtonArno2017-03-054-2/+26
| | | | | Print a statusbar message when the playlist is empty. If it isn't empty, but nothing is selected, select the first entry and play it.
* Implement statusBarArno2017-03-058-16/+161
| | | | | | | | Display in statusBar: * viewMode * number of files in playlist * length of playlist in h:m:s * player status (Stopped, Playing, Paused)
* Implemet Filesystem ViewArno2017-03-054-7/+90
| | | | Kinda works, but expect unexpected bugs :)
* Implement expand and collapse for DB viewArno2017-03-055-5/+75
| | | | | | | | | | | | | Sounds easy, right? It is, if you don't try to create a QIcon from a QChar. That took me a while... First, it's not a good idea to fill the QPixmap for the QIcon with transparency. That gives you a random background. Fill it with palette color instead. Then there's QFont's pixelSize(). I have absolutely no idea how it corresponds to the pixmap's size, but roughly double the width of the pixmap is a good guess...
* Ensure that Length: is only printed onceArno2017-03-051-0/+5
|
* Set mCurrentTE read-onlyArno2017-03-051-0/+1
| | | | It's no notepad...
* Add Action to View: clear and playArno2017-03-054-0/+13
|
* Change icon for clearing searchArno2017-03-043-1/+2
|
* Fix display of current lengthArno2017-03-041-3/+3
| | | | | The player is a strange beast. Calculate the duration after the new song has been triggered. The results were more or less randon, I guess...
* Make Playlist non-editableArno2017-03-041-0/+1
|
* Show artist when viewing by albumArno2017-03-041-3/+12
| | | | Show VA if there are more than 1 artists, otherwise the artist's name.
* Introduce different viewsArno2017-03-042-12/+136
| | | | | | | | | * view by artist (already there) * view by album * view by song * view by genre Doesn't work as expected, so it's likely gonna change soon.
* Replace Filter buttons with Toolbar+ActionsArno2017-03-044-13/+16
| | | | | | | The QPushButtons took too much real estate, so turn them into QActions in a Toolbar. Also rename mFilter to the more appropriate mSearch.
* Set BusyCursor in doFilter()Arno2017-03-041-0/+4
| | | | Also return after setting the view back to artists.
* Change artworkArno2017-03-046-10/+27
| | | | | | Add icons for genres, songs, albums and artists. As it turns out, you really should use the copy constructor of QIcon. Speeds up things considerably!
* Show info when playing fileArno2017-02-272-3/+25
|
* Advance to next song from playlistArno2017-02-272-2/+10
| | | | when the current one has finished.
* Implement Song SliderArno2017-02-272-0/+27
|
* Implement previous and nextArno2017-02-275-6/+50
|
* Implement basic play controlsArno2017-02-274-11/+69
| | | | | Actually make play, pause and stop do something. Also implement mute and volume control.
* Finally play something!Arno2017-02-272-0/+18
| | | | Far from there, but it finally, actually plays songs!
* Implement random selectionArno2017-02-272-0/+23
| | | | Hard code limit to 1000 songs.
* Implement shuffle playlistArno2017-02-277-0/+24
| | | | And add some artwork for icons...
* Fix filteringArno2017-02-271-2/+2
| | | | | The SQL query for genres was wrong. Copy and Paste error. Also mark songs as songs when filtering.
* Implement clear playlistArno2017-02-272-0/+7
|
* Implement remove from playlistArno2017-02-272-1/+14
| | | | | | 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-272-4/+64
|
* Turned IndexerWidget into a dialogArno2017-02-2612-81/+125
| | | | and got rid of the TabWidget!
* Artwork and GUI modificationsArno2017-02-2616-33/+86
| | | | | | | | 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
* Edit artworkArno2017-02-266-4/+2
| | | | Replace icon...
* Remove proxyArno2017-02-254-80/+2
| | | | Didn't work out...
* Implement filteringArno2017-02-254-21/+133
| | | | | | 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-255-46/+68
| | | | | | | | | | 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