DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ D T ┃
Length: 10825 (0x2a49) Types: TextFile Names: »Display.c«
└─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦144d629ab⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦34224b4fb⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦5cb9d2efd⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦7d9cab9a9⟧ └─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3 └─ ⟦fc9b38f02⟧ »DATA« └─⟦8e9e227a9⟧ └─⟦7d9cab9a9⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦85ff0a957⟧ └─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3 └─ ⟦fc9b38f02⟧ »DATA« └─⟦8e9e227a9⟧ └─⟦85ff0a957⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦5f3412b64⟧ Bits:30000745 8mm tape, Rational 1000, ENVIRONMENT 12_6_5 TOOLS └─ ⟦91c658230⟧ »DATA« └─⟦5d656759a⟧ └─⟦afaca67b5⟧ └─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3 └─ ⟦fc9b38f02⟧ »DATA« └─⟦8e9e227a9⟧ └─⟦afaca67b5⟧ └─ ⟦this⟧ »./Xt/Display.c« └─⟦d10a02448⟧ Bits:30000409 8mm tape, Rational 1000, ENVIRONMENT, D_12_7_3 └─ ⟦fc9b38f02⟧ »DATA« └─⟦8e9e227a9⟧ └─⟦e9895db93⟧ └─ ⟦this⟧ »./Xt/Display.c«
#ifndef lint static char Xrcsid[] = "$XConsortium: Display.c,v 1.15 89/02/23 18:56:58 swick Exp $"; /* $oHeader: Display.c,v 1.9 88/09/01 11:28:47 asente Exp $ */ #endif lint /*********************************************************** Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts, and the Massachusetts Institute of Technology, Cambridge, Massachusetts. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the names of Digital or MIT not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ #include <X11/Xlib.h> #include <sys/param.h> #include "IntrinsicI.h" ProcessContext _XtGetProcessContext() { static ProcessContextRec processContextRec = { (XtAppContext)NULL, (XtAppContext)NULL, (ConverterTable)NULL }; return &processContextRec; } XtAppContext _XtDefaultAppContext() { register ProcessContext process = _XtGetProcessContext(); if (process->defaultAppContext == NULL) { process->defaultAppContext = XtCreateApplicationContext(); } return process->defaultAppContext; } static void XtAddToAppContext(d, app) Display *d; XtAppContext app; { #define DISPLAYS_TO_ADD 4 if (app->count >= app->max) { app->max += DISPLAYS_TO_ADD; app->list = (Display **) XtRealloc((char *)app->list, (unsigned) app->max * sizeof(Display *)); } app->list[app->count++] = d; if (ConnectionNumber(d) + 1 > app->fds.nfds) { app->fds.nfds = ConnectionNumber(d) + 1; } #undef DISPLAYS_TO_ADD } static void XtDeleteFromAppContext(d, app) Display *d; register XtAppContext app; { register int i; for (i = 0; i < app->count; i++) if (app->list[i] == d) break; if (i < app->count) { if (i <= app->last && app->last > 0) app->last--; for (i++; i < app->count; i++) app->list[i-1] = app->list[i]; app->count--; } } static void ComputeAbbrevLen(string, name, len) String string; /* the variable */ String name; /* the constant */ int *len; /* the current ambiguous length */ { int string_len = strlen(string); int name_len = strlen(name); int i; for (i=0; i<string_len && i<name_len && *string++ == *name++; i++); if (i < name_len && i > *len) *len = i; } Display *XtOpenDisplay(app, displayName, applName, className, urlist, num_urs, argc, argv) XtAppContext app; String displayName, applName, className; XrmOptionDescRec *urlist; Cardinal num_urs; Cardinal *argc; char *argv[]; { char displayCopy[256]; int i; char *ptr, *rindex(), *index(), *strncpy(); Display *d; #ifdef OLDCOLONDISPLAY int squish = -1; Boolean found_display = FALSE; #endif int min_display_len = 0; int min_name_len = 0; if (applName == NULL) { ptr = rindex(argv[0], '/'); if (ptr) applName = ++ptr; else applName = argv[0]; } /* Find the display name and open it While we are at it we look for name because that is needed soon after to do the argument parsing. */ displayCopy[0] = 0; for (i = 0; i < num_urs; i++) { ComputeAbbrevLen(urlist[i].option, "-display", &min_display_len); ComputeAbbrevLen(urlist[i].option, "-name", &min_name_len); } for(i = 1; i < *argc; i++) { int len = strlen(argv[i]); #ifdef OLDCOLONDISPLAY if (!found_display && index(argv[i], ':') != NULL) { (void) strncpy(displayCopy, argv[i], sizeof(displayCopy)); squish = i; continue; } #endif if(len > min_display_len && !strncmp("-display", argv[i], len)) { i++; if (i == *argc) break; (void) strncpy(displayCopy, argv[i], sizeof(displayCopy)); #ifdef OLDCOLONDISPLAY found_display = TRUE; #endif continue; } if(len > min_name_len && !strncmp("-name", argv[i], len)) { i++; if (i == *argc) break; applName = argv[i]; continue; } } #ifdef OLDCOLONDISPLAY if(!found_display && squish != -1) { (*argc)--; for(i = squish; i < *argc; i++) { argv[i] = argv[i+1]; } } #endif if (displayName == NULL) displayName = displayCopy; d = XOpenDisplay(displayName); if (d != NULL) { XtDisplayInitialize(app, d, applName, className, urlist, num_urs, argc, argv); } return d; } void XtDisplayInitialize(app, dpy, name, classname, urlist, num_urs, argc, argv) XtAppContext app; Display *dpy; String name, classname; XrmOptionDescRec *urlist; Cardinal num_urs; Cardinal *argc; char *argv[]; { XtPerDisplay pd, NewPerDisplay(); if (app == NULL) app = _XtDefaultAppContext(); XtAddToAppContext(dpy, app); pd = NewPerDisplay(dpy); pd->region = XCreateRegion(); pd->defaultCaseConverter = _XtConvertCase; pd->defaultKeycodeTranslator = XtTranslateKey; pd->keysyms = NULL; pd ->modsToKeysyms = NULL; pd->appContext = app; pd->name = XrmStringToName(name); pd->class = XrmStringToClass(classname); _XtDisplayInitialize(dpy, app, name, classname, urlist, num_urs, argc, argv); } XtAppContext XtCreateApplicationContext() { XtAppContext app = XtNew(XtAppStruct); app->process = _XtGetProcessContext(); app->next = app->process->appContextList; app->process->appContextList = app; app->list = NULL; app->count = app->max = app->last = 0; app->timerQueue = NULL; app->workQueue = NULL; app->outstandingQueue = NULL; app->errorDB = NULL; _XtSetDefaultErrorHandlers(&app->errorMsgHandler, &app->warningMsgHandler, &app->errorHandler, &app->warningHandler); app->action_table = NULL; _XtSetDefaultSelectionTimeout(&app->selectionTimeout); _XtSetDefaultConverterTable(&app->converterTable); app->sync = app->rv = app->being_destroyed = app->error_inited = FALSE; app->fds.nfds = app->fds.count = 0; FD_ZERO(&app->fds.rmask); FD_ZERO(&app->fds.wmask); FD_ZERO(&app->fds.emask); return app; } static XtAppContext *appDestroyList = NULL; int _XtAppDestroyCount = 0; static void DestroyAppContext(app) XtAppContext app; { while (app->count-- > 0) XCloseDisplay(app->list[app->count]); if (app->list != NULL) XtFree((char *)app->list); _XtFreeConverterTable(app->converterTable); XtFree((char *)app); } void XtDestroyApplicationContext(app) XtAppContext app; { if (app->being_destroyed) return; if (_XtSafeToDestroy) DestroyAppContext(app); else { app->being_destroyed = TRUE; _XtAppDestroyCount++; appDestroyList = (XtAppContext *) XtRealloc((char *) appDestroyList, (unsigned) (_XtAppDestroyCount * sizeof(XtAppContext))); appDestroyList[_XtAppDestroyCount-1] = app; } } void _XtDestroyAppContexts() { int i; for (i = 0; i < _XtAppDestroyCount; i++) { DestroyAppContext(appDestroyList[i]); } _XtAppDestroyCount = 0; XtFree((char *) appDestroyList); appDestroyList = NULL; } XrmDatabase XtDatabase(dpy) Display *dpy; { return (XrmDatabase) dpy -> db; } typedef struct _PerDisplayTable { Display *dpy; XtPerDisplayStruct perDpy; struct _PerDisplayTable *next; } PerDisplayTable, *PerDisplayTablePtr; static PerDisplayTablePtr perDisplayList = NULL; void _XtPerDisplayInitialize() { } XtPerDisplay _XtGetPerDisplay(dpy) Display *dpy; { register PerDisplayTablePtr pd, opd; for (pd = perDisplayList; pd != NULL && pd->dpy != dpy; pd = pd->next){ opd = pd; } if (pd == NULL) { XtErrorMsg("noPerDisplay", "getPerDisplay", "XtToolkitError", "Couldn't find per display information", (String *) NULL, (Cardinal *)NULL); } if (pd != perDisplayList) { /* move it to the front */ /* opd points to the previous one... */ opd->next = pd->next; pd->next = perDisplayList; perDisplayList = pd; } return &(pd->perDpy); } XtAppContext _XtDisplayToApplicationContext(dpy) Display *dpy; { XtPerDisplay pd = _XtGetPerDisplay(dpy); return pd->appContext; } static XtPerDisplay NewPerDisplay(dpy) Display *dpy; { PerDisplayTablePtr pd; pd = XtNew(PerDisplayTable); pd->dpy = dpy; pd->next = perDisplayList; perDisplayList = pd; return &(pd->perDpy); } static Display **dpyDestroyList = NULL; int _XtDpyDestroyCount = 0; static void CloseDisplay(dpy) Display *dpy; { register XtPerDisplay xtpd; register PerDisplayTablePtr pd, opd; for (pd = perDisplayList; pd != NULL && pd->dpy != dpy; pd = pd->next){ opd = pd; } if (pd == NULL) { XtErrorMsg("noPerDisplay", "closeDisplay", "XtToolkitError", "Couldn't find per display information", (String *) NULL, (Cardinal *)NULL); } if (pd == perDisplayList) perDisplayList = pd->next; else opd->next = pd->next; xtpd = &(pd->perDpy); if (xtpd != NULL) { XtDeleteFromAppContext(dpy, xtpd->appContext); XtFree((char *) xtpd->keysyms); XtFree((char *) xtpd->modKeysyms); XtFree((char *) xtpd->modsToKeysyms); xtpd->keysyms_per_keycode = 0; xtpd->being_destroyed = FALSE; xtpd->keysyms = NULL; xtpd->modKeysyms = NULL; xtpd->modsToKeysyms = NULL; } XtFree(pd); XCloseDisplay(dpy); } void XtCloseDisplay(dpy) Display *dpy; { XtPerDisplay pd = _XtGetPerDisplay(dpy); if (pd->being_destroyed) return; if (_XtSafeToDestroy) CloseDisplay(dpy); else { pd->being_destroyed = TRUE; _XtDpyDestroyCount++; dpyDestroyList = (Display **) XtRealloc((char *) dpyDestroyList, (unsigned) (_XtDpyDestroyCount * sizeof(Display *))); dpyDestroyList[_XtDpyDestroyCount-1] = dpy; } } void _XtCloseDisplays() { int i; for (i = 0; i < _XtDpyDestroyCount; i++) { CloseDisplay(dpyDestroyList[i]); } _XtDpyDestroyCount = 0; XtFree((char *) dpyDestroyList); dpyDestroyList = NULL; } XtAppContext XtWidgetToApplicationContext(w) Widget w; { XtPerDisplay pd; while (w != NULL && !XtIsWindowObject(w)) w = XtParent(w); if (w == NULL) { XtErrorMsg("noAppContext", "widgetToApplicationContext", "XtToolkitError", "Couldn't find ancestor with display information", (String *) NULL, (Cardinal *)NULL); } pd = _XtGetPerDisplay(XtDisplay(w)); return pd->appContext; }