home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / xf2.3-p / xf2 / xf2.3 / xftutorial / script.xf / intro.scrpt < prev    next >
Encoding:
Text File  |  1993-11-20  |  1.1 KB  |  39 lines

  1. # tutorial
  2. global chapterList
  3. set chapterList {
  4.   {{Introduction} {0} {intro}}
  5.   {{Application design} {0} {design}}
  6.   {{Working with XF} {0} {working}}
  7.   {{Advanced features} {9} {expert}}
  8.   {}
  9.   {{Packing} {0} {packing}}
  10.   {{Placing} {1} {placing}}
  11.   {{Example} {0} {example}}}
  12. global introLast
  13. set introLast 0
  14. global introLastSectionDone
  15. set introLastSectionDone -1
  16.  
  17.  
  18. set introName0 {Introduction}
  19. set introText0 {\
  20. The tutorial tries to give you a feeling about how
  21. to work with XF. The different chapters introduce
  22. you into the general ideas, the handling and some
  23. advanced features of XF. There is also a chapter
  24. where we walk through a "simple sample session"
  25. with XF, creating a small application.
  26.  
  27. The program we build is not complete but gives a
  28. good survey of the features of XF and Tcl/Tk.
  29. Our sample application will be a small directory
  30. browser. The basic idea is to have a window, where
  31. the current directory is displayed, and where you
  32. can select files and directories to show their
  33. contents.
  34.  
  35. During the work with XF you can call a help
  36. facility. General questions are listed in the FAQ
  37. files.}
  38.  
  39.