diff options
author | hobbs <hobbs> | 2000-04-25 01:03:05 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-04-25 01:03:05 (GMT) |
commit | d40aff22f926d2c37ce08393f28ac681d6d7e36f (patch) | |
tree | 3490d9b24605b3a11fc43e627724e7ac7c0071e1 /generic/tk.decls | |
parent | 64c1028bcc5cdb311c668614ceca41105491bf4c (diff) | |
download | tk-d40aff22f926d2c37ce08393f28ac681d6d7e36f.zip tk-d40aff22f926d2c37ce08393f28ac681d6d7e36f.tar.gz tk-d40aff22f926d2c37ce08393f28ac681d6d7e36f.tar.bz2 |
* generic/tkImage.c (Tk_PostscriptImage): added check to create
necessary prolog for photos
* generic/tkCanvPs.c: added Tk_PostscriptPhoto that outputs PS for
photo images
* generic/tkImgPhoto.c: new func ImgPhotoPostscript and added that
in as ps proc in tkPhotoImageType.
* generic/tkStubInit.c:
* generic/tkDecls.h:
* generic/tk.decls: added Tk_PostscriptPhoto
Diffstat (limited to 'generic/tk.decls')
-rw-r--r-- | generic/tk.decls | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tk.decls b/generic/tk.decls index d8584b3..d5af12a 100644 --- a/generic/tk.decls +++ b/generic/tk.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tk.decls,v 1.9 2000/04/19 23:11:23 ericm Exp $ +# RCS: @(#) $Id: tk.decls,v 1.10 2000/04/25 01:03:05 hobbs Exp $ library tk @@ -1120,6 +1120,11 @@ declare 236 generic { declare 237 generic { double Tk_PostscriptY (double y, Tk_PostscriptInfo psInfo) } +declare 238 generic { + int Tk_PostscriptPhoto (Tcl_Interp *interp, \ + Tk_PhotoImageBlock *blockPtr, Tk_PostscriptInfo psInfo, \ + int width, int height) +} # Define the platform specific public Tk interface. These functions are # only available on the designated platform. |