Code

include ncursesw/ncurses.h if available
[ncmpc.git] / src / screen.h
index 1aa2ce5ab793b11ad8e126dc1b28ed7246548bfb..404d0a8d565ce49fed7142d4a56a35fac0d7f26f 100644 (file)
@@ -5,9 +5,14 @@
 #include "mpdclient.h"
 #include "command.h"
 
-#include <ncurses.h>
 #include <glib.h>
 
+#ifdef HAVE_NCURSESW_NCURSES_H
+#include <ncursesw/ncurses.h>
+#else
+#include <ncurses.h>
+#endif
+
 #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)))
@@ -19,7 +24,7 @@ struct window {
        unsigned rows, cols;
 };
 
-typedef struct screen {
+struct screen {
        struct window top_window;
        struct window main_window;
        struct window progress_window;
@@ -38,9 +43,9 @@ typedef struct screen {
 
        char *findbuf;
        GList *find_history;
+};
 
-       int painted;
-} screen_t;
+extern struct screen screen;
 
 extern const struct screen_functions screen_playlist;
 extern const struct screen_functions screen_browse;
@@ -61,18 +66,18 @@ extern const struct screen_functions screen_lyrics;
 typedef struct screen_functions {
        void (*init)(WINDOW *w, int cols, int rows);
        void (*exit)(void);
-       void (*open)(struct screen *screen, mpdclient_t *c);
+       void (*open)(mpdclient_t *c);
        void (*close)(void);
        void (*resize)(int cols, int rows);
-       void (*paint)(mpdclient_t *c);
+       void (*paint)(void);
        void (*update)(mpdclient_t *c);
-       int (*cmd)(struct screen *scr, mpdclient_t *c, command_t cmd);
+       int (*cmd)(mpdclient_t *c, command_t cmd);
        const char *(*get_title)(char *s, size_t size);
 } screen_functions_t;
 
 void screen_init(mpdclient_t *c);
 void screen_exit(void);
-void screen_resize(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);
@@ -82,9 +87,18 @@ void screen_idle(mpdclient_t *c);
 void screen_cmd(mpdclient_t *c, command_t cmd);
 gint screen_get_id(const char *name);
 
+void
+screen_switch(const struct screen_functions *sf, struct mpdclient *c);
+
 gboolean
 screen_is_visible(const struct screen_functions *sf);
 
 int screen_get_mouse_event(mpdclient_t *c, unsigned long *bstate, int *row);
 
+
+#ifdef ENABLE_LYRICS_SCREEN
+void
+screen_lyrics_switch(struct mpdclient *c, const struct mpd_song *song);
+#endif
+
 #endif