1/*
2
3Copyright (c) 1987, 1988  X Consortium
4
5Permission is hereby granted, free of charge, to any person obtaining
6a copy of this software and associated documentation files (the
7"Software"), to deal in the Software without restriction, including
8without limitation the rights to use, copy, modify, merge, publish,
9distribute, sublicense, and/or sell copies of the Software, and to
10permit persons to whom the Software is furnished to do so, subject to
11the following conditions:
12
13The above copyright notice and this permission notice shall be included
14in all copies or substantial portions of the Software.
15
16THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
20OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22OTHER DEALINGS IN THE SOFTWARE.
23
24Except as contained in this notice, the name of the X Consortium shall
25not be used in advertising or otherwise to promote the sale, use or
26other dealings in this Software without prior written authorization
27from the X Consortium.
28
29*/
30
31#ifndef _XtScrollByLine_h
32#define _XtScrollByLine_h
33
34/***********************************************************************
35 *
36 * ScrollByLine Widget (subclass of Simple)
37 *
38 ***********************************************************************/
39
40/*
41 * The default fonts.
42 */
43
44#define MANPAGE_NORMAL   "*-new century schoolbook-medium-r-normal--*-120-*"
45#define MANPAGE_BOLD     "*-new century schoolbook-bold-r-normal--*-120-*"
46#define MANPAGE_ITALIC   "*-new century schoolbook-bold-i-normal--*-120-*"
47#define MANPAGE_SYMBOL   "*-symbol-medium-r-normal--*-120-*"
48
49#define XtNindent           "indent"
50#define XtNforceVert        "forceVert"
51#define XtNmanualFontNormal "manualFontNormal"
52#define XtNmanualFontBold   "manualFontBold"
53#define XtNmanualFontItalic "manualFontItalic"
54#define XtNmanualFontSymbol "manualFontSymbol"
55#define XtNNumTotalLines    "numTotalLines"
56#define XtNNumVisibleLines  "numVisibleLines"
57
58#define XtCIndent           "Indent"
59#define XtCNumTotalLines    "NumTotalLines"
60#define XtCNumVisibleLines  "NumVisibleLines"
61
62/* Class record constants */
63
64extern WidgetClass scrollByLineWidgetClass;
65
66typedef struct _ScrollByLineClassRec *ScrollByLineWidgetClass;
67typedef struct _ScrollByLineRec      *ScrollByLineWidget;
68
69#endif /* _XtScrollByLine_h --- DON'T ADD STUFF AFTER THIS LINE */
70