Code

b9bb0eed3d0a768348371ea493fdb3998241b675
[ncmpc.git] / src / options.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2010 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  
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.
18 */
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         bool lyrics_show_plugin;
51 #endif
52         bool find_wrap;
53         bool find_show_last_pattern;
54         bool list_wrap;
55         int scroll_offset;
56         bool auto_center;
57         bool wide_cursor;
58         bool hardware_cursor;
60 #ifdef ENABLE_COLORS
61         bool enable_colors;
62 #endif
63         bool audible_bell;
64         bool visible_bell;
65         bool bell_on_wrap;
66         GTime status_message_time;
67 #ifndef NCMPC_MINI
68         bool enable_xterm_title;
69 #endif
70 #ifdef HAVE_GETMOUSE
71         bool enable_mouse;
72 #endif
73 #ifndef NCMPC_MINI
74         bool scroll;
75         bool visible_bitrate;
76         bool welcome_screen_list;
77         bool display_time;
78         bool jump_prefix_only;
79         bool second_column;
80 #endif
81 } options_t;
83 extern options_t options;
85 void options_init(void);
86 void options_deinit(void);
88 void options_parse(int argc, const char **argv);
90 #endif