2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
2016-08-29 15:10:49 +00:00
|
|
|
* proto.h -- This file is part of GNU nano. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
2017-04-09 10:09:23 +00:00
|
|
|
* Copyright (C) 1999-2011, 2013-2017 Free Software Foundation, Inc. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
2016-08-29 15:10:49 +00:00
|
|
|
* GNU nano is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published *
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, *
|
|
|
|
* or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* GNU nano is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty *
|
|
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
|
|
* See the GNU General Public License for more details. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
2016-08-29 15:10:49 +00:00
|
|
|
* along with this program. If not, see http://www.gnu.org/licenses/. *
|
2000-06-06 05:53:49 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2005-04-15 18:07:26 +00:00
|
|
|
#ifndef PROTO_H
|
|
|
|
#define PROTO_H 1
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include "nano.h"
|
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* All external variables. See global.c for their descriptions. */
|
2017-04-22 16:27:01 +00:00
|
|
|
|
2006-05-10 13:41:53 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-12-14 19:37:03 +00:00
|
|
|
extern volatile sig_atomic_t the_window_resized;
|
2006-05-10 13:41:53 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-08 19:00:51 +00:00
|
|
|
#ifdef __linux__
|
2016-07-29 07:15:07 +00:00
|
|
|
extern bool console;
|
2016-08-11 10:37:11 +00:00
|
|
|
#endif
|
|
|
|
|
2014-06-30 18:04:33 +00:00
|
|
|
extern bool meta_key;
|
2016-04-24 09:28:28 +00:00
|
|
|
extern bool shift_held;
|
|
|
|
|
2015-03-28 17:01:46 +00:00
|
|
|
extern bool focusing;
|
2016-05-19 18:43:08 +00:00
|
|
|
|
2016-12-20 18:27:41 +00:00
|
|
|
extern bool as_an_at;
|
|
|
|
|
2016-10-20 08:44:29 +00:00
|
|
|
extern int margin;
|
|
|
|
extern int editwincols;
|
|
|
|
|
2016-05-19 18:43:08 +00:00
|
|
|
extern message_type lastmessage;
|
2014-06-30 18:04:33 +00:00
|
|
|
|
2016-12-07 04:13:47 +00:00
|
|
|
extern filestruct *pletion_line;
|
|
|
|
|
2017-04-22 16:27:01 +00:00
|
|
|
extern bool inhelp;
|
|
|
|
extern char *title;
|
|
|
|
|
2015-11-23 08:52:23 +00:00
|
|
|
extern int controlleft;
|
|
|
|
extern int controlright;
|
2016-06-25 13:16:52 +00:00
|
|
|
extern int controlup;
|
|
|
|
extern int controldown;
|
2017-04-05 09:22:35 +00:00
|
|
|
extern int controlhome;
|
|
|
|
extern int controlend;
|
2016-09-08 19:00:51 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-04-24 09:28:28 +00:00
|
|
|
extern int shiftcontrolleft;
|
|
|
|
extern int shiftcontrolright;
|
|
|
|
extern int shiftcontrolup;
|
|
|
|
extern int shiftcontroldown;
|
2017-04-05 09:22:35 +00:00
|
|
|
extern int shiftcontrolhome;
|
|
|
|
extern int shiftcontrolend;
|
2016-04-24 09:28:28 +00:00
|
|
|
extern int shiftaltleft;
|
|
|
|
extern int shiftaltright;
|
|
|
|
extern int shiftaltup;
|
|
|
|
extern int shiftaltdown;
|
2015-11-23 08:52:23 +00:00
|
|
|
#endif
|
|
|
|
|
2003-10-03 20:26:25 +00:00
|
|
|
#ifndef DISABLE_WRAPJUSTIFY
|
2005-07-24 19:57:51 +00:00
|
|
|
extern ssize_t fill;
|
2004-07-12 16:07:14 +00:00
|
|
|
extern ssize_t wrap_at;
|
2003-10-03 20:26:25 +00:00
|
|
|
#endif
|
2005-12-08 07:09:08 +00:00
|
|
|
|
|
|
|
extern char *last_search;
|
|
|
|
|
2016-04-30 19:22:16 +00:00
|
|
|
extern char *present_path;
|
|
|
|
|
2009-08-14 03:18:29 +00:00
|
|
|
extern unsigned flags[4];
|
2005-12-08 07:09:08 +00:00
|
|
|
extern WINDOW *topwin;
|
|
|
|
extern WINDOW *edit;
|
|
|
|
extern WINDOW *bottomwin;
|
|
|
|
extern int editwinrows;
|
|
|
|
|
|
|
|
extern filestruct *cutbuffer;
|
2008-07-31 04:24:04 +00:00
|
|
|
extern filestruct *cutbottom;
|
2005-12-08 07:09:08 +00:00
|
|
|
extern partition *filepart;
|
|
|
|
extern openfilestruct *openfile;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2006-01-06 21:51:10 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
extern char *matchbrackets;
|
|
|
|
#endif
|
|
|
|
|
2015-08-09 16:05:50 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-05-29 16:47:52 +00:00
|
|
|
extern char *whitespace;
|
2005-03-10 22:52:21 +00:00
|
|
|
extern int whitespace_len[2];
|
2004-05-29 16:47:52 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-26 19:01:18 +00:00
|
|
|
extern const char *exit_tag;
|
|
|
|
extern const char *close_tag;
|
2014-04-07 09:02:22 +00:00
|
|
|
extern const char *uncut_tag;
|
2002-03-03 22:36:36 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2014-04-07 09:02:22 +00:00
|
|
|
extern const char *unjust_tag;
|
2004-05-29 16:38:57 +00:00
|
|
|
extern char *punct;
|
|
|
|
extern char *brackets;
|
2002-03-10 01:22:21 +00:00
|
|
|
extern char *quotestr;
|
2004-07-30 03:54:34 +00:00
|
|
|
extern regex_t quotereg;
|
|
|
|
extern int quoterc;
|
|
|
|
extern char *quoteerr;
|
2014-06-20 10:48:26 +00:00
|
|
|
#endif /* !DISABLE_JUSTIFY */
|
|
|
|
|
2016-06-30 16:02:45 +00:00
|
|
|
extern char *word_chars;
|
|
|
|
|
2009-02-25 04:32:15 +00:00
|
|
|
extern bool nodelay_mode;
|
2016-06-30 16:02:45 +00:00
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
extern char *answer;
|
|
|
|
|
|
|
|
extern ssize_t tabsize;
|
|
|
|
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-02-28 16:24:31 +00:00
|
|
|
extern char *backup_dir;
|
2013-01-03 04:36:39 +00:00
|
|
|
extern const char *locking_prefix;
|
|
|
|
extern const char *locking_suffix;
|
2004-02-28 16:24:31 +00:00
|
|
|
#endif
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
extern char *operating_dir;
|
2002-02-27 04:14:16 +00:00
|
|
|
extern char *full_operating_dir;
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
2005-12-08 07:09:08 +00:00
|
|
|
|
2001-04-18 04:28:54 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2002-09-06 20:35:28 +00:00
|
|
|
extern char *alt_speller;
|
2002-07-19 01:08:59 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2005-12-08 07:09:08 +00:00
|
|
|
extern syntaxtype *syntaxes;
|
|
|
|
extern char *syntaxstr;
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
2000-09-06 13:39:17 +00:00
|
|
|
|
2016-04-25 19:14:18 +00:00
|
|
|
extern bool refresh_needed;
|
2014-06-20 07:55:24 +00:00
|
|
|
|
2008-03-05 07:34:01 +00:00
|
|
|
extern int currmenu;
|
2014-06-20 07:55:24 +00:00
|
|
|
extern sc *sclist;
|
|
|
|
extern subnfunc *allfuncs;
|
|
|
|
extern subnfunc *exitfunc;
|
|
|
|
extern subnfunc *uncutfunc;
|
2002-04-23 10:56:06 +00:00
|
|
|
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-05-23 16:30:06 +00:00
|
|
|
extern filestruct *search_history;
|
|
|
|
extern filestruct *searchage;
|
|
|
|
extern filestruct *searchbot;
|
|
|
|
extern filestruct *replace_history;
|
|
|
|
extern filestruct *replaceage;
|
|
|
|
extern filestruct *replacebot;
|
2016-01-12 19:20:40 +00:00
|
|
|
extern poshiststruct *position_history;
|
2003-01-05 20:41:21 +00:00
|
|
|
#endif
|
|
|
|
|
2005-12-08 07:09:08 +00:00
|
|
|
extern regex_t search_regexp;
|
|
|
|
extern regmatch_t regmatches[10];
|
|
|
|
|
2014-05-04 08:53:06 +00:00
|
|
|
extern int hilite_attribute;
|
2014-05-03 18:24:45 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
|
|
|
extern char* specified_color_combo[NUMBER_OF_ELEMENTS];
|
|
|
|
#endif
|
2016-07-12 07:35:48 +00:00
|
|
|
extern int interface_color_pair[NUMBER_OF_ELEMENTS];
|
2003-02-03 03:32:08 +00:00
|
|
|
|
2004-08-17 05:23:38 +00:00
|
|
|
extern char *homedir;
|
|
|
|
|
2014-07-02 08:47:09 +00:00
|
|
|
typedef void (*functionptrtype)(void);
|
|
|
|
|
2017-04-09 11:28:27 +00:00
|
|
|
/* Most functions in browser.c. */
|
2005-11-14 21:32:42 +00:00
|
|
|
#ifndef DISABLE_BROWSER
|
|
|
|
char *do_browse_from(const char *inpath);
|
2016-05-25 10:09:22 +00:00
|
|
|
void read_the_list(const char *path, DIR *dir);
|
2014-07-02 09:29:05 +00:00
|
|
|
functionptrtype parse_browser_input(int *kbinput);
|
2006-02-18 21:32:29 +00:00
|
|
|
void browser_refresh(void);
|
2015-04-08 18:40:40 +00:00
|
|
|
void browser_select_dirname(const char *needle);
|
2006-03-30 07:03:04 +00:00
|
|
|
void do_filesearch(void);
|
|
|
|
void do_fileresearch(void);
|
|
|
|
void do_first_file(void);
|
|
|
|
void do_last_file(void);
|
2017-03-20 11:24:42 +00:00
|
|
|
char *strip_last_component(const char *path);
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-16 10:09:26 +00:00
|
|
|
/* Most functions in chars.c. */
|
2006-04-12 15:27:40 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
|
|
|
void utf8_init(void);
|
|
|
|
bool using_utf8(void);
|
|
|
|
#endif
|
2014-05-25 19:41:49 +00:00
|
|
|
char *addstrings(char* str1, size_t len1, char* str2, size_t len2);
|
2005-06-13 19:51:56 +00:00
|
|
|
bool is_byte(int c);
|
2016-08-02 20:09:22 +00:00
|
|
|
bool is_alpha_mbchar(const char *c);
|
2005-06-12 17:48:46 +00:00
|
|
|
bool is_blank_mbchar(const char *c);
|
2006-05-24 17:36:00 +00:00
|
|
|
bool is_ascii_cntrl_char(int c);
|
2005-06-12 17:48:46 +00:00
|
|
|
bool is_cntrl_mbchar(const char *c);
|
2005-06-15 03:03:45 +00:00
|
|
|
bool is_word_mbchar(const char *c, bool allow_punct);
|
2016-12-18 08:40:09 +00:00
|
|
|
char control_mbrep(const char *c, bool isdata);
|
2016-06-06 11:20:04 +00:00
|
|
|
int length_of_char(const char *c, int *width);
|
2005-01-12 03:25:57 +00:00
|
|
|
int mbwidth(const char *c);
|
2005-08-08 23:03:25 +00:00
|
|
|
char *make_mbchar(long chr, int *chr_mb_len);
|
2005-07-26 06:13:45 +00:00
|
|
|
int parse_mbchar(const char *buf, char *chr, size_t *col);
|
2005-01-14 21:50:32 +00:00
|
|
|
size_t move_mbleft(const char *buf, size_t pos);
|
|
|
|
size_t move_mbright(const char *buf, size_t pos);
|
2005-01-16 18:49:19 +00:00
|
|
|
int mbstrcasecmp(const char *s1, const char *s2);
|
|
|
|
int mbstrncasecmp(const char *s1, const char *s2, size_t n);
|
2007-07-06 13:44:13 +00:00
|
|
|
char *mbstrcasestr(const char *haystack, const char *needle);
|
2016-12-18 20:45:47 +00:00
|
|
|
char *revstrstr(const char *haystack, const char *needle,
|
|
|
|
const char *pointer);
|
2007-07-06 13:44:13 +00:00
|
|
|
char *mbrevstrcasestr(const char *haystack, const char *needle, const
|
|
|
|
char *rev_start);
|
2005-01-25 19:21:11 +00:00
|
|
|
size_t mbstrlen(const char *s);
|
2005-01-16 18:49:19 +00:00
|
|
|
size_t mbstrnlen(const char *s, size_t maxlen);
|
2006-01-06 07:10:30 +00:00
|
|
|
#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
|
|
|
|
char *mbstrchr(const char *s, const char *c);
|
|
|
|
#endif
|
2005-11-15 23:45:29 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-01-06 07:10:30 +00:00
|
|
|
char *mbstrpbrk(const char *s, const char *accept);
|
2016-06-25 19:36:58 +00:00
|
|
|
char *revstrpbrk(const char *head, const char *accept, const char *index);
|
|
|
|
char *mbrevstrpbrk(const char *head, const char *accept, const char *index);
|
2005-11-15 23:45:29 +00:00
|
|
|
#endif
|
2014-04-13 20:50:20 +00:00
|
|
|
#if !defined(DISABLE_NANORC) && (!defined(NANO_TINY) || !defined(DISABLE_JUSTIFY))
|
2005-06-14 01:55:56 +00:00
|
|
|
bool has_blank_mbchars(const char *s);
|
|
|
|
#endif
|
2005-08-05 03:14:29 +00:00
|
|
|
#ifdef ENABLE_UTF8
|
|
|
|
bool is_valid_unicode(wchar_t wc);
|
|
|
|
#endif
|
2014-04-13 20:50:20 +00:00
|
|
|
#ifndef DISABLE_NANORC
|
2005-06-14 23:36:13 +00:00
|
|
|
bool is_valid_mbstring(const char *s);
|
|
|
|
#endif
|
2005-01-12 03:25:57 +00:00
|
|
|
|
2016-02-16 10:09:26 +00:00
|
|
|
/* Most functions in color.c. */
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2002-09-27 14:21:59 +00:00
|
|
|
void set_colorpairs(void);
|
2005-07-13 20:18:46 +00:00
|
|
|
void color_init(void);
|
2005-07-14 18:31:45 +00:00
|
|
|
void color_update(void);
|
2017-02-13 18:11:04 +00:00
|
|
|
void check_the_multis(filestruct *line);
|
2015-12-22 16:51:00 +00:00
|
|
|
void alloc_multidata_if_needed(filestruct *fileptr);
|
|
|
|
void precalc_multicolorinfo(void);
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
2002-04-23 10:56:06 +00:00
|
|
|
|
2017-04-09 11:28:27 +00:00
|
|
|
/* Most functions in cut.c. */
|
2004-05-29 15:36:58 +00:00
|
|
|
void cutbuffer_reset(void);
|
2014-06-18 19:04:35 +00:00
|
|
|
bool keeping_cutbuffer(void);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-12-31 15:36:14 +00:00
|
|
|
void cut_marked(bool *right_side_up);
|
2005-03-26 22:49:46 +00:00
|
|
|
#endif
|
2016-10-23 17:42:05 +00:00
|
|
|
void do_cut_text(bool copy_text, bool cut_till_eof);
|
2006-04-25 02:23:28 +00:00
|
|
|
void do_cut_text_void(void);
|
|
|
|
#ifndef NANO_TINY
|
|
|
|
void do_copy_text(void);
|
2014-06-30 20:39:27 +00:00
|
|
|
void do_cut_till_eof(void);
|
2005-01-01 07:43:32 +00:00
|
|
|
#endif
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_uncut_text(void);
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2016-01-31 13:06:06 +00:00
|
|
|
/* Most functions in files.c. */
|
2005-07-23 00:41:45 +00:00
|
|
|
void initialize_buffer_text(void);
|
2015-12-30 10:11:20 +00:00
|
|
|
bool open_buffer(const char *filename, bool undoable);
|
2005-11-08 19:15:58 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
void replace_buffer(const char *filename);
|
2017-02-10 01:04:14 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
void replace_marked_buffer(const char *filename, filestruct *top, size_t top_x,
|
|
|
|
filestruct *bot, size_t bot_x);
|
|
|
|
#endif
|
2005-11-08 19:15:58 +00:00
|
|
|
#endif
|
2005-07-12 23:06:22 +00:00
|
|
|
void display_buffer(void);
|
2014-04-03 20:23:07 +00:00
|
|
|
#ifndef DISABLE_MULTIBUFFER
|
2005-07-08 20:09:16 +00:00
|
|
|
void switch_to_prev_buffer_void(void);
|
|
|
|
void switch_to_next_buffer_void(void);
|
2016-05-17 11:37:53 +00:00
|
|
|
bool close_buffer(void);
|
2005-07-08 02:47:05 +00:00
|
|
|
#endif
|
2017-02-09 18:17:54 +00:00
|
|
|
void read_file(FILE *f, int fd, const char *filename, bool undoable,
|
|
|
|
bool checkwritable);
|
2015-01-20 06:15:34 +00:00
|
|
|
int open_file(const char *filename, bool newfie, bool quiet, FILE **f);
|
2005-05-29 02:22:55 +00:00
|
|
|
char *get_next_filename(const char *name, const char *suffix);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_insertfile_void(void);
|
2002-09-13 18:14:04 +00:00
|
|
|
char *get_full_path(const char *origpath);
|
2005-05-31 04:28:15 +00:00
|
|
|
char *safe_tempfile(FILE **f);
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
2002-09-13 18:14:04 +00:00
|
|
|
void init_operating_dir(void);
|
2005-02-11 20:09:11 +00:00
|
|
|
bool check_operating_dir(const char *currpath, bool allow_tabcomp);
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2004-02-28 16:24:31 +00:00
|
|
|
void init_backup_dir(void);
|
2013-01-01 03:24:39 +00:00
|
|
|
int delete_lockfile(const char *lockfilename);
|
2013-01-03 03:57:18 +00:00
|
|
|
int write_lockfile(const char *lockfilename, const char *origfilename, bool modified);
|
2004-02-28 16:24:31 +00:00
|
|
|
#endif
|
2017-04-04 07:29:31 +00:00
|
|
|
int copy_file(FILE *inn, FILE *out, bool close_out);
|
2016-07-15 10:59:59 +00:00
|
|
|
bool write_file(const char *name, FILE *f_open, bool tmp,
|
|
|
|
kind_of_writing_type method, bool nonamechange);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2007-01-11 21:36:29 +00:00
|
|
|
bool write_marked_file(const char *name, FILE *f_open, bool tmp,
|
2016-07-15 10:59:59 +00:00
|
|
|
kind_of_writing_type method);
|
2004-01-23 19:34:03 +00:00
|
|
|
#endif
|
2015-12-23 16:34:44 +00:00
|
|
|
int do_writeout(bool exiting);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_writeout_void(void);
|
2015-07-25 19:25:50 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
void do_savefile(void);
|
|
|
|
#endif
|
2002-09-13 18:14:04 +00:00
|
|
|
char *real_dir_from_tilde(const char *buf);
|
2005-02-08 20:37:53 +00:00
|
|
|
#if !defined(DISABLE_TABCOMP) || !defined(DISABLE_BROWSER)
|
|
|
|
int diralphasort(const void *va, const void *vb);
|
2005-06-15 06:30:05 +00:00
|
|
|
void free_chararray(char **array, size_t len);
|
2005-02-08 20:37:53 +00:00
|
|
|
#endif
|
2003-01-13 01:35:15 +00:00
|
|
|
#ifndef DISABLE_TABCOMP
|
2016-04-17 16:09:24 +00:00
|
|
|
char *input_tab(char *buf, bool allow_files, size_t *place,
|
2016-04-26 15:50:25 +00:00
|
|
|
bool *lastwastab, void (*refresh_func)(void), bool *listed);
|
2003-01-13 01:35:15 +00:00
|
|
|
#endif
|
2016-04-23 11:23:49 +00:00
|
|
|
const char *tail(const char *path);
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2004-08-11 05:13:08 +00:00
|
|
|
void load_history(void);
|
|
|
|
void save_history(void);
|
2011-02-16 06:52:30 +00:00
|
|
|
int check_dotnano(void);
|
|
|
|
void load_poshistory(void);
|
|
|
|
void save_poshistory(void);
|
2014-06-20 07:55:24 +00:00
|
|
|
void update_poshistory(char *filename, ssize_t lineno, ssize_t xpos);
|
2016-12-23 12:49:14 +00:00
|
|
|
bool has_old_position(const char *file, ssize_t *line, ssize_t *column);
|
2004-08-11 05:13:08 +00:00
|
|
|
#endif
|
2002-04-10 02:31:20 +00:00
|
|
|
|
2014-04-21 13:00:49 +00:00
|
|
|
/* Some functions in global.c. */
|
2008-03-05 07:34:01 +00:00
|
|
|
size_t length_of_list(int menu);
|
2014-06-20 10:34:52 +00:00
|
|
|
const sc *first_sc_for(int menu, void (*func)(void));
|
2016-12-22 11:02:11 +00:00
|
|
|
int the_code_for(void (*func)(void), int defaultval);
|
2014-07-02 08:47:09 +00:00
|
|
|
functionptrtype func_from_key(int *kbinput);
|
2016-10-15 15:55:19 +00:00
|
|
|
void assign_keyinfo(sc *s, const char *keystring, const int keycode);
|
2014-06-20 10:34:52 +00:00
|
|
|
void print_sclist(void);
|
2014-04-07 09:24:10 +00:00
|
|
|
void shortcut_init(void);
|
2014-06-20 10:34:52 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2015-01-03 07:24:17 +00:00
|
|
|
void set_lint_or_format_shortcuts(void);
|
2014-06-20 10:34:52 +00:00
|
|
|
void set_spell_shortcuts(void);
|
|
|
|
#endif
|
2016-01-04 09:52:43 +00:00
|
|
|
const subnfunc *sctofunc(const sc *s);
|
2014-06-20 10:34:52 +00:00
|
|
|
const char *flagtostr(int flag);
|
2016-01-04 09:12:21 +00:00
|
|
|
sc *strtosc(const char *input);
|
|
|
|
int strtomenu(const char *input);
|
2002-07-19 01:08:59 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
void thanks_for_all_the_fish(void);
|
2002-04-10 02:31:20 +00:00
|
|
|
#endif
|
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* All functions in help.c. */
|
2017-04-25 15:51:45 +00:00
|
|
|
#ifdef ENABLE_HELP
|
2017-04-22 16:27:01 +00:00
|
|
|
void display_the_help_text(bool redisplaying);
|
2015-08-16 09:28:33 +00:00
|
|
|
void do_help(void);
|
2005-11-01 23:00:56 +00:00
|
|
|
void help_init(void);
|
2014-07-02 09:29:05 +00:00
|
|
|
functionptrtype parse_help_input(int *kbinput);
|
2005-11-01 20:11:55 +00:00
|
|
|
size_t help_line_len(const char *ptr);
|
2005-11-01 19:32:45 +00:00
|
|
|
#endif
|
2014-04-21 13:00:49 +00:00
|
|
|
void do_help_void(void);
|
2005-11-01 19:32:45 +00:00
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* All functions in move.c. */
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_first_line(void);
|
|
|
|
void do_last_line(void);
|
|
|
|
void do_page_up(void);
|
|
|
|
void do_page_down(void);
|
2005-07-20 19:24:11 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2017-04-17 10:01:03 +00:00
|
|
|
void do_para_begin(bool update_screen);
|
2005-07-20 19:24:11 +00:00
|
|
|
void do_para_begin_void(void);
|
2017-04-17 10:01:03 +00:00
|
|
|
void do_para_end(bool update_screen);
|
2005-07-20 19:24:11 +00:00
|
|
|
void do_para_end_void(void);
|
|
|
|
#endif
|
2016-06-25 13:16:52 +00:00
|
|
|
void do_prev_block(void);
|
|
|
|
void do_next_block(void);
|
2017-04-17 10:01:03 +00:00
|
|
|
void do_prev_word(bool allow_punct, bool update_screen);
|
2005-07-20 21:31:19 +00:00
|
|
|
void do_prev_word_void(void);
|
2017-04-17 10:01:03 +00:00
|
|
|
bool do_next_word(bool allow_punct, bool update_screen);
|
2016-02-22 12:49:08 +00:00
|
|
|
void do_next_word_void(void);
|
2017-01-22 20:42:58 +00:00
|
|
|
void do_home(bool be_clever);
|
2017-01-22 20:09:15 +00:00
|
|
|
void do_home_void(void);
|
2017-01-22 20:42:58 +00:00
|
|
|
void do_end(bool be_clever);
|
2017-01-22 20:09:15 +00:00
|
|
|
void do_end_void(void);
|
2016-07-25 15:23:45 +00:00
|
|
|
void do_up(bool scroll_only);
|
2006-07-06 22:17:47 +00:00
|
|
|
void do_up_void(void);
|
2016-07-25 15:23:45 +00:00
|
|
|
void do_down(bool scroll_only);
|
2006-07-06 22:17:47 +00:00
|
|
|
void do_down_void(void);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-07-25 15:23:45 +00:00
|
|
|
void do_scroll_up(void);
|
2005-10-24 02:12:09 +00:00
|
|
|
void do_scroll_down(void);
|
|
|
|
#endif
|
2005-09-13 04:53:44 +00:00
|
|
|
void do_left(void);
|
|
|
|
void do_right(void);
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2017-04-09 11:28:27 +00:00
|
|
|
/* Most functions in nano.c. */
|
2002-09-06 20:35:28 +00:00
|
|
|
filestruct *make_new_node(filestruct *prevnode);
|
2015-11-24 13:28:32 +00:00
|
|
|
void splice_node(filestruct *afterthis, filestruct *newnode);
|
2015-11-22 16:14:42 +00:00
|
|
|
void unlink_node(filestruct *fileptr);
|
2002-09-06 20:35:28 +00:00
|
|
|
void delete_node(filestruct *fileptr);
|
|
|
|
filestruct *copy_filestruct(const filestruct *src);
|
2002-07-19 01:08:59 +00:00
|
|
|
void free_filestruct(filestruct *src);
|
2005-07-08 02:47:05 +00:00
|
|
|
void renumber(filestruct *fileptr);
|
2004-11-03 22:03:41 +00:00
|
|
|
partition *partition_filestruct(filestruct *top, size_t top_x,
|
|
|
|
filestruct *bot, size_t bot_x);
|
2004-11-22 00:16:23 +00:00
|
|
|
void unpartition_filestruct(partition **p);
|
2017-02-15 03:35:01 +00:00
|
|
|
void extract_buffer(filestruct **file_top, filestruct **file_bot,
|
2004-11-23 04:08:28 +00:00
|
|
|
filestruct *top, size_t top_x, filestruct *bot, size_t bot_x);
|
2017-02-10 06:17:33 +00:00
|
|
|
void ingraft_buffer(filestruct *somebuffer);
|
2017-02-15 03:35:01 +00:00
|
|
|
void copy_from_buffer(filestruct *somebuffer);
|
2005-07-20 21:08:38 +00:00
|
|
|
openfilestruct *make_new_opennode(void);
|
|
|
|
void unlink_opennode(openfilestruct *fileptr);
|
|
|
|
void delete_opennode(openfilestruct *fileptr);
|
2005-07-08 02:47:05 +00:00
|
|
|
void print_view_warning(void);
|
2015-07-30 18:10:16 +00:00
|
|
|
void show_restricted_warning(void);
|
2017-04-25 15:51:45 +00:00
|
|
|
#ifndef ENABLE_HELP
|
2015-07-30 18:10:16 +00:00
|
|
|
void say_there_is_no_help(void);
|
|
|
|
#endif
|
2005-07-08 02:47:05 +00:00
|
|
|
void finish(void);
|
|
|
|
void die(const char *msg, ...);
|
2016-08-02 15:26:25 +00:00
|
|
|
void die_save_file(const char *die_filename, struct stat *die_stat);
|
2005-07-08 02:47:05 +00:00
|
|
|
void window_init(void);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_exit(void);
|
2015-12-23 16:34:44 +00:00
|
|
|
void close_and_go(void);
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE handle_hupterm(int signal);
|
|
|
|
RETSIGTYPE do_suspend(int signal);
|
|
|
|
RETSIGTYPE do_continue(int signal);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE handle_sigwinch(int signal);
|
2015-05-28 13:02:29 +00:00
|
|
|
void regenerate_screen(void);
|
2016-01-04 10:37:11 +00:00
|
|
|
void allow_sigwinch(bool allow);
|
2008-03-05 07:34:01 +00:00
|
|
|
void do_toggle(int flag);
|
2015-03-08 12:10:52 +00:00
|
|
|
void do_toggle_void(void);
|
2004-05-18 01:20:36 +00:00
|
|
|
void enable_signals(void);
|
|
|
|
#endif
|
|
|
|
void disable_flow_control(void);
|
|
|
|
void enable_flow_control(void);
|
2004-07-27 16:46:35 +00:00
|
|
|
void terminal_init(void);
|
2016-04-27 12:37:31 +00:00
|
|
|
void unbound_key(int code);
|
2014-06-30 18:04:33 +00:00
|
|
|
int do_input(bool allow_funcs);
|
2004-12-04 17:41:52 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2007-05-20 23:41:56 +00:00
|
|
|
int do_mouse(void);
|
2004-12-04 17:41:52 +00:00
|
|
|
#endif
|
2005-03-17 03:52:08 +00:00
|
|
|
void do_output(char *output, size_t output_len, bool allow_cntrls);
|
2002-04-10 02:31:20 +00:00
|
|
|
|
2016-12-03 19:37:30 +00:00
|
|
|
/* Most functions in prompt.c. */
|
2005-11-01 17:37:44 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2007-05-20 23:41:56 +00:00
|
|
|
int do_statusbar_mouse(void);
|
2005-11-01 17:37:44 +00:00
|
|
|
#endif
|
2016-02-14 12:03:47 +00:00
|
|
|
void do_statusbar_output(int *the_input, size_t input_len,
|
2016-12-27 11:20:20 +00:00
|
|
|
bool filtering);
|
2005-11-01 17:37:44 +00:00
|
|
|
void do_statusbar_home(void);
|
|
|
|
void do_statusbar_end(void);
|
|
|
|
void do_statusbar_left(void);
|
2005-12-08 07:09:08 +00:00
|
|
|
void do_statusbar_right(void);
|
2005-11-01 17:37:44 +00:00
|
|
|
void do_statusbar_backspace(void);
|
|
|
|
void do_statusbar_delete(void);
|
|
|
|
void do_statusbar_cut_text(void);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2016-01-24 15:42:45 +00:00
|
|
|
void do_statusbar_prev_word(void);
|
2016-02-22 12:49:08 +00:00
|
|
|
void do_statusbar_next_word(void);
|
2005-11-01 17:37:44 +00:00
|
|
|
#endif
|
2016-12-27 11:20:20 +00:00
|
|
|
void do_statusbar_verbatim_input(void);
|
2005-11-01 17:37:44 +00:00
|
|
|
size_t statusbar_xplustabs(void);
|
|
|
|
size_t get_statusbar_page_start(size_t start_col, size_t column);
|
2016-04-17 13:24:05 +00:00
|
|
|
void reinit_statusbar_x(void);
|
2016-02-06 11:40:15 +00:00
|
|
|
void update_the_statusbar(void);
|
2017-01-02 20:12:44 +00:00
|
|
|
int do_prompt(bool allow_tabs, bool allow_files,
|
2008-03-05 07:34:01 +00:00
|
|
|
int menu, const char *curranswer,
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
2005-11-01 17:37:44 +00:00
|
|
|
filestruct **history_list,
|
|
|
|
#endif
|
2006-02-18 21:32:29 +00:00
|
|
|
void (*refresh_func)(void), const char *msg, ...);
|
2005-11-07 21:45:44 +00:00
|
|
|
int do_yesno_prompt(bool all, const char *msg);
|
2005-11-01 17:37:44 +00:00
|
|
|
|
2014-05-12 13:52:50 +00:00
|
|
|
/* Most functions in rcfile.c. */
|
2014-04-13 20:50:20 +00:00
|
|
|
#ifndef DISABLE_NANORC
|
2014-04-04 11:59:03 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
2014-05-03 18:24:45 +00:00
|
|
|
bool parse_color_names(char *combostr, short *fg, short *bg, bool *bright);
|
2016-03-10 11:00:59 +00:00
|
|
|
void grab_and_store(const char *kind, char *ptr, regexlisttype **storage);
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
2016-11-27 15:34:34 +00:00
|
|
|
void parse_rcfile(FILE *rcstream, bool syntax_only);
|
2016-11-27 17:21:04 +00:00
|
|
|
void do_rcfiles(void);
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif /* !DISABLE_NANORC */
|
2001-04-18 04:28:54 +00:00
|
|
|
|
2017-04-09 11:28:27 +00:00
|
|
|
/* Most functions in search.c. */
|
2002-09-06 20:35:28 +00:00
|
|
|
void not_found_msg(const char *str);
|
2005-12-08 07:09:08 +00:00
|
|
|
void search_replace_abort(void);
|
2017-02-10 12:51:51 +00:00
|
|
|
int findnextstr(const char *needle, bool whole_word_only, bool have_region,
|
|
|
|
size_t *match_len, bool skipone, const filestruct *begin, size_t begin_x);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_search(void);
|
2015-07-26 09:23:24 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
void do_findprevious(void);
|
|
|
|
void do_findnext(void);
|
|
|
|
#endif
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_research(void);
|
2016-04-04 17:38:57 +00:00
|
|
|
void go_looking(void);
|
2016-10-23 15:59:26 +00:00
|
|
|
ssize_t do_replace_loop(const char *needle, bool whole_word_only,
|
|
|
|
const filestruct *real_current, size_t *real_current_x);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_replace(void);
|
2015-12-31 16:49:07 +00:00
|
|
|
void goto_line_posx(ssize_t line, size_t pos_x);
|
2005-06-29 00:17:18 +00:00
|
|
|
void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
|
2015-12-31 19:20:40 +00:00
|
|
|
bool interactive);
|
2005-05-17 18:06:26 +00:00
|
|
|
void do_gotolinecolumn_void(void);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-06-16 20:58:19 +00:00
|
|
|
void do_find_bracket(void);
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_TABCOMP
|
2016-02-20 12:16:43 +00:00
|
|
|
char *get_history_completion(filestruct **h, char *s, size_t len);
|
2014-06-19 20:05:24 +00:00
|
|
|
#endif
|
2005-06-03 19:28:30 +00:00
|
|
|
#endif
|
2014-06-19 20:05:24 +00:00
|
|
|
#ifndef DISABLE_HISTORIES
|
|
|
|
bool history_has_changed(void);
|
2003-01-05 20:41:21 +00:00
|
|
|
void history_init(void);
|
2005-07-18 07:48:50 +00:00
|
|
|
void history_reset(const filestruct *h);
|
2005-06-02 18:41:31 +00:00
|
|
|
void update_history(filestruct **h, const char *s);
|
2005-05-23 16:30:06 +00:00
|
|
|
char *get_history_older(filestruct **h);
|
|
|
|
char *get_history_newer(filestruct **h);
|
2011-02-07 14:45:56 +00:00
|
|
|
void get_history_older_void(void);
|
|
|
|
void get_history_newer_void(void);
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2017-04-09 11:28:27 +00:00
|
|
|
/* Most functions in text.c. */
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-25 02:41:59 +00:00
|
|
|
void do_mark(void);
|
|
|
|
#endif
|
|
|
|
void do_delete(void);
|
|
|
|
void do_backspace(void);
|
2015-07-31 11:52:26 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
void do_cut_prev_word(void);
|
|
|
|
void do_cut_next_word(void);
|
|
|
|
#endif
|
2005-07-25 02:41:59 +00:00
|
|
|
void do_tab(void);
|
2006-04-28 13:19:56 +00:00
|
|
|
#ifndef NANO_TINY
|
2006-07-05 18:42:22 +00:00
|
|
|
void do_indent(ssize_t cols);
|
|
|
|
void do_indent_void(void);
|
|
|
|
void do_unindent(void);
|
2006-04-28 13:19:56 +00:00
|
|
|
#endif
|
2016-09-08 19:00:51 +00:00
|
|
|
bool white_string(const char *s);
|
|
|
|
#ifdef ENABLE_COMMENT
|
2016-05-25 20:13:50 +00:00
|
|
|
void do_comment(void);
|
2016-12-15 12:04:52 +00:00
|
|
|
bool comment_line(undo_type action, filestruct *f, const char *comment_seq);
|
2016-05-25 20:13:50 +00:00
|
|
|
#endif
|
2016-12-15 12:04:52 +00:00
|
|
|
void do_undo(void);
|
|
|
|
void do_redo(void);
|
2015-11-11 19:04:31 +00:00
|
|
|
void do_enter(void);
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-12-06 19:39:56 +00:00
|
|
|
RETSIGTYPE cancel_command(int signal);
|
2005-07-24 19:57:51 +00:00
|
|
|
bool execute_command(const char *command);
|
2016-12-15 12:04:52 +00:00
|
|
|
void discard_until(const undo *thisitem, openfilestruct *thefile);
|
|
|
|
void add_undo(undo_type action);
|
|
|
|
#ifndef DISABLE_COMMENT
|
|
|
|
void update_comment_undo(ssize_t lineno);
|
2003-03-11 03:50:40 +00:00
|
|
|
#endif
|
2016-12-15 12:04:52 +00:00
|
|
|
void update_undo(undo_type action);
|
|
|
|
#endif /* !NANO_TINY */
|
2005-07-24 19:57:51 +00:00
|
|
|
#ifndef DISABLE_WRAPPING
|
|
|
|
void wrap_reset(void);
|
2014-06-09 10:01:54 +00:00
|
|
|
bool do_wrap(filestruct *line);
|
2005-07-24 19:57:51 +00:00
|
|
|
#endif
|
2017-04-25 15:51:45 +00:00
|
|
|
#if defined(ENABLE_HELP) || !defined(DISABLE_WRAPJUSTIFY)
|
2017-02-14 19:53:25 +00:00
|
|
|
ssize_t break_line(const char *line, ssize_t goal, bool snap_at_nl);
|
2005-07-24 19:57:51 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#if !defined(NANO_TINY) || !defined(DISABLE_JUSTIFY)
|
2005-07-24 19:57:51 +00:00
|
|
|
size_t indent_length(const char *line);
|
|
|
|
#endif
|
|
|
|
#ifndef DISABLE_JUSTIFY
|
|
|
|
void justify_format(filestruct *paragraph, size_t skip);
|
|
|
|
bool begpar(const filestruct *const foo);
|
|
|
|
bool inpar(const filestruct *const foo);
|
|
|
|
void do_justify(bool full_justify);
|
|
|
|
void do_justify_void(void);
|
|
|
|
void do_full_justify(void);
|
2005-11-14 21:32:42 +00:00
|
|
|
#endif
|
2005-07-25 02:33:45 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
void do_spell(void);
|
|
|
|
#endif
|
2014-04-21 13:00:49 +00:00
|
|
|
#ifndef DISABLE_COLOR
|
|
|
|
void do_linter(void);
|
2015-01-03 07:24:17 +00:00
|
|
|
void do_formatter(void);
|
2014-04-21 13:00:49 +00:00
|
|
|
#endif
|
2005-11-15 03:17:35 +00:00
|
|
|
#ifndef NANO_TINY
|
2005-07-25 04:21:46 +00:00
|
|
|
void do_wordlinechar_count(void);
|
2005-07-24 19:57:51 +00:00
|
|
|
#endif
|
2005-11-07 06:06:05 +00:00
|
|
|
void do_verbatim_input(void);
|
2016-12-07 04:13:47 +00:00
|
|
|
void complete_a_word(void);
|
2005-07-24 19:57:51 +00:00
|
|
|
|
2007-01-01 05:15:32 +00:00
|
|
|
/* All functions in utils.c. */
|
2005-02-08 20:37:53 +00:00
|
|
|
void get_homedir(void);
|
2016-12-09 17:36:01 +00:00
|
|
|
#ifdef ENABLE_LINENUMBERS
|
|
|
|
int digits(ssize_t n);
|
|
|
|
#endif
|
2004-08-04 18:24:53 +00:00
|
|
|
bool parse_num(const char *str, ssize_t *val);
|
2005-06-28 06:25:34 +00:00
|
|
|
bool parse_line_column(const char *str, ssize_t *line, ssize_t *column);
|
2016-12-16 19:34:38 +00:00
|
|
|
void snuggly_fit(char **str);
|
2002-07-19 01:08:59 +00:00
|
|
|
void null_at(char **data, size_t index);
|
|
|
|
void unsunder(char *str, size_t true_len);
|
|
|
|
void sunder(char *str);
|
2008-08-30 05:16:20 +00:00
|
|
|
const char *fixbounds(const char *r);
|
2005-11-16 05:59:06 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
2016-05-02 20:20:19 +00:00
|
|
|
bool is_separate_word(size_t position, size_t length, const char *buf);
|
2005-11-16 05:59:06 +00:00
|
|
|
#endif
|
2002-09-06 20:35:28 +00:00
|
|
|
const char *strstrwrapper(const char *haystack, const char *needle,
|
2004-02-24 20:41:39 +00:00
|
|
|
const char *start);
|
2002-07-19 01:08:59 +00:00
|
|
|
void nperror(const char *s);
|
|
|
|
void *nmalloc(size_t howmuch);
|
|
|
|
void *nrealloc(void *ptr, size_t howmuch);
|
2004-11-02 15:18:30 +00:00
|
|
|
char *mallocstrncpy(char *dest, const char *src, size_t n);
|
2002-09-06 20:35:28 +00:00
|
|
|
char *mallocstrcpy(char *dest, const char *src);
|
2016-07-13 13:04:40 +00:00
|
|
|
char *free_and_assign(char *dest, char *src);
|
2005-11-01 17:45:31 +00:00
|
|
|
size_t get_page_start(size_t column);
|
2005-10-31 23:07:58 +00:00
|
|
|
size_t xplustabs(void);
|
|
|
|
size_t actual_x(const char *s, size_t column);
|
|
|
|
size_t strnlenpt(const char *s, size_t maxlen);
|
|
|
|
size_t strlenpt(const char *s);
|
2002-07-19 01:08:59 +00:00
|
|
|
void new_magicline(void);
|
2017-04-25 15:51:45 +00:00
|
|
|
#if !defined(NANO_TINY) || defined(ENABLE_HELP)
|
2004-11-03 22:03:41 +00:00
|
|
|
void remove_magicline(void);
|
2017-04-25 15:51:45 +00:00
|
|
|
#endif
|
|
|
|
#ifndef NANO_TINY
|
2004-07-08 17:15:10 +00:00
|
|
|
void mark_order(const filestruct **top, size_t *top_x, const filestruct
|
2004-11-05 23:03:03 +00:00
|
|
|
**bot, size_t *bot_x, bool *right_side_up);
|
2003-09-16 01:16:49 +00:00
|
|
|
#endif
|
2005-07-17 01:44:35 +00:00
|
|
|
size_t get_totsize(const filestruct *begin, const filestruct *end);
|
2016-12-15 11:45:02 +00:00
|
|
|
#ifndef NANO_TINY
|
2008-08-03 04:48:05 +00:00
|
|
|
filestruct *fsfromline(ssize_t lineno);
|
2016-12-15 11:45:02 +00:00
|
|
|
#endif
|
2005-11-02 15:44:01 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
void dump_filestruct(const filestruct *inptr);
|
|
|
|
void dump_filestruct_reverse(void);
|
|
|
|
#endif
|
2002-07-19 01:08:59 +00:00
|
|
|
|
2015-12-22 19:00:25 +00:00
|
|
|
/* Most functions in winio.c. */
|
2005-07-13 20:18:46 +00:00
|
|
|
void get_key_buffer(WINDOW *win);
|
|
|
|
size_t get_key_buffer_len(void);
|
2016-07-23 12:01:38 +00:00
|
|
|
void unget_kbinput(int kbinput, bool metakey);
|
2014-06-30 18:04:33 +00:00
|
|
|
int get_kbinput(WINDOW *win);
|
|
|
|
int parse_kbinput(WINDOW *win);
|
2015-12-22 19:00:25 +00:00
|
|
|
int arrow_from_abcd(int kbinput);
|
|
|
|
int parse_escape_sequence(WINDOW *win, int kbinput);
|
2006-05-10 13:41:53 +00:00
|
|
|
int get_byte_kbinput(int kbinput);
|
2004-12-04 17:41:52 +00:00
|
|
|
int get_control_kbinput(int kbinput);
|
|
|
|
int *get_verbatim_kbinput(WINDOW *win, size_t *kbinput_len);
|
2016-07-16 17:44:24 +00:00
|
|
|
int *parse_verbatim_kbinput(WINDOW *win, size_t *count);
|
2004-05-22 20:19:15 +00:00
|
|
|
#ifndef DISABLE_MOUSE
|
2007-05-20 23:41:56 +00:00
|
|
|
int get_mouseinput(int *mouse_x, int *mouse_y, bool allow_shortcuts);
|
2004-08-25 15:39:10 +00:00
|
|
|
#endif
|
2014-07-01 10:41:10 +00:00
|
|
|
const sc *get_shortcut(int *kbinput);
|
2017-01-12 16:48:33 +00:00
|
|
|
void blank_row(WINDOW *win, int y, int x, int n);
|
2002-09-06 20:35:28 +00:00
|
|
|
void blank_edit(void);
|
|
|
|
void blank_statusbar(void);
|
2004-05-18 01:20:36 +00:00
|
|
|
void blank_bottombars(void);
|
2005-03-17 17:56:48 +00:00
|
|
|
void check_statusblank(void);
|
2017-04-28 12:05:07 +00:00
|
|
|
char *display_string(const char *buf, size_t column, size_t span, bool isdata);
|
2003-02-13 22:25:01 +00:00
|
|
|
void titlebar(const char *path);
|
2015-01-03 07:24:17 +00:00
|
|
|
extern void set_modified(void);
|
2016-04-30 15:31:43 +00:00
|
|
|
void statusbar(const char *msg);
|
2016-11-27 21:01:54 +00:00
|
|
|
void warn_and_shortly_pause(const char *msg);
|
2016-05-19 18:43:08 +00:00
|
|
|
void statusline(message_type importance, const char *msg, ...);
|
2008-03-05 07:34:01 +00:00
|
|
|
void bottombars(int menu);
|
2016-03-23 20:21:36 +00:00
|
|
|
void onekey(const char *keystroke, const char *desc, int length);
|
2017-04-17 09:27:29 +00:00
|
|
|
void place_the_cursor(void);
|
2017-01-09 17:25:25 +00:00
|
|
|
void edit_draw(filestruct *fileptr, const char *converted,
|
|
|
|
int line, size_t from_col);
|
2009-08-17 07:52:10 +00:00
|
|
|
int update_line(filestruct *fileptr, size_t index);
|
softwrap: move the updating of a softwrapped line to a new function
The new function, update_softwrapped_line(), is called from inside
update_line() when softwrap mode is on, so that existing calls remain
unchanged. It takes no index, instead displaying edittop from column
firstcolumn, and all other lines from column zero.
If current is on edittop, it's displayed using the edittop rules, but
this is not a problem: if current[current_x] is above edittop at column
firstcolumn, it's offscreen, and that should be handled before calling
update_line() anyway.
Together with the preceding bunch of changes,
this fixes https://savannah.gnu.org/bugs/?47667.
2017-02-01 00:11:05 +00:00
|
|
|
#ifndef NANO_TINY
|
|
|
|
int update_softwrapped_line(filestruct *fileptr);
|
|
|
|
#endif
|
2017-01-31 22:51:06 +00:00
|
|
|
bool line_needs_update(const size_t old_column, const size_t new_column);
|
softwrap: add two chunk-iterator functions
These functions, go_back_chunks() and go_forward_chunks(), take a number
of softwrapped chunks (screen rows) to move, a pointer to a buffer, and
a location (specifically, a starting column of a softwrapped chunk). If
they move successfully, they will update the buffer pointer and location
to point to the beginning of the softwrapped chunk they moved to.
Since non-softwrap mode is effectively just a subset of softwrap mode
in which every line takes up one chunk, these functions also work in
non-softwrap mode. In this case, their starting column will always be
zero, as it would be in softwrap mode on a line that takes up one chunk.
Nothing uses these functions yet, but that is forthcoming.
2016-12-30 06:34:13 +00:00
|
|
|
int go_back_chunks(int nrows, filestruct **line, size_t *leftedge);
|
|
|
|
int go_forward_chunks(int nrows, filestruct **line, size_t *leftedge);
|
2017-01-15 22:01:17 +00:00
|
|
|
bool less_than_a_screenful(size_t was_lineno, size_t was_leftedge);
|
2017-01-15 18:17:19 +00:00
|
|
|
void edit_scroll(scroll_dir direction, int nrows);
|
softwrap: adjust firstcolumn when the window width changes
If the number of columns in the edit window changes (which currently
only happens in two places: in regenerate_screen(), called when the
window is resized; and in main(), when line numbering mode is toggled),
the display will break if we're in softwrap mode and firstcolumn is
nonzero. This is because the column width of softwrapped chunks has
changed, and firstcolumn is no longer the starting column of a chunk,
an assumption that all code using firstcolumn relies on.
To fix this problem, add a new function, ensure_firstcolumn_is_aligned(),
to adjust firstcolumn to the starting column of the chunk it's on, and
use it when the number of columns in the edit window changes.
(Note that this function uses the simplest possible fix, and could
probably be made more sophisticated.)
2017-01-23 19:40:03 +00:00
|
|
|
void ensure_firstcolumn_is_aligned(void);
|
2016-04-10 19:16:19 +00:00
|
|
|
void edit_redraw(filestruct *old_current);
|
2002-07-19 01:08:59 +00:00
|
|
|
void edit_refresh(void);
|
2016-10-20 19:11:11 +00:00
|
|
|
void adjust_viewport(update_type location);
|
2005-06-18 15:49:17 +00:00
|
|
|
void total_redraw(void);
|
2004-07-02 14:31:03 +00:00
|
|
|
void total_refresh(void);
|
2002-09-06 20:35:28 +00:00
|
|
|
void display_main_list(void);
|
2017-02-23 17:31:36 +00:00
|
|
|
void do_cursorpos(bool force);
|
2004-07-02 14:31:03 +00:00
|
|
|
void do_cursorpos_void(void);
|
2016-03-30 12:09:39 +00:00
|
|
|
void spotlight(bool active, const char *word);
|
2008-03-05 07:34:01 +00:00
|
|
|
void xon_complaint(void);
|
|
|
|
void xoff_complaint(void);
|
2008-03-13 08:23:52 +00:00
|
|
|
void do_suspend_void(void);
|
2009-01-24 22:40:41 +00:00
|
|
|
void enable_nodelay(void);
|
|
|
|
void disable_nodelay(void);
|
2014-04-03 20:57:44 +00:00
|
|
|
#ifndef DISABLE_EXTRA
|
2002-07-19 01:08:59 +00:00
|
|
|
void do_credits(void);
|
2001-10-22 03:15:31 +00:00
|
|
|
#endif
|
2005-04-15 18:07:26 +00:00
|
|
|
|
2014-04-08 18:38:45 +00:00
|
|
|
/* May as well throw these here, since they are just placeholders. */
|
2011-02-07 14:45:56 +00:00
|
|
|
void do_cancel(void);
|
|
|
|
void case_sens_void(void);
|
|
|
|
void regexp_void(void);
|
|
|
|
void gototext_void(void);
|
|
|
|
void to_files_void(void);
|
|
|
|
void dos_format_void(void);
|
|
|
|
void mac_format_void(void);
|
|
|
|
void append_void(void);
|
|
|
|
void prepend_void(void);
|
|
|
|
void backup_file_void(void);
|
2015-12-23 16:34:44 +00:00
|
|
|
void discard_buffer(void);
|
2011-02-07 14:45:56 +00:00
|
|
|
void new_buffer_void(void);
|
|
|
|
void backwards_void(void);
|
|
|
|
void goto_dir_void(void);
|
2014-06-23 18:30:35 +00:00
|
|
|
void flip_replace_void(void);
|
2014-06-04 19:15:16 +00:00
|
|
|
void flip_execute_void(void);
|
2011-02-07 14:45:56 +00:00
|
|
|
|
2005-04-15 18:07:26 +00:00
|
|
|
#endif /* !PROTO_H */
|