2000-08-06 21:13:45 +00:00
|
|
|
/* $Id$ */
|
2000-06-06 05:53:49 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* proto.h *
|
|
|
|
* *
|
2002-01-04 17:57:40 +00:00
|
|
|
* Copyright (C) 1999-2002 Chris Allegretta *
|
2000-06-06 05:53:49 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
2001-10-24 11:33:54 +00:00
|
|
|
* the Free Software Foundation; either version 2, or (at your option) *
|
2000-06-06 05:53:49 +00:00
|
|
|
* any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software *
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/* Externs */
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
2000-09-06 13:39:17 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
#include <regex.h>
|
2000-09-06 13:39:17 +00:00
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
#include "nano.h"
|
|
|
|
|
2001-01-20 21:40:07 +00:00
|
|
|
extern int editwinrows;
|
2000-06-06 05:53:49 +00:00
|
|
|
extern int current_x, current_y, posible_max, totlines;
|
|
|
|
extern int placewewant;
|
|
|
|
extern int mark_beginx, samelinewrap;
|
2001-10-22 03:15:31 +00:00
|
|
|
extern long totsize;
|
|
|
|
extern int temp_opt;
|
2001-05-21 12:56:25 +00:00
|
|
|
extern int fill, wrap_at, flags,tabsize;
|
2000-11-05 16:52:21 +00:00
|
|
|
extern int search_last_line;
|
2001-04-12 03:01:53 +00:00
|
|
|
extern int currslen;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2002-03-03 22:36:36 +00:00
|
|
|
#ifndef DISABLE_JUSTIFY
|
2002-03-10 01:22:21 +00:00
|
|
|
extern char *quotestr;
|
2002-03-03 22:36:36 +00:00
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
extern WINDOW *edit, *topwin, *bottomwin;
|
2000-12-14 13:56:28 +00:00
|
|
|
extern char *filename;
|
2000-11-02 04:40:39 +00:00
|
|
|
extern char *answer;
|
2000-06-06 05:53:49 +00:00
|
|
|
extern char *hblank, *help_text;
|
2000-11-05 16:52:21 +00:00
|
|
|
extern char *last_search;
|
|
|
|
extern char *last_replace;
|
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
|
2001-04-18 04:28:54 +00:00
|
|
|
#ifndef DISABLE_SPELLER
|
|
|
|
extern char *alt_speller;
|
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
extern struct stat fileinfo;
|
|
|
|
extern filestruct *current, *fileage, *edittop, *editbot, *filebot;
|
|
|
|
extern filestruct *cutbuffer, *mark_beginbuf;
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
extern filestruct *open_files;
|
|
|
|
#endif
|
|
|
|
|
2001-11-29 02:42:27 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
2002-03-10 01:22:21 +00:00
|
|
|
extern colortype *colorstrings;
|
2001-11-29 02:42:27 +00:00
|
|
|
#endif
|
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
extern shortcut *shortcut_list;
|
2002-02-15 19:17:02 +00:00
|
|
|
extern shortcut *main_list, *whereis_list;
|
|
|
|
extern shortcut *replace_list, *goto_list;
|
|
|
|
extern shortcut *writefile_list, *insertfile_list;
|
2002-03-21 05:07:28 +00:00
|
|
|
extern shortcut *spell_list, *replace_list_2, *extcmd_list;
|
2002-02-15 19:17:02 +00:00
|
|
|
extern shortcut *help_list;
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_BROWSER
|
2002-02-15 19:17:02 +00:00
|
|
|
extern shortcut *browser_list, *gotodir_list;
|
2001-01-03 07:11:47 +00:00
|
|
|
#endif
|
2001-04-12 03:01:53 +00:00
|
|
|
extern shortcut *currshortcut;
|
2000-09-06 13:39:17 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_REGEX_H
|
2000-07-07 01:49:52 +00:00
|
|
|
extern int use_regexp, regexp_compiled;
|
|
|
|
extern regex_t search_regexp;
|
|
|
|
extern regmatch_t regmatches[10];
|
2002-03-24 23:19:32 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
extern regex_t color_regexp;
|
|
|
|
extern regmatch_t colormatches[1];
|
|
|
|
#endif /* HJAVE_COLOR */
|
2000-09-06 13:39:17 +00:00
|
|
|
#endif
|
|
|
|
|
2002-02-15 19:17:02 +00:00
|
|
|
extern toggle *toggles;
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
/* Programs we want available */
|
|
|
|
|
2001-06-13 02:35:44 +00:00
|
|
|
char *revstrstr(char *haystack, char *needle, char *rev_start);
|
2002-02-28 00:57:18 +00:00
|
|
|
char *stristr(char *haystack, char *needle);
|
|
|
|
char *revstristr(char *haystack, char *needle, char *rev_start);
|
2001-06-13 02:35:44 +00:00
|
|
|
char *strstrwrapper(char *haystack, char *needle, char *rev_start);
|
2000-06-06 05:53:49 +00:00
|
|
|
int search_init(int replacing);
|
|
|
|
int renumber(filestruct * fileptr);
|
|
|
|
int free_filestruct(filestruct * src);
|
|
|
|
int xplustabs(void);
|
|
|
|
int do_yesno(int all, int leavecursor, char *msg, ...);
|
|
|
|
int actual_x(filestruct * fileptr, int xplus);
|
2002-03-05 19:55:55 +00:00
|
|
|
int strnlenpt(char *buf, int size);
|
2000-06-06 05:53:49 +00:00
|
|
|
int strlenpt(char *buf);
|
2002-02-15 19:17:02 +00:00
|
|
|
int statusq(int allowtabs, shortcut s[], char *def, char *msg, ...);
|
2001-06-05 23:24:55 +00:00
|
|
|
int write_file(char *name, int tmpfile, int append, int nonamechange);
|
2000-06-06 05:53:49 +00:00
|
|
|
int do_cut_text(void);
|
|
|
|
int do_uncut_text(void);
|
|
|
|
int no_help(void);
|
2000-06-19 04:22:15 +00:00
|
|
|
int renumber_all(void);
|
|
|
|
int open_file(char *filename, int insert, int quiet);
|
2001-07-11 02:08:33 +00:00
|
|
|
int do_insertfile(int loading_file);
|
2002-02-15 19:17:02 +00:00
|
|
|
int length_of_list(shortcut *s);
|
2002-02-22 04:30:50 +00:00
|
|
|
int num_of_digits(int n);
|
2002-03-29 16:31:29 +00:00
|
|
|
int open_pipe(char *command);
|
|
|
|
int read_file(int fd, char *filename, int quiet);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2002-02-22 04:30:50 +00:00
|
|
|
int add_open_file(int update);
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2001-09-19 03:19:43 +00:00
|
|
|
#ifndef DISABLE_OPERATINGDIR
|
|
|
|
int check_operating_dir(char *currpath, int allow_tabcomp);
|
|
|
|
#endif
|
|
|
|
|
2001-05-29 04:21:44 +00:00
|
|
|
int do_writeout(char *path, int exiting, int append);
|
2001-11-29 03:43:08 +00:00
|
|
|
int do_gotoline(int line, int save_pos);
|
2002-01-08 15:00:24 +00:00
|
|
|
int is_whole_word(int curr_pos, filestruct *fileptr, char *searchword);
|
2000-11-05 16:52:21 +00:00
|
|
|
int do_replace_loop(char *prevanswer, filestruct *begin, int *beginx,
|
|
|
|
int wholewords, int *i);
|
2001-09-22 22:14:25 +00:00
|
|
|
int do_find_bracket(void);
|
2001-09-19 03:19:43 +00:00
|
|
|
|
2001-09-28 21:59:01 +00:00
|
|
|
#if defined (ENABLE_MULTIBUFFER) || !defined (DISABLE_SPELLER)
|
2001-11-29 03:43:08 +00:00
|
|
|
void do_gotopos(int line, int pos_x, int pos_y, int pos_placewewant);
|
2001-09-19 03:19:43 +00:00
|
|
|
#endif
|
|
|
|
|
2000-06-19 04:22:15 +00:00
|
|
|
/* Now in move.c */
|
|
|
|
int do_up(void);
|
|
|
|
int do_down(void);
|
|
|
|
int do_left(void);
|
|
|
|
int do_right(void);
|
2000-11-05 17:54:41 +00:00
|
|
|
int check_wildcard_match(const char *text, const char *pattern);
|
2000-11-24 14:00:16 +00:00
|
|
|
|
2001-11-29 03:43:08 +00:00
|
|
|
char *input_tab(char *buf, int place, int *lastWasTab, int *newplace, int *list);
|
2000-11-24 14:00:16 +00:00
|
|
|
char *real_dir_from_tilde(char *buf);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2000-11-27 22:58:23 +00:00
|
|
|
void shortcut_init(int unjustify);
|
2001-12-17 04:34:23 +00:00
|
|
|
void signal_init(void);
|
2000-06-06 05:53:49 +00:00
|
|
|
void lowercase(char *src);
|
|
|
|
void blank_bottombars(void);
|
2000-06-07 04:24:02 +00:00
|
|
|
void check_wrap(filestruct * inptr, char ch);
|
2000-06-06 05:53:49 +00:00
|
|
|
void dump_buffer(filestruct * inptr);
|
|
|
|
void align(char **strp);
|
2000-08-19 03:53:39 +00:00
|
|
|
void edit_refresh(void), edit_refresh_clearok(void);
|
2001-07-11 02:08:33 +00:00
|
|
|
void edit_update(filestruct * fileptr, int topmidbotnone);
|
2000-06-06 05:53:49 +00:00
|
|
|
void update_cursor(void);
|
|
|
|
void delete_node(filestruct * fileptr);
|
|
|
|
void set_modified(void);
|
|
|
|
void dump_buffer_reverse(filestruct * inptr);
|
|
|
|
void reset_cursor(void);
|
|
|
|
void check_statblank(void);
|
|
|
|
void update_line(filestruct * fileptr, int index);
|
2000-07-04 02:35:19 +00:00
|
|
|
void fix_editbot(void);
|
2000-06-06 05:53:49 +00:00
|
|
|
void statusbar(char *msg, ...);
|
2001-01-03 07:11:47 +00:00
|
|
|
void blank_statusbar(void);
|
|
|
|
void titlebar(char *path);
|
2000-06-06 05:53:49 +00:00
|
|
|
void previous_line(void);
|
|
|
|
void center_cursor(void);
|
2002-02-15 19:17:02 +00:00
|
|
|
void bottombars(shortcut *s);
|
2000-06-06 05:53:49 +00:00
|
|
|
void blank_statusbar_refresh(void);
|
|
|
|
void *nmalloc (size_t howmuch);
|
2002-03-29 16:31:29 +00:00
|
|
|
void nperror(const char *s);
|
2001-01-05 21:13:14 +00:00
|
|
|
void *mallocstrcpy(char *dest, char *src);
|
2000-06-06 05:53:49 +00:00
|
|
|
void wrap_reset(void);
|
|
|
|
void display_main_list(void);
|
|
|
|
void nano_small_msg(void);
|
2000-12-10 17:03:25 +00:00
|
|
|
void nano_disable_msg(void);
|
2000-06-19 04:22:15 +00:00
|
|
|
void do_early_abort(void);
|
|
|
|
void *nmalloc(size_t howmuch);
|
|
|
|
void *nrealloc(void *ptr, size_t howmuch);
|
|
|
|
void die(char *msg, ...);
|
2001-07-11 02:08:33 +00:00
|
|
|
void die_save_file(char *die_filename);
|
2000-06-19 04:22:15 +00:00
|
|
|
void new_file(void);
|
2000-07-04 22:15:39 +00:00
|
|
|
void new_magicline(void);
|
2001-03-18 16:59:34 +00:00
|
|
|
void splice_node(filestruct *begin, filestruct *newnode, filestruct *end);
|
2001-10-22 23:22:19 +00:00
|
|
|
void null_at(char **data, int index);
|
2001-09-22 19:02:04 +00:00
|
|
|
void page_up(void);
|
2000-11-05 17:54:41 +00:00
|
|
|
void blank_edit(void);
|
2000-11-05 16:52:21 +00:00
|
|
|
void search_init_globals(void);
|
|
|
|
void replace_abort(void);
|
2000-11-27 00:23:41 +00:00
|
|
|
void add_to_cutbuffer(filestruct * inptr);
|
2000-11-29 04:33:26 +00:00
|
|
|
void do_replace_highlight(int highlight_flag, char *word);
|
2000-12-18 07:05:27 +00:00
|
|
|
void nano_disabled_msg(void);
|
2001-01-07 23:02:02 +00:00
|
|
|
void window_init(void);
|
2001-04-12 03:01:53 +00:00
|
|
|
void do_mouse(void);
|
2001-04-22 07:10:21 +00:00
|
|
|
void print_view_warning(void);
|
2001-07-11 02:08:33 +00:00
|
|
|
void unlink_node(filestruct * fileptr);
|
2001-05-29 04:21:44 +00:00
|
|
|
void cut_marked_segment(filestruct * top, int top_x, filestruct * bot,
|
|
|
|
int bot_x, int destructive);
|
2002-02-27 04:14:16 +00:00
|
|
|
void free_shortcutage(shortcut **src);
|
|
|
|
void thanks_for_all_the_fish(void);
|
2001-04-18 04:28:54 +00:00
|
|
|
|
2001-04-19 21:13:46 +00:00
|
|
|
#ifdef ENABLE_NANORC
|
2001-04-18 04:28:54 +00:00
|
|
|
void do_rcfile(void);
|
|
|
|
#endif
|
|
|
|
|
2000-11-24 20:45:14 +00:00
|
|
|
#ifdef NANO_EXTRA
|
2001-01-31 23:22:36 +00:00
|
|
|
void do_credits(void);
|
2000-11-24 20:45:14 +00:00
|
|
|
#endif
|
2000-06-06 05:53:49 +00:00
|
|
|
|
|
|
|
int do_writeout_void(void), do_exit(void), do_gotoline_void(void);
|
2001-07-11 02:08:33 +00:00
|
|
|
int do_insertfile_void(void), do_search(void);
|
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
int load_open_file(void), close_open_file(void);
|
|
|
|
#endif
|
|
|
|
|
2001-09-22 19:02:04 +00:00
|
|
|
int do_page_up(void), do_page_down(void);
|
2001-11-29 03:43:08 +00:00
|
|
|
int do_cursorpos(int constant), do_cursorpos_void(void), do_spell(void);
|
2000-06-06 05:53:49 +00:00
|
|
|
int do_up(void), do_down (void), do_right(void), do_left (void);
|
|
|
|
int do_home(void), do_end(void), total_refresh(void), do_mark(void);
|
|
|
|
int do_delete(void), do_backspace(void), do_tab(void), do_justify(void);
|
|
|
|
int do_first_line(void), do_last_line(void);
|
|
|
|
int do_replace(void), do_help(void), do_enter_void(void);
|
2001-03-18 16:59:34 +00:00
|
|
|
int keypad_on(WINDOW * win, int newval);
|
2000-06-06 05:53:49 +00:00
|
|
|
|
2001-07-14 19:32:47 +00:00
|
|
|
#ifdef ENABLE_MULTIBUFFER
|
2001-07-11 02:08:33 +00:00
|
|
|
int open_prevfile(int closing_file), open_nextfile(int closing_file);
|
2002-02-15 19:17:02 +00:00
|
|
|
int open_prevfile_void(void), open_nextfile_void(void);
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2001-05-17 11:35:43 +00:00
|
|
|
char *charalloc (size_t howmuch);
|
2002-02-22 04:30:50 +00:00
|
|
|
char *get_next_filename(char *name);
|
2001-05-17 11:35:43 +00:00
|
|
|
|
2002-03-04 16:30:17 +00:00
|
|
|
#if !defined (DISABLE_SPELLER) || !defined (DISABLE_OPERATINGDIR)
|
2002-02-15 19:17:02 +00:00
|
|
|
char *get_full_path(const char *origpath);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DISABLE_SPELLER
|
2002-02-16 20:03:44 +00:00
|
|
|
char *check_writable_directory(const char *path);
|
2002-02-15 19:17:02 +00:00
|
|
|
char *safe_tempnam(const char *dirname, const char *filename_prefix);
|
2001-07-11 02:08:33 +00:00
|
|
|
#endif
|
|
|
|
|
2001-01-12 07:51:05 +00:00
|
|
|
#ifndef DISABLE_BROWSER
|
2001-01-03 07:11:47 +00:00
|
|
|
char *do_browser(char *path);
|
2001-01-05 21:13:14 +00:00
|
|
|
struct stat filestat(const char *path);
|
|
|
|
char *do_browse_from(char *inpath);
|
2001-01-03 07:11:47 +00:00
|
|
|
#endif
|
|
|
|
|
2001-04-30 11:28:46 +00:00
|
|
|
#ifdef ENABLE_COLOR
|
|
|
|
int do_colorinit(void);
|
|
|
|
void color_on(WINDOW *win, int whatever);
|
|
|
|
void color_off(WINDOW *win, int whatever);
|
|
|
|
|
|
|
|
extern colorstruct colors[NUM_NCOLORS];
|
|
|
|
#endif /* ENABLE_COLOR */
|
|
|
|
|
2001-01-29 23:37:54 +00:00
|
|
|
RETSIGTYPE main_loop (int junk);
|
2001-01-06 18:12:43 +00:00
|
|
|
|
2000-06-06 05:53:49 +00:00
|
|
|
filestruct *copy_node(filestruct * src);
|
|
|
|
filestruct *copy_filestruct(filestruct * src);
|
|
|
|
filestruct *make_new_node(filestruct * prevnode);
|
2001-09-22 22:14:25 +00:00
|
|
|
filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin,
|
2000-11-05 16:52:21 +00:00
|
|
|
int beginx, char *needle);
|
2001-07-11 02:08:33 +00:00
|
|
|
|
2001-10-22 03:15:31 +00:00
|
|
|
#ifndef DISABLE_HELP
|
|
|
|
void help_init(void);
|
|
|
|
#endif
|