aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_song.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* screen_song: make the variable "current" staticMax Kellermann2008-12-051-1/+1
| | | | | The global variable "current" should not be exported, and should be "static".
* list_window: converted "flags" to one "bool" variableMax Kellermann2008-11-271-1/+1
| | | | | | Currently, there is only one known list_window flag ("hide_cursor"). Replace the "flags" bit field with a boolean variable. If we run out of space some day, we can convert that to bool:1.
* list_window: use "bool" instead of "int"Max Kellermann2008-11-271-1/+1
| | | | | For flags and return values, use the "bool" data type instead of "int".
* screen_song: support CMD_SCREEN_LYRICSMax Kellermann2008-11-191-0/+10
| | | | Show the lyrics of the song currently being displayed.
* screen_song: free the song pointerMax Kellermann2008-11-191-0/+5
| | | | Fix a memory leak.
* screen_song: include cleanupMax Kellermann2008-11-191-5/+0
|
* screen_song: new screen which views song informationMax Kellermann2008-11-181-0/+189
This new screen views all information available on a song: its location, file name, and tags.