proto.h 8.16 KB
Newer Older
Chris Allegretta's avatar
Chris Allegretta committed
1
/* $Id$ */
Chris Allegretta's avatar
Chris Allegretta committed
2
3
4
5
6
7
/**************************************************************************
 *   proto.h                                                              *
 *                                                                        *
 *   Copyright (C) 1999 Chris Allegretta                                  *
 *   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 *
8
 *   the Free Software Foundation; either version 2, or (at your option)  *
Chris Allegretta's avatar
Chris Allegretta committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 *   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>
25
26

#ifdef HAVE_REGEX_H
27
#include <regex.h>
28
29
#endif

Chris Allegretta's avatar
Chris Allegretta committed
30
31
#include "nano.h"

32
extern int editwinrows;
Chris Allegretta's avatar
Chris Allegretta committed
33
34
35
extern int current_x, current_y, posible_max, totlines;
extern int placewewant;
extern int mark_beginx, samelinewrap;
36
37
extern long totsize;
extern int temp_opt;
38
extern int fill, wrap_at, flags,tabsize;
Chris Allegretta's avatar
Chris Allegretta committed
39
extern int search_last_line;
40
extern int currslen;
Chris Allegretta's avatar
Chris Allegretta committed
41
42

extern WINDOW *edit, *topwin, *bottomwin;
Chris Allegretta's avatar
Chris Allegretta committed
43
extern char *filename;
44
extern char *answer;
Chris Allegretta's avatar
Chris Allegretta committed
45
extern char *hblank, *help_text;
Chris Allegretta's avatar
Chris Allegretta committed
46
47
extern char *last_search;
extern char *last_replace;
48
49
50
#ifndef DISABLE_OPERATINGDIR
extern char *operating_dir;
#endif
51
52
53
#ifndef DISABLE_SPELLER
extern  char *alt_speller;
#endif
Chris Allegretta's avatar
Chris Allegretta committed
54
55
56
extern struct stat fileinfo;
extern filestruct *current, *fileage, *edittop, *editbot, *filebot; 
extern filestruct *cutbuffer, *mark_beginbuf;
57

58
#ifdef ENABLE_MULTIBUFFER
59
60
61
extern filestruct *open_files;
#endif

62
63
64
65
#ifdef ENABLE_COLOR
colortype *colorstrings;
#endif

Chris Allegretta's avatar
Chris Allegretta committed
66
67
68
extern shortcut *shortcut_list;
extern shortcut main_list[MAIN_LIST_LEN], whereis_list[WHEREIS_LIST_LEN];
extern shortcut replace_list[REPLACE_LIST_LEN], goto_list[GOTO_LIST_LEN];
69
extern shortcut writefile_list[WRITEFILE_LIST_LEN], insertfile_list[INSERTFILE_LIST_LEN];
70
extern shortcut spell_list[SPELL_LIST_LEN], replace_list_2[REPLACE_LIST_LEN];
71
extern shortcut help_list[HELP_LIST_LEN];
72
#ifndef DISABLE_BROWSER
Rocco Corsi's avatar
   
Rocco Corsi committed
73
extern shortcut browser_list[BROWSER_LIST_LEN], gotodir_list[GOTODIR_LIST_LEN];
Chris Allegretta's avatar
Chris Allegretta committed
74
#endif
75
extern shortcut *currshortcut;
76
77

#ifdef HAVE_REGEX_H
78
79
80
extern int use_regexp, regexp_compiled;
extern regex_t search_regexp;
extern regmatch_t regmatches[10];  
81
82
#endif

83
extern toggle toggles[TOGGLE_LEN];
Chris Allegretta's avatar
Chris Allegretta committed
84
85
86

/* Programs we want available */

Chris Allegretta's avatar
Chris Allegretta committed
87
char *revstrstr(char *haystack, char *needle, char *rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
88
char *strcasestr(char *haystack, char *needle);
Chris Allegretta's avatar
Chris Allegretta committed
89
90
char *revstrcasestr(char *haystack, char *needle, char *rev_start);
char *strstrwrapper(char *haystack, char *needle, char *rev_start);
Chris Allegretta's avatar
Chris Allegretta committed
91
92
93
94
95
96
97
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);
int strlenpt(char *buf);
98
int statusq(int allowtabs, shortcut s[], int slen, char *def, char *msg, ...);
99
int write_file(char *name, int tmpfile, int append, int nonamechange);
Chris Allegretta's avatar
Chris Allegretta committed
100
101
102
int do_cut_text(void);
int do_uncut_text(void);
int no_help(void);
Chris Allegretta's avatar
Chris Allegretta committed
103
104
int renumber_all(void);
int open_file(char *filename, int insert, int quiet);
105
106
int do_insertfile(int loading_file);

107
#ifdef ENABLE_MULTIBUFFER
108
109
110
int add_open_file(int update, int dup_fix);
#endif

111
112
113
114
#ifndef DISABLE_OPERATINGDIR
int check_operating_dir(char *currpath, int allow_tabcomp);
#endif

115
int do_writeout(char *path, int exiting, int append);
116
int do_gotoline(int line, int save_pos);
Chris Allegretta's avatar
Chris Allegretta committed
117
118
int do_replace_loop(char *prevanswer, filestruct *begin, int *beginx,
			int wholewords, int *i);
119
int do_find_bracket(void);
120

121
#if defined (ENABLE_MULTIBUFFER) || !defined (DISABLE_SPELLER)
122
void do_gotopos(int line, int pos_x, int pos_y, int pos_placewewant);
123
124
#endif

Chris Allegretta's avatar
Chris Allegretta committed
125
126
127
128
129
/* Now in move.c */
int do_up(void);
int do_down(void);
int do_left(void);
int do_right(void);
Chris Allegretta's avatar
Chris Allegretta committed
130
int check_wildcard_match(const char *text, const char *pattern);
131

132
char *input_tab(char *buf, int place, int *lastWasTab, int *newplace, int *list);
133
char *real_dir_from_tilde(char *buf);
Chris Allegretta's avatar
Chris Allegretta committed
134

135
void shortcut_init(int unjustify);
Chris Allegretta's avatar
Chris Allegretta committed
136
137
void lowercase(char *src);
void blank_bottombars(void);
138
void check_wrap(filestruct * inptr, char ch);
Chris Allegretta's avatar
Chris Allegretta committed
139
140
void dump_buffer(filestruct * inptr);
void align(char **strp);
141
void edit_refresh(void), edit_refresh_clearok(void);
142
void edit_update(filestruct * fileptr, int topmidbotnone);
Chris Allegretta's avatar
Chris Allegretta committed
143
144
145
146
147
148
149
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);
Robert Siemborski's avatar
Robert Siemborski committed
150
void fix_editbot(void);
Chris Allegretta's avatar
Chris Allegretta committed
151
void statusbar(char *msg, ...);
Chris Allegretta's avatar
Chris Allegretta committed
152
153
void blank_statusbar(void);
void titlebar(char *path);
Chris Allegretta's avatar
Chris Allegretta committed
154
155
156
157
158
void previous_line(void);
void center_cursor(void);
void bottombars(shortcut s[], int slen);
void blank_statusbar_refresh(void);
void *nmalloc (size_t howmuch);
159
void *mallocstrcpy(char *dest, char *src);
Chris Allegretta's avatar
Chris Allegretta committed
160
161
162
void wrap_reset(void);
void display_main_list(void);
void nano_small_msg(void);
163
void nano_disable_msg(void);
Chris Allegretta's avatar
Chris Allegretta committed
164
165
166
167
void do_early_abort(void);
void *nmalloc(size_t howmuch);
void *nrealloc(void *ptr, size_t howmuch);
void die(char *msg, ...);
168
void die_save_file(char *die_filename);
Chris Allegretta's avatar
Chris Allegretta committed
169
void new_file(void);
Robert Siemborski's avatar
Robert Siemborski committed
170
void new_magicline(void);
171
void splice_node(filestruct *begin, filestruct *newnode, filestruct *end);
172
void null_at(char **data, int index);
173
void page_up(void);
Chris Allegretta's avatar
Chris Allegretta committed
174
void blank_edit(void);
Chris Allegretta's avatar
Chris Allegretta committed
175
176
void search_init_globals(void);
void replace_abort(void);
177
void add_to_cutbuffer(filestruct * inptr);
178
void do_replace_highlight(int highlight_flag, char *word);
179
void nano_disabled_msg(void);
180
void window_init(void);
181
void do_mouse(void);
Chris Allegretta's avatar
Chris Allegretta committed
182
void print_view_warning(void);
183
void unlink_node(filestruct * fileptr);
184
185
void cut_marked_segment(filestruct * top, int top_x, filestruct * bot,
                        int bot_x, int destructive);
186

187
#ifdef ENABLE_NANORC
188
189
190
void do_rcfile(void);
#endif

191
#ifdef NANO_EXTRA
Chris Allegretta's avatar
Chris Allegretta committed
192
void do_credits(void);
193
#endif
Chris Allegretta's avatar
Chris Allegretta committed
194

195

Chris Allegretta's avatar
Chris Allegretta committed
196
int do_writeout_void(void), do_exit(void), do_gotoline_void(void);
197
198
int do_insertfile_void(void), do_search(void);

199
#ifdef ENABLE_MULTIBUFFER
200
201
202
int load_open_file(void), close_open_file(void);
#endif

203
int do_page_up(void), do_page_down(void);
204
int do_cursorpos(int constant), do_cursorpos_void(void), do_spell(void);
Chris Allegretta's avatar
Chris Allegretta committed
205
206
207
208
209
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);
210
int keypad_on(WINDOW * win, int newval);
Chris Allegretta's avatar
Chris Allegretta committed
211

212
#ifdef ENABLE_MULTIBUFFER
213
214
215
216
int open_file_dup_fix(int update);
int open_prevfile(int closing_file), open_nextfile(int closing_file);
#endif

217
218
char *charalloc (size_t howmuch);

219
220
#if defined (ENABLE_MULTIBUFFER) || !defined (ENABLE_OPERATINGDIR)
char *get_full_path(char *origpath);
221
222
#endif

223
#ifndef DISABLE_BROWSER
Chris Allegretta's avatar
Chris Allegretta committed
224
char *do_browser(char *path);
225
226
struct stat filestat(const char *path);
char *do_browse_from(char *inpath);
Chris Allegretta's avatar
Chris Allegretta committed
227
228
#endif

229
230
231
232
233
234
235
236
#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 */

237
RETSIGTYPE main_loop (int junk);
238

Chris Allegretta's avatar
Chris Allegretta committed
239
240
241
filestruct *copy_node(filestruct * src);
filestruct *copy_filestruct(filestruct * src);
filestruct *make_new_node(filestruct * prevnode);
242
filestruct *findnextstr(int quiet, int bracket_mode, filestruct * begin,
Chris Allegretta's avatar
Chris Allegretta committed
243
			int beginx, char *needle);
244

245
#ifdef ENABLE_MULTIBUFFER
246
filestruct *open_file_dup_search(int update);
247
#endif
248
249
250
251

#ifndef DISABLE_HELP
void help_init(void);
#endif
252
253