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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
#if !defined(lint) && !defined(SABER) && !defined(GCC_WALL)
static char XRNrcsid[] = "$Id: cursor.c,v 1.35 1997/06/30 02:53:17 jik Exp $";
#endif
/*
* xrn - an X-based NNTP news reader
*
* Copyright (c) 1988-1993, Ellen M. Sentovich and Rick L. Spickelmier.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the name of the University of California not
* be used in advertising or publicity pertaining to distribution of
* the software without specific, written prior permission. The University
* of California makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* THE UNIVERSITY OF CALIFORNIA DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE FOR
* ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* cursor.c: routines for manipulating the cursor and/or text in a text
* window
*/
#include "copyright.h"
#include "config.h"
#include "utils.h"
#include <X11/Xos.h>
#include <assert.h>
#include <X11/StringDefs.h>
#include <X11/Intrinsic.h>
#include "news.h"
#include "mesg.h"
#include "internals.h"
#include "modes.h"
#include "xrn.h"
#include "cursor.h"
#include "error_hnds.h"
#include "cancel.h"
#include "mesg_strings.h"
#include "Text.h"
#include "buttons.h"
#include "file_cache.h"
/*
* Move the cursor to the beginning of the current line.
* If the cursor is at the end of string marker, leave it there.
*/
void moveBeginning(tstring, point)
char *tstring; /* text string */
long *point; /* cursor position */
{
int i = 0;
while ((*point != 0) && (tstring[*point-1] != '\n') &&
(tstring[*point] != '\0')) {
(*point)--;
i++;
if (i > 1000) {
ehErrorExitXRN( ERROR_INFINITE_LOOP_MSG );
}
}
return;
}
/*
* Move the cursor to the end of the current line.
* If the cursor is at the end of string marker, leave it there.
*/
void moveEnd(tstring, point)
char *tstring; /* text string */
long *point; /* cursor position */
{
int i = 0;
while ((tstring[*point] != '\n') && (tstring[*point] != '\0')) {
(*point)++;
i++;
if (i > 1000) {
ehErrorExitXRN( ERROR_INFINITE_LOOP_MSG );
}
}
return;
}
/*
* Move the cursor forward or backward a line.
* Return false if 1) the cursor is already at the top line
* and BACK is requested or 2) the cursor is at the end of
* string marker and FORWARD is requested.
*/
int moveCursor(direction, tstring, point)
int direction; /* FORWARD or BACK (defined in cursor.h) */
char *tstring; /* text string */
long *point; /* cursor position */
{
if (direction == BACK) {
/* if we are at the first group, return false to show we did */
/* not actually move back */
if (*point == 0) {
return FALSE;
}
/* if we are in the middle of a line, move to the first position */
if (tstring[*point-1] != '\n') {
moveBeginning(tstring, point);
if (*point == 0) return FALSE;
}
/* now we are definitely at the beginning of a line, and it is */
/* not the first line, scan back to beginning of previous line */
*point -= 1;
moveBeginning(tstring, point);
return TRUE;
}
/* the default is to move forward */
if (tstring[*point] == '\0') {
return FALSE;
}
moveEnd(tstring, point);
(*point)++;
return TRUE;
}
/*
* Move the cursor forward a line, wrapping around if the end of string
* character is reached. Return false only if the string is null.
*/
int moveUpWrap(tstring, point)
char *tstring; /* text string */
long *point; /* cursor position */
{
if (tstring[*point] == '\0') {
if (*point == 0) {
return FALSE;
}
*point = 0;
return TRUE;
}
moveEnd(tstring, point);
if (tstring[*point+1] == '\0') {
*point = 0;
} else {
(*point)++;
}
return TRUE;
}
/*
* Move the insertion point to the beginning of the last line of the string
* tstring.
*/
void endInsertionPoint(tstring, point)
char *tstring; /* text string */
long *point; /* cursor position */
{
/* move to the end of the string */
while (tstring[*point] != '\0') {
(*point)++;
}
/* as long as the string is not null, scan back to beginning of */
/* previous line */
if (*point != 0) {
*point -= 1;
moveBeginning(tstring, point);
}
return;
}
/*
Remove the line the cursor is on from the given string. Leaves point
at the beginning of the next line.
*/
void removeLine(tstring, point)
char *tstring; /* text string */
long *point; /* position on line to be removed, */
{
long right; /* end of line to be removed */
moveBeginning(tstring, point);
right = *point;
moveEnd(tstring, &right);
if (! tstring[right])
tstring[*point] = '\0';
else
(void) strcpy(&tstring[*point], &tstring[right+1]);
}
/*
* Leave the cursor at the current position unless it is at the
* end of string marker, in which case move it to the beginning.
* If the string is empty, return FALSE.
*/
int setCursorCurrent(tstring, point)
char *tstring; /* text string */
long *point; /* cursor position */
{
if (tstring[*point] == '\0') {
if (*point == 0) {
return FALSE;
} else {
*point = (long) 0;
}
}
return TRUE;
}
/*
* Return the name of the group on the current line, or null if there
* isn't one. Reallocates groupName to contain the group name.
*/
void currentGroup(mode, tstring, groupName, point)
int mode; /* xrn Mode */
char *tstring; /* text string */
char **groupName; /* string to return group name in */
long point; /* cursor position */
{
char *ptr1 = &tstring[point], *ptr2;
int i, len;
if ((mode != ALL_MODE) && (mode != ADD_MODE)) {
for (i = 0; i < NEWS_GROUP_OFFSET; ptr1++, i++) {
if (! *ptr1) {
if (! *groupName)
*groupName = XtRealloc(*groupName, 1);
**groupName = '\0';
return;
}
}
}
if (! (ptr2 = index(ptr1, ' ')))
ptr2 = index(ptr1, '\n');
assert(ptr2);
len = ptr2 - ptr1;
*groupName = XtRealloc(*groupName, len + 1);
(void) strncpy(*groupName, ptr1, len);
(*groupName)[len] = '\0';
return;
}
/*
* In "all" mode, return the group on the current line and whether it
* should be subscribed or unsubscribed (e.g., if it is currently
* subscribed, return SUBSCRIBE, and if it is currently
* unsubscribed, return UNSUBSCRIBE).
*
* The group name string passed in should be either null or allocated
* memory. It will be reallocated to hold the group name returned.
*/
void currentMode(tstring, groupName, mode, point)
char *tstring;
char **groupName;
int *mode;
long point;
{
char *ptr;
int len;
/* First, get the group. */
for (ptr = &tstring[point], len = 0; *ptr != ' '; ptr++, len++) /* empty */;
*groupName = XtRealloc(*groupName, len + 1);
(void) strncpy(*groupName, &tstring[point], len);
(*groupName)[len] = '\0';
/* Now, get its status. */
for (; *ptr == ' '; ptr++) /* empty */;
if (strncmp(ptr, UNSUBED_MSG, strlen(UNSUBED_MSG)) == 0)
*mode = UNSUBSCRIBE;
else if (strncmp(ptr, IGNORED_MSG, strlen(IGNORED_MSG)) == 0)
*mode = IGNORE;
else
*mode = SUBSCRIBE;
return;
}
/*
* Mark the article at the current ArticlePosition as read,if it is
* not already marked. Return the article number of the article
* that was marked. This subroutine only marks the text string;
* the article is marked internally as read by calling
* markArticleAsRead().
*/
int markStringRead(tstring, point)
char *tstring; /* text string */
long point; /* cursor position */
{
if (tstring[point] == ' ') {
tstring[point] = READ_MARKER;
}
return atoi(&tstring[point+2]);
}
/*
* Mark all groups on the line beginning at left subscribed or
* unsubscribed, depending on the contents of the string status.
*/
void markAllString(tstring, left, status)
char *tstring; /* text string */
long left;
char *status; /* "subscribed" or "unsubscribed" */
{
int len = utStrlen(status);
moveEnd(tstring, &left);
left -= len;
strncpy(&tstring[left], status, len);
return;
}
/*
* Mark a group of articles between left and right as read or unread.
* Marks the articles in the text string, and marks them internally.
*/
void markArticles(
_ANSIDECL(char *, tstring), /* text string */
_ANSIDECL(long, left), /* boundaries of */
_ANSIDECL(long, right), /* articles to be marked */
_ANSIDECL(char, marker)
)
_KNRDECL(char *, tstring)
_KNRDECL(long, left)
_KNRDECL(long, right)
_KNRDECL(char, marker)
{
long artNum; /* number of current article to be marked */
while (left < right) {
tstring[left] = marker;
artNum = atol(&tstring[left+2]);
if (marker == READ_MARKER) {
markArticleAsRead(artNum);
} else {
markArticleAsUnread(artNum);
}
(void) moveCursor(FORWARD, tstring, &left);
}
(void) moveCursor(BACK, tstring, &left);
return;
}
/*
* Build a new string from a portion of the old string.
*/
void buildString(newString, first, last, oldString)
char **newString; /* New text string */
long first, last; /* portion of old string to be copied */
char *oldString; /* old text string */
{
*newString = ARRAYALLOC(char, (last - first + 1));
(void) strncpy(*newString, &oldString[first], (int) (last - first));
(*newString)[last - first] = '\0';
}
int moveToArticle(newsgroup, artNum, file, ques)
struct newsgroup *newsgroup;
long artNum; /* number of new article */
file_cache_file **file; /* cache file for new article */
char **ques; /* status line for new article */
{
(void) fillUpArray(newsgroup, artNum, 0, False, False);
if (checkArticle(artNum) != XRN_OKAY)
return NOMATCH;
if (getArticle(newsgroup, artNum, file, ques) != XRN_OKAY)
return ERROR;
newsgroup->current = artNum;
return MATCH;
}
|