4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
27 void screen_resize_x(struct screen
*, u_int
);
28 void screen_resize_y(struct screen
*, u_int
);
30 /* Create a new screen. */
32 screen_init(struct screen
*s
, u_int sx
, u_int sy
, u_int hlimit
)
34 char hn
[MAXHOSTNAMELEN
];
36 s
->grid
= grid_create(sx
, sy
, hlimit
);
38 if (gethostname(hn
, MAXHOSTNAMELEN
) == 0)
39 s
->title
= xstrdup(hn
);
41 s
->title
= xstrdup("");
44 s
->ccolour
= xstrdup("");
50 /* Reinitialise screen. */
52 screen_reinit(struct screen
*s
)
58 s
->rlower
= screen_size_y(s
) - 1;
60 s
->mode
= MODE_CURSOR
| MODE_WRAP
;
64 grid_clear_lines(s
->grid
, s
->grid
->hsize
, s
->grid
->sy
);
66 screen_clear_selection(s
);
69 /* Destroy a screen. */
71 screen_free(struct screen
*s
)
77 grid_destroy(s
->grid
);
80 /* Reset tabs to default, eight spaces apart. */
82 screen_reset_tabs(struct screen
*s
)
89 if ((s
->tabs
= bit_alloc(screen_size_x(s
))) == NULL
)
90 fatal("bit_alloc failed");
91 for (i
= 8; i
< screen_size_x(s
); i
+= 8)
95 /* Set screen cursor style. */
97 screen_set_cursor_style(struct screen
*s
, u_int style
)
103 /* Set screen cursor colour. */
105 screen_set_cursor_colour(struct screen
*s
, const char *colour_string
)
108 s
->ccolour
= xstrdup(colour_string
);
111 /* Set screen title. */
113 screen_set_title(struct screen
*s
, const char *title
)
117 strlcpy(tmp
, title
, sizeof tmp
);
120 s
->title
= xstrdup(tmp
);
125 screen_resize(struct screen
*s
, u_int sx
, u_int sy
)
132 if (sx
!= screen_size_x(s
)) {
133 screen_resize_x(s
, sx
);
136 * It is unclear what should happen to tabs on resize. xterm
137 * seems to try and maintain them, rxvt resets them. Resetting
138 * is simpler and more reliable so let's do that.
140 screen_reset_tabs(s
);
143 if (sy
!= screen_size_y(s
))
144 screen_resize_y(s
, sy
);
148 screen_resize_x(struct screen
*s
, u_int sx
)
150 struct grid
*gd
= s
->grid
;
156 * Treat resizing horizontally simply: just ensure the cursor is
157 * on-screen and change the size. Don't bother to truncate any lines -
158 * then the data should be accessible if the size is then incrased.
160 * The only potential wrinkle is if UTF-8 double-width characters are
161 * left in the last column, but UTF-8 terminals should deal with this
170 screen_resize_y(struct screen
*s
, u_int sy
)
172 struct grid
*gd
= s
->grid
;
173 u_int needed
, available
, oldy
, i
;
177 oldy
= screen_size_y(s
);
182 * If the height is decreasing, delete lines from the bottom until
183 * hitting the cursor, then push lines from the top into the history.
185 * When increasing, pull as many lines as possible from the history to
186 * the top, then fill the remaining with blanks at the bottom.
189 /* Size decreasing. */
193 /* Delete as many lines as possible from the bottom. */
194 available
= oldy
- 1 - s
->cy
;
196 if (available
> needed
)
198 grid_view_delete_lines(gd
, oldy
- available
, available
);
203 * Now just increase the history size, if possible, to take
204 * over the lines which are left. If history is off, delete
205 * lines from the top.
207 * XXX Should apply history limit?
210 if (gd
->flags
& GRID_HISTORY
)
212 else if (needed
> 0 && available
> 0) {
213 if (available
> needed
)
215 grid_view_delete_lines(gd
, 0, available
);
220 /* Resize line arrays. */
221 gd
->linedata
= xrealloc(
222 gd
->linedata
, gd
->hsize
+ sy
, sizeof *gd
->linedata
);
224 /* Size increasing. */
229 * Try to pull as much as possible out of the history, if is
232 available
= gd
->hsize
;
233 if (gd
->flags
& GRID_HISTORY
&& available
> 0) {
234 if (available
> needed
)
236 gd
->hsize
-= available
;
242 /* Then fill the rest in with blanks. */
243 for (i
= gd
->hsize
+ sy
- needed
; i
< gd
->hsize
+ sy
; i
++)
244 memset(&gd
->linedata
[i
], 0, sizeof gd
->linedata
[i
]);
247 /* Set the new size, and reset the scroll region. */
250 s
->rlower
= screen_size_y(s
) - 1;
255 screen_set_selection(struct screen
*s
, u_int sx
, u_int sy
,
256 u_int ex
, u_int ey
, u_int rectflag
, struct grid_cell
*gc
)
258 struct screen_sel
*sel
= &s
->sel
;
260 memcpy(&sel
->cell
, gc
, sizeof sel
->cell
);
262 sel
->rectflag
= rectflag
;
264 sel
->sx
= sx
; sel
->sy
= sy
;
265 sel
->ex
= ex
; sel
->ey
= ey
;
268 /* Clear selection. */
270 screen_clear_selection(struct screen
*s
)
272 struct screen_sel
*sel
= &s
->sel
;
277 /* Check if cell in selection. */
279 screen_check_selection(struct screen
*s
, u_int px
, u_int py
)
281 struct screen_sel
*sel
= &s
->sel
;
287 if (sel
->sy
< sel
->ey
) {
288 /* start line < end line -- downward selection. */
289 if (py
< sel
->sy
|| py
> sel
->ey
)
291 } else if (sel
->sy
> sel
->ey
) {
292 /* start line > end line -- upward selection. */
293 if (py
> sel
->sy
|| py
< sel
->ey
)
296 /* starting line == ending line. */
302 * Need to include the selection start row, but not the cursor
303 * row, which means the selection changes depending on which
304 * one is on the left.
306 if (sel
->ex
< sel
->sx
) {
307 /* Cursor (ex) is on the left. */
314 /* Selection start (sx) is on the left. */
323 * Like emacs, keep the top-left-most character, and drop the
324 * bottom-right-most, regardless of copy direction.
326 if (sel
->sy
< sel
->ey
) {
327 /* starting line < ending line -- downward selection. */
328 if (py
< sel
->sy
|| py
> sel
->ey
)
331 if ((py
== sel
->sy
&& px
< sel
->sx
)
332 || (py
== sel
->ey
&& px
> sel
->ex
))
334 } else if (sel
->sy
> sel
->ey
) {
335 /* starting line > ending line -- upward selection. */
336 if (py
> sel
->sy
|| py
< sel
->ey
)
339 if ((py
== sel
->sy
&& px
>= sel
->sx
)
340 || (py
== sel
->ey
&& px
< sel
->ex
))
343 /* starting line == ending line. */
347 if (sel
->ex
< sel
->sx
) {
348 /* cursor (ex) is on the left */
349 if (px
> sel
->sx
|| px
< sel
->ex
)
352 /* selection start (sx) is on the left */
353 if (px
< sel
->sx
|| px
> sel
->ex
)