Code

po: update Norwegian Bokmal translation
[ncmpc.git] / src / options.h
index 48a12f2b81e3eba8b89085f8670e858b51322abe..920605f5ededac606f42cda6077e122fbcd00a29 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  
  * This program is free software; you can redistribute it and/or modify
@@ -23,9 +23,7 @@
 #include "config.h"
 
 #include <stdbool.h>
-
-#define MPD_HOST_ENV "MPD_HOST"
-#define MPD_PORT_ENV "MPD_PORT"
+#include <glib.h>
 
 typedef struct {
        char *host;
@@ -40,7 +38,7 @@ typedef struct {
        char *scroll_sep;
 #endif
        char **screen_list;
-       char *timedisplay_type;
+       bool display_remaining_time;
        int port;
        int crossfade_time;
        int search_mode;
@@ -48,18 +46,23 @@ typedef struct {
        int seek_time;
 #ifdef ENABLE_LYRICS_SCREEN
        int lyrics_timeout;
+       bool lyrics_autosave;
 #endif
        bool find_wrap;
        bool find_show_last_pattern;
        bool list_wrap;
+       int scroll_offset;
        bool auto_center;
        bool wide_cursor;
+       bool hardware_cursor;
+
 #ifdef ENABLE_COLORS
        bool enable_colors;
 #endif
        bool audible_bell;
        bool visible_bell;
        bool bell_on_wrap;
+       GTime status_message_time;
 #ifndef NCMPC_MINI
        bool enable_xterm_title;
 #endif
@@ -71,12 +74,16 @@ typedef struct {
        bool visible_bitrate;
        bool welcome_screen_list;
        bool display_time;
+       bool jump_prefix_only;
+       bool second_column;
 #endif
 } options_t;
 
 extern options_t options;
 
 void options_init(void);
+void options_deinit(void);
+
 void options_parse(int argc, const char **argv);
 
 #endif