e731a3f2902909d249f7c2994507ea7c627906ff
[dragonfly.git] / lib / libedit / chared.h
1 /*-
2  * Copyright (c) 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Christos Zoulas of Cornell University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)chared.h    8.1 (Berkeley) 6/4/93
37  * $DragonFly: src/lib/libedit/chared.h,v 1.2 2003/11/12 18:07:02 eirikn Exp $
38  */
39
40 /*
41  * el.chared.h: Character editor interface
42  */
43 #ifndef _h_el_chared
44 #define _h_el_chared
45
46 #include <ctype.h>
47 #include <string.h>
48
49 #include "histedit.h"
50
51 #define EL_MAXMACRO 10
52
53 /*
54  * This is a issue of basic "vi" look-and-feel. Defining VI_MOVE works
55  * like real vi: i.e. the transition from command<->insert modes moves
56  * the cursor.
57  *
58  * On the other hand we really don't want to move the cursor, because
59  * all the editing commands don't include the character under the cursor.
60  * Probably the best fix is to make all the editing commands aware of
61  * this fact.
62  */
63 #define VI_MOVE
64
65
66 typedef struct c_macro_t {
67     int    level;
68     char **macro;
69     char  *nline;
70 } c_macro_t;
71
72 /*
73  * Undo information for both vi and emacs
74  */
75 typedef struct c_undo_t {
76     int   action;
77     int   isize;
78     int   dsize;
79     char *ptr;
80     char *buf;
81 } c_undo_t;
82
83 /*
84  * Current action information for vi
85  */
86 typedef struct c_vcmd_t {
87     int   action;
88     char *pos;
89     char *ins;
90 } c_vcmd_t;
91
92 /*
93  * Kill buffer for emacs
94  */
95 typedef struct c_kill_t {
96     char *buf;
97     char *last;
98     char *mark;
99 } c_kill_t;
100
101 /*
102  * Note that we use both data structures because the user can bind
103  * commands from both editors!
104  */
105 typedef struct el_chared_t {
106     c_undo_t    c_undo;
107     c_kill_t    c_kill;
108     c_vcmd_t    c_vcmd;
109     c_macro_t   c_macro;
110 } el_chared_t;
111
112
113 #define STReof "^D\b\b"
114 #define STRQQ  "\"\""
115
116 #define isglob(a) (strchr("*[]?", (a)) != NULL)
117 #define isword(a) (isprint(a))
118
119 #define NOP       0x00
120 #define DELETE    0x01
121 #define INSERT    0x02
122 #define CHANGE    0x04
123
124 #define CHAR_FWD        0
125 #define CHAR_BACK       1
126
127 #define MODE_INSERT     0
128 #define MODE_REPLACE    1
129 #define MODE_REPLACE_1  2
130
131 #include "common.h"
132 #include "vi.h"
133 #include "emacs.h"
134 #include "search.h"
135 #include "fcns.h"
136
137
138 protected int   cv__isword      __P((int));
139 protected void  cv_delfini      __P((EditLine *));
140 protected char *cv__endword     __P((char *, char *, int));
141 protected int   ce__isword      __P((int));
142 protected int   c___isword      __P((int));
143 protected void  cv_undo         __P((EditLine *, int, int, char *));
144 protected char *cv_next_word    __P((EditLine*, char *, char *, int,
145                                      int (*)(int)));
146 protected char *cv_prev_word    __P((EditLine*, char *, char *, int,
147                                      int (*)(int)));
148 protected char *c__next_word    __P((char *, char *, int, int (*)(int)));
149 protected char *c__prev_word    __P((char *, char *, int, int (*)(int)));
150 protected void  c_insert        __P((EditLine *, int));
151 protected void  c_delbefore     __P((EditLine *, int));
152 protected void  c_delafter      __P((EditLine *, int));
153 protected int   c_gets          __P((EditLine *, char *));
154 protected int   c_hpos          __P((EditLine *));
155
156 protected int   ch_init         __P((EditLine *));
157 protected void  ch_reset        __P((EditLine *));
158 protected void  ch_end          __P((EditLine *));
159
160 #endif /* _h_el_chared */