summaryrefslogtreecommitdiff
path: root/Xprint/ps/PsMisc.c
blob: 75f692d56522a20b18136f732e1c7624ed303595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/* $Xorg: PsMisc.c,v 1.4 2001/02/09 02:04:36 xorgcvs Exp $ */
/*

Copyright 1996, 1998  The Open Group

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.

*/
/*
 * (c) Copyright 1996 Hewlett-Packard Company
 * (c) Copyright 1996 International Business Machines Corp.
 * (c) Copyright 1996 Sun Microsystems, Inc.
 * (c) Copyright 1996 Novell, Inc.
 * (c) Copyright 1996 Digital Equipment Corp.
 * (c) Copyright 1996 Fujitsu Limited
 * (c) Copyright 1996 Hitachi, Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject
 * to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * Except as contained in this notice, the names of the copyright holders
 * shall not be used in advertising or otherwise to promote the sale, use
 * or other dealings in this Software without prior written authorization
 * from said copyright holders.
 */

/*******************************************************************
**
**    *********************************************************
**    *
**    *  File:		PsMisc.c
**    *
**    *  Contents:	Miscellaneous code for Ps driver.
**    *
**    *  Created By:	Roger Helmendach (Liberty Systems)
**    *
**    *  Copyright:	Copyright 1996 The Open Group, Inc.
**    *
**    *********************************************************
** 
********************************************************************/
/* $XFree86: xc/programs/Xserver/Xprint/ps/PsMisc.c,v 1.6 2001/12/14 19:59:16 dawes Exp $ */

#include "Xos.h"	/* for SIGCLD on pre-POSIX systems */
#include <stdio.h>
#include "Ps.h"

#include "cursor.h"
#include "resource.h"

#include "windowstr.h"
#include "propertyst.h"


/*ARGSUSED*/
void
PsQueryBestSize(
  int type,
  short *pwidth,
  short *pheight,
  ScreenPtr pScreen)
{
  unsigned width, highBit;

  switch(type)
  {
    case CursorShape:
      *pwidth  = 0;
      *pheight = 0;
      break;
    case TileShape:
    case StippleShape:
      width = *pwidth;
      if (!width) break;
      /* Return the nearest power of two >= what they gave us */
      highBit = 0x80000000;
      /* Find the highest 1 bit in the given width */
      while(!(highBit & width))
        highBit >>= 1;
      /* If greater than that then return the next power of two */
      if((highBit - 1) & width)
        highBit <<= 1;
      *pwidth = highBit;
      /* height is a don't-care */
        break;
  }
}

/*
 * PsGetMediumDimensions is installed in the GetMediumDimensions field
 * of each Ps-initialized context.
 */
int
PsGetMediumDimensions(XpContextPtr pCon, CARD16 *width, CARD16 *height)
{
    XpGetMediumDimensions(pCon, width, height);
    return Success;
}

/*
 * PsGetReproducibleArea is installed in the GetReproducibleArea field
 * of each Ps-initialized context.
 */
int
PsGetReproducibleArea(XpContextPtr pCon, xRectangle *pRect)
{
    XpGetReproductionArea(pCon, pRect);
    return Success;
}

/*
 * PsSetImageResolution is installed in the SetImageResolution field
 * of each Ps-initialized context.
 */
int
PsSetImageResolution(XpContextPtr pCon, int imageRes, Bool *status)
{
    pCon->imageRes = imageRes;
    *status = True;
    return Success;
}

/*
 * GetPropString searches the window heirarchy from pWin up looking for
 * a property by the name of propName.  If found, returns the property's
 * value. If not, it returns NULL.
 */
/*
char *
GetPropString(
    WindowPtr pWin,
    char *propName)
{
    Atom atom;
    PropertyPtr pProp = (PropertyPtr)NULL;
    char *retVal;

    atom = MakeAtom(propName, strlen(propName), FALSE);
    if(atom != BAD_RESOURCE)
    {
        WindowPtr pPropWin;
	int n;
*/

	/*
	 * The atom has been defined, but it might only exist as a
	 * property on an unrelated window.
	 */
/*
        for(pPropWin = pWin; pPropWin != (WindowPtr)NULL; 
	    pPropWin = pPropWin->parent)
        {
	    for(pProp = (PropertyPtr)(wUserProps(pPropWin)); 
		pProp != (PropertyPtr)NULL;
	        pProp = pProp->next)
	    {
                if (pProp->propertyName == atom)
                    break;
	    }
	    if(pProp != (PropertyPtr)NULL)
	        break;
        }
	if(pProp == (PropertyPtr)NULL)
	    return (char *)NULL;

	n = (pProp->format/8) * pProp->size; *//* size (bytes) of prop */
/*
	retVal = (char *)xalloc(n + 1);
	(void)memcpy((void *)retVal, (void *)pProp->data, n);
	retVal[n] = '\0';

	return retVal;
    }

    return (char *)NULL;
}

#include <signal.h>

*/
/* ARGSUSED */
/*
static void SigchldHndlr (int dummy)
{
    int   status, w;
    struct sigaction act;
    sigfillset(&act.sa_mask);
    act.sa_flags = 0;
    act.sa_handler = SigchldHndlr;

    w = wait (&status);

*/
    /*
     * Is this really necessary?
     */
/*
    sigaction(SIGCHLD, &act, (struct sigaction *)NULL);
}
*/

/*
 * SystemCmd provides a wrapper for the 'system' library call.  The call
 * appears to be sensitive to the handling of SIGCHLD, so this wrapper
 * sets the status to SIG_DFL, and then resets the established handler
 * after system returns.
 */
/*
int
SystemCmd(char *cmdStr)
{
    int status;
    struct sigaction newAct, oldAct;
    sigfillset(&newAct.sa_mask);
    newAct.sa_flags = 0;
    newAct.sa_handler = SIG_DFL;
    sigfillset(&oldAct.sa_mask);
    oldAct.sa_flags = 0;
    oldAct.sa_handler = SigchldHndlr;

*/
    /*
     * get the old handler, and set the action to IGN
     */
/*
    sigaction(SIGCHLD, &newAct, &oldAct);

    status = system (cmdStr);

    sigaction(SIGCHLD, &oldAct, (struct sigaction *)NULL);
    return status;
}
*/

Bool
PsCloseScreen(
  int       index,
  ScreenPtr pScreen)
{
  return TRUE;
}

void
PsLineAttrs(
  PsOutPtr    psOut,
  GCPtr       pGC,
  ColormapPtr cMap)
{
  int        i;
  int        nDsh;
  int        dshOff;
  int       *dsh;
  PsCapEnum  cap;
  PsJoinEnum join;

  switch(pGC->capStyle) {
    case CapButt:       cap = PsCButt;   break;
    case CapRound:      cap = PsCRound;  break;
    case CapProjecting: cap = PsCSquare; break;
    default:            cap = PsCButt;   break; }
  switch(pGC->joinStyle) {
    case JoinMiter:   join = PsJMiter; break;
    case JoinRound:   join = PsJRound; break;
    case JoinBevel:   join = PsJBevel; break;
    default:          join = PsJBevel; break; }
  if( pGC->lineStyle==LineSolid ) { nDsh = dshOff = 0; dsh = (int *)0; }
  else
  {
    nDsh   = pGC->numInDashList;
    dshOff = pGC->dashOffset;
    if( !nDsh ) dsh = (int *)0;
    else
    {
      dsh = (int *)xalloc(sizeof(int)*nDsh);
      for( i=0 ; i<nDsh ; i++ ) dsh[i] = (int)pGC->dash[i]&0xFF;
    }
  }

  if( pGC->lineStyle!=LineDoubleDash )
    PsOut_LineAttrs(psOut, (int)pGC->lineWidth,
                    cap, join, nDsh, dsh, dshOff, -1);
  else
    PsOut_LineAttrs(psOut, (int)pGC->lineWidth,
                    cap, join, nDsh, dsh, dshOff,
                    PsGetPixelColor(cMap, pGC->bgPixel));
  if( nDsh && dsh ) xfree(dsh);
}