diff options
author | nijtmans <nijtmans> | 2008-12-04 21:33:25 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-12-04 21:33:25 (GMT) |
commit | b03fbd581208efaae3c161c9222c0bd6e5b61d96 (patch) | |
tree | c0a5c075effa403d67ce447314477bf7db522940 /generic/tkInt.decls | |
parent | 595edef015407433f0bfb19bf62c29a302edffe1 (diff) | |
download | tk-b03fbd581208efaae3c161c9222c0bd6e5b61d96.zip tk-b03fbd581208efaae3c161c9222c0bd6e5b61d96.tar.gz tk-b03fbd581208efaae3c161c9222c0bd6e5b61d96.tar.bz2 |
Move 10 functions from tkText.h to
stub table [Feature Request 220906]
Diffstat (limited to 'generic/tkInt.decls')
-rw-r--r-- | generic/tkInt.decls | 50 |
1 files changed, 48 insertions, 2 deletions
diff --git a/generic/tkInt.decls b/generic/tkInt.decls index 6864169..0edfde5 100644 --- a/generic/tkInt.decls +++ b/generic/tkInt.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: tkInt.decls,v 1.49 2008/11/05 23:29:58 nijtmans Exp $ +# RCS: @(#) $Id: tkInt.decls,v 1.50 2008/12/04 21:33:25 nijtmans Exp $ library tk @@ -516,10 +516,56 @@ declare 157 generic { const char **argv) } declare 158 generic { - int TkSelGetSelection(Tcl_Interp *interp, Tk_Window tkwin, + int TkSelGetSelection(Tcl_Interp *interp, Tk_Window tkwin, Atom selection, Atom target, Tk_GetSelProc *proc, ClientData clientData) } +declare 159 generic { + int TkTextGetIndex(Tcl_Interp *interp, struct TkText *textPtr, + const char *string, struct TkTextIndex *indexPtr) +} +declare 160 generic { + int TkTextIndexBackBytes(const struct TkText *textPtr, + const struct TkTextIndex *srcPtr, int count, + struct TkTextIndex *dstPtr) +} +declare 161 generic { + int TkTextIndexForwBytes(const struct TkText *textPtr, + const struct TkTextIndex *srcPtr, int count, + struct TkTextIndex *dstPtr) +} +declare 162 generic { + struct TkTextIndex *TkTextMakeByteIndex(const TkTextBTree tree, + const struct TkText *textPtr, int lineIndex, + int byteIndex, struct TkTextIndex *indexPtr) +} +declare 163 generic { + int TkTextPrintIndex(const struct TkText *textPtr, + const struct TkTextIndex *indexPtr, char *string) +} +declare 164 generic { + struct TkTextSegment *TkTextSetMark(struct TkText *textPtr, + const char *name, struct TkTextIndex *indexPtr) +} +declare 165 generic { + int TkTextXviewCmd(struct TkText *textPtr, Tcl_Interp *interp, + int objc, Tcl_Obj *const objv[]) +} +declare 166 generic { + void TkTextChanged(struct TkSharedText *sharedTextPtr, + struct TkText *textPtr, const struct TkTextIndex *index1Ptr, + const struct TkTextIndex *index2Ptr) +} +declare 167 generic { + int TkBTreeNumLines(TkTextBTree tree, + const struct TkText *textPtr) +} +declare 168 generic { + void TkTextInsertDisplayProc(struct TkText *textPtr, + struct TkTextDispChunk *chunkPtr, int x, int y, + int height, int baseline, Display *display, + Drawable dst, int screenY) +} ############################################################################## |