Tcl and the Tk Toolkit (2nd Edition) and over one million other books are available for Amazon Kindle. Learn more

Tcl and the Tk Toolkit
 
 
Start reading Tcl and the Tk Toolkit (2nd Edition) on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
Buy New

or
Sign in to turn on 1-Click ordering.
Buy Used
Used - Very Good See details
$4.16 & eligible for FREE Super Saver Shipping on orders over $25. Details

or
Sign in to turn on 1-Click ordering.
 
   
More Buying Choices
Have one to sell? Sell yours here

Tcl and the Tk Toolkit [Paperback]

John K. Ousterhout (Author)
19 customer reviews)

List Price: $54.99
Price: $46.74 & this item ships for FREE with Super Saver Shipping. Details
You Save: $8.25 (15%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Only 1 left in stock (more on the way).
Ships from and sold by Amazon.com. Gift-wrap available.
Want it delivered Thursday, October 4? Choose One-Day Shipping at checkout. Details
Free Two-Day Shipping for College Students with Amazon Student

Formats

Amazon Price New from Used from
Kindle Edition $25.07  
Paperback $46.74  
There is a newer edition of this item:
Tcl and the Tk Toolkit (2nd Edition) 4.1 out of 5 stars (19)
$52.79
In Stock.

Book Description

March 31, 1994 020163337X 978-0201633375 1
Since Tcl and the Tk Toolkit is written by the creator of the Tcl scripting language and the Tk toolkit, this book is the single authoritative resource for anyone who wants to produce far more powerful X Window System applications in a fraction of the time that would otherwise be required. Tcl and the Tk Toolkit offers an introduction and overview of this impressive programming environment, including detailed instructions for script writing in Tcl and working with the Tk toolkit. The book also describes the C interfaces for Tcl and Tk for those readers who wish to extend their built-in features by writing new C commands.

Frequently Bought Together

Tcl and the Tk Toolkit + +
Price For All Three: $142.30

Buy the selected items together

Customers Who Bought This Item Also Bought


Editorial Reviews

Amazon.com Review

Ousterhout's Tcl and the Tk Toolkit was one of the first books on Tcl (tool command language) and Tk (toolkit) and has become one of the classics in the field. Written by the developer of Tcl and Tk, the text takes a no-nonsense approach to the language, describing the elements of Tcl and Tk in programming-reference-style detail. If you are already familiar with a C-like language and want a just-the-facts introduction to Tcl and Tk, this is the book for you. The manual is divided into four sections: a description of the Tcl language, an introduction to Tk, a discussion of the Tcl/C interface, and information about the Tk/C interface. Although there are no fully worked out programs, code snippets illustrate how to use control structures and data types. Written in 1994, the book is based on Tcl 7.3 and Tk 3.6 and does not cover the most recent versions of Tcl and Tk.

From the Inside Flap

Tcl was born of frustration. In the early 1980s my students and I developed a number of interactive tools at the University of California at Berkeley, mostly for integrated circuit design, and we found ourselves spending a lot of time building bad command languages. Each tool needed to have a command language of some sort, but our main interest was in the tool rather than its command language. We spent as little time as possible on the command language and always ended up with a language that was weak and quirky. Furthermore, the command language for one tool was never quite right for the next tool, so we ended up building a new bad command language for each tool. This became increasingly frustrating.

In the fall of 1987 it occurred to me that the solution was to build a reusable command language. If a general-purpose scripting language could be built as a C library package, then perhaps it could be reused for many different purposes in many different applications. Of course, the language would need to be extensible so that each application could add its own specific features to the core provided by the library. In the spring of 1988 I decided to implement such a language, and the result was Tcl.

Tk was also born of frustration. The basic idea for Tk arose in response to Apple's announcement of HyperCard in the fall of 1987. HyperCard generated tremendous excitement because of the power of the system and the way in which it allowed many different interactive elements to be scripted and work together. However, I was discouraged. The HyperCard system had obviously taken a large development effort, and it seemed unlikely to me that a small group such as a university research project could ever mount such a massive effort. This suggested that we would not be able to participate in the development of new forms of interactive software in the future.

I concluded that the only hope for us was a component approach. Rather than building a new application as a self-contained monolith with hundreds of thousands of lines of code, we needed to find a way to divide applications into many smaller reusable components. Ideally each component would be small enough to be implemented by a small group, and interesting applications could be created by assembling components. In this environment it should be possible to create an exciting new application by developing one new component and then combining it with existing components.

The component-based approach requires a powerful and flexible "glue"for assembling the components, and it occurred to me that perhaps a shared scripting language could provide that glue. Out of this thinking grew Tk, an X11 toolkit based on Tcl. Tk allows components to be either individual user-interface controls or entire applications; in either case components can be developed independently and Tcl can be used to assemble the components and communicate between them.

I started writing Tcl and Tk as a hobby in my spare time. As other people began to use the systems I found myself spending more and more time on them, to the point where today they occupy almost all of my waking hours and many of my sleeping ones.

Tcl and Tk have succeeded beyond my wildest dreams. The Tcl/Tk developer community now numbers in the tens of thousands and there are thousands of Tcl applications in existence or under development. The application areas for Tcl and Tk cover virtually the entire spectrum of graphical and engineering applications, including computer-aided design, software development, testing, instrument control, scientific visualization, and multimedia. Tcl is used by itself in many applications, and Tcl and Tk are used together in many others. Tcl and Tk are being used by hundreds of companies, large and small, as well as universities and research laboratories.

One benefit that came as a surprise to me is that it is possible to create interesting graphical user interfaces (GUIs) entirely as Tcl scripts. I had always assumed that every Tcl application would contain some new C code that implements new Tcl commands, plus some Tcl scripts that combine the new commands with the built-in facilities provided by Tcl. However, once a simple Tcl/Tk application called wish became available, many people began creating user interfaces by writing Tcl scripts for it, without writing any C code at all! It turned out that the Tcl and Tk commands provide a high-level interface to GUI programming that hides many of the details faced by a C programmer. As a result, it is much easier to learn how to use wish than a C-based toolkit, and user interfaces can be written with much less code. Most Tcl/Tk users never write any C code at all and most of the Tcl/Tk applications consist solely of Tcl scripts.

This book is intended as an introduction to Tcl and Tk for programmers who plan to write or modify Tcl/Tk applications. I assume that readers have programmed in C and have at least passing familiarity with a shell such as sh or csh or ksh. I also assume that readers have used the X Window System and are familiar with basic ideas such as using the mouse, resizing windows, etc. No prior experience with Tcl or Tk is needed in order to read this book, and you need not have written X applications using other toolkits such as Motif.

The book is organized so that you can learn Tcl without learning Tk if you wish. Also, the discussion of how to write Tcl scripts is separate from the discussion of how to use the C library interfaces provided by Tcl and Tk. The first two parts of the book describe Tcl and Tk at the level of writing scripts, and the last two parts describe the C interfaces for Tcl and Tk; if you are like the majority of Tcl/Tk users who only write scripts, you can stop after reading the first two parts.

In spite of my best efforts, I'm sure that there are errors in this edition of the book. I'm interested in hearing about any problems that you encounter, whether they are typos, formatting errors, sections or ideas that are hard to understand, or bugs in the examples. I'll attempt to correct the problems in future printings of the book. The best way to report problems is with electronic mail sent to [email protected].

Many people have helped in the creation of this book. First and foremost I would like to thank Brian Kernighan, who reviewed several drafts of the manuscript with almost terrifying thoroughness and uncovered numerous problems both large and small. I am also grateful for the detailed comments provided by the other Addison-Wesley technical reviewers: Richard Blevins, Gerard Holzmann, Curt Horkey, Ron Hutchins, Stephen Johnson, Oliver Jones, David Korn, Bill Leggett, Don Libes, Kent Margraf, Stuart McRobert, David Richardson, Alexei Rodrigues, Gerald Rosenberg, John Slater, and Win Treese. Thanks also to Bob Sproull, who read the next-to-last draft from cover to cover and provided countless bug fixes and suggestions.

I made early drafts of the manuscript available to the Tcl/Tk community via the Internet and received countless comments and suggestions from all over the world in return. I'm afraid that I didn't keep careful enough records to acknowledge all the people who contributed in this way, but the list of contributors includes at least the following people: Marvin Aguero, Miriam Amos Nihart, Jim Anderson, Frederik Anheuser, Jeff Blaine, John Boller, David Boyce, Terry Brannon, Richard Campbell, J. Cazander, Wen Chen, Richard Cheung, Peter Chubb, De Clarke, Peter Collinson, Peter Costantinidis, Alistair Crooks, Peter Davies, Tal Dayan, Akim Demaille, Mark Diekhans, Matthew Dillon, Tuan Doan, Tony Duarte, Paul DuBois, Anton Eliens, Marc R. Ewing, Luis Fernandes, Martin Forssen, Ben Fried, Matteo Frigo, Andrej Gabara, Steve Gaede, Sanjay Ghemawat, Bob Gibson, Michael Halle, Jun Hamano, Stephen Hansen, Brian Harrison, Marti Hearst, Fergus Henderson, Kevin Hendrix, David Herron, Patrick Hertel, Carsten Heyl, Leszek Holenderski, Jamie Honan, Rob W.W. Hooft, Nick Hounsome, Christopher Hylands, Jonathan Jowett, Poul-Henning Kamp, Karen L. Karavanic, Sunil Khatri, Vivek Khera, Jon Knight, Roger Knopf, Ramkumar Krishnan, Dave Kristol, Peter LaBelle, Tor-Erik Larsen, Tom Legrady, Will E. Leland, Kim Lester, Joshua Levy, Don Libes, Oscar Linares, David C.P. Linden, Toumas J. Lukka, Steve Lord, Steve Lumetta, Earlin Lutz, David J. Mackenzie, B.G. Mahesh, John Maline, Graham Mark, Stuart McRobert, George Moon, Michael Morris, Russell Nelson, Dale K. Newby, Richard Newton, Peter Nguyen, David Nichols, Marty Olevitch, Rita Ousterhout, John Pierce, Stephen Pietrowicz, Anna Pluzhnikov, Nico Poppelier, M.V.S. Ramanath, Cary D. Renzema, Mark Roseman, Samir Tiongson Saxena, Jay Schmidgall, Dan M. Serachitopol, Hume Smith, Frank Stajano, Larry Streepy, John E. Stump, Michael Sullivan, Holger Teutsch, Bennett E. Todd, Glenn Trewitt, D.A. Vaughan-Pope, Richard Vieregge, Larry W. Virden, David Waitzman, Matt Wartell, Glenn Waters, Wally Wedel, Juergen Weigert, Mark Weiser, Brent Welch, Alex Woo, Su-Lin Wu, Kawata Yasuro, Chut Ngeow Yee, Richard Yen, Stephen Ching-SingYen, and Mike Young.

Many many people have made significant contributi


Product Details

  • Paperback: 480 pages
  • Publisher: Addison-Wesley Professional; 1 edition (March 31, 1994)
  • Language: English
  • ISBN-10: 020163337X
  • ISBN-13: 978-0201633375
  • Product Dimensions: 9 x 7.4 x 1.3 inches
  • Shipping Weight: 1.8 pounds (View shipping rates and policies)
  • Average Customer Review: 19 customer reviews)
  • Amazon Best Sellers Rank: #1,108,474 in Books (See Top 100 in Books)
  •  Would you like to give feedback on images?


More About the Author

Discover books, learn about writers, read author blogs, and more.

Customer Reviews

Most Helpful Customer Reviews
36 of 38 people found the following review helpful
5.0 out of 5 stars The best way to learn Tcl/Tk, and a great reference December 29, 1999
Format:Paperback
Although more detailed books like Welch's 'Practical Programming in Tcl and Tk' are very useful, Ousterhout's original book is still the best way to learn the language. His style is clear and concise, and he covers the core of the language with good examples and thorough explanatory text.

The layout is clean and easy to read, without any space wasted on fancy graphics or eye-candy. Instead, you get clear tables laying out what happens, or listing the commands in a certain functionality area. For example, page 122 has a table I've gone back to many times that lists the different return values from catch.

Even though I have and use other Tcl books, when I just want to check a point of syntax or verify functionality, this is the one I go to. It's an invaluable book for a Tcl/Tk developer.

Comment | 
Was this review helpful to you?
31 of 33 people found the following review helpful
5.0 out of 5 stars Excllent introduction to Tcl/Tk November 27, 1999
Format:Paperback
This is the best tutorial on Tcl/Tk. It is wonderfully clear and well organized.

The book deals with earlier versions of Tcl and Tk but I've yet to run across an example that doesn't work. (I'm sure there are some.)

This book helped me greatly when I decided to learn Tcl/Tk, and it is a pleasure to read.

The author is the creator of Tcl/Tk and a superb educator as well.

The book has a UNIX orientation though I tried on the software on my Windows 98 machine and found that his examples work. He uses the X-windows system as a basis but his explanation of X is so simple and clear I did not find my ignorance of it a problem. Also the Tk I'm using (8.2) on Windows 98 works great with his examples.

Comment | 
Was this review helpful to you?
14 of 15 people found the following review helpful
5.0 out of 5 stars This is Just a Great Book February 17, 2007
Format:Paperback
I've read other books written by the authors of the language, and found them to be lacking. But this author's book is really well organized, thoughtful, clear, and has great explanations. I was up and running creating widgets, etc. in a matter of no time.

I think this book is more of an instructional guide (and a damn good one too), but I don't believe it is oriented as a reference guide. I know that there were a few gripes on this should be both, but I wouldn't want that. Technology changes, so I prefer references to remain online. Gone are the days to cart a wheel-barrel of reference material for a given project, only to be obsoleted in a few years.

This book opened the doors to the great wonderful world of Tcl/Tk. And I am confident it will help others in years to come.
Comment | 
Was this review helpful to you?
Most Recent Customer Reviews
4.0 out of 5 stars A Helpful eBook
I bought this book to learn how to use and intergrate Tcl into a Windows application. It was quite helpful. There are many examples and practical discussions for dealing with Tcl. Read more
Published 26 days ago by David G. Sommers
5.0 out of 5 stars THE Printed Reference for Tcl/Tk
I never had access to a copy of the original book from Professor Ousterhout, so I can't make comparisons like many of the reviews here, but I must say I am very much satisfied... Read more
Published 8 months ago by Fabricio Rocha
2.0 out of 5 stars Disappointing sequel.
I believe the first edition of "Tcl and the Tk Toolkit"
was a masterpiece - the epitomy of a great computer
science book. Read more
Published 20 months ago by anon2001
5.0 out of 5 stars Much needed
We are chemists who need to know how to program (go figure), our boss was glad to see that we got the book.
Published 21 months ago by Sexcyone
5.0 out of 5 stars Excellent How To Book (not best first Tcl book)
This is a super "How-To" book, but very different from the first edition. If you are looking to learn TclTk from scratch or want a great TclTk reference book, don't start here... Read more
Published on September 29, 2010 by curly
1.0 out of 5 stars thought I would learn how to do TCL with this
This book is just horrible. My needs are pretty simple, I am not doing a ton of TCL programming, and I am hardly using Tk. Read more
Published on July 20, 2010 by Dr. Rob
5.0 out of 5 stars Very highly recommended for serious developer's libraries
The second updated edition of John K. Outserhout and Ken Jones' TCL AND THE TK TOOLKIT has been fully updated for Tcl/Tk8.5 and is a must for any graphics programming library. Read more
Published on December 13, 2009 by Midwest Book Review
3.0 out of 5 stars Missing material on new features
This book does a good job of explaining the fundamentals to Tcl, Tk, and the C API. However, after a decade between editions, it's missing too much material about more modern... Read more
Published on November 5, 2009 by George Jempty
5.0 out of 5 stars Excellent book - still the best
This is a very good book to learn tcl/tk. It is a little dated, but the language is covered very well. Start with this one.
Published on January 17, 2002 by William Sturm
4.0 out of 5 stars Great starter!
I read this book in a matter of days. It flies by quite fast. It lacks examples but I thought it gave me enough information to be able to figure out the other things. Read more
Published on January 25, 2001 by Sultan Mehrabi
Search Customer Reviews
Only search this product's reviews

What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 
(3)
(1)

Your tags: Add your first tag
 

Forums

Related forums
There are no discussions about this product yet.
Be the first to discuss this product with the community.
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Listmania!


Create a Listmania! list

So You'd Like to...


Create a guide


Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant