configure.ac: require libmpdclient 2.2
[ncmpc.git] / src / options.h
blob920605f5ededac606f42cda6077e122fbcd00a29
1 /* ncmpc (Ncurses MPD Client)
2 * (c) 2004-2010 The Music Player Daemon Project
3 * Project homepage: http://musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #ifndef OPTIONS_H
21 #define OPTIONS_H
23 #include "config.h"
25 #include <stdbool.h>
26 #include <glib.h>
28 typedef struct {
29 char *host;
30 char *username;
31 char *password;
32 char *config_file;
33 char *key_file;
34 char *list_format;
35 char *status_format;
36 #ifndef NCMPC_MINI
37 char *xterm_title_format;
38 char *scroll_sep;
39 #endif
40 char **screen_list;
41 bool display_remaining_time;
42 int port;
43 int crossfade_time;
44 int search_mode;
45 int hide_cursor;
46 int seek_time;
47 #ifdef ENABLE_LYRICS_SCREEN
48 int lyrics_timeout;
49 bool lyrics_autosave;
50 #endif
51 bool find_wrap;
52 bool find_show_last_pattern;
53 bool list_wrap;
54 int scroll_offset;
55 bool auto_center;
56 bool wide_cursor;
57 bool hardware_cursor;
59 #ifdef ENABLE_COLORS
60 bool enable_colors;
61 #endif
62 bool audible_bell;
63 bool visible_bell;
64 bool bell_on_wrap;
65 GTime status_message_time;
66 #ifndef NCMPC_MINI
67 bool enable_xterm_title;
68 #endif
69 #ifdef HAVE_GETMOUSE
70 bool enable_mouse;
71 #endif
72 #ifndef NCMPC_MINI
73 bool scroll;
74 bool visible_bitrate;
75 bool welcome_screen_list;
76 bool display_time;
77 bool jump_prefix_only;
78 bool second_column;
79 #endif
80 } options_t;
82 extern options_t options;
84 void options_init(void);
85 void options_deinit(void);
87 void options_parse(int argc, const char **argv);
89 #endif