diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2006-10-08 21:47:11 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2006-10-08 21:47:11 (GMT) |
commit | c96616ae8a88b1fd0d595afb533be40147995dcf (patch) | |
tree | cea5ad8df778b3930e0baee419088c84f34ac05d /doc | |
parent | 5c25999ae1a7b55800fc818f52b730e61cd0e39d (diff) | |
download | tk-c96616ae8a88b1fd0d595afb533be40147995dcf.zip tk-c96616ae8a88b1fd0d595afb533be40147995dcf.tar.gz tk-c96616ae8a88b1fd0d595afb533be40147995dcf.tar.bz2 |
Implemented TIP #264 - Tk_Interp
Diffstat (limited to 'doc')
-rw-r--r-- | doc/WindowId.3 | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/WindowId.3 b/doc/WindowId.3 index c34fff3..58a8315 100644 --- a/doc/WindowId.3 +++ b/doc/WindowId.3 @@ -5,13 +5,18 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: WindowId.3,v 1.8 2004/03/25 12:12:36 vincentdarley Exp $ +'\" RCS: @(#) $Id: WindowId.3,v 1.9 2006/10/08 21:47:11 patthoyts Exp $ '\" .so man.macros .TH Tk_WindowId 3 "8.4" Tk "Tk Library Procedures" .BS .SH NAME -Tk_WindowId, Tk_Parent, Tk_Display, Tk_DisplayName, Tk_ScreenNumber, Tk_Screen, Tk_X, Tk_Y, Tk_Width, Tk_Height, Tk_Changes, Tk_Attributes, Tk_IsContainer, Tk_IsEmbedded, Tk_IsMapped, Tk_IsTopLevel, Tk_ReqWidth, Tk_ReqHeight, Tk_MinReqWidth, Tk_MinReqHeight, Tk_InternalBorderLeft, Tk_InternalBorderRight, Tk_InternalBorderTop, Tk_InternalBorderBottom, Tk_Visual, Tk_Depth, Tk_Colormap \- retrieve information from Tk's local data structure +Tk_WindowId, Tk_Parent, Tk_Display, Tk_DisplayName, Tk_ScreenNumber, +Tk_Screen, Tk_X, Tk_Y, Tk_Width, Tk_Height, Tk_Changes, Tk_Attributes, +Tk_IsContainer, Tk_IsEmbedded, Tk_IsMapped, Tk_IsTopLevel, +Tk_ReqWidth, Tk_ReqHeight, Tk_MinReqWidth, Tk_MinReqHeight, +Tk_InternalBorderLeft, Tk_InternalBorderRight, Tk_InternalBorderTop, +Tk_InternalBorderBottom, Tk_Visual, Tk_Depth, Tk_Colormap, Tk_Interp \- retrieve information from Tk's local data structure .SH SYNOPSIS .nf \fB#include <tk.h>\fR @@ -96,6 +101,9 @@ int .sp Colormap \fBTk_Colormap\fR(\fItkwin\fR) +.sp +Tcl_Interp * +\fBTk_Interp\fR(\fItkwin\fR) .SH ARGUMENTS .AS Tk_Window tkwin .AP Tk_Window tkwin in @@ -118,6 +126,9 @@ yet. \fItkwin\fR. The parent is the token that was specified when \fItkwin\fR was created, or NULL for main windows. .PP +\fBTk_Interp\fR returns the Tcl interpreter associated with a +\fItkwin\fR or NULL if there is an error. +.PP \fBTk_Display\fR returns a pointer to the Xlib display structure corresponding to \fItkwin\fR. \fBTk_DisplayName\fR returns an ASCII string identifying \fItkwin\fR's display. \fBTk_ScreenNumber\fR |