186 lines
4.3 KiB
C
186 lines
4.3 KiB
C
/* grTk5.c -
|
|
*
|
|
* Copyright 2003 Open Circuit Design, Inc., for MultiGiG Ltd.
|
|
*
|
|
* Manipulate the programable cursor on the graphics display.
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "tcltk/tclmagic.h"
|
|
#include "utils/magic.h"
|
|
#include "utils/styles.h"
|
|
#include "utils/hash.h"
|
|
#include "textio/textio.h"
|
|
#include "utils/geometry.h"
|
|
#include "graphics/glyphs.h"
|
|
#include "windows/windows.h"
|
|
#include "graphics/graphics.h"
|
|
#include "graphics/graphicsInt.h"
|
|
#include "grTkCommon.h"
|
|
#include "grTkInt.h"
|
|
|
|
extern HashTable grTkWindowTable;
|
|
extern XColor colors[];
|
|
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------------
|
|
* GrTkDrawGlyph --
|
|
*
|
|
* Draw one glyph on the display.
|
|
*
|
|
* Results:
|
|
* None.
|
|
*
|
|
* Side effects:
|
|
* Draws pixels.
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
void
|
|
GrTkDrawGlyph (gl, p)
|
|
GrGlyph *gl; /* A single glyph */
|
|
Point *p; /* screen pos of lower left corner */
|
|
{
|
|
Rect bBox;
|
|
bool anyObscure;
|
|
LinkedRect *ob;
|
|
|
|
GR_CHECK_LOCK();
|
|
bBox.r_ll = *p;
|
|
bBox.r_xtop = p->p_x + gl->gr_xsize - 1;
|
|
bBox.r_ytop = p->p_y + gl->gr_ysize - 1;
|
|
|
|
anyObscure = FALSE;
|
|
for (ob = grCurObscure; ob != NULL; ob = ob->r_next) {
|
|
if (GEO_TOUCH( &(ob->r_r), &bBox)) {
|
|
anyObscure = TRUE;
|
|
break;
|
|
}
|
|
}
|
|
if(grDisplay.depth <= 8) {
|
|
XSetPlaneMask(grXdpy, grGCGlyph, grPlanes[127]); }
|
|
|
|
XSetFillStyle(grXdpy, grGCGlyph, FillSolid);
|
|
if ((!anyObscure) && (GEO_SURROUND(&grCurClip, &bBox)) ) {
|
|
int *pixelp, x, y;
|
|
|
|
/* no clipping, try to go quickly */
|
|
pixelp = gl->gr_pixels;
|
|
for (y = 0; y < gl->gr_ysize; y++) {
|
|
int x1, y1;
|
|
|
|
y1 = grMagicToX(bBox.r_ybot + y);
|
|
for (x = 0; x < gl->gr_xsize; x++) {
|
|
int color;
|
|
if (*pixelp != 0) {
|
|
color = GrStyleTable[*pixelp].color;
|
|
x1 = bBox.r_xbot + x;
|
|
XSetForeground(grXdpy, grGCGlyph, grPixels[color]);
|
|
XDrawPoint(grXdpy, grCurrent.windowid, grGCGlyph, x1, y1);
|
|
}
|
|
pixelp++;
|
|
}
|
|
}
|
|
} else {
|
|
/* do pixel by pixel clipping */
|
|
int y, yloc;
|
|
|
|
yloc = bBox.r_ybot;
|
|
for (y = 0; y < gl->gr_ysize; y++) {
|
|
int startx, endx;
|
|
if ( (yloc <= grCurClip.r_ytop) && (yloc >= grCurClip.r_ybot) ) {
|
|
int laststartx;
|
|
laststartx = bBox.r_xbot - 1;
|
|
for (startx = bBox.r_xbot; startx <= bBox.r_xtop;
|
|
startx = endx + 1) {
|
|
int *pixelp;
|
|
|
|
startx = MAX(startx, grCurClip.r_xbot);
|
|
endx = MIN(bBox.r_xtop, grCurClip.r_xtop);
|
|
|
|
if (anyObscure) {
|
|
for (ob = grCurObscure; ob != NULL; ob = ob->r_next) {
|
|
if ( (ob->r_r.r_ybot <= yloc) &&
|
|
(ob->r_r.r_ytop >= yloc) ) {
|
|
if (ob->r_r.r_xbot <= startx)
|
|
startx = MAX(startx, ob->r_r.r_xtop + 1);
|
|
else if (ob->r_r.r_xbot <= endx)
|
|
endx = MIN(endx, ob->r_r.r_xbot - 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* stop if we aren't advancing */
|
|
if (startx == laststartx) break;
|
|
laststartx = startx;
|
|
if (startx > endx) continue;
|
|
|
|
/* draw a section of this scan line */
|
|
pixelp = &( gl->gr_pixels[y*gl->gr_xsize +
|
|
(startx - bBox.r_xbot)]);
|
|
for ( ; startx <= endx; startx++) {
|
|
int color;
|
|
if (*pixelp != 0) {
|
|
color = GrStyleTable[*pixelp].color;
|
|
XSetForeground(grXdpy, grGCGlyph, grPixels[color]);
|
|
XDrawPoint(grXdpy, grCurrent.windowid, grGCGlyph,
|
|
startx, grMagicToX(yloc));
|
|
}
|
|
pixelp++;
|
|
}
|
|
startx = endx + 1;
|
|
}
|
|
}
|
|
yloc++;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------------
|
|
* GrTkSetCursor:
|
|
*
|
|
* Make the cursor be a new pattern, as defined in the display styles file.
|
|
*
|
|
* Results:
|
|
* None.
|
|
*
|
|
* Side effects:
|
|
* When the cursor is turned back on it will take on the new pattern.
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
|
|
void
|
|
GrTkSetCursor(cursorNum)
|
|
int cursorNum; /* The cursor number as defined in the display
|
|
* styles file.
|
|
*/
|
|
{
|
|
HashEntry *entry;
|
|
HashSearch hs;
|
|
Tk_Window tkwind;
|
|
|
|
if (cursorNum >= MAX_CURSORS)
|
|
{
|
|
TxError("No such cursor!\n");
|
|
return;
|
|
}
|
|
grCurrent.cursor = grCursors[cursorNum];
|
|
|
|
HashStartSearch(&hs);
|
|
while ((entry = HashNext(&grTkWindowTable,&hs)))
|
|
{
|
|
if (HashGetValue(entry))
|
|
{
|
|
tkwind = (Tk_Window)entry->h_key.h_ptr;
|
|
Tk_DefineCursor(tkwind, grCurrent.cursor);
|
|
}
|
|
}
|
|
}
|