1
2
3
4
5
6
7 #ifndef MC_GLOBAL_H
8 #define MC_GLOBAL_H
9
10 #include <glib.h>
11
12 #if defined(__has_attribute)
13 #define MC_HAS_ATTRIBUTE(ATTR) __has_attribute (ATTR)
14 #else
15 #define MC_HAS_ATTRIBUTE(ATTR) 0
16 #endif
17
18 #if MC_HAS_ATTRIBUTE(weak) && defined(HAVE_TESTS)
19 #define MC_MOCKABLE __attribute__ ((weak))
20 #else
21 #define MC_MOCKABLE
22 #endif
23
24 #include "glibcompat.h"
25
26 #include "unixcompat.h"
27
28 #include "fs.h"
29 #include "shell.h"
30 #include "mcconfig.h"
31
32
33
34 #ifdef ENABLE_NLS
35 #include <libintl.h>
36 #define _(String) gettext (String)
37 #ifdef gettext_noop
38 #define N_(String) gettext_noop (String)
39 #else
40 #define N_(String) (String)
41 #endif
42 #else
43 #define textdomain(String) 1
44 #define gettext(String) (String)
45 #define ngettext(String1, String2, Num) (((Num) == 1) ? (String1) : (String2))
46 #define dgettext(Domain, Message) (Message)
47 #define dcgettext(Domain, Message, Type) (Message)
48 #define bindtextdomain(Domain, Directory) 1
49 #define _(String) (String)
50 #define N_(String) (String)
51 #endif
52
53 #if MC_HAS_ATTRIBUTE(fallthrough)
54 #define MC_FALLTHROUGH __attribute__ ((fallthrough))
55 #else
56 #define MC_FALLTHROUGH
57 #endif
58
59 #if MC_HAS_ATTRIBUTE(unused)
60 #define MC_UNUSED __attribute__ ((unused))
61 #else
62 #define MC_UNUSED
63 #endif
64
65 #if MC_HAS_ATTRIBUTE(nonstring)
66 #define MC_NONSTRING __attribute__ ((nonstring))
67 #else
68 #define MC_NONSTRING
69 #endif
70
71 #ifdef USE_MAINTAINER_MODE
72 #include "lib/logging.h"
73 #endif
74
75
76 #define BUF_10K 10240L
77 #define BUF_8K 8192L
78 #define BUF_4K 4096L
79 #define BUF_2K 2048L
80 #define BUF_1K 1024L
81
82 #define BUF_LARGE BUF_1K
83 #define BUF_MEDIUM 512
84 #define BUF_SMALL 128
85 #define BUF_TINY 64
86
87 #define UTF8_CHAR_LEN 6
88
89
90
91 #define SUBSHELL_EXIT 128
92
93 #define MC_ERROR g_quark_from_static_string (PACKAGE)
94
95 #define DEFAULT_CHARSET "ASCII"
96
97
98
99
100 typedef enum
101 {
102 MC_RUN_FULL = 0,
103 MC_RUN_EDITOR,
104 MC_RUN_VIEWER,
105 MC_RUN_DIFFVIEWER
106 } mc_run_mode_t;
107
108
109
110 typedef struct
111 {
112 const char *mc_version;
113
114 mc_run_mode_t mc_run_mode;
115 gboolean run_from_parent_mc;
116
117 gboolean midnight_shutdown;
118
119
120
121 char *sysconfig_dir;
122
123 char *share_data_dir;
124
125 char *profile_name;
126
127 mc_config_t *main_config;
128 mc_config_t *panels_config;
129
130
131 int source_codepage;
132 int display_codepage;
133
134
135 gboolean utf8_display;
136
137
138 gboolean message_visible;
139
140 gboolean keybar_visible;
141
142 #ifdef ENABLE_BACKGROUND
143
144 gboolean we_are_background;
145 #endif
146
147 struct
148 {
149
150 gboolean confirm_history_cleanup;
151
152
153 gboolean show_all_if_ambiguous;
154
155
156
157 gboolean is_right;
158 } widget;
159
160
161 mc_shell_t *shell;
162
163 struct
164 {
165
166 char *skin;
167
168 gboolean shadows;
169
170 char *setup_color_string;
171 char *term_color_string;
172 char *color_terminal_string;
173
174 char *command_line_colors;
175
176 #ifndef LINUX_CONS_SAVER_C
177
178 char console_flag;
179 #endif
180
181 gboolean use_subshell;
182
183 #ifdef ENABLE_SUBSHELL
184
185 int subshell_pty;
186 #endif
187
188
189
190 gboolean xterm_flag;
191
192
193 gboolean disable_x11;
194
195
196
197 gboolean slow_terminal;
198
199
200 gboolean disable_colors;
201
202
203 gboolean ugly_line_drawing;
204
205
206 gboolean old_mouse;
207
208
209
210 gboolean alternate_plus_minus;
211 } tty;
212
213 struct
214 {
215
216 gboolean cd_symlinks;
217
218
219 gboolean preallocate_space;
220
221 } vfs;
222 } mc_global_t;
223
224
225
226 extern mc_global_t mc_global;
227
228
229
230
231 #endif