Enter a zip code
(Paperback - REV)
Updated to cover version 8.4, this handbook explains the features and commands of the scripting language TcL (Tool Command Language) and its associated graphical user-interface toolkit, Tk. Every command of the language is covered and the platforms and frameworks for application development are described. The relationship of TcL to C programming is also discussed. The CD-ROM contains all the code from the text, as well as source and binary distributions of Tcl/Tk, Tcl extensions, and tools for the major operating systems. Annotation ©2003 Book News, Inc., Portland, OR
More Reviews and RecommendationsBRENT B. WELCH is a software architect at Panasas, and former researchengineer at Sun Microsystems and Xerox® PARC. He served as senior webengineer at Scriptics, and has been involved in Tcl and Tk from theirearliest days, developing major Tcl applications such as the exmh email userinterface and TclHttpd web server.
Ken Jones has provided training and documentation for software developersfor almost 20 years. He has specialized in the Tcl/Tk language since 1998.
Jeffrey Hobbs is a member of the Tcl Core Team and the release manager forTcl/Tk core. As Senior Developer at ActiveState, he is technical lead forTcl technologies. He served as Tcl Ambassador for Scriptics, and maintainsthe Tk Usage FAQ.
The Tcl/Tk bestseller, now completely updated for Tcl 8.4!
The world's #1 guide to Tcl/Tk has been thoroughly updated to reflect Tcl/Tk8.4's powerful improvements in functionality, flexibility, and performance!Brent Welch, Ken Jones, and Jeffrey Hobbs, three of the world1s leading Tcl/Tk experts, cover every facet of Tcl/Tk programming, including cross-platform scripting and GUI development, networking, enterprise application integration, and much more.Coverage includes:Whether you1re upgrading to Tcl/Tk 8.4, or building GUIs for applicationscreated with other languages, or just searching for a better cross-platformscripting solution, Practical Programming in Tcl and Tk, Fourth Editiondelivers all you need to get results!
The accompanying CD-ROM includes source and binary distributionsof Tcl/Tk, Tcl extensions, and tools for Windows 9x/2000/XP, Linux, Solaris,and Macintosh, plus all the code from the book.
I. Tcl BASICS.
II. ADVANCED Tcl.
III. Tk BASICS.
IV. Tk Widgets.
V. Tk DETAILS.
VI. C Programming.
VII. CHANGES.
Tcl stands for Tool Command Language. Tcl is really two things: a scripting language, and an interpreter for thatlanguage that is designed to be easy to embed into your application. Tcl and itsassociated graphical user-interface toolkit, Tk, were designed and crafted by ProfessorJohn Ousterhout of the University of California, Berkeley. You can findthese packages on the Internet and use them freely in your application, even if itis commercial. The Tcl interpreter has been ported from UNIX to DOS, PalmOS,VMS, Windows, OS/2, NT, and Macintosh environments. The Tk toolkit has beenported from the X window system to Windows and Macintosh.
I first heard about Tcl in 1988 while I was Ousterhout's Ph.D. student atBerkeley. We were designing a network operating system, Sprite. While the studentshacked on a new kernel, John wrote a new editor and terminal emulator.He used Tcl as the command language for both tools so that users could definemenus and otherwise customize those programs. This was in the days of X10,and he had plans for an X toolkit based on Tcl that would help programs cooperatewith each other by communicating with Tcl commands. To me, this cooperationamong tools was the essence of Tcl.
This early vision imagined that applications would be large bodies of compiledcode and a small amount of Tcl used for configuration and high-level commands.John's editor, mx, and the terminal emulator, tx, followed this model.While this model remains valid, it has also turned out to be possible to writeentire applications in Tcl. This is because the Tcl/Tk shell, wish, provides accessto other programs, the file system,network sockets, plus the ability to create agraphical user interface. For better or worse, it is now common to find applicationsthat contain thousands of lines of Tcl script.
This book was written because, while I found it enjoyable and productive touse Tcl and Tk, there were times when I was frustrated. In addition, working atXerox PARC, with many experts in languages and systems, I was compelled tounderstand both the strengths and weaknesses of Tcl and Tk. Although many ofmy colleagues adopted Tcl and Tk for their projects, they were also just as quickto point out its flaws. In response, I have built up a set of programming techniquesthat exploit the power of Tcl and Tk while avoiding troublesome areas.This book is meant as a practical guide to help you get the most out of Tcl and Tkand avoid some of the frustrations I experienced.
It has been about 14 years since I was introduced to Tcl, and about eightyears since the first edition of this book. During several of those years I workedunder John Ousterhout, first at Sun Microsystems and then at Scriptics Corporation.There I remained mostly a Tcl programmer while others in our grouphave delved into the C implementation of Tcl itself. I've built applications likeHTML editors, email user interfaces, Web servers, and the customer database weran our business on. This experience is reflected in this book. The bulk of thebook is about Tcl scripting, and the aspects of C programming to create Tclextensions is given a lighter treatment. I have been lucky to remain involved inthe core Tcl development, and I hope I can pass along the insights I have gainedby working with Tcl.
As a scripting language, Tcl is similar to other UNIX shell languages suchas the Bourne Shell (sh), the C Shell (csh), the Korn Shell (ksh), and Perl. Shellprograms let you execute other programs. They provide enough programmability(variables, control flow, and procedures) to let you build complex scripts thatassemble existing programs into a new tool tailored for your needs. Shells arewonderful for automating routine chores.
It is the ability to easily add a Tcl interpreter to your application that sets itapart from other shells. Tcl fills the role of an extension language that is used toconfigure and customize applications. There is no need to invent a configurationfile format or a command language for your new application, or struggle to providesome sort of user-programmability for your tool. Instead, by adding a Tclinterpreter, you structure your application as a set of primitive operations thatcan be composed by a script to best suit the needs of your users. It also allowsother programs to have programmatic control over your application, leading tosuites of applications that work well together.
The Tcl C library has clean interfaces and is simple to use. The libraryimplements the basic interpreter and a set of core scripting commands thatimplement variables, flow control, and procedures (see page 22). There is also abroad set of APIs that access operating system services to run other programs,access the file system, and use network sockets. Tk adds commands to creategraphical user interfaces. The Tcl and Tk C APIs provide a "virtual machine"that is portable across UNIX, Windows, and Macintosh environments.
The Tcl virtual machine is extensible because your application can define new Tcl commands. These commands are associated with a C or C++ procedurethat your application provides. The result is applications that are split into a setof primitives written in a compiled language and exported as Tcl commands. ATcl script is used to compose the primitives into the overall application. Thescript layer has access to shell-like capability to run other programs, has accessto the file system, and can call directly into the compiled part of the applicationthrough the Tcl commands you define. In addition, from the C programminglevel, you can call Tcl scripts, set and query Tcl variables, and even trace the executionof the Tcl interpreter.
There are many Tcl extensions freely available on the Internet. Most extensionsinclude a C library that provides some new functionality, and a Tcl interfaceto the library. Examples include database access, telephone control, MIDIcontroller access, and expect, which adds Tcl commands to control interactiveprograms.
The most notable extension is Tk, a toolkit for graphical user interfaces. Tkdefines Tcl commands that let you create and manipulate user interface widgets.The script-based approach to user interface programming has three benefits:
There are other choices for extension languages that include Visual Basic,Scheme, Elisp, Perl, Python, Ruby and Javascript. Your choice between them ispartly a matter of taste. Tcl has simple constructs and looks somewhat like C. Itis easy to add new Tcl primitives by writing C procedures. Tcl is very easy tolearn, and I have heard many great stories of users completing impressiveprojects in a short amount of time (e.g., a few weeks), even though they neverused Tcl before.
Java has exploded onto the computer scene since this book was first published.Java is a great systems programming language that in the long run coulddisplace C and C++. This is fine for Tcl, which is designed to glue together buildingblocks written in any system programming language. Tcl was designed towork with C, but has been adapted to work with the Java Virtual Machine.Where I say "C or C++", you can now say "C, C++, or Java," but the details are abit different with Java. This book does not describe the Tcl/Java interface, but you can find TclBlend on the CD-ROM. TclBlend loads the Java Virtual Machineinto your Tcl application and lets you invoke Java methods. It also lets youimplement Tcl commands in Java instead of C or C++. Jacl is a Tcl interpreterwritten in Java. It has some limitations compared with the native C-based Tclinterpreter, but Jacl is great if you cannot use the native interpreter.
Javascript is a language from Netscape that is designed to script interactionswith Web pages. Javascript is important because of its use in HTML userinterfaces. However, Tcl provides a more general purpose scripting solution thatcan be used in a wide variety of applications. The Tcl/Tk Web browser plugin providesa way to run Tcl in your browser. It turns out to be more of a Java alternativethan a JavaScript alternative. The plugin lets you run Tcl applicationsinside your browser, while JavaScript gives you fine grain control over thebrowser and HTML display. The plugin is described in Chapter 20.
Tcl and Tk continue to evolve. See beedub.com/book/ forupdates and news about the latest Tcl releases. Tcl and Tk have had separateversion numbers for historical reasons, but they are released in pairs that worktogether. The original edition of this book was based on Tcl 7.4 and Tk 4.0, andthere were a few references to features in Tk 3.6. This fourth edition has beenupdated to reflect new features added through Tcl/Tk 8.4:
<<Copy>> as opposed to <Control-c>), standard dialogs, and more file manipulation commands.Tcl is designed so that interesting additions can be made as extensions thatdo not require changes to the Tcl core. Many extensions are available today: Youcan find them on the Web at:
tcl.tk/resource/However, some changes require changes to Tcl/Tk itself. If you are interestedin contributing to the continued improvement of Tcl/Tk, you can help.There is a Tcl Core Team (TCT) and a formal Tcl Improvement Process (TIP).You can browse the current TIPs or contribute your own at:
tcl.tk/cgi-bin/tct/tip/The Tcl and Tk source code is maintained on a SourceForge project:
sourceforge.net/projects/tclsourceforge.net/projects/tktoolkitAll bug reports and patch submissions are logged in a database. Sourcecode patches that are made according to the Tcl Engineering Manual guidelineshave the most chance of adoption. These guidelines describe code appearance(e.g., indentation), test suite requirements, and documentation requirements.
Start with these World Wide Web pages about Tcl:
tcl.tk/tcl.activestate.com/purl.org/NET/Tcl-FAQ/The Tcler's Wiki is a very active site that is updated by its users (i.e., byyou) with lots of great information about Tcl and its extensions:
wiki.tcl.tk/The home page for this book contains errata for all editions. This is the onlyURL I control personally, and I plan to keep it up-to-date indefinitely:
beedub.com/book/The Prentice Hall Web site is:
phptr.com/These are some of the FTP sites that maintain Tcl archives:
ftp://ftp.tcl.tk/pub/tclftp://src.doc.ic.ac.uk/packages/tcl/ftp://ftp.luth.se/pub/unix/tcl/ftp://ftp.sunet.se/pub/lang/tclftp://ftp.cs.columbia.edu/archives/tclftp://ftp.funet.fi/pub/languages/tclYou can use a World Wide Web browser like Mozilla, Netscape, InternetExplorer, or Lynx to access these sites.
The comp.lang.tcl newsgroup is very active. It provides a forum for questionsand answers about Tcl. Announcements about Tcl extensions and applicationsare posted to the comp.lang.tcl.announce newsgroup. The following webservice provides a convenient way to read newsgroups. Enter comp.lang.tcl inthe search field on this page:
groups.google.comThis book is meant to be useful to the beginner in Tcl as well as the expert.For the beginner and expert alike, I recommend careful study of Chapter 1, TclFundamentals. The programming model of Tcl is designed to be simple, but it isdifferent from many programming languages. The model is based on string substitutions,and it is important that you understand it properly to avoid trouble incomplex cases. The remainder of the book consists of examples that demonstratehow to use Tcl and Tk productively. For your reference, each chapter has tablesthat summarize the Tcl commands and Tk widgets they describe.
This book assumes that you have some programming experience, althoughyou should be able to get by even if you are a complete novice. Knowledge ofUNIX shell programming will help, but it is not required. Where aspects of windowsystems are relevant, I provide some background information. Chapter 2describes the details of using Tcl and Tk on UNIX, Windows, and Macintosh.
This book is best used in a hands-on manner, trying the examples at thecomputer. The book tries to fill the gap between the terse Tcl and Tk manualpages, which are complete but lack context and examples, and existing Tcl programsthat may or may not be documented or well written.
I recommend the on-line manual pages for the Tcl and Tk commands. Theyprovide a detailed reference guide to each command. This book summarizesmuch of the information from the manual pages, but it does not provide the completedetails, which can vary from release to release. HTML versions of the onlinemanual pages can be found on the CD-ROM that comes with this book.
The book comes with a CD-ROM that has source code for all of the examples,plus a selection of Tcl freeware found on the Internet. The CD-ROM is readableon UNIX, Windows, and Macintosh. There, you will find the versions of Tcland Tk that were available as the book went to press. You can also retrieve thesources shown in the book from my personal Web site:
beedub.com/book/The icon in the margin marks a "hot tip" as judged by the reviewers of thebook. The visual markers help you locate the more useful sections in the book.These are also listed in the index under Hot Tip.
The chapters of the book are divided into seven parts. The first partdescribes basic Tcl features. The first chapter describes the fundamental mechanismsthat characterize the Tcl language. This is an important chapter that providesthe basic grounding you will need to use Tcl effectively. Even if you haveprogrammed in Tcl already, you should review Chapter 1. Chapter 2 goes overthe details of using Tcl and Tk on UNIX, Windows, and Macintosh. Chapter 3presents a sample application, a CGI script, that illustrates typical Tcl programming.The rest of Part I covers the basic Tcl commands in more detail, includingstring handling, data types, control flow, procedures, and scoping issues. Part Ifinishes with a description of the facilities for file I/O and running other programs.
Part II describes advanced Tcl programming. It starts with eval, which letsyou generate Tcl programs on the fly. Regular expressions provide powerfulstring processing. If your data-processing application runs slowly, you can probablyboost its performance significantly with the regular expression facilities.Namespaces partition the global scope of procedures and variables. Unicode andmessage catalogs support internationalized applications. Libraries and packagesprovide a way to organize your code for sharing among projects. The introspectionfacilities of Tcl tell you about the internal state of Tcl. Event driven I/Ohelps server applications manage several clients simultaneously. Network socketsare used to implement the HTTP protocol used to fetch pages on the WorldWide Web.
The last few chapters in Part II describe platforms and frameworks forapplication development. Safe-Tcl is used to provide a secure environment toexecute Tcl applets in a Web browser. TclHttpd is an extensible web server builtin Tcl. You can build applications on top of this server, or embed it into yourexisting applications to give them a web interface. Starkits are an exciting newway to package and deploy Tcl/Tk applications. They use the new Virtual FileSystem (VFS) facilities to embed a private file system right in the Starkit.
Part III introduces Tk. It gives an overview of the toolkit facilities. A fewcomplete examples are examined in detail to illustrate the features of Tk. Eventbindings associate Tcl commands with events like keystrokes and button clicks.
Part III ends with three chapters on the Tk geometry managers that providepowerful facilities for organizing your user interface.
Part IV describes the Tk widgets. These include buttons, menus, scrollbars,labels, text entries, multiline and multifont text areas, drawing canvases, listboxes,and scales. The Tk widgets are highly configurable and very programmable,but their default behaviors make them easy to use as well. The resource database that can configure widgets provides an easy way to control the overalllook of your application.
Part V describes the rest of the Tk facilities. These include selections, keyboardfocus, and standard dialogs. Fonts, colors, images, and other attributesthat are common to the Tk widgets are described in detail. This part ends with afew larger Tk examples.
Part VI is an introduction to C programming and Tcl. The goal of this partis to get you started in the right direction when you need to extend Tcl with newcommands written in C or integrate Tcl into custom applications.
Part VII provides a chapter for each of the Tcl/Tk releases covered by thebook. These chapters provide details about what features were changed andadded. They also provide a quick reference if you need to update a program orstart to use a new version.
The fourth edition is up-to-date with Tcl/Tk 8.4, which adds many new features.Tcl has a new Virtual File System (VFS) feature that lets you transparentlyembed a file system in your application, or make remote resources such asFTP and Web sites visible through the regular file system interface. Chapter 22is a new chapter on Tclkit and Starkits that use the Metakit embedded databaseto store scripts and other files. The VFS makes these files appear in a private filesystem. Starkits provide a new way to package and deploy Tcl/Tk applications.Chapter 21 is a new chapter on using the multi-threading support in Tcl. This isvery useful when embedding Tcl in threaded server applications. There are anumber of new Tk features, including three new widgets. The spinbox (i.e., combobox)is like an entry widget with a drop-down selection box. The labeled frameprovides a new way to decorate frames. The panedwindow is a specialized geometrymanager that provides a new way to organize your user interfaces.
loading...
loading...
loading...
Terms of Use, Copyright, and Privacy Policy
© 1997-2008 Barnesandnoble.com llc