Code

Replaced the time_t type with glibs GTime
[ncmpc.git] / src / screen.h
index f674b1cffa64db216f7bcdae94147b0fa0120047..c725bb13c64258ce4abdb7b12b4bfc32d696dbe5 100644 (file)
@@ -41,10 +41,11 @@ typedef struct
 
   GList *screen_list;
 
-  time_t start_timestamp;
-  time_t status_timestamp;
-  time_t input_timestamp;
-  command_t last_cmd;
+  /* GTime is equivalent to time_t */
+  GTime start_timestamp;
+  GTime status_timestamp;
+  GTime input_timestamp;
+  GTime last_cmd;
 
   int cols, rows;
 
@@ -63,13 +64,13 @@ typedef struct
 
 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_open_fn_t)   (screen_t *screen, mpdclient_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) (void);
+typedef void (*screen_paint_fn_t)  (screen_t *screen, mpdclient_t *c);
+typedef void (*screen_update_fn_t) (screen_t *screen, mpdclient_t *c);
+typedef int (*screen_cmd_fn_t) (screen_t *scr, mpdclient_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);
 
 typedef struct
@@ -88,15 +89,19 @@ typedef struct
 } screen_functions_t;
 
 
-int screen_init(void);
+int screen_init(mpdclient_t *c);
 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);
+void screen_paint(mpdclient_t *c);
+void screen_update(mpdclient_t *c);
+void screen_idle(mpdclient_t *c);
+void screen_cmd(mpdclient_t *c, command_t cmd);
+
+int screen_get_mouse_event(mpdclient_t *c,
+                          list_window_t *lw, int lw_length, 
+                          unsigned long *bstate, int *row);
 
 #endif