xref: /illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/wbrdr_st.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 1995, by Sun Microsystems, Inc.
24  * All rights reserved.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 /*
30  * wbrdr_st.c
31  *
32  * XCurses Library
33  *
34  * Copyright 1990, 1995 by Mortice Kern Systems Inc.  All rights reserved.
35  *
36  */
37 
38 #ifdef M_RCSID
39 #ifndef lint
40 static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/wbrdr_st.c 1.6 1995/07/07 18:52:43 ant Exp $";
41 #endif
42 #endif
43 
44 #include <private.h>
45 
46 /*f
47  * Draw a border around the edges of the window. The parms correspond to
48  * a character and attribute for the left, right, top, and bottom sides,
49  * top left, top right, bottom left, and bottom right corners. A zero in
50  * any character parm means to take the default.
51  */
52 int
53 wborder_set(w, ls, rs, ts, bs, tl, tr, bl, br)
54 WINDOW *w;
55 const cchar_t *ls, *rs, *ts, *bs, *tl, *tr, *bl, *br;
56 {
57 	short oflags;
58 	int x, y, code;
59 
60 #ifdef M_CURSES_TRACE
61 	__m_trace(
62 		"wborder_set(%p, %p, %p, %p, %p, %p, %p, %p, %p)",
63 		 w, ls, rs, ts, bs, tl, tr, bl, br
64 	);
65 #endif
66 
67 	code = ERR;
68 	x = w->_curx;
69 	y = w->_cury;
70 
71 	oflags = w->_flags & (W_FLUSH | W_SYNC_UP);
72 	w->_flags &= ~(W_FLUSH | W_SYNC_UP);
73 
74 	/* Verticals. */
75 	(void) wmove(w, 0, 0);
76 	(void) wvline_set(w, ls, w->_maxy);
77 	(void) wmove(w, 0, w->_maxx-1);
78 	(void) wvline_set(w, rs, w->_maxy);
79 
80 	/* Horizontals. */
81 	(void) wmove(w, 0, 1);
82 	(void) whline_set(w, ts, w->_maxx-2);
83 	(void) wmove(w, w->_maxy-1, 1);
84 	(void) whline_set(w, bs, w->_maxx-2);
85 
86 	w->_flags |= oflags;
87 
88 	/* Corners. */
89 	if (tl == (const cchar_t *) 0)
90 		tl = WACS_ULCORNER;
91 	if (tr == (const cchar_t *) 0)
92 		tr = WACS_URCORNER;
93 	if (bl == (const cchar_t *) 0)
94 		bl = WACS_LLCORNER;
95 	if (br == (const cchar_t *) 0)
96 		br = WACS_LRCORNER;
97 
98 	if (__m_cc_replace(w, 0, 0, tl, 0) == -1)
99 		goto error;
100 	if (__m_cc_replace(w, 0, w->_maxx-1, tr, 0) == -1)
101 		goto error;
102 	if (__m_cc_replace(w, w->_maxy-1, 0, bl, 0) == -1)
103 		goto error;
104 	if (__m_cc_replace(w, w->_maxy-1, w->_maxx-1, br, 0) == -1)
105 		goto error;
106 
107 	(void) wmove(w, y, x);
108 
109 	WSYNC(w);
110 
111 	code = WFLUSH(w);
112 error:
113 	return __m_return_code("wborder_set", code);
114 }
115 
116