mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-24 12:21:34 +00:00
66 lines
1.7 KiB
Text
66 lines
1.7 KiB
Text
|
/*
|
||
|
general.psw
|
||
|
|
||
|
Copyright (C) 1996 Free Software Foundation, Inc.
|
||
|
|
||
|
Author: Ovidiu Predescu <ovidiu@net-community.com>
|
||
|
Date: August 1997
|
||
|
|
||
|
This file is part of the GNUstep GUI X/DPS Library.
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public
|
||
|
License along with this library; if not, write to the Free
|
||
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||
|
*/
|
||
|
|
||
|
#include <DPS/dpsclient.h>
|
||
|
|
||
|
/* Initialize the graphic context */
|
||
|
defineps PSWinitcontext (int gc, drawable, x, y)
|
||
|
gc drawable x y setXgcdrawable
|
||
|
initmatrix initclip
|
||
|
gsave initgraphics currenttransfer grestore settransfer
|
||
|
endps
|
||
|
|
||
|
|
||
|
defineps PSWGetTransform (DPSContext ctxt | float ctm[6], invctm[6];
|
||
|
int *XOffset, *YOffset)
|
||
|
matrix currentmatrix dup ctm
|
||
|
matrix invertmatrix invctm
|
||
|
currentXoffset YOffset XOffset
|
||
|
endps
|
||
|
|
||
|
|
||
|
defineps PSWConcatMatrix (float matrix[6])
|
||
|
matrix concat
|
||
|
endps
|
||
|
|
||
|
defineps PSWSetMatrix (float matrix[6])
|
||
|
matrix setmatrix
|
||
|
endps
|
||
|
|
||
|
defineps PSWVersion (| char* versionstr)
|
||
|
version versionstr
|
||
|
endps
|
||
|
|
||
|
defineps PSWRevision (| int* revstr)
|
||
|
revision revstr
|
||
|
endps
|
||
|
|
||
|
defineps PSWProduct (| char* productname)
|
||
|
product productname
|
||
|
endps
|
||
|
|
||
|
|
||
|
|