aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen_help.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-30screen_help: added the artist screen hotkeyMax Kellermann1-0/+3
2008-11-30screen_help: added CMD_VIEWMax Kellermann1-0/+1
2008-11-27list_window: converted "flags" to one "bool" variableMax Kellermann1-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.
2008-11-27list_window: use "bool" instead of "int"Max Kellermann1-2/+2
For flags and return values, use the "bool" data type instead of "int".
2008-11-24screen_help.c: replaced mpd_unused by G_GNUC_UNUSEDThomas Jansen1-4/+3
2008-11-18screen: method cmd() returns boolMax Kellermann1-4/+4
Return true/false instead of 1/0.
2008-11-18command: added CMD_LOCATE to locate song in databaseMax Kellermann1-0/+1
Pressing 'l' switches to the file browser (screen_file) and locates the previously selected song in the server's database.
2008-10-06include ncursesw/ncurses.h if availableMax Kellermann1-1/+0
When compiling with libncursesw, include <ncursesw/ncurses.h> instead of <ncurses.h> (if available).
2008-10-03screen: export the global variable "screen"Max Kellermann1-3/+2
screen_t is a singleton. We do not have to pass it around everywhere. Export the one global variable.
2008-10-03screen: don't pass mpdclient pointer to method paint()Max Kellermann1-1/+1
None of the paint() implementations acutally uses the mpdclient pointer. Remove it from the method signature.
2008-10-03code style, indent with tabs XIMax Kellermann1-94/+91
Follow the same code style als MPD itself.
2008-10-02moved i18n macros to i18n.hMax Kellermann1-1/+1
Don't make everybody include ncmpc.h just to have generic features. Move generic i18n macros to a separate header.
2008-09-25screen_browser: added hotkey for adding songMax Kellermann1-0/+2
CMD_ADD ('a') appends a song to the playlist, no matter if it is already there, i.e. unlike CMD_SELECT, it does not toggle the song.
2008-09-25screen: don't pass screen pointer to method paint()Max Kellermann1-1/+1
None of the paint() implementations actually use the screen pointer - remove it from the method signature.
2008-09-25screen: don't call wrefresh() in methods paint() and update()Max Kellermann1-1/+0
screen_paint() and screen_update() are responsible for refreshing the screen. We can remove all wrefresh() and wnoutrefresh() invocations from all paint() and update() method implementations.
2008-09-25list_window: removed property "clear"Max Kellermann1-1/+0
Without clearing previous screen contents, there may be corruptions, make this mandatory and optimize screen clearing.
2008-09-25code style, indent with tabs XMax Kellermann1-4/+2
Follow the same code style als MPD itself.
2008-09-21Adding crop feature in ncmpcYannick LM1-0/+1
The "crop" command deletes all songs from the playlist, except the one currently being played.
2008-09-21screen_help: removed update() methodMax Kellermann1-13/+6
Why redraw the help screen when nothing has changed? Redraw it only after help_cmd(), and when explicitly requested (help_paint()).
2008-09-18removed the clock screenMax Kellermann1-3/+0
Why should an audio player display a large clock?
2008-09-17help: return early from list_callback()Max Kellermann1-25/+25
2008-09-17help: converted help_text_rows to a macroMax Kellermann1-10/+3
Why bother counting the elements of help_text[] (with sentinel) at runtime, when the compiler can do it at compile time?
2008-09-17list_window: added list_window_center()Max Kellermann1-10/+1
Merge code which used to be duplicated in the screens "play", "help", "lyrics".
2008-09-17list_window: added list_window_scroll_cmd()Max Kellermann1-37/+1
It is similar to list_window_cmd(), but it scrolls the window instead of moving the selection. It is used by the "lyrics" and the "help" screen.
2008-09-17screen: removed screen_functions.get_lw()Max Kellermann1-7/+0
If it is really important to set the curser, we should think of a better way, instead of exporting one non-generic method. For now, just set the cursor to the origin.
2008-09-17replaced get_screen_X() with static screen_functions variableMax Kellermann1-19/+10
Compile time initialization saves resources, compared to run-time initialization. Declare all screen_function structs as global variables, and remove all get functions.
2008-09-15fix unused parameter warningsMax Kellermann1-5/+6
Add the "unused" attribute to all function parameters which are indeed going to be ignored.
2008-09-15use size_t and unsigned integersMax Kellermann1-16/+25
2008-09-15fix shadow warningsMax Kellermann1-12/+12
Rename local variables and function parameters, so they don't shadow global variables.
2008-09-15include cleanupMax Kellermann1-5/+5
A header should include all headers which he needs. Move local includes on top, and let foo.c include foo.h in the first line, to automatically test its dependencies.
2008-09-15const pointersMax Kellermann1-3/+3
Convert pointers to const whenever it is possible. Fixes all those -Wconst warnings.
2008-09-15code style, indent with tabsMax Kellermann1-129/+120
Follow the same code style als MPD itself. This patch only fixes parts of the code which are going to be touched in the following bunch of patches, i.e. there will be more "code style" patches in the future.
2008-09-15remove unused static functionsMax Kellermann1-1/+1
Also remove some commented code and unused function parameters.
2007-11-30cmd_select_all addedAndreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@7061 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2007-02-16way too much stuff to describe hereAndreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5346 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-11-08go to root/parent dir key addedAndreas Obergrusberger1-1/+3
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5034 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-07now really show the save lyrics command on the help screenAndreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4587 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-07lots of cool stuff!Andreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4577 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-05interruption of lyrics loading + po blablaAndreas Obergrusberger1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4567 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2006-08-04the updated sourcesAndreas Obergrusberger1-1/+8
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4543 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-06-14Added previous screen infoKalle Wallin1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3355 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2005-02-13Enable playlist saving on the browse screenKalle Wallin1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2949 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-11-15Added a search screenKalle Wallin1-3/+17
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2668 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-21¡Español!Kalle Wallin1-1/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1888 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-13Use glib's str functions (g_strlcat, g_strlcpy, g_snprintf, g_strdup_vprintf)Kalle Wallin1-12/+12
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1868 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-12Mouse support is now optional (enable-mouse)Kalle Wallin1-17/+0
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1861 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-07-12Hide the cursor on the help screen (#247)Kalle Wallin1-7/+49
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1854 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-06-19added help for the add commandKalle Wallin1-0/+1
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1568 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-06-14Major cleanup of the mpd client code (mpc->mpdclient)Kalle Wallin1-6/+4
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1481 09075e82-0dd4-0310-85a5-a0d7c8717e4f
2004-06-09Updated the get_title callback.Kalle Wallin1-3/+5
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1421 09075e82-0dd4-0310-85a5-a0d7c8717e4f