Code

status_bar: remove the status bar clock (option "display-time")
[ncmpc.git] / src / options.h
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2017 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.
9  *
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.
14  *
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 *search_format;
36         char *status_format;
37 #ifndef NCMPC_MINI
38         char *xterm_title_format;
39         char *scroll_sep;
40 #endif
41         char **screen_list;
42         bool display_remaining_time;
43         int port;
44         int timeout_ms;
45         int crossfade_time;
46         int search_mode;
47         int hide_cursor;
48         int seek_time;
49 #ifdef ENABLE_LYRICS_SCREEN
50         int lyrics_timeout;
51         bool lyrics_autosave;
52         bool lyrics_show_plugin;
53         char *text_editor;
54         bool text_editor_ask;
55 #endif
56 #ifdef ENABLE_CHAT_SCREEN
57         char *chat_prefix;
58 #endif
59         bool find_wrap;
60         bool find_show_last_pattern;
61         bool list_wrap;
62         int scroll_offset;
63         bool auto_center;
64         bool wide_cursor;
65         bool hardware_cursor;
67 #ifdef ENABLE_COLORS
68         bool enable_colors;
69 #endif
70         bool audible_bell;
71         bool visible_bell;
72         bool bell_on_wrap;
73         GTime status_message_time;
74 #ifndef NCMPC_MINI
75         bool enable_xterm_title;
76 #endif
77 #ifdef HAVE_GETMOUSE
78         bool enable_mouse;
79 #endif
80 #ifndef NCMPC_MINI
81         bool scroll;
82         bool visible_bitrate;
83         bool welcome_screen_list;
84         bool jump_prefix_only;
85         bool second_column;
86 #endif
87 } options_t;
89 extern options_t options;
91 void options_init(void);
92 void options_deinit(void);
94 void options_parse(int argc, const char **argv);
96 #endif