6 * \brief Header: editor public API
9 * \author Andrew Borodin
16 #include "lib/global.h" /* PATH_SEP_STR */
17 #include "lib/fileloc.h"
18 #include "lib/vfs/vfs.h" /* vfs_path_t */
20 /*** typedefs(not structures) and defined constants **********************************************/
22 #define DEFAULT_WRAP_LINE_LENGTH 72
24 /*** enums ***************************************************************************************/
26 /*** structures declarations (and typedefs of structures)*****************************************/
30 typedef struct WEdit WEdit
;
32 /*** global variables defined in .c file *********************************************************/
34 extern int option_word_wrap_line_length
;
35 extern int option_typewriter_wrap
;
36 extern int option_auto_para_formatting
;
37 extern int option_fill_tabs_with_spaces
;
38 extern int option_return_does_auto_indent
;
39 extern int option_backspace_through_tabs
;
40 extern int option_fake_half_tabs
;
41 extern int option_persistent_selections
;
42 extern int option_cursor_beyond_eol
;
43 extern gboolean option_cursor_after_inserted_block
;
44 extern int option_line_state
;
45 extern int option_save_mode
;
46 extern int option_save_position
;
47 extern int option_syntax_highlighting
;
48 extern int option_group_undo
;
49 extern char *option_backup_ext
;
50 extern char *option_filesize_threshold
;
52 extern int edit_confirm_save
;
54 extern int visible_tabs
;
55 extern int visible_tws
;
57 extern int simple_statusbar
;
58 extern int option_check_nl_at_eof
;
59 extern int show_right_margin
;
61 /*** declarations of public functions ************************************************************/
64 void edit_stack_init (void);
65 void edit_stack_free (void);
67 gboolean
edit_file (const vfs_path_t
* file_vpath
, long line
);
68 gboolean
edit_files (const GList
* files
);
70 char *edit_get_file_name (const WEdit
* edit
);
71 long edit_get_curs_col (const WEdit
* edit
);
72 const char *edit_get_syntax_type (const WEdit
* edit
);
74 /*** inline functions ****************************************************************************/
75 #endif /* MC__EDIT_H */