⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wind.c

📁 早期freebsd实现
💻 C
字号:
/*************************************************************************** * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE * * is provided to you without charge, and with no warranty.  You may give  * * away copies of JOVE, including sources, provided that this notice is    * * included in all the files.                                              * ***************************************************************************//* This creates/deletes/divides/grows/shrinks windows.  */#include "jove.h"#include "termcap.h"#include "chars.h"#include "disp.h"private char	onlyone[] = "You only have one window!",		toosmall[] = "Resulting window would be too small.";Window	*curwind,	*fwind = NULL;/* First line in a Window */intFLine(w)register Window	*w;{	register Window	*wp = fwind;	register int	lineno = -1;	while (wp != w) {		lineno += wp->w_height;		wp = wp->w_next;		if (wp == fwind)			complain("window?");	}	return lineno + 1;}/* Delete `wp' from the screen.  If it is the only window left   on the screen, then complain.  It gives its body   to the next window if there is one, otherwise the previous   window gets the body.  */voiddel_wind(wp)register Window	*wp;{	register Window	*prev = wp->w_prev;	if (one_windp())		complain(onlyone);	prev->w_next = wp->w_next;	wp->w_next->w_prev = prev;	if (fwind == wp) {		fwind = wp->w_next;		fwind->w_height += wp->w_height;		/* Here try to do something intelligent for redisplay() */		SetTop(fwind, prev_line(fwind->w_top, wp->w_height));		if (curwind == wp)			SetWind(fwind);	} else {		prev->w_height += wp->w_height;		if (curwind == wp)			SetWind(prev);	}#ifdef	MAC	RemoveScrollBar(wp);	Windchange = YES;#endif	free((UnivPtr) wp);}/* Divide the window WP N times, or at least once.  Complains if WP is too   small to be split into that many pieces.  It returns the new window. */Window *div_wind(wp, n)register Window	*wp;int	n;{	register Window	*new;	int	amt;	if (n < 1)		n = 1;	amt = wp->w_height / (n + 1);	if (amt < 2)		complain(toosmall);	do {		new = (Window *) emalloc(sizeof (Window));		new->w_flags = 0;		new->w_LRscroll = 0;		new->w_height = amt;		wp->w_height -= amt;		/* set the lines such that w_line is the center in		   each Window */		new->w_line = wp->w_line;		new->w_char = wp->w_char;		new->w_bufp = wp->w_bufp;		new->w_top = prev_line(new->w_line, HALF(new));		/* Link the new window into the list */		new->w_prev = wp;		new->w_next = wp->w_next;		new->w_next->w_prev = new;		wp->w_next = new;#ifdef	MAC		new->w_control = NULL;#endif	} while (--n > 0);#ifdef	MAC	Windchange = YES;#endif	return new;}/* Initialze the first window setting the bounds to the size of the   screen.  There is no buffer with this window.  See parse for the   setting of this window. */voidwinit(){	register Window	*w;	w = curwind = fwind = (Window *) emalloc(sizeof (Window));	w->w_line = w->w_top = NULL;	w->w_LRscroll = 0;	w->w_flags = 0;	w->w_char = 0;	w->w_next = w->w_prev = fwind;	w->w_height = ILI;#ifdef	MAC	w->w_control = NULL;	Windchange = YES;#endif}/* Change to previous window. */voidPrevWindow(){	register Window	*new = curwind->w_prev;	if (Asking)		complain((char *)NULL);	if (one_windp())		complain(onlyone);	SetWind(new);}/* Make NEW the current Window */voidSetWind(new)register Window	*new;{	if (!Asking && curbuf!=NULL) {		/* can you say kludge? */		curwind->w_line = curline;		curwind->w_char = curchar;		curwind->w_bufp = curbuf;	}	if (new == curwind)		return;	SetBuf(new->w_bufp);	if (!inlist(new->w_bufp->b_first, new->w_line)) {		new->w_line = curline;		new->w_char = curchar;	}	DotTo(new->w_line, new->w_char);	if (curchar > (int)strlen(linebuf))		new->w_char = curchar = strlen(linebuf);	curwind = new;}/* delete the current window if it isn't the only one left */voidDelCurWindow(){	SetABuf(curwind->w_bufp);	del_wind(curwind);}/* put the current line of `w' in the middle of the window */voidCentWind(w)register Window	*w;{	SetTop(w, prev_line(w->w_line, HALF(w)));}int	ScrollStep = 0;		/* full scrolling *//* Calculate the new topline of the window.  If ScrollStep == 0   it means we should center the current line in the window. */voidCalcWind(w)register Window	*w;{	register int	up;	int	scr_step;	Line	*newtop;	if (ScrollStep == 0) {	/* Means just center it */		CentWind(w);	} else {		up = inorder(w->w_line, 0, w->w_top, 0);		if (up == -1) {			CentWind(w);			return;		}		scr_step = (ScrollStep < 0) ? SIZE(w) + ScrollStep :			   ScrollStep - 1;		/* up: point is above the screen */		newtop = prev_line(w->w_line, up?			scr_step : (SIZE(w) - 1 - scr_step));		if (LineDist(newtop, w->w_top) >= SIZE(w) - 1)			CentWind(w);		else			SetTop(w, newtop);	}}/* This is bound to C-X 4 [BTF].  To make the screen stay the   same we have to remember various things, like the current   top line in the current window.  It's sorta gross, but it's   necessary because of the way this is implemented (i.e., in   terms of do_find(), do_select() which manipulate the windows. */voidWindFind(){	register Buffer	*obuf = curbuf,			*nbuf;	Line	*ltop = curwind->w_top;	Bufpos	odot,		ndot;	DOTsave(&odot);	switch (waitchar((int *)NULL)) {	case 't':	case 'T':		ExecCmd((data_obj *) FindCmd(FindTag));		break;	case CTL('T'):		ExecCmd((data_obj *) FindCmd(FDotTag));		break;	case 'b':	case 'B':		ExecCmd((data_obj *) FindCmd(BufSelect));		break;	case 'f':	case 'F':		ExecCmd((data_obj *) FindCmd(FindFile));		break;	default:		complain("T: find-tag, ^T: find-tag-at-point, F: find-file, B: select-buffer.");	}	nbuf = curbuf;	DOTsave(&ndot);	SetBuf(obuf);	SetDot(&odot);	SetTop(curwind, ltop);	/* there! it's as if we did nothing */	if (one_windp())		(void) div_wind(curwind, 1);	tiewind(curwind->w_next, nbuf);	SetWind(curwind->w_next);	SetDot(&ndot);}/* Go into one window mode by deleting all the other windows */voidOneWindow(){	while (curwind->w_next != curwind)		del_wind(curwind->w_next);}Window *windbp(bp)register Buffer	*bp;{	register Window	*wp = fwind;	if (bp == NULL)		return NULL;	do {		if (wp->w_bufp == bp)			return wp;		wp = wp->w_next;	} while (wp != fwind);	return NULL;}/* Change window into the next window.  Curwind becomes the new window. */voidNextWindow(){	register Window	*new = curwind->w_next;	if (Asking)		complain((char *)NULL);	if (one_windp())		complain(onlyone);	SetWind(new);}/* Scroll the next Window */voidPageNWind(){	if (one_windp())		complain(onlyone);	NextWindow();	NextPage();	PrevWindow();}private Window *w_nam_typ(name, type)register char	*name;int	type;{	register Window *w;	register Buffer	*b;	b = buf_exists(name);	w = fwind;	if (b) do {		if (w->w_bufp == b)			return w;	} while ((w = w->w_next) != fwind);	w = fwind;	do {		if (w->w_bufp->b_type == type)			return w;	} while ((w = w->w_next) != fwind);	return NULL;}/* Put a window with the buffer `name' in it.  Erase the buffer if   `clobber' is non-zero. */voidpop_wind(name, clobber, btype)register char	*name;int	clobber;int	btype;{	register Window	*wp;	register Buffer	*newb;	if ((newb = buf_exists(name)) != NULL)		btype = -1;	/* if the buffer exists, don't change				   it's type */	if ((wp = w_nam_typ(name, btype)) == NULL) {		if (one_windp())			SetWind(div_wind(curwind, 1));		else			PrevWindow();	} else		SetWind(wp);	newb = do_select((Window *)NULL, name);	if (clobber) {		initlist(newb);		newb->b_modified = NO;	}	tiewind(curwind, newb);	if (btype != -1)		newb->b_type = btype;	SetBuf(newb);}voidGrowWindowCmd(){	WindSize(curwind, abs(arg_value()));}voidShrWindow(){	WindSize(curwind, -abs(arg_value()));}/* Change the size of the window by inc.  First arg is the window,   second is the increment. */voidWindSize(w, inc)register Window	*w;register int	inc;{	if (one_windp())		complain(onlyone);	if (inc == 0)		return;	else if (inc < 0) {	/* Shrinking this Window. */		if (w->w_height + inc < 2)			complain(toosmall);		w->w_height += inc;		w->w_prev->w_height -= inc;	} else {		/* Growing the window. */		/* Change made from original code so that growing a window		   exactly offsets effect of shrinking a window, i.e.		   doing either followed by the other restores original		   sizes of all affected windows. */		if (w->w_prev->w_height - inc < 2)			complain(toosmall);		w->w_height += inc;		w->w_prev->w_height -= inc;	}#ifdef	MAC	Windchange = YES;#endif}/* Set the topline of the window, calculating its number in the buffer.   This is for numbering the lines only. */voidSetTop(w, line)Window	*w;register Line	*line;{	register Line	*lp = w->w_bufp->b_first;	register int	num = 0;	w->w_top = line;	if (w->w_flags & W_NUMLINES) {		while (lp) {			num += 1;			if (line == lp)				break;			lp = lp->l_next;		}		w->w_topnum = num;	}}voidWNumLines(){	curwind->w_flags ^= W_NUMLINES;	SetTop(curwind, curwind->w_top);}voidWVisSpace(){	curwind->w_flags ^= W_VISSPACE;	ClAndRedraw();}/* Return the line number that `line' occupies in `windes' */intin_window(windes, line)register Window	*windes;register Line	*line;{	register int	i;	register Line	*top = windes->w_top;	for (i = 0; top && i < windes->w_height - 1; i++, top = top->l_next)		if (top == line)			return FLine(windes) + i;	return -1;}voidSplitWind(){	SetWind(div_wind(curwind, is_an_arg() ? (arg_value() - 1) : 1));}/* Goto the window with the named buffer.  If no such window   exists, pop one and attach the buffer to it. */voidGotoWind(){	char	*bname;	Window	*w;	bname = ask_buf(lastbuf);	w = curwind->w_next;	do {		if (w->w_bufp->b_name == bname) {			SetABuf(curbuf);			SetWind(w);			return;		}		w = w->w_next;	} while (w != curwind);	SetABuf(curbuf);	pop_wind(bname, NO, -1);}voidScrollRight(){	int	amt = (is_an_arg() ? arg_value() : 10);	if (curwind->w_LRscroll - amt < 0)		curwind->w_LRscroll = 0;	else		curwind->w_LRscroll -= amt;	UpdModLine = YES;}voidScrollLeft(){	int	amt = (is_an_arg() ? arg_value() : 10);	curwind->w_LRscroll += amt;	UpdModLine = YES;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -