Manual pages: mcmcdiffmceditmcview

root/lib/global.h

/* [previous][next][first][last][top][bottom][index][help]  */

INCLUDED FROM


   1 /** \file global.h
   2  *  \brief Header: %global definitions for compatibility
   3  *
   4  *  This file should be included after all system includes and before all local includes.
   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 /*** typedefs(not structures) and defined constants **********************************************/
  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  // Stubs that do something close enough.
  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 /* Just for keeping Your's brains from invention a proper size of the buffer :-) */
  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 /* Used to distinguish between a normal MC termination and */
  90 /* one caused by typing 'exit' or 'logout' in the subshell */
  91 #define SUBSHELL_EXIT   128
  92 
  93 #define MC_ERROR        g_quark_from_static_string (PACKAGE)
  94 
  95 #define DEFAULT_CHARSET "ASCII"
  96 
  97 /*** enums ***************************************************************************************/
  98 
  99 /* run mode and params */
 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 /*** structures declarations (and typedefs of structures)*****************************************/
 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     // Used so that widgets know if they are being destroyed or shut down
 117     gboolean midnight_shutdown;
 118 
 119     /* sysconfig_dir: Area for default settings from maintainers of distributuves
 120        default is /etc/mc or may be defined by MC_DATADIR */
 121     char *sysconfig_dir;
 122     // share_data_dir: Area for default settings from developers
 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     // Numbers of (file I/O) and (input/display) codepages. -1 if not selected
 131     int source_codepage;
 132     int display_codepage;
 133 
 134     // If utf-8 terminal utf8_display = TRUE
 135     gboolean utf8_display;
 136 
 137     // Set if the nice message (hint) bar is visible
 138     gboolean message_visible;
 139     // Set if the nice and useful keybar is visible
 140     gboolean keybar_visible;
 141 
 142 #ifdef ENABLE_BACKGROUND
 143     // If true, this is a background process
 144     gboolean we_are_background;
 145 #endif
 146 
 147     struct
 148     {
 149         // Asks for confirmation before clean up of history
 150         gboolean confirm_history_cleanup;
 151 
 152         // Set if you want the possible completions dialog for the first time
 153         gboolean show_all_if_ambiguous;
 154 
 155         // Ugly hack in order to distinguish between left and right panel in menubar
 156         // Set if the command is being run from the "Right" menu
 157         gboolean is_right;  // If the selected menu was the right
 158     } widget;
 159 
 160     // The user's shell
 161     mc_shell_t *shell;
 162 
 163     struct
 164     {
 165         // Use the specified skin
 166         char *skin;
 167         // Dialog window and drop down menu have a shadow
 168         gboolean shadows;
 169 
 170         char *setup_color_string;
 171         char *term_color_string;
 172         char *color_terminal_string;
 173         // colors specified on the command line: they override any other setting
 174         char *command_line_colors;
 175 
 176 #ifndef LINUX_CONS_SAVER_C
 177         // Used only in mc, not in cons.saver
 178         char console_flag;
 179 #endif
 180         // If using a subshell for evaluating commands this is true
 181         gboolean use_subshell;
 182 
 183 #ifdef ENABLE_SUBSHELL
 184         // File descriptors of the pseudoterminal used by the subshell
 185         int subshell_pty;
 186 #endif
 187 
 188         // This flag is set by xterm detection routine in function main()
 189         // It is used by function toggle_subshell()
 190         gboolean xterm_flag;
 191 
 192         // disable x11 support
 193         gboolean disable_x11;
 194 
 195         // For slow terminals
 196         // If true lines are shown by spaces
 197         gboolean slow_terminal;
 198 
 199         // Set to force black and white display at program startup
 200         gboolean disable_colors;
 201 
 202         // If true use +, -, | for line drawing
 203         gboolean ugly_line_drawing;
 204 
 205         // Tries to use old highlight mouse tracking
 206         gboolean old_mouse;
 207 
 208         /* If true, use + and \ keys normally and select/unselect do if M-+ / M-\.
 209            and M-- and keypad + / - */
 210         gboolean alternate_plus_minus;
 211     } tty;
 212 
 213     struct
 214     {
 215         // Set when cd symlink following is desirable (bash mode)
 216         gboolean cd_symlinks;
 217 
 218         // Preallocate space before file copying
 219         gboolean preallocate_space;
 220 
 221     } vfs;
 222 } mc_global_t;
 223 
 224 /*** global variables defined in .c file *********************************************************/
 225 
 226 extern mc_global_t mc_global;
 227 
 228 /*** declarations of public functions ************************************************************/
 229 
 230 /*** inline functions ****************************************************************************/
 231 #endif

/* [previous][next][first][last][top][bottom][index][help]  */