File: vgeom.c

package info (click to toggle)
wily 0.13.33-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,500 kB
  • ctags: 1,720
  • sloc: ansic: 12,830; sh: 245; makefile: 188
file content (201 lines) | stat: -rw-r--r-- 4,053 bytes parent folder | download | duplicates (2)
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
#include "wily.h"
#include "view.h"

static Rectangle	snap(View*v, Rectangle r);
static Rectangle	resizebox(Rectangle r);
static void		rfill(Rectangle r, Fcode f);
static void		button_set(View *v);
static void		setrects(View*v, Rectangle r);

void
view_fillbutton(View*v, Fcode f){
	rfill(resizebox(v->r), f);
}

/*
PRE: v->visible.p0 is correct.  The text which is currently
displayed in the frame is correct, but there might not be
enough.

POST:  The frame is displaying everything it should,
and v->visible.p1 is set.
*/
void
fill(View *v) {
	Frame	*f = &v->f;
	ulong	p; 	/* text position of last visible rune */
	Rune	buf[FILLCHUNK];
	int		n;
	Text		*t = v->t;

	/* view_invariants may not hold at this point */

	if(!f->b)
		return;

	/* Add runes until we exhaust the text or fill the frame */
	p = v->visible.p0 + f->nchars;
	while (!frame_isfull(f) && (n = text_ncopy(t, buf, p, FILLCHUNK)) ) {
		frinsert(f, buf, buf+n, f->nchars);
		p += n;
	}
	
	v->visible.p1 = v->visible.p0 + f->nchars;

	if(v->scroll)
		scroll_set(v->scroll,  v->visible.p0,
				f->nchars, text_length(v->t)
				);
	else
		button_set(v);

	/* Ensure that if v->sel is in the visible area, it is selected */
	frselectp(f, F&~D);
	f->p0 = clip(v->sel.p0 - v->visible.p0, 0, f->nchars);
	f->p1 = clip(v->sel.p1 - v->visible.p0, 0, f->nchars);
	frselectp(f, F&~D);

	assert(view_invariants(v));
}

int
snapheight(View*v, int h) {
	int	lines;
	int	fh = v->f.font->height;
	int	brdr = 2*INSET;
	
	if (v->scroll) {
		lines = (h - brdr) / fh;
		if (lines == 0)
			return 0;
		else
			return h;
	} else
		return brdr + fh;
}

/* Try to redraw 'v' inside 'r' */
void
view_reshaped(View*v, Rectangle r) {
	Frame	*f;
	
	assert(view_invariants(v));

	r = snap(v,r);
	setrects(v, r);
	if (ISVISIBLE(v)) {
		if(text_refreshdir(v->t)){
			v->visible.p0 = v->sel.p0 = v->sel.p1 = 0;
			frdelete(&v->f, 0, v->f.nchars);
		}
		fill(v);

		/* Clean up any trailing junk. */
		f = &v->f;

		/* Last line. */
		r.max = r.min = frptofchar(f, f->nchars + 1);
		r.max.x = f->r.max.x;
		r.max.y += f->font->height;
		if (r.min.x != r.max.x)
			cls(r);

		/* Below last line. */
		r.min.x = f->r.min.x;
		r.min.y = r.max.y;
		r.max.y = v->r.max.y; 
		if (r.min.y != r.max.y)
			cls(r);

		view_border(v, v == last_selection);
	}
}

/* Return point just after the last line in 'v' */
int
view_lastlinepos(View*v) {
	Frame	*f = &v->f;
	Point	p = frptofchar(f, f->nchars);
	int	y =  p.y + f->font->height;

	return MIN(y, f->r.max.y);
}

/* Return the amount by which 'v' could be squeezed */
int
view_stripwhitespace(View*v) {
	Frame	*f;
	int		blanklines;

	if(v && ISVISIBLE(v)) {
		f = &v->f;
		assert(Dy(v->r) >= f->maxlines * f->font->height);
		blanklines = f->maxlines - f->nlines;
		if(blanklines > 0) {
			return blanklines * f->font->height;
		}
	}
	return 0;
}

static Rectangle
snap(View*v, Rectangle r) {
	r.max.y = r.min.y + snapheight(v, Dy(r));
	return  r;
}

/* Fill 'r' according to 'f' */
static void
rfill(Rectangle r, Fcode f) {
	r = inset(r,2);
	bitblt(&screen, r.min, &screen, r, f);
}

static Rectangle
resizebox(Rectangle r) {
	r = inset(r, INSET);
	r.max.x = r.min.x + SCROLLWIDTH;
	return r;
}

static void
button_set(View *v) {
	Rectangle	r;

	assert(ISTAG(v));	/* we're a tag */
	r = resizebox(v->r);
	border(&screen, r, 1, F);

	if( tile_isdirty(v->tile))
		rfill(r, F);
}

/* Set the rectangles for 'v', v's frame and v's scrollbar.
 * Assumes that 'r' is already correct.
 * If we can be displayed, set up the frame and scrollbar.
 */
static void
setrects(View*v, Rectangle r) {
	Frame	*f = &v->f;
	Font		*ft = f->font;
	Rectangle	scrollr, framer;
	Bitmap	*b;

	assert(Dx(r) >= MINWIDTH);	/* Or our tile is bizarre */

	scrollr = inset(r, INSET);
	scrollr.max.x = scrollr.min.x + SCROLLWIDTH;

	framer = inset(r, INSET);
	framer.min.x += SCROLLWIDTH;
	framer.min.x += INSET;

	/* If 'r' is too small, we're hidden: use null bitmap */ 
	b = Dy(r) < tagheight ? 0 : &screen;

	v->r = r;
	scroll_setrects(v->scroll, b, scrollr);
	frclear(f);
	frinit(f, framer, ft, b);
}