X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fscreen.h;h=b22eae455d93c194129c98ccdcaa2eba3374221b;hb=e87293c67c377130dcda2f5cb4b1ddd06026f551;hp=fe843daa6d2c14f524b69be1688374b237fda28b;hpb=f205159073955a99df5afcd52af6eca4d057d8e0;p=ncmpc.git diff --git a/src/screen.h b/src/screen.h index fe843da..b22eae4 100644 --- a/src/screen.h +++ b/src/screen.h @@ -1,102 +1,143 @@ +/* ncmpc (Ncurses MPD Client) + * (c) 2004-2009 The Music Player Daemon Project + * Project homepage: http://musicpd.org + + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + #ifndef SCREEN_H #define SCREEN_H -#include -#include "list_window.h" -/* minumum window size */ -#define SCREEN_MIN_COLS 14 -#define SCREEN_MIN_ROWS 5 +#include "config.h" +#include "command.h" -#define IS_PLAYING(s) (s==MPD_STATUS_STATE_PLAY) -#define IS_PAUSED(s) (s==MPD_STATUS_STATE_PAUSE) -#define IS_STOPPED(s) (!(IS_PLAYING(s) | IS_PAUSED(s))) +#include +#include -typedef enum -{ - SCREEN_PLAY_WINDOW = 0, - SCREEN_FILE_WINDOW, - SCREEN_HELP_WINDOW, - SCREEN_KEYDEF_WINDOW, - SCREEN_CLOCK_WINDOW, - SCREEN_SEARCH_WINDOW +#ifdef HAVE_NCURSESW_NCURSES_H +#include +#else +#include +#endif -} screen_mode_t; +#define IS_PLAYING(s) (s==MPD_STATE_PLAY) +#define IS_PAUSED(s) (s==MPD_STATE_PAUSE) +#define IS_STOPPED(s) (!(IS_PLAYING(s) | IS_PAUSED(s))) -typedef struct -{ - WINDOW *w; - int rows, cols; +#define MAX_SONGNAME_LENGTH 512 -} window_t; +struct mpdclient; +struct window { + WINDOW *w; + unsigned rows, cols; +}; +struct screen { + struct window top_window; + struct window main_window; + struct window progress_window; + struct window status_window; -typedef struct -{ - window_t top_window; - window_t main_window; - window_t progress_window; - window_t status_window; + /* GTime is equivalent to time_t */ + GTime start_timestamp; + GTime status_timestamp; - GList *screen_list; + command_t last_cmd; - time_t start_timestamp; - time_t status_timestamp; - time_t input_timestamp; - command_t last_cmd; + unsigned cols, rows; - int cols, rows; + char *buf; + size_t buf_size; - screen_mode_t mode; + char *findbuf; + GList *find_history; +}; - char *buf; - size_t buf_size; +extern struct screen screen; - char *findbuf; - GList *find_history; +extern const struct screen_functions screen_playlist; +extern const struct screen_functions screen_browse; +#ifdef ENABLE_ARTIST_SCREEN +extern const struct screen_functions screen_artist; +#endif +extern const struct screen_functions screen_help; +#ifdef ENABLE_SEARCH_SCREEN +extern const struct screen_functions screen_search; +#endif +#ifdef ENABLE_SONG_SCREEN +extern const struct screen_functions screen_song; +#endif +#ifdef ENABLE_KEYDEF_SCREEN +extern const struct screen_functions screen_keydef; +#endif +#ifdef ENABLE_LYRICS_SCREEN +extern const struct screen_functions screen_lyrics; +#endif +#ifdef ENABLE_OUTPUTS_SCREEN +extern const struct screen_functions screen_outputs; +#endif - int painted; -} screen_t; +typedef struct screen_functions { + void (*init)(WINDOW *w, int cols, int rows); + void (*exit)(void); + void (*open)(struct mpdclient *c); + void (*close)(void); + void (*resize)(int cols, int rows); + void (*paint)(void); + void (*update)(struct mpdclient *c); + bool (*cmd)(struct mpdclient *c, command_t cmd); + const char *(*get_title)(char *s, size_t size); +} screen_functions_t; +void screen_init(struct mpdclient *c); +void screen_exit(void); +void screen_resize(struct mpdclient *c); +void screen_status_message(const char *msg); +void screen_status_printf(const char *format, ...); +char *screen_error(void); +void screen_paint(struct mpdclient *c); +void screen_update(struct mpdclient *c); +void screen_idle(struct mpdclient *c); +void screen_cmd(struct mpdclient *c, command_t cmd); +gint screen_get_id(const char *name); -typedef void (*screen_init_fn_t) (WINDOW *w, int cols, int rows); -typedef void (*screen_exit_fn_t) (void); -typedef void (*screen_open_fn_t) (screen_t *screen, mpd_client_t *c); -typedef void (*screen_close_fn_t) (void); -typedef void (*screen_resize_fn_t) (int cols, int rows); -typedef void (*screen_paint_fn_t) (screen_t *screen, mpd_client_t *c); -typedef void (*screen_update_fn_t) (screen_t *screen, mpd_client_t *c); -typedef int (*screen_cmd_fn_t) (screen_t *scr, mpd_client_t *c, command_t cmd); -typedef char * (*screen_title_fn_t) (char *s, size_t size); -typedef list_window_t * (*screen_get_lw_fn_t) (void); +void +screen_switch(const struct screen_functions *sf, struct mpdclient *c); +void +screen_swap(struct mpdclient *c, const struct mpd_song *song); -typedef struct -{ - screen_init_fn_t init; - screen_exit_fn_t exit; - screen_open_fn_t open; - screen_close_fn_t close; - screen_resize_fn_t resize; - screen_paint_fn_t paint; - screen_update_fn_t update; - screen_cmd_fn_t cmd; - screen_title_fn_t get_title; - screen_get_lw_fn_t get_lw; +gboolean +screen_is_visible(const struct screen_functions *sf); -} screen_functions_t; +int +screen_get_mouse_event(struct mpdclient *c, unsigned long *bstate, int *row); +bool +screen_file_goto_song(struct mpdclient *c, const struct mpd_song *song); -int screen_init(void); -int screen_exit(void); -void screen_resize(void); -void screen_status_message(char *msg); -void screen_status_printf(char *format, ...); -char *screen_error(void); -void screen_paint(mpd_client_t *c); -void screen_update(mpd_client_t *c); -void screen_idle(mpd_client_t *c); -void screen_cmd(mpd_client_t *c, command_t cmd); +#ifdef ENABLE_SONG_SCREEN +void +screen_song_switch(struct mpdclient *c, const struct mpd_song *song); +#endif + +#ifdef ENABLE_LYRICS_SCREEN +void +screen_lyrics_switch(struct mpdclient *c, const struct mpd_song *song, bool follow); +#endif #endif