diff options
author | hobbs <hobbs> | 2000-02-08 11:31:28 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-02-08 11:31:28 (GMT) |
commit | acfa815d400ff9f351e628c2dd24089170b2bfe3 (patch) | |
tree | aaba98591be690b73fe87702aaa4023a89457083 /generic/tk.decls | |
parent | 4a0d1284957db786ed4b02c4a426b3681212565f (diff) | |
download | tk-acfa815d400ff9f351e628c2dd24089170b2bfe3.zip tk-acfa815d400ff9f351e628c2dd24089170b2bfe3.tar.gz tk-acfa815d400ff9f351e628c2dd24089170b2bfe3.tar.bz2 |
* generic/tkDecls.h:
* generic/tk.decls:
* generic/tk.h: moved new public functions created in dash patch
to the stubs interface [Bug: 4062]
* generic/tk.h:
* doc/CrtImgType.3:
* doc/CrtPhImgFmt.3:
* generic/tk.h:
* generic/tkImgGIF.c:
* generic/tkImgPhoto.c:
* generic/tkStubImg.c (new file):
* generic/tkTest.c:
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc: improved support for moving from the old style
image C API to the new obj'ified one with new Tk_InitImageArgs
command and stub'ing of image code. See docs for how to make the
transition. [Bug: 4060]
Diffstat (limited to 'generic/tk.decls')
-rw-r--r-- | generic/tk.decls | 71 |
1 files changed, 70 insertions, 1 deletions
diff --git a/generic/tk.decls b/generic/tk.decls index db8314a..f152cbd 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.5 1999/12/14 06:52:24 hobbs Exp $ +# RCS: @(#) $Id: tk.decls,v 1.6 2000/02/08 11:31:32 hobbs Exp $ library tk @@ -1052,6 +1052,75 @@ declare 217 generic { # VOID *Tk_GetCanvasVisitor(Tcl_Interp *interp, CONST char *name) #} +declare 220 generic { + int Tk_GetDash(Tcl_Interp *interp, CONST char *value, Tk_Dash *dash) +} +declare 221 generic { + void Tk_CreateOutline(Tk_Outline *outline) +} +declare 222 generic { + void Tk_DeleteOutline(Display *display, Tk_Outline *outline) +} +declare 223 generic { + int Tk_ConfigOutlineGC(XGCValues *gcValues, Tk_Canvas canvas, \ + Tk_Item *item, Tk_Outline *outline) +} +declare 224 generic { + int Tk_ChangeOutlineGC(Tk_Canvas canvas, Tk_Item *item, \ + Tk_Outline *outline) +} +declare 225 generic { + int Tk_ResetOutlineGC(Tk_Canvas canvas, Tk_Item *item, \ + Tk_Outline *outline) +} +declare 226 generic { + int Tk_CanvasPsOutline(Tk_Canvas canvas, Tk_Item *item, \ + Tk_Outline *outline) +} +declare 227 generic { + void Tk_SetTSOrigin(Tk_Window tkwin, GC gc, int x, int y) +} +declare 228 generic { + int Tk_CanvasGetCoordFromObj(Tcl_Interp *interp, Tk_Canvas canvas, \ + Tcl_Obj *obj, double *doublePtr) +} +declare 229 generic { + void Tk_CanvasSetOffset(Tk_Canvas canvas, GC gc, Tk_TSOffset *offset) +} +declare 230 generic { + void Tk_DitherPhoto(Tk_PhotoHandle handle, int x, int y, int width, \ + int height) +} +declare 231 generic { + int Tk_PostscriptBitmap(Tcl_Interp *interp, Tk_Window tkwin, \ + Tk_PostscriptInfo psInfo, Pixmap bitmap, int startX, \ + int startY, int width, int height) +} +declare 232 generic { + int Tk_PostscriptColor(Tcl_Interp *interp, Tk_PostscriptInfo psInfo, \ + XColor *colorPtr) +} +declare 233 generic { + int Tk_PostscriptFont(Tcl_Interp *interp, Tk_PostscriptInfo psInfo, \ + Tk_Font font) +} +declare 234 generic { + int Tk_PostscriptImage(Tk_Image image, Tcl_Interp *interp, \ + Tk_Window tkwin, Tk_PostscriptInfo psinfo, int x, int y, \ + int width, int height, int prepass) +} +declare 235 generic { + void Tk_PostscriptPath(Tcl_Interp *interp, Tk_PostscriptInfo psInfo, \ + double *coordPtr, int numPoints) +} +declare 236 generic { + int Tk_PostscriptStipple(Tcl_Interp *interp, Tk_Window tkwin, \ + Tk_PostscriptInfo psInfo, Pixmap bitmap) +} +declare 237 generic { + double Tk_PostscriptY(double y, Tk_PostscriptInfo psInfo) +} + # Define the platform specific public Tk interface. These functions are # only available on the designated platform. |