diff options
author | patthoyts <patthoyts@noemail.net> | 2007-05-04 21:29:22 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2007-05-04 21:29:22 (GMT) |
commit | d3d59cdb497bb3c67b3c63e78096ccae4c93e9e5 (patch) | |
tree | 51e7b83d5b0e0635d7c5c5de62858ea248f463ec /generic/tkFont.h | |
parent | 0d84a14cba9ec4b388a5d29593393b84c9545413 (diff) | |
download | tk-d3d59cdb497bb3c67b3c63e78096ccae4c93e9e5.zip tk-d3d59cdb497bb3c67b3c63e78096ccae4c93e9e5.tar.gz tk-d3d59cdb497bb3c67b3c63e78096ccae4c93e9e5.tar.bz2 |
TIP #145 implementation
FossilOrigin-Name: 5c1d2633c30b24b2068350342eb9d853e153dfa6
Diffstat (limited to 'generic/tkFont.h')
-rw-r--r-- | generic/tkFont.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/generic/tkFont.h b/generic/tkFont.h index 9ea3488..448423d 100644 --- a/generic/tkFont.h +++ b/generic/tkFont.h @@ -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: tkFont.h,v 1.9 2006/12/01 20:14:23 kennykb Exp $ + * RCS: @(#) $Id: tkFont.h,v 1.10 2007/05/04 21:29:22 patthoyts Exp $ */ #ifndef _TKFONT @@ -203,6 +203,10 @@ MODULE_SCOPE int TkFontGetPixels(Tk_Window tkwin, int size); MODULE_SCOPE int TkFontGetPoints(Tk_Window tkwin, int size); MODULE_SCOPE char ** TkFontGetGlobalClass(void); MODULE_SCOPE char ** TkFontGetSymbolClass(void); +MODULE_SCOPE int TkCreateNamedFont(Tcl_Interp *interp, Tk_Window tkwin, + CONST char *name, TkFontAttributes *faPtr); +MODULE_SCOPE int TkDeleteNamedFont(Tcl_Interp *interp, + Tk_Window tkwin, CONST char *name); MODULE_SCOPE int TkFontGetFirstTextLayout(Tk_TextLayout layout, Tk_Font *font, char *dst); |