1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/***********************************************************************/
/* EDIT.C - The body of the program. */
/***********************************************************************/
/*
* THE - The Hessling Editor. A text editor similar to VM/CMS xedit.
* Copyright (C) 1991-1997 Mark Hessling
*
* 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 the Free Software Foundation; either version 2 of
* the License, or 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.
*
*
* If you make modifications to this software that you feel increases
* it usefulness for the rest of the community, please email the
* changes, enhancements, bug fixes as well as any and all ideas to me.
* This software is going to be maintained and enhanced as deemed
* necessary by the community.
*
* Mark Hessling Email: M.Hessling@qut.edu.au
* PO Box 203 Phone: +617 3802 0800
* Bellara http://www.gu.edu.au/gext/the/markh.html
* QLD 4507 **** Maintainer PDCurses & REXX/SQL ****
* Australia ************* Author of THE ************
*/
/*
$Id: edit.c 2.1 1995/06/24 16:29:45 MH Rel MH $
*/
#include <the.h>
#include <proto.h>
/*#define TRACE*/
bool prefix_changed=FALSE;
/***********************************************************************/
#ifdef HAVE_PROTO
void editor(void)
#else
void editor()
#endif
/***********************************************************************/
{
/*-------------------------- external data ----------------------------*/
extern bool error_on_screen;
extern WINDOW *error_window;
extern CHARTYPE display_screens;
/*--------------------------- local data ------------------------------*/
short y=0,x=0;
/*--------------------------- processing ------------------------------*/
#ifdef TRACE
trace_function("edit.c: editor");
#endif
if (display_screens > 1)
display_screen(other_screen);
getyx(CURRENT_WINDOW,y,x);
wmove(CURRENT_WINDOW,y,x);
wrefresh(CURRENT_WINDOW);
if (error_on_screen)
{
if (error_window != NULL)
{
touchwin(error_window);
wrefresh(error_window);
wmove(CURRENT_WINDOW,y,x);
wrefresh(CURRENT_WINDOW);
}
}
while (1)
{
if (process_key(-1) != RC_OK)
break;
}
#ifdef TRACE
trace_return();
#endif
return;
}
/***********************************************************************/
#ifdef HAVE_PROTO
int process_key(int key)
#else
int process_key(key)
int key;
#endif
/***********************************************************************/
{
/*-------------------------- external data ----------------------------*/
extern bool error_on_screen;
extern bool initial;
extern CHARTYPE number_of_files;
extern WINDOW *error_window;
extern CHARTYPE display_screens;
/*--------------------------- local data ------------------------------*/
unsigned short x=0,y=0;
short rc=RC_OK;
CHARTYPE string_key[2];
/*--------------------------- processing ------------------------------*/
#ifdef TRACE
trace_function("edit.c: process_key");
#endif
#if defined(USE_EXTCURSES)
getyx(CURRENT_WINDOW,y,x);
wmove(CURRENT_WINDOW,y,x);
wrefresh(CURRENT_WINDOW);
#endif
string_key[1] = '\0';
#ifdef CAN_RESIZE
if (is_termresized())
{
(void)THE_Resize(0,0);
(void)THERefresh((CHARTYPE *)"");
}
#endif
if (key == (-1))
key = my_getch(stdscr);
#if defined (MOUSE_SUPPORT_ENABLED)
if (key == KEY_MOUSE)
{
int b,ba,bm;
if (get_mouse_info(&b,&ba,&bm) != RC_OK)
#if 0
|| (BUTTON_STATUS(b) & BUTTON_ACTION_MASK) == BUTTON_RELEASED)
#endif
{
#ifdef TRACE
trace_return();
#endif
return(RC_OK);
}
}
#endif
#ifdef CAN_RESIZE
if (is_termresized())
{
#ifdef TRACE
trace_return();
#endif
return(RC_OK);
}
#endif
initial = FALSE; /* set first time a key is requested */
if (error_on_screen)
clear_msgline();
rc = function_key(key,OPTION_NORMAL);
if (number_of_files == 0)
{
#ifdef TRACE
trace_return();
#endif
return(RC_INVALID_ENVIRON);
}
if (rc >= RAW_KEY)
{
if (rc > RAW_KEY)
key = rc - (RAW_KEY*2);
if (key < 256 && key >= 0)
{
string_key[0] = (CHARTYPE)key;
(void)Text(string_key);
}
}
show_statarea();
if (display_screens > 1
&& SCREEN_FILE(0) == SCREEN_FILE(1))
{
build_screen(other_screen);
display_screen(other_screen);
/* refresh_screen(other_screen);*/
show_heading(other_screen);
}
refresh_screen(current_screen);
if (error_on_screen)
{
getyx(CURRENT_WINDOW,y,x);
if (error_window != NULL)
{
touchwin(error_window);
wnoutrefresh(error_window);
}
wmove(CURRENT_WINDOW,y,x);
wnoutrefresh(CURRENT_WINDOW);
}
#ifdef HAVE_BROKEN_SYSVR4_CURSES
getyx(CURRENT_WINDOW,y,x);
wmove(CURRENT_WINDOW,y,x);
wrefresh(CURRENT_WINDOW);
#else
doupdate();
#endif
#ifdef TRACE
trace_return();
#endif
return(RC_OK);
}
|