diff options
author | das <das@noemail.net> | 2006-03-22 00:21:15 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2006-03-22 00:21:15 (GMT) |
commit | 27bbbe3feeca2cfd47be57005cb23fb0c0e51a72 (patch) | |
tree | fedd23bf410c6a013f190bd8aa27dbf9999214f1 /generic/tkFont.h | |
parent | 4768f58add796b75722322e7dc730d7019b8e6c3 (diff) | |
download | tk-27bbbe3feeca2cfd47be57005cb23fb0c0e51a72.zip tk-27bbbe3feeca2cfd47be57005cb23fb0c0e51a72.tar.gz tk-27bbbe3feeca2cfd47be57005cb23fb0c0e51a72.tar.bz2 |
* generic/tkFont.c: implementation of ATSUI text rendering
* generic/tkInt.h: in TkAqua provided by Benjamin
* generic/tkTextDisp.c: Riefenstahl. [Patch 638966]
* library/demos/unicodeout.tcl:
* macosx/tkMacOSXFont.h (new file):
* macosx/tkMacOSXFont.c:
* tests/font.test:
* unix/tkUnixFont.c:
* win/tkWinFont.c:
* generic/tkFont.c: moved MODULE_SCOPE declarations of
* generic/tkFont.h: font helper procs into header files.
* macosx/tkMacOSXButton.c:
* macosx/tkMacOSXFont.h:
* macosx/tkMacOSXMenubutton.c:
* macosx/Wish.xcode/project.pbxproj: add new tkMacOSXFont.h file,
* macosx/Wish.xcodeproj/project.pbxproj: turn off dead code stripping
as it interferes with -sectcreate (rdar://4486223).
* macosx/Wish.xcode/default.pbxuser: add TCLLIBPATH=/Library/Tcl
* macosx/Wish.xcodeproj/default.pbxuser: env var setting to tktest.
* unix/configure.in: fix detection of symbols build when enabling
TkAqua debug code; filter nm output of libtclstub better to avoid
error on intel macs [Bug 1415789].
* unix/configure: autoconf-2.59
FossilOrigin-Name: 69379436a2a1cee0a35fbf45186cdb6a053ca4fa
Diffstat (limited to 'generic/tkFont.h')
-rw-r--r-- | generic/tkFont.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tkFont.h b/generic/tkFont.h index 3b6489a..cc362fb 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.7 2005/11/27 02:36:13 das Exp $ + * RCS: @(#) $Id: tkFont.h,v 1.8 2006/03/22 00:21:16 das Exp $ */ #ifndef _TKFONT @@ -203,6 +203,8 @@ 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 TkFontGetFirstTextLayout(Tk_TextLayout layout, + Tk_Font *font, char *dst); /* * Low-level API exported by platform-specific code to generic code. |