From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.58.107.198 with SMTP id he6mr10106915veb.2.1389654202710; Mon, 13 Jan 2014 15:03:22 -0800 (PST) X-Received: by 10.182.243.131 with SMTP id wy3mr91150obc.17.1389654202640; Mon, 13 Jan 2014 15:03:22 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!feeder.erje.net!eu.feeder.erje.net!ecngs!feeder2.ecngs.de!212.27.60.7.MISMATCH!feeder1-1.proxad.net!proxad.net!feeder1-2.proxad.net!209.85.216.87.MISMATCH!p15no13217748qaj.0!news-out.google.com!gg4ni1659qab.0!nntp.google.com!p15no13217739qaj.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 13 Jan 2014 15:03:22 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=70.53.13.252; posting-account=cUi90woAAADTaOISowbbHM8GUD0-opJO NNTP-Posting-Host: 70.53.13.252 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: thick Tcl binding, am I being logical ? From: Patrick Injection-Date: Mon, 13 Jan 2014 23:03:22 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:18163 Date: 2014-01-13T15:03:22-08:00 List-Id: Hi Everyone I was tinkering with Tash again today. It has code like this: Tcl.Tk.Ada.Pack (Counter, "-side bottom -fill both"); This calls the geometry manger to control the layout of the widget Counter. In pure Tcl it is: pack .counter -side bottom -fill both Tash is about 20K lines of code(in the src dir). There are some examples and it's not a bad project or anything. It's just that since Tcl/Tk changed it's API, it's a pretty thin binding. I was wondering if it would be logical to create a thick binding to Tcl only and feed in Tcl strings to display Tk widgets rather then trying to bind the Tk code as well. I frequently go on coding suicide missions, Am I on another? Does this sound logical? Thanks-Patrick