ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/xtwind.h
Revision: 2.3
Committed: Sat Feb 22 02:07:23 2003 UTC (21 years, 3 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 2.2: +0 -0 lines
State: FILE REMOVED
Log Message:
Changes and check-in for 3.5 release
Includes new source files and modifications not recorded for many years
See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release

File Contents

# User Rev Content
1 greg 1.1 /*
2     * xtwind.h - header for X text window routines.
3 greg 2.2 */
4    
5     /* ====================================================================
6     * The Radiance Software License, Version 1.0
7     *
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 greg 1.1 *
56 greg 2.2 * 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 greg 1.1 */
61    
62     #define LEFTMAR 2 /* left margin width */
63    
64     typedef struct {
65     Window w; /* window */
66     FontInfo f; /* font information */
67     short nc, nr; /* text size */
68     char **lp; /* null-terminated lines */
69     short c, r; /* current position */
70     short cursor; /* cursor type */
71     } TEXTWIND; /* a text window */
72    
73     #define TNOCURS 0
74     #define TBLKCURS 1
75    
76     extern TEXTWIND *xt_open();