DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T X

⟦02e22c858⟧ TextFile

    Length: 12666 (0x317a)
    Types: TextFile
    Names: »XCreateTerm.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─ ⟦this⟧ »./X.V10R4/Xlib/XCreateTerm.c« 

TextFile

#include <X/mit-copyright.h>

/* $Header: XCreateTerm.c,v 10.14 86/12/17 19:31:32 swick Exp $ */
/* Copyright 1985, Massachusetts Institute of Technology */
/* stolen from CLU routine x_tcons, redone by J. Gettys */

#include "XlibInternal.h"
#include <stdio.h>
#include <strings.h>
#define TRUE  1
#define FALSE 0
#define max(a,b) ( (a) > (b) ? (a) : (b) )
#define min(a,b) ( (a) > (b) ? (b) : (a) )
#define abs(a) ( (a) > 0 ? (a) : -(a))

#define DCOUNT 2
#define VCOUNT 1 + (4  * 2 * DCOUNT)
#define FCOUNT 1 + 4

#define CURSOR_LL 0
#include "../cursors/ll_angle.cursor"
#include "../cursors/ll_angle_mask.cursor"
#define CURSOR_LR 1
#include "../cursors/lr_angle.cursor"
#include "../cursors/lr_angle_mask.cursor"
#define CURSOR_UL 2
#include "../cursors/ul_angle.cursor"
#include "../cursors/ul_angle_mask.cursor"
#define CURSOR_UR 3
#include "../cursors/ur_angle.cursor"
#include "../cursors/ur_angle_mask.cursor"

Window XCreateTerm(name, prog, geometry, def, frame, minwidth, minheight,
	xadder, yadder, cwidth, cheight, f, fwidth, fheight)
	char *name, *prog;		/* prompt string and name of program */
	register OpaqueFrame *frame;	/* frame for resulting window 	   */
	int minwidth, minheight;	/* this time in units of characters*/
	char *geometry, *def;
	int *cwidth, *cheight;		/* returns the size of the window  */
	FontInfo *f;			/* major bodyfont of the window	   */
	int fwidth, fheight;		/* width and height of increments  */
	int xadder, yadder;		/* add is size of internal padding */
	{
	int pr;				/* parse geometry result	    */
	int defwidth, defheight;	/* frame from parse...		    */
	int defx, defy;
	FontInfo *pfont;
	int pfore, pback;		/* prompt foreground and background */
	int bpix;
	int mfore;			/* mouse cursor colors		    */
	int mback;			/* background color for mouse	    */
	int clip = 0;			/* clip window to screen	    */
	int freeze = 0;			/* freeze server		    */
	Color cdef;			/* color structure		    */
	int events;			/* what events we want.		    */
	int popw, poph;			/* width and height of prompt window*/
	char text[64];			/* text for prompt string	    */
	int zero = '0';			/* zero offset for char conversion  */
	int x1, y1;			/* location of mouse 		*/
	int x2, y2;			/* other corner of box		*/
	XButtonEvent e;			/* someplace to put the event	*/
	Cursor ur,ul,lr,ll;		/* cursors for rubber banding    */
	Window pop;			/* pop up prompt window		*/
	Pixmap save = 0;		/* saved pixmap 		*/
	Pixmap backmap, bdrmap;		/* background and border pixmaps*/
	Vertex box[VCOUNT];		/* vertex list for box 		*/
	Window subw;			/* window cursor was in (not used) */
	register int i;			/* ye olde indexe variabel 	*/
	int count = VCOUNT;		/* vertex count 		*/
	int nz;				/* count where zeros are 	*/
	int xadd, yadd;
	int hsize, vsize;
	char *opt;			/* option back from XGetdefault */
	int ibw = 0;			/* internal border width 	*/
	int pbw = 0;			/* prompt window border width 	*/
	int bwidth = frame->bdrwidth;	/* border width of final window */
	int xa = -1, ya = -1, xb = -1, yb = -1;
	int chosen = -1;
	int stop = FALSE;
	int changed = TRUE;
	int change_cursor = FALSE;
	int doit = TRUE;
	int xmindim, ymindim;
	int d;
	int HereButton = LeftButton;	/* make window at locator */
	int ResizeButton = MiddleButton;/* make window of specified size */
	int DefaultButton = RightButton;/* make window at default location */
	int current_cursor = CURSOR_UL;
	int y_hot[4];
	y_hot[CURSOR_LL] = ll_angle_y_hot;
	y_hot[CURSOR_LR] = lr_angle_y_hot;
	y_hot[CURSOR_UL] = ul_angle_y_hot;
	y_hot[CURSOR_UR] = ur_angle_y_hot;

	pr = XGeometry(geometry, def, bwidth, fwidth, fheight, xadder, yadder,
			&defx, &defy, &defwidth, &defheight);
	defwidth = max(defwidth, minwidth);
	defheight = max(defheight, minheight);

	/* "do the right thing" if the user asked for placement */
	if ((pr & XValue) || (pr & YValue)) {
		*cwidth = defwidth;
		*cheight = defheight;
		frame->width	= defwidth * fwidth + xadder;
		frame->height	= defheight * fheight + yadder;
		frame->x	= defx;
		frame->y	= defy;
		goto makeit;
	}
	if ((opt = XGetDefault(prog, "MakeWindow.BodyFont")) == NULL)
		pfont = f;
	else
		if ((pfont = XOpenFont(opt)) == NULL) pfont = f;

	pfore = WhitePixel;
	pback = BlackPixel;

	if ((opt = XGetDefault(prog, "MakeWindow.ReverseVideo")) != NULL)
		if (strcmp(opt, "on") == 0) {
			pfore = BlackPixel;
			pback = WhitePixel;
		}
	bpix = pback;
	mfore = pback;
	mback = pfore;

	if ((opt = XGetDefault(prog, "MakeWindow.BorderWidth")) != NULL)
		pbw = atoi (opt);

	if ((opt = XGetDefault(prog, "MakeWindow.InternalBorder")) != NULL)
		ibw = atoi (opt);

	if ((opt = XGetDefault(prog, "MakeWindow.Freeze")) != NULL)
		if (strcmp (opt, "on") == 0) freeze = 1;

	if ((opt = XGetDefault(prog, "MakeWindow.ClipToScreen")) != NULL)
		if (strcmp (opt, "on") == 0) clip = 1;

	if (DisplayPlanes() > 2) { /* on color display, do color stuff */
	
		if ((opt = XGetDefault(prog,"MakeWindow.Foreground")) != NULL)
		    if (XParseColor(opt, &cdef) && XGetHardwareColor(&cdef))
			pfore = cdef.pixel;

		if ((opt = XGetDefault(prog,"MakeWindow.Background")) != NULL)
		    if (XParseColor(opt, &cdef) && XGetHardwareColor(&cdef))
			pback = cdef.pixel;

		if ((opt = XGetDefault(prog,"MakeWindow.Border")) != NULL)
		    if (XParseColor(opt, &cdef) && XGetHardwareColor(&cdef))
			bpix = cdef.pixel;

		if ((opt = XGetDefault(prog,"MakeWindow.Mouse")) != NULL)
		    if (XParseColor(opt, &cdef) && XGetHardwareColor(&cdef))
			mfore = cdef.pixel;

		if ((opt = XGetDefault(prog,"MakeWindow.MouseMask")) != NULL)
		    if (XParseColor(opt, &cdef) && XGetHardwareColor(&cdef))
			mback = cdef.pixel;
	}

	if ((opt = XGetDefault(name, "MakeWindow.Here")) != NULL) {
		switch (*opt) {
		case 'L':
		case 'l':
			HereButton = LeftButton;
			break;

		case 'M':
		case 'm':
			HereButton = MiddleButton;
			break;

		case 'R':
		case 'r':
			HereButton = RightButton;
			break;
		/*
		 * Should have a default case, to check for invalid
		 * specification, but what should be done in that case?
		 */
		}
	}

	if ((opt = XGetDefault(name, "MakeWindow.Resize")) != NULL) {
		switch (*opt) {
		case 'L':
		case 'l':
			ResizeButton = LeftButton;
			break;

		case 'M':
		case 'm':
			ResizeButton = MiddleButton;
			break;

		case 'R':
		case 'r':
			ResizeButton = RightButton;
			break;
		/*
		 * Should have a default case, to check for invalid
		 * specification, but what should be done in that case?
		 */
		}
	}

	if ((opt = XGetDefault(name, "MakeWindow.Default")) != NULL) {
		switch (*opt) {
		case 'L':
		case 'l':
			DefaultButton = LeftButton;
			break;

		case 'M':
		case 'm':
			DefaultButton = MiddleButton;
			break;

		case 'R':
		case 'r':
			DefaultButton = RightButton;
			break;
		/*
		 * Should have a default case, to check for invalid
		 * specification, but what should be done in that case?
		 */
		}
	}

	/*
	 * Should verify that HereButton != ResizeButton != DefaultButton,
	 * but what should be done if that's false?
	 */

	ur = XCreateCursor (ur_angle_width, ur_angle_height, ur_angle_bits, 
		ur_angle_mask_bits, ur_angle_x_hot, ur_angle_y_hot,
		mfore, mback, GXcopy);
	ul = XCreateCursor (ul_angle_width, ul_angle_height, ul_angle_bits, 
		ul_angle_mask_bits, ul_angle_x_hot, ul_angle_y_hot,
		mfore, mback, GXcopy);
	ll = XCreateCursor (ll_angle_width, ll_angle_height, ll_angle_bits, 
		ll_angle_mask_bits, ll_angle_x_hot, ll_angle_y_hot,
		mfore, mback, GXcopy);
	lr = XCreateCursor (lr_angle_width, lr_angle_height, lr_angle_bits, 
		lr_angle_mask_bits, lr_angle_x_hot, lr_angle_y_hot,
		mfore, mback, GXcopy);

	events = ButtonPressed | ButtonReleased;

	if (freeze) events |= MouseMoved;

	/* 
	 * go get the mouse as soon as you can 
	 */

	while (1) {
		if (XGrabMouse ( RootWindow, ul, events ) != 0) break;
		sleep (1);
	}

	(void) strncpy(text, name, sizeof(text) - 10);
	(void) strncat(text, ": 000x000", 9);
	nz = strlen(name) + 8;		/* compute number of characters */
	popw = XStringWidth (text, pfont, 0, 0) + 2 * ibw;
	poph = pfont->height + 2 * ibw;

	if (freeze) {
		XGrabServer();
		count = FCOUNT;
		save = XPixmapSave (RootWindow, 0, 0, 
			popw + 2 * pbw, poph +2 * pbw);
	}

	backmap = XMakeTile (pback);
	bdrmap = XMakeTile (bpix);

	pop = XCreateWindow (RootWindow, 
		0, 0, popw, poph, pbw, bdrmap, backmap);
	XMapWindow (pop);

	xadd = fwidth / 2 - xadder;
	yadd = fheight / 2 - yadder;

	XQueryMouse (RootWindow, &x1, &y1, &subw);

	x2 = x1 + minwidth * fwidth + xadder + 2 * bwidth - 1;
	y2 = y1 + minheight * fheight + yadder + 2 * bwidth - 1;
	hsize = minwidth;
	vsize = minheight;


	xmindim = xadder + 2 * bwidth;
	ymindim = yadder + 2 * bwidth;

	while (stop == FALSE) {
	    if ( (xb != max (x1, x2)) || (yb != max (y1, y2))
		||(xa != min (x1, x2)) || (ya != min (y1, y2)) ) {
		if (freeze && !doit) {
			XDraw (RootWindow, box, count, 1, 1, 0, GXinvert, 1);
		}
		xa = min (x1, x2);
		ya = min (y1, y2);
		xb = max (x1, x2);
		yb = max (y1, y2);
		for ( i = 0; i < count; i += 4) {
		    box[i].x = xa; box[i].y = ya; box[i].flags = 0;
		    if (i+1 == count) break;
		    box[i+1].x = xb; box[i+1].y = ya, box[i+1].flags = 0;
		    box[i+2].x = xb; box[i+2].y = yb, box[i+2].flags = 0;
		    box[i+3].x = xa; box[i+3].y = yb, box[i+3].flags = 0;
		}
		doit = TRUE;
	    }
	    if (changed) {
		changed = FALSE;
		text[nz - 6] = hsize / 100 + zero;
		text[nz - 5] = (hsize / 10) % 10 + zero;
		text[nz - 4] = hsize % 10 + zero;
		text[nz - 2] = vsize / 100 + zero;
		text[nz - 1] = (vsize / 10) % 10 + zero;
		text[nz]     = vsize % 10 + zero;
		XText (pop, ibw, ibw, 
			text, strlen(text), pfont->id, pfore, pback);
	    }
	    if (doit) {
		XDraw(RootWindow, box, count, 1, 1, 0, GXinvert, 1);
		doit = !freeze;
	    }
	    if (freeze || XPending() ) {
		XNextEvent(&e);
		x2 = e.x;
		y2 = e.y;
		if ((chosen < 0) && (e.type == ButtonPressed)) {
			x1 = x2;
			y1 = y2;
			chosen = e.detail & ValueMask;
			if (chosen == ResizeButton)
				change_cursor = TRUE;
		} 
		else if ((e.type == ButtonReleased) && 
			((e.detail & ValueMask) == chosen))
			stop = TRUE;
		else
			XQueryMouse(RootWindow, &x2, &y2, &subw);
	    }
	    else	XQueryMouse(RootWindow, &x2, &y2, &subw);
	    if (change_cursor) {
		if ((x2 >= x1) && (y2 >= y1) &&
		    current_cursor != CURSOR_LR) {
		    XGrabMouse ( RootWindow, lr, events );
		    current_cursor = CURSOR_LR;
		}
		else if ((x2 >= x1) && (y2 < y1) &&
			 current_cursor != CURSOR_UR) {
		    XGrabMouse ( RootWindow, ur, events);
		    current_cursor = CURSOR_UR;
		}
		else if ((x2 < x1) && (y2 >= y1) &&
			 current_cursor != CURSOR_LL) {
		    XGrabMouse ( RootWindow, ll, events);
		    current_cursor = CURSOR_LL;
		}
		else if ((x2 < x1) && (y2 < y1) &&
			 (current_cursor != CURSOR_UL)) {
		    XGrabMouse ( RootWindow, ul, events);
		    current_cursor = CURSOR_UL;
		}
	    }
	    if (chosen != ResizeButton) {
		x1 = x2;
		y1 = y2;
		if (chosen >= 0) {
			x2 = defwidth;
			if (chosen == HereButton)
				y2 = defheight;
			else
				y2 = (DisplayHeight() - ymindim - 
				      y_hot[current_cursor]) / fheight;
			if (clip) {
				x2 = min (max((DisplayWidth() - x1 - xmindim) /
					fwidth, 0), x2);
				y2 = min (max((DisplayHeight() - y1 - ymindim)/
					fheight, 0), y2);
			}
			x2 = x1 + x2 * fwidth + xadder - 1;
			y2 = y1 + y2 * fheight + yadder - 1;
		}
	    }
	    d = max (( abs (x2 - x1) + xadd) / fwidth, minwidth);
	    if (d != hsize) {
	    	hsize = d;
		changed = TRUE;
	    }
	    d = d * fwidth + xmindim - 1;
	    if (x2 < x1)
		x2 = x1 - d;
	    else
		x2 = x1 + d;
	    d = max ((abs(y2 - y1) + yadd) / fheight, minheight);
	    if (d != vsize) {
	    	vsize = d;
		changed = TRUE;
	    }
	    d = d * fheight + ymindim - 1;
	    if (y2 < y1)
		y2 = y1 - d;
	    else
	    	y2 = y1 + d;
	}
	if (freeze) XDraw (RootWindow, box, count, 1, 1, 0, GXinvert, 1);
	XUngrabMouse();

	if (save) {
		XUnmapTransparent (pop);
		XPixmapPut (RootWindow, 0, 0, 0, 0,
			popw + 2 * pbw, poph + 2 * pbw,
			save, GXcopy, AllPlanes);
		XFreePixmap (save);
		}
	XDestroyWindow (pop);
	if (freeze) XUngrabServer();
	if (pfont != f) XCloseFont (pfont);
	XFreeCursor (ur);
	XFreeCursor (ul);
	XFreeCursor (lr);
	XFreeCursor (ll);
	XFreePixmap (backmap);
	XFreePixmap (bdrmap);
	frame->x = min(x1, x2);
	frame->y = min(y1, y2);
	frame->width = hsize * fwidth + xadder;
	frame->height = vsize * fheight + yadder;
	*cwidth = hsize;
	*cheight = vsize;
makeit:	XCreateWindows(RootWindow, frame, 1);
	/* store default name of the window and set the resize hint */
	XStoreName(frame->self, name);
	XSetResizeHint(frame->self, xadder, yadder, fwidth, fheight);
	XSync(1);		/* get rid of any extraneous events */
	return (frame->self);
	}