Training, Open Source computer languages
PerlPHPPythonMySQLApache / TomcatTclRubyJavaC and C++LinuxCSS 
Search for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
tcl/tk & C++

Posted by triclosan (triclosan), 25 January 2004
Hi all! I wrote small programm that combine tcl/tk & C++. But window of wish-interpretor is blocked (entry field & button is disabled). Please take a look at my source and fix it...(as it posible).

Code:
#include <tcl.h>
#include <tk.h>
#include <iostream.h>
#include <string.h>
#include <stdio.h>
int Tcl_AppInit(Tcl_Interp *interp);
int main(int argc, char *argv[])
{
Tk_Main(0, argv, Tcl_AppInit);
     return(0);
}
int Tcl_AppInit(Tcl_Interp *interp) {
     char inbuf[100];
     char tcl_expr[256];
     int error_code;
     interp=Tcl_CreateInterp();
cout << "Expr? ";
cin >> inbuf;
if (Tk_Init(interp) == TCL_ERROR)
{
sprintf(tcl_expr, "set answer [expr %s]", inbuf);
error_code = Tcl_Eval(interp, tcl_expr);
char mas[] =
     "entry .e -textvariable answer\n"
     "button .b -text \"Exit\" -command {Exit}\n"
     "pack .e .b\n";
error_code = Tcl_Eval(interp, mas);
return TCL_OK;
}
Tcl_DeleteInterp(interp);
return TCL_OK;
}


Posted by admin (Graham Ellis), 25 January 2004
I suspect that you have to do something different to a normal embedded Tcl program to allow your C program to deal with the main even handling loop of Tk ... but it's not something I do every day and my reference book that would tell me (do you by any chance have John Ousterhout's book?) is thousands of miles away this week.  Hopefully my thoughts will set you off in the right direction, and you'll find something in the documentation that you've already used to get this far!

Posted by triclosan (triclosan), 26 January 2004
Thanks!
I try to fix my source. But still need a help.



This page is a thread posted to the opentalk forum at www.opentalk.org.uk and archived here for reference. To jump to the archive index please follow this link.

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 793803 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho