home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / drivers / tk / plconfig.t < prev    next >
Encoding:
Text File  |  1994-05-23  |  839 b   |  28 lines

  1. #----------------------------------------------------------------------------
  2. # plconfig.tcl
  3. # $Id: plconfig.tcl,v 1.7 1994/05/23 22:08:30 mjl Exp $
  4. # $Log: plconfig.tcl,v $
  5. # Revision 1.7  1994/05/23  22:08:30  mjl
  6. # Added CVS Id and Log entries.
  7. #
  8. #
  9. # Sets configuration options for plplot/TK driver.
  10. # This file contains a dummy proc.  You can customize plplot/TK by copying
  11. # settings from pldefaults.tcl into this file and modifying them to taste.  
  12. # See the notes in pldefaults.tcl for more info.
  13. #----------------------------------------------------------------------------
  14.  
  15. proc plconfig {} {
  16.  
  17. # Uncomment the next line to enable my_key_filter to receive key info.
  18.  
  19. #    global user_key_filter;    set user_key_filter "my_key_filter"
  20. }
  21.  
  22. # Demo user key filter.
  23.  
  24. proc my_key_filter {w client k n a} {
  25.  
  26.     puts "keypress: $k $n $a"
  27. }
  28.