[w3m-dev 02854] highlight for incremental search

* display.c (EFFECT_MARK_START): added
* display.c (EFFECT_MARK_END): added
* display.c (EFFECT_MARK_START_C): added
* display.c (EFFECT_MARK_END_C): added
* display.c (EFFECT_MARK_START_M): added
* display.c (EFFECT_MARK_END_M): added
* display.c: define_effect for MARK_{START,END}
* display.c (mark_mode): added
* display.c (redrawLine): if mark_mode
* display.c (do_effects): do_effect2(PE_MARK, ...)
* display.c (do_effects): do_effect1(PE_MARK, ...)
* fm.h (P_EFFECT): changed to 0x01ff
* fm.h (PE_MARK): moved
* fm.h (mark_color): added
* linein.c (inputLineHistSearch): incrfunc(int ch, Str str)
* main.c (clear_mark): added
* main.c (dispincsrch): remove arg `x', `y'
* main.c (dispincsrch): move SAVE_BUFPOSITION()
* main.c (srch): if (result & SR_FOUND) clear_mark()
* main.c (cmd_mark): PE_MARK
* main.c (nextMk): s/PM_MARK/PE_MARK/
* main.c (prevMk): s/PM_MARK/PE_MARK/
* proto.h (inputLineHistSearch): change prototype incfunc()
* rc.c (CMT_MARK_COLOR): added
* rc.c (params2): add "mark_color"
* search.c (set_mark): added
* search.c (forwardSearch): use set_mark()
* search.c (backwardSearch): use set_mark()
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-01-16 15:37:06 +00:00
parent e5106ef688
commit 6877847e22
8 changed files with 123 additions and 54 deletions
+33 -1
View File
@@ -1,3 +1,35 @@
2002-01-17 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
* [w3m-dev 02854] highlight for incremental search
* display.c (EFFECT_MARK_START): added
* display.c (EFFECT_MARK_END): added
* display.c (EFFECT_MARK_START_C): added
* display.c (EFFECT_MARK_END_C): added
* display.c (EFFECT_MARK_START_M): added
* display.c (EFFECT_MARK_END_M): added
* display.c: define_effect for MARK_{START,END}
* display.c (mark_mode): added
* display.c (redrawLine): if mark_mode
* display.c (do_effects): do_effect2(PE_MARK, ...)
* display.c (do_effects): do_effect1(PE_MARK, ...)
* fm.h (P_EFFECT): changed to 0x01ff
* fm.h (PE_MARK): moved
* fm.h (mark_color): added
* linein.c (inputLineHistSearch): incrfunc(int ch, Str str)
* main.c (clear_mark): added
* main.c (dispincsrch): remove arg `x', `y'
* main.c (dispincsrch): move SAVE_BUFPOSITION()
* main.c (srch): if (result & SR_FOUND) clear_mark()
* main.c (cmd_mark): PE_MARK
* main.c (nextMk): s/PM_MARK/PE_MARK/
* main.c (prevMk): s/PM_MARK/PE_MARK/
* proto.h (inputLineHistSearch): change prototype incfunc()
* rc.c (CMT_MARK_COLOR): added
* rc.c (params2): add "mark_color"
* search.c (set_mark): added
* search.c (forwardSearch): use set_mark()
* search.c (backwardSearch): use set_mark()
2002-01-16 Tsutomu Okada <okada@furuno.co.jp> 2002-01-16 Tsutomu Okada <okada@furuno.co.jp>
* [w3m-dev 02851] * [w3m-dev 02851]
@@ -2003,4 +2035,4 @@
* release-0-2-1 * release-0-2-1
* import w3m-0.2.1 * import w3m-0.2.1
$Id: ChangeLog,v 1.228 2002/01/16 04:38:06 ukai Exp $ $Id: ChangeLog,v 1.229 2002/01/16 15:37:06 ukai Exp $
+30 -2
View File
@@ -1,4 +1,4 @@
/* $Id: display.c,v 1.13 2001/12/26 18:17:57 ukai Exp $ */ /* $Id: display.c,v 1.14 2002/01/16 15:37:06 ukai Exp $ */
#include <signal.h> #include <signal.h>
#include "fm.h" #include "fm.h"
@@ -17,6 +17,8 @@
#define EFFECT_ACTIVE_END effect_active_end() #define EFFECT_ACTIVE_END effect_active_end()
#define EFFECT_VISITED_START effect_visited_start() #define EFFECT_VISITED_START effect_visited_start()
#define EFFECT_VISITED_END effect_visited_end() #define EFFECT_VISITED_END effect_visited_end()
#define EFFECT_MARK_START effect_mark_start()
#define EFFECT_MARK_END effect_mark_end()
/* color: * 0 black * 1 red * 2 green * 3 yellow /* color: * 0 black * 1 red * 2 green * 3 yellow
* * 4 blue * 5 magenta * 6 cyan * 7 white */ * * 4 blue * 5 magenta * 6 cyan * 7 white */
@@ -26,12 +28,22 @@
#define EFFECT_FORM_START_C setfcolor(form_color) #define EFFECT_FORM_START_C setfcolor(form_color)
#define EFFECT_ACTIVE_START_C (setfcolor(active_color), underline()) #define EFFECT_ACTIVE_START_C (setfcolor(active_color), underline())
#define EFFECT_VISITED_START_C setfcolor(visited_color) #define EFFECT_VISITED_START_C setfcolor(visited_color)
#ifdef USE_BG_COLOR
#define EFFECT_MARK_START_C setbcolor(mark_color)
#else
#define EFFECT_MARK_START_C standout()
#endif
#define EFFECT_IMAGE_END_C setfcolor(basic_color) #define EFFECT_IMAGE_END_C setfcolor(basic_color)
#define EFFECT_ANCHOR_END_C setfcolor(basic_color) #define EFFECT_ANCHOR_END_C setfcolor(basic_color)
#define EFFECT_FORM_END_C setfcolor(basic_color) #define EFFECT_FORM_END_C setfcolor(basic_color)
#define EFFECT_ACTIVE_END_C (setfcolor(basic_color), underlineend()) #define EFFECT_ACTIVE_END_C (setfcolor(basic_color), underlineend())
#define EFFECT_VISITED_END_C setfcolor(basic_color) #define EFFECT_VISITED_END_C setfcolor(basic_color)
#ifdef USE_BG_COLOR
#define EFFECT_MARK_END_C setbcolor(bg_color)
#else
#define EFFECT_MARK_END_C standend()
#endif
#define EFFECT_ANCHOR_START_M underline() #define EFFECT_ANCHOR_START_M underline()
#define EFFECT_ANCHOR_END_M underlineend() #define EFFECT_ANCHOR_END_M underlineend()
@@ -45,6 +57,8 @@
#define EFFECT_ACTIVE_END_M boldend() #define EFFECT_ACTIVE_END_M boldend()
#define EFFECT_VISITED_START_M /**/ #define EFFECT_VISITED_START_M /**/
#define EFFECT_VISITED_END_M /**/ #define EFFECT_VISITED_END_M /**/
#define EFFECT_MARK_START_M standout()
#define EFFECT_MARK_END_M standend()
#define define_effect(name_start,name_end,color_start,color_end,mono_start,mono_end) \ #define define_effect(name_start,name_end,color_start,color_end,mono_start,mono_end) \
static void name_start { if (useColor) { color_start; } else { mono_start; }}\ static void name_start { if (useColor) { color_start; } else { mono_start; }}\
static void name_end { if (useColor) { color_end; } else { mono_end; }} static void name_end { if (useColor) { color_end; } else { mono_end; }}
@@ -54,6 +68,8 @@ define_effect(EFFECT_IMAGE_START, EFFECT_IMAGE_END, EFFECT_IMAGE_START_C,
EFFECT_IMAGE_END_C, EFFECT_IMAGE_START_M, EFFECT_IMAGE_END_M) EFFECT_IMAGE_END_C, EFFECT_IMAGE_START_M, EFFECT_IMAGE_END_M)
define_effect(EFFECT_FORM_START, EFFECT_FORM_END, EFFECT_FORM_START_C, define_effect(EFFECT_FORM_START, EFFECT_FORM_END, EFFECT_FORM_START_C,
EFFECT_FORM_END_C, EFFECT_FORM_START_M, EFFECT_FORM_END_M) EFFECT_FORM_END_C, EFFECT_FORM_START_M, EFFECT_FORM_END_M)
define_effect(EFFECT_MARK_START, EFFECT_MARK_END, EFFECT_MARK_START_C,
EFFECT_MARK_END_C, EFFECT_MARK_START_M, EFFECT_MARK_END_M)
/*****************/ /*****************/
/* *INDENT-OFF* */ /* *INDENT-OFF* */
@@ -128,6 +144,8 @@ EFFECT_VISITED_END
#define EFFECT_ACTIVE_END boldend() #define EFFECT_ACTIVE_END boldend()
#define EFFECT_VISITED_START /**/ #define EFFECT_VISITED_START /**/
#define EFFECT_VISITED_END /**/ #define EFFECT_VISITED_END /**/
#define EFFECT_MARK_START standout()
#define EFFECT_MARK_END standend()
#endif /* not USE_COLOR */ #endif /* not USE_COLOR */
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
static char g_rule[] = "ntwluxkavmqajaaa"; static char g_rule[] = "ntwluxkavmqajaaa";
@@ -176,7 +194,7 @@ static int ccolumn = -1;
static int ulmode = 0, somode = 0, bomode = 0; static int ulmode = 0, somode = 0, bomode = 0;
static int anch_mode = 0, emph_mode = 0, imag_mode = 0, form_mode = 0, static int anch_mode = 0, emph_mode = 0, imag_mode = 0, form_mode = 0,
active_mode = 0, visited_mode = 0; active_mode = 0, visited_mode = 0, mark_mode = 0;
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
static int graph_mode = 0; static int graph_mode = 0;
#endif /* not KANJI_SYMBOLS */ #endif /* not KANJI_SYMBOLS */
@@ -512,6 +530,10 @@ redrawLine(Buffer *buf, Line *l, int i)
active_mode = FALSE; active_mode = FALSE;
EFFECT_ACTIVE_END; EFFECT_ACTIVE_END;
} }
if (mark_mode) {
mark_mode = FALSE;
EFFECT_MARK_END;
}
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
if (graph_mode) { if (graph_mode) {
graph_mode = FALSE; graph_mode = FALSE;
@@ -649,6 +671,10 @@ redrawLineRegion(Buffer *buf, Line *l, int i, int bpos, int epos)
active_mode = FALSE; active_mode = FALSE;
EFFECT_ACTIVE_END; EFFECT_ACTIVE_END;
} }
if (mark_mode) {
mark_mode = FALSE;
EFFECT_MARK_END;
}
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
if (graph_mode) { if (graph_mode) {
graph_mode = FALSE; graph_mode = FALSE;
@@ -690,6 +716,7 @@ do_effects(Lineprop m)
do_effect2(PE_VISITED, visited_mode, EFFECT_VISITED_START, do_effect2(PE_VISITED, visited_mode, EFFECT_VISITED_START,
EFFECT_VISITED_END); EFFECT_VISITED_END);
do_effect2(PE_ACTIVE, active_mode, EFFECT_ACTIVE_START, EFFECT_ACTIVE_END); do_effect2(PE_ACTIVE, active_mode, EFFECT_ACTIVE_START, EFFECT_ACTIVE_END);
do_effect2(PE_MARK, mark_mode, EFFECT_MARK_START, EFFECT_MARK_END);
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
if (graph_mode) { if (graph_mode) {
graphend(); graphend();
@@ -708,6 +735,7 @@ do_effects(Lineprop m)
do_effect1(PE_VISITED, visited_mode, EFFECT_VISITED_START, do_effect1(PE_VISITED, visited_mode, EFFECT_VISITED_START,
EFFECT_VISITED_END); EFFECT_VISITED_END);
do_effect1(PE_ACTIVE, active_mode, EFFECT_ACTIVE_START, EFFECT_ACTIVE_END); do_effect1(PE_ACTIVE, active_mode, EFFECT_ACTIVE_START, EFFECT_ACTIVE_END);
do_effect1(PE_MARK, mark_mode, EFFECT_MARK_START, EFFECT_MARK_END);
#ifndef KANJI_SYMBOLS #ifndef KANJI_SYMBOLS
if (m & PC_RULE) { if (m & PC_RULE) {
if (!graph_mode && graph_ok()) { if (!graph_mode && graph_ok()) {
+4 -5
View File
@@ -1,4 +1,4 @@
/* $Id: fm.h,v 1.38 2002/01/15 17:23:29 ukai Exp $ */ /* $Id: fm.h,v 1.39 2002/01/16 15:37:06 ukai Exp $ */
/* /*
* w3m: WWW wo Miru utility * w3m: WWW wo Miru utility
* *
@@ -126,8 +126,9 @@ void bzero(void *, int);
#endif /* not KANJI_SYMBOLS */ #endif /* not KANJI_SYMBOLS */
/* Effect ( standout/underline ) */ /* Effect ( standout/underline ) */
#define P_EFFECT 0x01fe #define P_EFFECT 0x01ff
#define PE_NORMAL 0x00 #define PE_NORMAL 0x00
#define PE_MARK 0x01
#define PE_UNDER 0x02 #define PE_UNDER 0x02
#define PE_STAND 0x04 #define PE_STAND 0x04
#define PE_BOLD 0x08 #define PE_BOLD 0x08
@@ -138,9 +139,6 @@ void bzero(void *, int);
#define PE_ACTIVE 0x80 #define PE_ACTIVE 0x80
#define PE_VISITED 0x0100 #define PE_VISITED 0x0100
/* Mark */
#define PM_MARK 0x01
#define CharType(c) ((c)&P_CHARTYPE) #define CharType(c) ((c)&P_CHARTYPE)
#ifdef KANJI_SYMBOLS #ifdef KANJI_SYMBOLS
#define CharEffect(c) ((c)&P_EFFECT) #define CharEffect(c) ((c)&P_EFFECT)
@@ -722,6 +720,7 @@ global int image_color init(2); /* green */
global int form_color init(1); /* red */ global int form_color init(1); /* red */
#ifdef USE_BG_COLOR #ifdef USE_BG_COLOR
global int bg_color init(8); /* don't change */ global int bg_color init(8); /* don't change */
global int mark_color init(6); /* cyan */
#endif /* USE_BG_COLOR */ #endif /* USE_BG_COLOR */
global int useActiveColor init(FALSE); global int useActiveColor init(FALSE);
global int active_color init(6); /* cyan */ global int active_color init(6); /* cyan */
+7 -12
View File
@@ -1,4 +1,4 @@
/* $Id: linein.c,v 1.18 2001/12/25 13:43:51 ukai Exp $ */ /* $Id: linein.c,v 1.19 2002/01/16 15:37:06 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include "local.h" #include "local.h"
#include "myctype.h" #include "myctype.h"
@@ -82,14 +82,12 @@ static void ins_kanji(Str tmp);
char * char *
inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist, inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
int (*incrfunc) (int ch, Str str, short *x, short *y)) int (*incrfunc) (int ch, Str str))
{ {
int opos, x, y, lpos, rpos, epos; int opos, x, y, lpos, rpos, epos;
unsigned char c; unsigned char c;
char *p; char *p;
Lineprop mode; Lineprop mode;
short cursorX = -1;
short cursorY = -1;
#ifdef JP_CHARSET #ifdef JP_CHARSET
Str tmp = Strnew(); Str tmp = Strnew();
#endif /* JP_CHARSET */ #endif /* JP_CHARSET */
@@ -170,9 +168,6 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
else else
addStr(strBuf->ptr, strProp, CLen, offset, COLS - opos); addStr(strBuf->ptr, strProp, CLen, offset, COLS - opos);
clrtoeolx(); clrtoeolx();
if (cursorX >= 0 && cursorY >= 0)
move(cursorY, cursorX);
else
move(LASTLINE, opos + x - offset); move(LASTLINE, opos + x - offset);
refresh(); refresh();
@@ -197,7 +192,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
InnerCode); InnerCode);
ins_kanji(tmp); ins_kanji(tmp);
if (incrfunc) if (incrfunc)
incrfunc(-1, strBuf, &cursorX, &cursorY); incrfunc(-1, strBuf);
} }
else else
#endif #endif
@@ -235,10 +230,10 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
} }
else if (!i_quote && c < 0x20) { /* Control code */ else if (!i_quote && c < 0x20) { /* Control code */
if (incrfunc == NULL if (incrfunc == NULL
|| (c = incrfunc((int)c, strBuf, &cursorX, &cursorY)) < 0x20) || (c = incrfunc((int)c, strBuf)) < 0x20)
(*InputKeymap[(int)c]) (c); (*InputKeymap[(int)c]) (c);
if (incrfunc) if (incrfunc)
incrfunc(-1, strBuf, &cursorX, &cursorY); incrfunc(-1, strBuf);
if (cm_clear) if (cm_clear)
cm_next = FALSE; cm_next = FALSE;
if (cm_disp_clear) if (cm_disp_clear)
@@ -255,7 +250,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
tmp = conv_str(tmp, DisplayCode, InnerCode); tmp = conv_str(tmp, DisplayCode, InnerCode);
ins_kanji(tmp); ins_kanji(tmp);
if (incrfunc) if (incrfunc)
incrfunc(-1, strBuf, &cursorX, &cursorY); incrfunc(-1, strBuf);
} }
else if ((c & 0x80) || in_kanji) { /* Kanji 1 */ else if ((c & 0x80) || in_kanji) { /* Kanji 1 */
i_quote = FALSE; i_quote = FALSE;
@@ -284,7 +279,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist,
CPos++; CPos++;
mode = PC_ASCII; mode = PC_ASCII;
if (incrfunc) if (incrfunc)
incrfunc(-1, strBuf, &cursorX, &cursorY); incrfunc(-1, strBuf);
} }
if (CLen && (flag & IN_CHAR)) if (CLen && (flag & IN_CHAR))
break; break;
+27 -25
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.59 2002/01/15 17:23:29 ukai Exp $ */ /* $Id: main.c,v 1.60 2002/01/16 15:37:06 ukai Exp $ */
#define MAINPROGRAM #define MAINPROGRAM
#include "fm.h" #include "fm.h"
#include <signal.h> #include <signal.h>
@@ -1351,6 +1351,16 @@ migemostr(char *str)
} }
#endif /* USE_MIGEMO */ #endif /* USE_MIGEMO */
static void
clear_mark(Line *l)
{
short pos;
if (!l)
return;
for (pos = 0; pos < l->len; pos++)
l->propBuf[pos] &= ~PE_MARK;
}
/* search by regular expression */ /* search by regular expression */
static int static int
srchcore(char *str, int (*func) (Buffer *, char *)) srchcore(char *str, int (*func) (Buffer *, char *))
@@ -1391,7 +1401,7 @@ disp_srchresult(int result, char *prompt, char *str)
} }
static int static int
dispincsrch(int ch, Str buf, short *x, short *y) dispincsrch(int ch, Str buf)
{ {
static Buffer sbuf; static Buffer sbuf;
static Line *currentLine; static Line *currentLine;
@@ -1422,8 +1432,8 @@ dispincsrch(int ch, Str buf, short *x, short *y)
} }
if (do_next_search) { if (do_next_search) {
if (*str) {
SAVE_BUFPOSITION(&sbuf); SAVE_BUFPOSITION(&sbuf);
if (*str) {
srchcore(str, searchRoutine); srchcore(str, searchRoutine);
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
if (Currentbuf->currentLine == currentLine if (Currentbuf->currentLine == currentLine
@@ -1432,28 +1442,20 @@ dispincsrch(int ch, Str buf, short *x, short *y)
srchcore(str, searchRoutine); srchcore(str, searchRoutine);
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
} }
*x = Currentbuf->cursorX; }
*y = Currentbuf->cursorY;
displayBuffer(Currentbuf, B_NORMAL);
return -1;
} }
else { else {
return 020; /* _prev completion? */
}
}
else if (*str) {
RESTORE_BUFPOSITION(&sbuf); RESTORE_BUFPOSITION(&sbuf);
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
if (*str) {
srchcore(str, searchRoutine); srchcore(str, searchRoutine);
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
*x = Currentbuf->cursorX; }
*y = Currentbuf->cursorY;
currentLine = Currentbuf->currentLine; currentLine = Currentbuf->currentLine;
pos = Currentbuf->pos; pos = Currentbuf->pos;
displayBuffer(Currentbuf, B_NORMAL);
} }
else displayBuffer(Currentbuf, B_FORCE_REDRAW);
displayBuffer(Currentbuf, B_NORMAL); clear_mark(Currentbuf->currentLine);
return -1; return -1;
} }
@@ -1463,14 +1465,14 @@ isrch(int (*func) (Buffer *, char *), char *prompt)
char *str; char *str;
Buffer sbuf; Buffer sbuf;
SAVE_BUFPOSITION(&sbuf); SAVE_BUFPOSITION(&sbuf);
dispincsrch(0, NULL, NULL, NULL); /* initialize incremental search state */ dispincsrch(0, NULL); /* initialize incremental search state */
searchRoutine = func; searchRoutine = func;
str = inputLineHistSearch(prompt, NULL, IN_STRING, TextHist, dispincsrch); str = inputLineHistSearch(prompt, NULL, IN_STRING, TextHist, dispincsrch);
if (str == NULL) { if (str == NULL) {
RESTORE_BUFPOSITION(&sbuf); RESTORE_BUFPOSITION(&sbuf);
} }
displayBuffer(Currentbuf, B_NORMAL); displayBuffer(Currentbuf, B_FORCE_REDRAW);
onA(); onA();
} }
@@ -1486,6 +1488,8 @@ srch(int (*func) (Buffer *, char *), char *prompt)
if (str == NULL) if (str == NULL)
return; return;
result = srchcore(str, func); result = srchcore(str, func);
if (result & SR_FOUND)
clear_mark(Currentbuf->currentLine);
displayBuffer(Currentbuf, B_NORMAL); displayBuffer(Currentbuf, B_NORMAL);
onA(); onA();
disp_srchresult(result, prompt, str); disp_srchresult(result, prompt, str);
@@ -1539,6 +1543,8 @@ srch_nxtprv(int reverse)
if (searchRoutine == backwardSearch) if (searchRoutine == backwardSearch)
reverse ^= 1; reverse ^= 1;
result = srchcore(SearchString, routine[reverse]); result = srchcore(SearchString, routine[reverse]);
if (result & SR_FOUND)
clear_mark(Currentbuf->currentLine);
displayBuffer(Currentbuf, B_NORMAL); displayBuffer(Currentbuf, B_NORMAL);
onA(); onA();
disp_srchresult(result, (reverse ? "Backward: " : "Forward: "), disp_srchresult(result, (reverse ? "Backward: " : "Forward: "),
@@ -2355,11 +2361,7 @@ cmd_mark(Lineprop *p)
{ {
if (!use_mark) if (!use_mark)
return; return;
if ((*p & PM_MARK) && (*p & PE_STAND)) *p |= PE_MARK;
*p &= ~PE_STAND;
else if (!(*p & PM_MARK) && !(*p & PE_STAND))
*p |= PE_STAND;
*p ^= PM_MARK;
} }
/* Go to next mark */ /* Go to next mark */
@@ -2381,7 +2383,7 @@ nextMk(void)
} }
while (l != NULL) { while (l != NULL) {
for (; i < l->len; i++) { for (; i < l->len; i++) {
if (l->propBuf[i] & PM_MARK) { if (l->propBuf[i] & PE_MARK) {
Currentbuf->currentLine = l; Currentbuf->currentLine = l;
Currentbuf->pos = i; Currentbuf->pos = i;
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
@@ -2415,7 +2417,7 @@ prevMk(void)
} }
while (l != NULL) { while (l != NULL) {
for (; i >= 0; i--) { for (; i >= 0; i--) {
if (l->propBuf[i] & PM_MARK) { if (l->propBuf[i] & PE_MARK) {
Currentbuf->currentLine = l; Currentbuf->currentLine = l;
Currentbuf->pos = i; Currentbuf->pos = i;
arrangeCursor(Currentbuf); arrangeCursor(Currentbuf);
+2 -4
View File
@@ -1,4 +1,4 @@
/* $Id: proto.h,v 1.24 2002/01/14 15:59:17 ukai Exp $ */ /* $Id: proto.h,v 1.25 2002/01/16 15:37:07 ukai Exp $ */
/* /*
* This file was automatically generated by version 1.7 of cextract. * This file was automatically generated by version 1.7 of cextract.
* Manual editing not recommended. * Manual editing not recommended.
@@ -262,9 +262,7 @@ extern void escmap(void);
extern void escbmap(void); extern void escbmap(void);
extern void escdmap(char c); extern void escdmap(char c);
extern char *inputLineHistSearch(char *prompt, char *def_str, int flag, extern char *inputLineHistSearch(char *prompt, char *def_str, int flag,
Hist *hist, Hist *hist, int (*incfunc) (int ch, Str buf));
int (*incfunc) (int ch, Str buf, short *x,
short *y));
#ifdef USE_HISTORY #ifdef USE_HISTORY
extern Buffer *historyBuffer(Hist *hist); extern Buffer *historyBuffer(Hist *hist);
extern void loadHistory(Hist *hist); extern void loadHistory(Hist *hist);
+5 -1
View File
@@ -1,4 +1,4 @@
/* $Id: rc.c,v 1.29 2002/01/15 17:23:29 ukai Exp $ */ /* $Id: rc.c,v 1.30 2002/01/16 15:37:07 ukai Exp $ */
/* /*
* Initialization file etc. * Initialization file etc.
*/ */
@@ -74,6 +74,7 @@ static char *config_file = NULL;
#define CMT_I_COLOR "画像リンクの色" #define CMT_I_COLOR "画像リンクの色"
#define CMT_F_COLOR "フォームの色" #define CMT_F_COLOR "フォームの色"
#define CMT_BG_COLOR "背景の色" #define CMT_BG_COLOR "背景の色"
#define CMT_MARK_COLOR "マークの色"
#define CMT_ACTIVE_STYLE "現在選択されているリンクの色を指定する" #define CMT_ACTIVE_STYLE "現在選択されているリンクの色を指定する"
#define CMT_C_COLOR "現在選択されているリンクの色" #define CMT_C_COLOR "現在選択されているリンクの色"
#define CMT_VISITED_ANCHOR "訪れたことがあるリンクは色を変える" #define CMT_VISITED_ANCHOR "訪れたことがあるリンクは色を変える"
@@ -200,6 +201,7 @@ static char *config_file = NULL;
#define CMT_VISITED_ANCHOR "Use visited link color" #define CMT_VISITED_ANCHOR "Use visited link color"
#define CMT_V_COLOR "Color of visited link" #define CMT_V_COLOR "Color of visited link"
#define CMT_BG_COLOR "Color of background" #define CMT_BG_COLOR "Color of background"
#define CMT_MARK_COLOR "Color of mark"
#define CMT_HTTP_PROXY "URL of HTTP proxy host" #define CMT_HTTP_PROXY "URL of HTTP proxy host"
#ifdef USE_GOPHER #ifdef USE_GOPHER
#define CMT_GOPHER_PROXY "URL of GOPHER proxy host" #define CMT_GOPHER_PROXY "URL of GOPHER proxy host"
@@ -435,6 +437,8 @@ struct param_ptr params2[] = {
{"form_color", P_COLOR, PI_SEL_C, (void *)&form_color, CMT_F_COLOR, {"form_color", P_COLOR, PI_SEL_C, (void *)&form_color, CMT_F_COLOR,
colorstr}, colorstr},
#ifdef USE_BG_COLOR #ifdef USE_BG_COLOR
{"mark_color", P_COLOR, PI_SEL_C, (void *)&mark_color, CMT_MARK_COLOR,
colorstr},
{"bg_color", P_COLOR, PI_SEL_C, (void *)&bg_color, CMT_BG_COLOR, colorstr}, {"bg_color", P_COLOR, PI_SEL_C, (void *)&bg_color, CMT_BG_COLOR, colorstr},
#endif /* USE_BG_COLOR */ #endif /* USE_BG_COLOR */
{"active_style", P_INT, PI_ONOFF, (void *)&useActiveColor, {"active_style", P_INT, PI_ONOFF, (void *)&useActiveColor,
+12 -1
View File
@@ -1,7 +1,14 @@
/* $Id: search.c,v 1.7 2002/01/11 03:00:16 ukai Exp $ */ /* $Id: search.c,v 1.8 2002/01/16 15:37:07 ukai Exp $ */
#include "fm.h" #include "fm.h"
#include "regex.h" #include "regex.h"
static void
set_mark(Line *l, int pos, int epos)
{
for (; pos < epos && pos < l->len; pos++)
l->propBuf[pos] |= PE_MARK;
}
int int
forwardSearch(Buffer *buf, char *str) forwardSearch(Buffer *buf, char *str)
{ {
@@ -27,6 +34,7 @@ forwardSearch(Buffer *buf, char *str)
matchedPosition(&first, &last); matchedPosition(&first, &last);
buf->pos = first - l->lineBuf; buf->pos = first - l->lineBuf;
arrangeCursor(buf); arrangeCursor(buf);
set_mark(l, buf->pos, last - l->lineBuf);
return SR_FOUND; return SR_FOUND;
} }
for (l = l->next;; l = l->next) { for (l = l->next;; l = l->next) {
@@ -60,6 +68,7 @@ forwardSearch(Buffer *buf, char *str)
buf->currentLine = l; buf->currentLine = l;
gotoLine(buf, l->linenumber); gotoLine(buf, l->linenumber);
arrangeCursor(buf); arrangeCursor(buf);
set_mark(l, buf->pos, last - l->lineBuf);
return SR_FOUND | (wrapped ? SR_WRAPPED : 0); return SR_FOUND | (wrapped ? SR_WRAPPED : 0);
} }
if (wrapped && l == begin) /* no match */ if (wrapped && l == begin) /* no match */
@@ -109,6 +118,7 @@ backwardSearch(Buffer *buf, char *str)
if (found) { if (found) {
buf->pos = found - l->lineBuf; buf->pos = found - l->lineBuf;
arrangeCursor(buf); arrangeCursor(buf);
set_mark(l, buf->pos, last - l->lineBuf);
return SR_FOUND; return SR_FOUND;
} }
} }
@@ -143,6 +153,7 @@ backwardSearch(Buffer *buf, char *str)
buf->currentLine = l; buf->currentLine = l;
gotoLine(buf, l->linenumber); gotoLine(buf, l->linenumber);
arrangeCursor(buf); arrangeCursor(buf);
set_mark(l, buf->pos, last - l->lineBuf);
return SR_FOUND | (wrapped ? SR_WRAPPED : 0); return SR_FOUND | (wrapped ? SR_WRAPPED : 0);
} }
if (wrapped && l == begin) /* no match */ if (wrapped && l == begin) /* no match */