diff options
author | hobbs <hobbs> | 1999-08-10 16:58:37 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-08-10 16:58:37 (GMT) |
commit | f2a7f0b2fc26d79bebbcc94d45583f1e26bba46c (patch) | |
tree | cde8c6adc2e382dcedd444cd27bf16a3ce5cd5bb /generic/tkIntDecls.h | |
parent | 159120b27833f069a024fb14f5ad966f71fbe739 (diff) | |
download | tk-f2a7f0b2fc26d79bebbcc94d45583f1e26bba46c.zip tk-f2a7f0b2fc26d79bebbcc94d45583f1e26bba46c.tar.gz tk-f2a7f0b2fc26d79bebbcc94d45583f1e26bba46c.tar.bz2 |
1999-08-10 Jeff Hobbs <hobbs@scriptics.com>
* generic/tkInt.decls: added TkSetFocusWin
* generic/tkFocus.c: changed static SetFocus to TkSetFocusWin
Diffstat (limited to 'generic/tkIntDecls.h')
-rw-r--r-- | generic/tkIntDecls.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tkIntDecls.h b/generic/tkIntDecls.h index 8aa82f7..8666b6a 100644 --- a/generic/tkIntDecls.h +++ b/generic/tkIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkIntDecls.h,v 1.7 1999/08/10 05:06:26 jingham Exp $ + * RCS: @(#) $Id: tkIntDecls.h,v 1.8 1999/08/10 16:58:37 hobbs Exp $ */ #ifndef _TKINTDECLS @@ -503,6 +503,9 @@ EXTERN void TkGenWMConfigureEvent _ANSI_ARGS_((Tk_Window tkwin, EXTERN void TkpDrawHighlightBorder _ANSI_ARGS_((Tk_Window tkwin, GC fgGC, GC bgGC, int highlightWidth, Drawable drawable)); +/* 136 */ +EXTERN void TkSetFocusWin _ANSI_ARGS_((TkWindow * winPtr, + int force)); typedef struct TkIntStubs { int magic; @@ -804,6 +807,7 @@ typedef struct TkIntStubs { void (*tkGenWMConfigureEvent) _ANSI_ARGS_((Tk_Window tkwin, int x, int y, int width, int height, int flags)); /* 134 */ #endif /* MAC_TCL */ void (*tkpDrawHighlightBorder) _ANSI_ARGS_((Tk_Window tkwin, GC fgGC, GC bgGC, int highlightWidth, Drawable drawable)); /* 135 */ + void (*tkSetFocusWin) _ANSI_ARGS_((TkWindow * winPtr, int force)); /* 136 */ } TkIntStubs; #ifdef __cplusplus @@ -1440,6 +1444,10 @@ extern TkIntStubs *tkIntStubsPtr; #define TkpDrawHighlightBorder \ (tkIntStubsPtr->tkpDrawHighlightBorder) /* 135 */ #endif +#ifndef TkSetFocusWin +#define TkSetFocusWin \ + (tkIntStubsPtr->tkSetFocusWin) /* 136 */ +#endif #endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */ |