summaryrefslogtreecommitdiffstats
path: root/doc/CrtImgType.3
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-10-29 03:57:40 (GMT)
committerhobbs <hobbs>1999-10-29 03:57:40 (GMT)
commit62b72b828e6c010209ab75d9d8507adf8f7d6836 (patch)
treefd03e7a02f442e830fe2101ca5bece2a79b2ffb8 /doc/CrtImgType.3
parent2c38c6446ce7ca4f7f529a83eacb10d7b2acfd18 (diff)
downloadtk-62b72b828e6c010209ab75d9d8507adf8f7d6836.zip
tk-62b72b828e6c010209ab75d9d8507adf8f7d6836.tar.gz
tk-62b72b828e6c010209ab75d9d8507adf8f7d6836.tar.bz2
* doc/CrtImgType.3:
* doc/CrtPhImgFmt.3: * doc/FindPhoto.3: * doc/photo.n: new docs for Img patch mods
Diffstat (limited to 'doc/CrtImgType.3')
-rw-r--r--doc/CrtImgType.310
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/CrtImgType.3 b/doc/CrtImgType.3
index e705f95..918e0cc 100644
--- a/doc/CrtImgType.3
+++ b/doc/CrtImgType.3
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: CrtImgType.3,v 1.2 1998/09/14 18:22:46 stanton Exp $
+'\" RCS: @(#) $Id: CrtImgType.3,v 1.3 1999/10/29 03:57:40 hobbs Exp $
'\"
.so man.macros
.TH Tk_CreateImageType 3 8.0 Tk "Tk Library Procedures"
@@ -109,8 +109,8 @@ an image of the new type.
typedef int Tk_ImageCreateProc(
Tcl_Interp *\fIinterp\fR,
char *\fIname\fR,
- int \fIargc\fR,
- char **\fIargv\fR,
+ int \fIobjc\fR,
+ Tcl_Obj *CONST \fIobjv\fR[],
Tk_ImageType *\fItypePtr\fR,
Tk_ImageMaster \fImaster\fR,
ClientData *\fImasterDataPtr\fR);
@@ -119,13 +119,13 @@ The \fIinterp\fR argument is the interpreter in which the \fBimage\fR
command was invoked, and \fIname\fR is the name for the new image,
which was either specified explicitly in the \fBimage\fR command
or generated automatically by the \fBimage\fR command.
-The \fIargc\fR and \fIargv\fR arguments describe all the configuration
+The \fIobjc\fR and \fIobjv\fR arguments describe all the configuration
options for the new image (everything after the name argument to
\fBimage\fR).
The \fImaster\fR argument is a token that refers to Tk's information
about this image; the image manager must return this token to
Tk when invoking the \fBTk_ImageChanged\fR procedure.
-Typically \fIcreateProc\fR will parse \fIargc\fR and \fIargv\fR
+Typically \fIcreateProc\fR will parse \fIobjc\fR and \fIobjv\fR
and create an image master data structure for the new image.
\fIcreateProc\fR may store an arbitrary one-word value at
*\fImasterDataPtr\fR, which will be passed back to the