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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/*
* File: cmd-selections.c
* Purpose: Functions that implement selection commands.
* Author: Lars Wirzenius
* Version: "@(#)SeX:$Id: cmd-selection.c,v 1.11 1996/12/14 12:17:02 liw Exp $"
*/
#include <assert.h>
#include <ctype.h>
#include <publib.h>
#include "anchor.h"
#include "cmd.h"
#include "win.h"
#include "tab.h"
#include "x.h"
#include "error.h"
static int line_is_empty(Sbuf *, long);
static int extend_mark(struct win *, int);
/*
* Function: cmd_extend_forward
* Purpose: Move end of selection one character forward.
*/
int cmd_extend_forward(struct win *win) {
anchor_move_delta(win, 1);
return 0;
}
/*
* Function: cmd_extend_backward
* Purpose: Move beginning of selection one character backward
*/
int cmd_extend_backward(struct win *win) {
anchor_move_delta(win, -1);
return 0;
}
/*
* Function: cmd_extend_boln
* Purpose: Move beginning of selection to beginning of line
*/
int cmd_extend_boln(struct win *win) {
long boln, pos;
Sbuf *buf;
buf = win_buf(win);
pos = anchor_mobile(win);
boln = sbuf_boln(buf, pos);
if (pos == boln && boln > 0)
boln = sbuf_boln(buf, boln-1);
anchor_move_to(win, boln);
return 0;
}
/*
* Function: cmd_extend_eoln
* Purpose: Move end of selection to end of line.
*/
int cmd_extend_eoln(struct win *win) {
long pos;
pos = sbuf_eoln(win_buf(win), anchor_mobile(win));
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_bof
* Purpose: Move beginning of selection to beginning of file.
*/
int cmd_extend_bof(struct win *win) {
anchor_move_to(win, 0);
return 0;
}
/*
* Function: cmd_extend_eof
* Purpose: Move end of selection to end of file.
*/
int cmd_extend_eof(struct win *win) {
anchor_move_to(win, sbuf_length(win_buf(win)));
return 0;
}
/*
* Function: cmd_extend_top
* Purpose: Move end of selection to top of window.
*/
int cmd_extend_top(struct win *win) {
anchor_move_to(win, win_get_top(win));
return 0;
}
/*
* Function: cmd_extend_bottom
* Purpose: Move end of selection to bottom of window.
*/
int cmd_extend_bottom(struct win *win) {
anchor_move_to(win, win_get_bottom(win));
return 0;
}
/*
* Function: cmd_extend_next_word
* Purpose: Move end of selection to next word.
*/
int cmd_extend_next_word(struct win *win) {
Sbuf *buf;
long pos, newpos;
int c;
cmd_prev_was_cut = 0;
buf = win_buf(win);
pos = anchor_mobile(win);
newpos = pos;
do {
pos = newpos++;
c = sbuf_charat(buf, pos);
} while (c != EOF && !(isalnum(c) || c == '_'));
pos = sbuf_eow(buf, pos);
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_prev_word
* Purpose: Move end of selection to previous word.
*/
int cmd_extend_prev_word(struct win *win) {
Sbuf *buf;
long pos;
int c;
cmd_prev_was_cut = 0;
buf = win_buf(win);
pos = anchor_mobile(win);
if (pos == 0)
return -1;
--pos;
while (pos > 0 && !isalnum(c = sbuf_charat(buf, pos)) && c != '_')
--pos;
pos = sbuf_bow(buf, pos);
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_next_line
* Purpose: Move end of selection to next line.
*/
int cmd_extend_next_line(struct win *win) {
Sbuf *buf;
long pos, col;
buf = win_buf(win);
pos = anchor_mobile(win);
col = sbuf_colno(buf, pos, tab_width());
pos = sbuf_eoln(buf, pos);
pos = sbuf_colpos(buf, pos, col, tab_width());
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_prev_line
* Purpose: Move end of selection to previous line.
*/
int cmd_extend_prev_line(struct win *win) {
Sbuf *buf;
long pos, col;
buf = win_buf(win);
pos = anchor_mobile(win);
col = sbuf_colno(buf, pos, tab_width());
pos = sbuf_boln(buf, pos);
if (pos > 0) {
pos = sbuf_boln(buf, pos - 1);
pos = sbuf_colpos(buf, pos, col, tab_width());
}
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_next_para
* Purpose: Move end of selection to next paragraph.
*/
int cmd_extend_next_para(struct win *win) {
Sbuf *buf;
long len, pos;
cmd_prev_was_cut = 0;
buf = win_buf(win);
len = sbuf_length(buf);
pos = anchor_mobile(win);
if (pos < len)
pos = sbuf_eoln(buf, pos);
while (pos < len && line_is_empty(buf, pos))
pos = sbuf_eoln(buf, pos);
while (pos < len && !line_is_empty(buf, pos))
pos = sbuf_eoln(buf, pos);
if (pos > 0 && line_is_empty(buf, pos))
--pos;
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_prev_para
* Purpose: Move end of selection to previous paragraph.
*/
int cmd_extend_prev_para(struct win *win) {
Sbuf *buf;
long pos;
cmd_prev_was_cut = 0;
buf = win_buf(win);
pos = anchor_mobile(win);
if (pos > 0)
pos = sbuf_boln(buf, pos-1);
while (pos > 0 && line_is_empty(buf, pos))
pos = sbuf_boln(buf, pos-1);
while (pos > 0 && !line_is_empty(buf, pos))
pos = sbuf_boln(buf, pos-1);
if (line_is_empty(buf, pos))
pos = sbuf_eoln(buf, pos);
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_next_page
* Purpose: Move end of selection to next page.
*/
int cmd_extend_next_page(struct win *win) {
Sbuf *buf;
long pos;
int i, rows, cols;
win_get_dimensions(win, &rows, &cols);
buf = win_buf(win);
pos = anchor_mobile(win);
for (i = 0; i < rows-2; ++i)
pos = sbuf_eoln(buf, pos);
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_prev_page
* Purpose: Move end of selection to previous page.
*/
int cmd_extend_prev_page(struct win *win) {
Sbuf *buf;
long pos;
int i, rows, cols;
win_get_dimensions(win, &rows, &cols);
buf = win_buf(win);
pos = anchor_mobile(win);
for (i = 0; pos > 0 && i < rows-2; ++i)
pos = sbuf_boln(buf, pos-1);
anchor_move_to(win, pos);
return 0;
}
/*
* Function: cmd_extend_mark_*
* Purpose: Extend selection to user settable mark.
*/
int cmd_extend_mark_0(struct win *win) { return extend_mark(win, 0); }
int cmd_extend_mark_1(struct win *win) { return extend_mark(win, 1); }
int cmd_extend_mark_2(struct win *win) { return extend_mark(win, 2); }
int cmd_extend_mark_3(struct win *win) { return extend_mark(win, 3); }
int cmd_extend_mark_4(struct win *win) { return extend_mark(win, 4); }
int cmd_extend_mark_5(struct win *win) { return extend_mark(win, 5); }
int cmd_extend_mark_6(struct win *win) { return extend_mark(win, 6); }
int cmd_extend_mark_7(struct win *win) { return extend_mark(win, 7); }
int cmd_extend_mark_8(struct win *win) { return extend_mark(win, 8); }
int cmd_extend_mark_9(struct win *win) { return extend_mark(win, 9); }
/*
* Function: cmd_select_para
* Purpose: Select current paragraph.
*/
int cmd_select_para(struct win *win) {
Sbuf *buf;
Sbufmark *sel;
long len, pos, pos2, begin;
cmd_prev_was_cut = 0;
buf = win_buf(win);
sel = win_selection(win);
len = sbuf_length(buf);
pos = sbuf_boln(buf, sbuf_mark_begin(sel));
while (pos < len && line_is_empty(buf, pos))
pos = sbuf_eoln(buf, pos);
while (pos > 0) {
pos2 = sbuf_boln(buf, pos-1);
if (line_is_empty(buf, pos2))
break;
pos = pos2;
}
begin = pos;
do {
pos = sbuf_eoln(buf, pos);
} while (pos < len && !line_is_empty(buf, pos));
sbuf_remark(sel, begin, pos - begin);
sbuf_mark_set_columnar(sel, 0);
win_show(win, begin);
return 0;
}
/*
* Function: cmd_toggle_columnar
* Purpose: Toggle columnarity of selection.
*/
int cmd_toggle_columnar(struct win *win) {
Sbuf *buf;
Sbufmark *sel;
long bcol, ecol;
sel = win_selection(win);
if (sbuf_mark_is_columnar(sel))
sbuf_mark_set_columnar(sel, 0);
else {
buf = win_buf(win);
bcol = sbuf_colno(buf, sbuf_mark_begin(sel), tab_width());
ecol = sbuf_colno(buf, sbuf_mark_end(sel), tab_width());
if (bcol >= ecol) {
error(win, "Error: selection is in wrong form for columnar mode");
return -1;
}
sbuf_mark_set_columnar(sel, 1);
}
return 0;
}
/***********************************************************************
* Local functions.
*/
/*
* Function: line_is_empty
* Purpose: Is line beginning at pos empty (only whitespace)?
*/
static int line_is_empty(Sbuf *buf, long pos) {
int c;
do {
c = sbuf_charat(buf, pos);
++pos;
} while (c != '\n' && isspace(c));
return c == '\n' || c == EOF;
}
/*
* Function: extend_mark
* Purpose: Extend selection to user-settable mark.
* Arguments: win the window
* i the number of the mark
*/
static int extend_mark(struct win *win, int i) {
Sbufmark *m;
m = sbuf_find_mark_by_code(win_buf(win), USER_MARK_0 + i);
if (m == NULL)
return -1;
anchor_move_to(win, sbuf_mark_begin(m));
return 0;
}
|