summaryrefslogtreecommitdiffstats
path: root/generic/tk.h
diff options
context:
space:
mode:
authorericm <ericm>2000-09-29 17:55:30 (GMT)
committerericm <ericm>2000-09-29 17:55:30 (GMT)
commit95fc05c4b143e413f10ddc9cb14e4d322cca5e94 (patch)
tree9bdecb1bdde3ea9cc046f83fc3993dbdf3c089b8 /generic/tk.h
parent8d93216489667aad5317c07fc1dcc992b86b5b56 (diff)
downloadtk-95fc05c4b143e413f10ddc9cb14e4d322cca5e94.zip
tk-95fc05c4b143e413f10ddc9cb14e4d322cca5e94.tar.gz
tk-95fc05c4b143e413f10ddc9cb14e4d322cca5e94.tar.bz2
* generic/tkTest.c: Fixed tests to use updated API.
* doc/SetOptions.3: * generic/tk.h: * generic/tkConfig.c: Changed interface for Tk_CustomOptionSetProc and Tk_CustomOptionGetProc; these now take a pointer to the start of the widget record, and an integer offset to the slot for the option value, instead of just a pointer to the slot. This allows more sophisticated options to do interesting things based on other data in the widget record.
Diffstat (limited to 'generic/tk.h')
-rw-r--r--generic/tk.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tk.h b/generic/tk.h
index bbecf6a..e372b3c 100644
--- a/generic/tk.h
+++ b/generic/tk.h
@@ -12,7 +12,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.h,v 1.50 2000/09/17 21:02:39 ericm Exp $
+ * RCS: @(#) $Id: tk.h,v 1.51 2000/09/29 17:55:31 ericm Exp $
*/
#ifndef _TK
@@ -212,10 +212,10 @@ typedef struct Tk_OptionSpec {
*/
typedef int (Tk_CustomOptionSetProc) _ANSI_ARGS_((ClientData clientData,
- Tcl_Interp *interp, Tk_Window tkwin, Tcl_Obj **value,
- char *internalPtr, char *saveInternalPtr, int flags));
+ Tcl_Interp *interp, Tk_Window tkwin, Tcl_Obj **value, char *widgRec,
+ int offset, char *saveInternalPtr, int flags));
typedef Tcl_Obj *(Tk_CustomOptionGetProc) _ANSI_ARGS_((ClientData clientData,
- Tk_Window tkwin, char *internalPtr));
+ Tk_Window tkwin, char *widgRec, int offset));
typedef void (Tk_CustomOptionRestoreProc) _ANSI_ARGS_((ClientData clientData,
Tk_Window tkwin, char *internalPtr, char *saveInternalPtr));
typedef void (Tk_CustomOptionFreeProc) _ANSI_ARGS_((ClientData clientData,