home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / TCL / BLT / BLT1.7L1 / BLT1 / blt-1.7 / applications / kosherdill / Help / HyperHelp < prev    next >
Encoding:
Text File  |  1993-11-23  |  1.5 KB  |  41 lines

  1.  
  2.                              %%
  3. label $blt_htext(widget).logo -bitmap hyperhelp-logo
  4. $blt_htext(widget) append $blt_htext(widget).logo
  5. %%
  6.                            HyperHelp
  7.  ---------------------------------------------------------------
  8.             Copyright (c) 1993  AT&T Bell Laboratories
  9.           Michael J. McLennan (michael.mclennan@att.com)
  10.  ---------------------------------------------------------------
  11.  
  12.  HyperHelp provides a "hypertext" help facility for Tcl/Tk
  13.  applications.  As you read help pages, you may run across
  14.  words that are highlighted to look like buttons.  Clicking
  15.  on any such button will take you to another help page.
  16.  For example, %%
  17. hyperhelp_link "this link" HyperHelp.rest
  18. %% will take you forward to the rest
  19.  of the HyperHelp documentation.
  20.  
  21.  
  22.  HyperHelp facilities are easily %%
  23. hyperhelp_link integrated HyperHelp.add
  24. %% into any Tcl/Tk
  25.  application.
  26.  
  27.  ===============================================================
  28.     %%
  29. set helpbg [option get .hyperhelp.view.file background Tk]
  30. if {$helpbg == ""} {set helpbg white}
  31. frame $blt_htext(widget).credit -bg $helpbg
  32. label $blt_htext(widget).credit.blt -bitmap BLT -bg $helpbg
  33. pack $blt_htext(widget).credit.blt -side left
  34. message $blt_htext(widget).credit.message -aspect 800 -bg $helpbg \
  35.     -text "Thanks to George Howlett for the many wonderful things in his BLT toolkit that made this application possible!"
  36. pack $blt_htext(widget).credit.message -side right -fill x
  37. $blt_htext(widget) append $blt_htext(widget).credit
  38. %%
  39.  ===============================================================
  40.  
  41.