Updated translations from Transifex
[midnight-commander.git] / lib / global.h
blobecc4d892fef4533d7cdb6b0ec9e07701f2e93ec0
1 /** \file global.h
2 * \brief Header: %global definitions for compatibility
4 * This file should be included after all system includes and before all local includes.
5 */
7 #ifndef MC_GLOBAL_H
8 #define MC_GLOBAL_H
10 #if defined(HAVE_STRING_H)
11 #include <string.h>
12 /* An ANSI string.h and pre-ANSI memory.h might conflict */
13 #elif defined(HAVE_MEMORY_H)
14 #include <memory.h>
15 #else
16 #include <strings.h>
17 /* memory and strings.h conflict on other systems */
18 #endif /* !STDC_HEADERS & !HAVE_STRING_H */
20 #ifdef HAVE_SYS_PARAM_H
21 #include <sys/param.h>
22 #endif
24 /* for sig_atomic_t */
25 #include <signal.h>
27 /*** typedefs(not structures) and defined constants **********************************************/
29 /* The O_BINARY definition was taken from gettext */
30 #if !defined O_BINARY && defined _O_BINARY
31 /* For MSC-compatible compilers. */
32 #define O_BINARY _O_BINARY
33 #endif
34 #ifdef __BEOS__
35 /* BeOS 5 has O_BINARY, but is has no effect. */
36 #undef O_BINARY
37 #endif
38 /* On reasonable systems, binary I/O is the default. */
39 #ifndef O_BINARY
40 #define O_BINARY 0
41 #endif
43 /* Replacement for O_NONBLOCK */
44 #ifndef O_NONBLOCK
45 #ifdef O_NDELAY /* SYSV */
46 #define O_NONBLOCK O_NDELAY
47 #else /* BSD */
48 #define O_NONBLOCK FNDELAY
49 #endif /* !O_NDELAY */
50 #endif /* !O_NONBLOCK */
52 #ifdef HAVE_SYS_SELECT_H
53 #include <sys/select.h>
54 #endif
56 #if defined(__QNX__) && !defined(__QNXNTO__)
57 /* exec*() from <process.h> */
58 #include <unix.h>
59 #endif
61 #include <glib.h>
62 #include "glibcompat.h"
64 #ifndef __GNUC__
65 #define __attribute__(x)
66 #endif
68 /* Solaris9 doesn't have PRIXMAX */
69 #ifndef PRIXMAX
70 #define PRIXMAX PRIxMAX
71 #endif
73 #ifdef ENABLE_NLS
74 #include <libintl.h>
75 #define _(String) gettext (String)
76 #ifdef gettext_noop
77 #define N_(String) gettext_noop (String)
78 #else
79 #define N_(String) (String)
80 #endif
81 #else /* Stubs that do something close enough. */
82 #define textdomain(String) 1
83 #define gettext(String) (String)
84 #define ngettext(String1,String2,Num) (((Num) == 1) ? (String1) : (String2))
85 #define dgettext(Domain,Message) (Message)
86 #define dcgettext(Domain,Message,Type) (Message)
87 #define bindtextdomain(Domain,Directory) 1
88 #define _(String) (String)
89 #define N_(String) (String)
90 #endif /* !ENABLE_NLS */
92 #include "fs.h"
94 #ifdef USE_MAINTAINER_MODE
95 #include "lib/logging.h"
96 #endif
98 #ifdef min
99 #undef min
100 #endif
102 #ifdef max
103 #undef max
104 #endif
106 #define min(x, y) ((x) > (y) ? (y) : (x))
107 #define max(x, y) ((x) > (y) ? (x) : (y))
109 /* Just for keeping Your's brains from invention a proper size of the buffer :-) */
110 #define BUF_10K 10240L
111 #define BUF_8K 8192L
112 #define BUF_4K 4096L
113 #define BUF_1K 1024L
115 #define BUF_LARGE BUF_1K
116 #define BUF_MEDIUM 512
117 #define BUF_SMALL 128
118 #define BUF_TINY 64
120 /* ESC_CHAR is defined in /usr/include/langinfo.h in some systems */
121 #ifdef ESC_CHAR
122 #undef ESC_CHAR
123 #endif
124 /* AIX compiler doesn't understand '\e' */
125 #define ESC_CHAR '\033'
126 #define ESC_STR "\033"
128 /* OS specific defines */
129 #define PATH_SEP '/'
130 #define PATH_SEP_STR "/"
131 #define PATH_ENV_SEP ':'
132 #define TMPDIR_DEFAULT "/tmp"
133 #define SCRIPT_SUFFIX ""
134 #define get_default_editor() "vi"
135 #define OS_SORT_CASE_SENSITIVE_DEFAULT 1
136 #define UTF8_CHAR_LEN 6
138 /* Used to distinguish between a normal MC termination and */
139 /* one caused by typing 'exit' or 'logout' in the subshell */
140 #define SUBSHELL_EXIT 128
142 /* C++ style type casts */
143 #define const_cast(m_type, m_expr) ((m_type) (m_expr))
145 #if 0
146 #ifdef MC_ENABLE_DEBUGGING_CODE
147 #undef NDEBUG
148 #else
149 #define NDEBUG
150 #endif
151 #ifdef HAVE_ASSERT_H
152 #include <assert.h>
153 #endif
154 #endif
156 #define MC_ERROR g_quark_from_static_string (PACKAGE)
158 #define DEFAULT_CHARSET "ASCII"
160 /*** enums ***************************************************************************************/
162 /* run mode and params */
163 typedef enum
165 MC_RUN_FULL = 0,
166 MC_RUN_EDITOR,
167 MC_RUN_VIEWER,
168 MC_RUN_DIFFVIEWER
169 } mc_run_mode_t;
171 /*** structures declarations (and typedefs of structures)*****************************************/
173 typedef struct
175 mc_run_mode_t mc_run_mode;
176 /* Used so that widgets know if they are being destroyed or shut down */
177 gboolean midnight_shutdown;
179 /* sysconfig_dir: Area for default settings from maintainers of distributuves
180 default is /etc/mc or may be defined by MC_DATADIR */
181 char *sysconfig_dir;
182 /* share_data_dir: Area for default settings from developers */
183 char *share_data_dir;
185 #ifdef HAVE_CHARSET
186 /* Numbers of (file I/O) and (input/display) codepages. -1 if not selected */
187 int source_codepage;
188 int display_codepage;
189 #else
190 /* If true, allow characters in the range 160-255 */
191 int eight_bit_clean;
193 * If true, also allow characters in the range 128-159.
194 * This is reported to break on many terminals (xterm, qansi-m).
196 int full_eight_bits;
197 #endif /* !HAVE_CHARSET */
199 * If utf-8 terminal utf8_display = TRUE
200 * Display bits set UTF-8
202 gboolean utf8_display;
204 /* Set if the nice message (hint) bar is visible */
205 int message_visible;
206 /* Set if the nice and useful keybar is visible */
207 int keybar_visible;
209 #ifdef ENABLE_BACKGROUND
210 /* If true, this is a background process */
211 gboolean we_are_background;
212 #endif /* ENABLE_BACKGROUND */
214 struct
216 /* Asks for confirmation before clean up of history */
217 gboolean confirm_history_cleanup;
219 /* Set if you want the possible completions dialog for the first time */
220 gboolean show_all_if_ambiguous;
222 /* Ugly hack in order to distinguish between left and right panel in menubar */
223 /* Set if the command is being run from the "Right" menu */
224 gboolean is_right; /* If the selected menu was the right */
225 } widget;
227 struct
229 /* Use the specified skin */
230 char *skin;
232 char *setup_color_string;
233 char *term_color_string;
234 char *color_terminal_string;
235 /* colors specified on the command line: they override any other setting */
236 char *command_line_colors;
238 #ifndef LINUX_CONS_SAVER_C
239 /* Used only in mc, not in cons.saver */
240 char console_flag;
241 #endif /* !LINUX_CONS_SAVER_C */
242 /* If using a subshell for evaluating commands this is true */
243 gboolean use_subshell;
244 #ifdef ENABLE_SUBSHELL
245 /* File descriptors of the pseudoterminal used by the subshell */
246 int subshell_pty;
247 #endif /* !ENABLE_SUBSHELL */
249 /* The user's shell */
250 char *shell;
252 /* This flag is set by xterm detection routine in function main() */
253 /* It is used by function view_other_cmd() */
254 gboolean xterm_flag;
256 /* disable x11 support */
257 gboolean disable_x11;
259 /* For slow terminals */
260 /* If true lines are shown by spaces */
261 gboolean slow_terminal;
263 /* Set to force black and white display at program startup */
264 gboolean disable_colors;
266 /* If true use +, -, | for line drawing */
267 gboolean ugly_line_drawing;
269 /* Tries to use old highlight mouse tracking */
270 gboolean old_mouse;
272 /* If true, use + and \ keys normally and select/unselect do if M-+ / M-\.
273 and M-- and keypad + / - */
274 gboolean alternate_plus_minus;
276 /* Set if the window has changed it's size */
277 SIG_ATOMIC_VOLATILE_T winch_flag;
278 } tty;
280 struct
282 /* Set when cd symlink following is desirable (bash mode) */
283 gboolean cd_symlinks;
285 /* Preallocate space before file copying */
286 gboolean preallocate_space;
288 } vfs;
289 } mc_global_t;
291 /*** global variables defined in .c file *********************************************************/
293 extern mc_global_t mc_global;
295 /*** declarations of public functions ************************************************************/
297 /*** inline functions ****************************************************************************/
298 #endif