17a84e134Smrg/*********************************************************** 27a84e134Smrg 37a84e134SmrgCopyright 1987, 1988, 1994, 1998 The Open Group 47a84e134Smrg 57a84e134SmrgPermission to use, copy, modify, distribute, and sell this software and its 67a84e134Smrgdocumentation for any purpose is hereby granted without fee, provided that 77a84e134Smrgthe above copyright notice appear in all copies and that both that 87a84e134Smrgcopyright notice and this permission notice appear in supporting 97a84e134Smrgdocumentation. 107a84e134Smrg 117a84e134SmrgThe above copyright notice and this permission notice shall be included in 127a84e134Smrgall copies or substantial portions of the Software. 137a84e134Smrg 147a84e134SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157a84e134SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167a84e134SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177a84e134SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 187a84e134SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 197a84e134SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 207a84e134Smrg 217a84e134SmrgExcept as contained in this notice, the name of The Open Group shall not be 227a84e134Smrgused in advertising or otherwise to promote the sale, use or other dealings 237a84e134Smrgin this Software without prior written authorization from The Open Group. 247a84e134Smrg 257a84e134Smrg 267a84e134SmrgCopyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts. 277a84e134Smrg 287a84e134Smrg All Rights Reserved 297a84e134Smrg 30421c997bSmrgPermission to use, copy, modify, and distribute this software and its 31421c997bSmrgdocumentation for any purpose and without fee is hereby granted, 327a84e134Smrgprovided that the above copyright notice appear in all copies and that 33421c997bSmrgboth that copyright notice and this permission notice appear in 347a84e134Smrgsupporting documentation, and that the name of Digital not be 357a84e134Smrgused in advertising or publicity pertaining to distribution of the 36421c997bSmrgsoftware without specific, written prior permission. 377a84e134Smrg 387a84e134SmrgDIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 397a84e134SmrgALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL 407a84e134SmrgDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 417a84e134SmrgANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 427a84e134SmrgWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 437a84e134SmrgARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 447a84e134SmrgSOFTWARE. 457a84e134Smrg 467a84e134Smrg******************************************************************/ 477a84e134Smrg 487a84e134Smrg/* 497a84e134Smrg * AsciiText.c - Private header file for AsciiText Widget. 507a84e134Smrg * 51421c997bSmrg * This Widget is intended to be used as a simple front end to the 527a84e134Smrg * text widget with an ascii source and ascii sink attached to it. 537a84e134Smrg * 547a84e134Smrg * Date: June 29, 1989 557a84e134Smrg * 567a84e134Smrg * By: Chris D. Peterson 57421c997bSmrg * MIT X Consortium 587a84e134Smrg * kit@expo.lcs.mit.edu 597a84e134Smrg */ 607a84e134Smrg 617a84e134Smrg#ifndef _AsciiTextP_h 627a84e134Smrg#define _AsciiTextP_h 637a84e134Smrg 647a84e134Smrg#include <X11/Xaw/TextP.h> 657a84e134Smrg#include <X11/Xaw/AsciiText.h> 667a84e134Smrg#include <X11/Xaw/AsciiSrc.h> 677a84e134Smrg#include <X11/Xaw/MultiSrc.h> 687a84e134Smrg 697a84e134Smrgtypedef struct { 707a84e134Smrg XtPointer extension; 717a84e134Smrg} AsciiClassPart; 727a84e134Smrg 737a84e134Smrgtypedef struct _AsciiTextClassRec { 747a84e134Smrg CoreClassPart core_class; 757a84e134Smrg SimpleClassPart simple_class; 767a84e134Smrg TextClassPart text_class; 777a84e134Smrg AsciiClassPart ascii_class; 787a84e134Smrg} AsciiTextClassRec; 797a84e134Smrg 807a84e134Smrgextern AsciiTextClassRec asciiTextClassRec; 817a84e134Smrg 827a84e134Smrgtypedef struct { 837a84e134Smrg int resource; 847a84e134Smrg#ifndef OLDXAW 855b16253fSmrg XtPointer pad[4]; /* for future use and keep binary compatibility */ 867a84e134Smrg#endif 877a84e134Smrg} AsciiPart; 887a84e134Smrg 897a84e134Smrgtypedef struct _AsciiRec { 907a84e134Smrg CorePart core; 917a84e134Smrg SimplePart simple; 927a84e134Smrg TextPart text; 937a84e134Smrg AsciiPart ascii; 947a84e134Smrg} AsciiRec; 957a84e134Smrg 967a84e134Smrg/* 977a84e134Smrg * Ascii String Emulation widget 987a84e134Smrg */ 997a84e134Smrg#ifdef ASCII_STRING 1007a84e134Smrgtypedef struct { 1017a84e134Smrg XtPointer extension; 1027a84e134Smrg} AsciiStringClassPart; 1037a84e134Smrg 1047a84e134Smrgtypedef struct _AsciiStringClassRec { 1057a84e134Smrg CoreClassPart core_class; 1067a84e134Smrg SimpleClassPart simple_class; 1077a84e134Smrg TextClassPart text_class; 1087a84e134Smrg AsciiClassPart ascii_class; 1097a84e134Smrg AsciiStringClassPart string_class; 1107a84e134Smrg} AsciiStringClassRec; 1117a84e134Smrg 1127a84e134Smrgextern AsciiStringClassRec asciiStringClassRec; 1137a84e134Smrg 1147a84e134Smrgtypedef struct { 1157a84e134Smrg int resource; 1167a84e134Smrg#ifndef OLDXAW 1175b16253fSmrg XtPointer pad[4]; /* for future use and keep binary compatibility */ 1187a84e134Smrg#endif 1197a84e134Smrg} AsciiStringPart; 1207a84e134Smrg 1217a84e134Smrgtypedef struct _AsciiStringRec { 1227a84e134Smrg CorePart core; 1237a84e134Smrg SimplePart simple; 1247a84e134Smrg TextPart text; 1257a84e134Smrg AsciiPart ascii; 1267a84e134Smrg AsciiStringPart ascii_str; 1277a84e134Smrg} AsciiStringRec; 1287a84e134Smrg#endif /* ASCII_STRING */ 1297a84e134Smrg 1307a84e134Smrg#ifdef ASCII_DISK 1317a84e134Smrg/* 1327a84e134Smrg * Ascii Disk Emulation widget 1337a84e134Smrg */ 1347a84e134Smrgtypedef struct { 1357a84e134Smrg XtPointer extension; 1367a84e134Smrg} AsciiDiskClassPart; 1377a84e134Smrg 1387a84e134Smrgtypedef struct _AsciiDiskClassRec { 1397a84e134Smrg CoreClassPart core_class; 1407a84e134Smrg SimpleClassPart simple_class; 1417a84e134Smrg TextClassPart text_class; 1427a84e134Smrg AsciiClassPart ascii_class; 1437a84e134Smrg AsciiDiskClassPart disk_class; 1447a84e134Smrg} AsciiDiskClassRec; 1457a84e134Smrg 1467a84e134Smrgextern AsciiDiskClassRec asciiDiskClassRec; 1477a84e134Smrg 1487a84e134Smrgtypedef struct { 1497a84e134Smrg char resource; 1507a84e134Smrg#ifndef OLDXAW 1515b16253fSmrg XtPointer pad[4]; /* for future use and keep binary compatibility */ 1527a84e134Smrg#endif 1537a84e134Smrg} AsciiDiskPart; 1547a84e134Smrg 1557a84e134Smrgtypedef struct _AsciiDiskRec { 1567a84e134Smrg CorePart core; 1577a84e134Smrg SimplePart simple; 1587a84e134Smrg TextPart text; 1597a84e134Smrg AsciiPart ascii; 1607a84e134Smrg AsciiDiskPart ascii_disk; 1617a84e134Smrg} AsciiDiskRec; 1627a84e134Smrg#endif /* ASCII_DISK */ 1637a84e134Smrg 1647a84e134Smrg#endif /* _AsciiTextP_h */ 165