1 |
– |
/* Copyright (c) 1987 Regents of the University of California */ |
2 |
– |
|
3 |
– |
#ifndef lint |
4 |
– |
static char SCCSid[] = "$SunId$ LBL"; |
5 |
– |
#endif |
6 |
– |
|
1 |
|
/* |
2 |
|
* xtwind.c - routines for X text windows. |
3 |
+ |
*/ |
4 |
+ |
|
5 |
+ |
/* ==================================================================== |
6 |
+ |
* The Radiance Software License, Version 1.0 |
7 |
|
* |
8 |
< |
* 10/30/87 |
8 |
> |
* Copyright (c) 1990 - 2002 The Regents of the University of California, |
9 |
> |
* through Lawrence Berkeley National Laboratory. All rights reserved. |
10 |
> |
* |
11 |
> |
* Redistribution and use in source and binary forms, with or without |
12 |
> |
* modification, are permitted provided that the following conditions |
13 |
> |
* are met: |
14 |
> |
* |
15 |
> |
* 1. Redistributions of source code must retain the above copyright |
16 |
> |
* notice, this list of conditions and the following disclaimer. |
17 |
> |
* |
18 |
> |
* 2. Redistributions in binary form must reproduce the above copyright |
19 |
> |
* notice, this list of conditions and the following disclaimer in |
20 |
> |
* the documentation and/or other materials provided with the |
21 |
> |
* distribution. |
22 |
> |
* |
23 |
> |
* 3. The end-user documentation included with the redistribution, |
24 |
> |
* if any, must include the following acknowledgment: |
25 |
> |
* "This product includes Radiance software |
26 |
> |
* (http://radsite.lbl.gov/) |
27 |
> |
* developed by the Lawrence Berkeley National Laboratory |
28 |
> |
* (http://www.lbl.gov/)." |
29 |
> |
* Alternately, this acknowledgment may appear in the software itself, |
30 |
> |
* if and wherever such third-party acknowledgments normally appear. |
31 |
> |
* |
32 |
> |
* 4. The names "Radiance," "Lawrence Berkeley National Laboratory" |
33 |
> |
* and "The Regents of the University of California" must |
34 |
> |
* not be used to endorse or promote products derived from this |
35 |
> |
* software without prior written permission. For written |
36 |
> |
* permission, please contact [email protected]. |
37 |
> |
* |
38 |
> |
* 5. Products derived from this software may not be called "Radiance", |
39 |
> |
* nor may "Radiance" appear in their name, without prior written |
40 |
> |
* permission of Lawrence Berkeley National Laboratory. |
41 |
> |
* |
42 |
> |
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
43 |
> |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
44 |
> |
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
45 |
> |
* DISCLAIMED. IN NO EVENT SHALL Lawrence Berkeley National Laboratory OR |
46 |
> |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
47 |
> |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
48 |
> |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
49 |
> |
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
50 |
> |
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
51 |
> |
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
52 |
> |
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
53 |
> |
* SUCH DAMAGE. |
54 |
> |
* ==================================================================== |
55 |
> |
* |
56 |
> |
* This software consists of voluntary contributions made by many |
57 |
> |
* individuals on behalf of Lawrence Berkeley National Laboratory. For more |
58 |
> |
* information on Lawrence Berkeley National Laboratory, please see |
59 |
> |
* <http://www.lbl.gov/>. |
60 |
|
*/ |
61 |
|
|
62 |
|
#include <stdio.h> |
65 |
|
|
66 |
|
#include "xtwind.h" |
67 |
|
|
68 |
+ |
#ifndef BSD |
69 |
+ |
#define bzero(d,n) (void)memset(d,0,n) |
70 |
+ |
extern char *memset(); |
71 |
+ |
#endif |
72 |
+ |
|
73 |
|
#define checkcurs(t) if ((t)->cursor) togglecurs(t) |
74 |
|
|
75 |
|
#define restorecurs checkcurs |
142 |
|
case '\n': |
143 |
|
if (t->r >= t->nr - 1) |
144 |
|
xt_delete(t, 0); /* scroll up 1 line */ |
145 |
< |
else if (t->r < t->nr - 1) |
145 |
> |
else |
146 |
|
t->r++; |
147 |
|
/* fall through */ |
148 |
|
case '\r': |
283 |
|
XDestroyWindow(t->w); |
284 |
|
for (i = 0; i < t->nr; i++) |
285 |
|
free(t->lp[i]); |
286 |
< |
free((char *)t->lp); |
287 |
< |
free((char *)t); |
286 |
> |
free((void *)t->lp); |
287 |
> |
free((void *)t); |
288 |
|
} |