stk/Src/tk-glue.h

58 lines
1.8 KiB
C
Raw Permalink Normal View History

1996-09-27 06:29:02 -04:00
/*
*
1998-04-10 06:59:06 -04:00
* t k - g l u e . h - Glue functions between the scheme and Tk worlds
1996-09-27 06:29:02 -04:00
*
1999-09-05 07:16:41 -04:00
* Copyright <EFBFBD> 1993-1999 Erick Gallesio - I3S-CNRS/ESSI <eg@unice.fr>
1996-09-27 06:29:02 -04:00
*
*
1999-09-05 07:16:41 -04:00
* Permission to use, copy, modify, distribute,and license this
* software and its documentation for any purpose is hereby granted,
* provided that existing copyright notices are retained in all
* copies and that this notice is included verbatim in any
* distributions. No written agreement, license, or royalty fee is
* required for any of the authorized uses.
* This software is provided ``AS IS'' without express or implied
* warranty.
1996-09-27 06:29:02 -04:00
*
*
* Author: Erick Gallesio [eg@unice.fr]
* Creation date: 19-Feb-1993 22:15
1999-09-05 07:16:41 -04:00
* Last file update: 3-Sep-1999 21:00 (eg)
1996-09-27 06:29:02 -04:00
*
*/
1998-09-30 07:11:02 -04:00
#ifndef _TK_GLUE
#define _TK_GLUE_
/* Include tcl-glue.h */
#include "tcl-glue.h"
1996-09-27 06:29:02 -04:00
/* Scheme objects used to represent the "." pseudo widget and its name */
extern SCM STk_root_window;
extern SCM STk_root_window_name;
/* Last result of Tcl_GlobalEval (as a SCM object rather than a string) */
extern SCM STk_last_Tk_result;
1998-04-10 06:59:06 -04:00
SCM STk_convert_tcl_list_to_scheme(SCM l);
1998-09-30 07:11:02 -04:00
SCM STk_execute_Tcl_lib_cmd(SCM cmd, SCM args, SCM env, int eval_args);
1996-09-27 06:29:02 -04:00
char *STk_convert_for_Tk(SCM obj, SCM *res);
1998-04-10 06:59:06 -04:00
void STk_sharp_dot_result(Tcl_Interp *interp, char *value);
void STk_stringify_result(Tcl_Interp *interp, char *value);
SCM STk_last_Tk_as_SCM(void);
SCM STk_get_NIL_value(void);
SCM STk_get_widget_value(char *name);
1996-09-27 06:29:02 -04:00
1998-04-10 06:59:06 -04:00
int STk_valid_environment(char *s, void **env);
1996-09-27 06:29:02 -04:00
int STk_valid_callback(char *s, void **p);
void STk_add_callback(char *key1, char *key2, char *key3, SCM closure);
void STk_delete_callback(char *key);
void STk_mark_callbacks(void);
char *STk_append_callback_parameters(SCM proc);
1998-09-30 07:11:02 -04:00
void STk_init_glue(void);
1998-04-10 06:59:06 -04:00
#define STk_convert_for_Tk STk_convert_for_Tcl /* compatibility with pre 4.0 */
1998-09-30 07:11:02 -04:00
#endif /* _TK_GLUE_ */