home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _23a0bb01402f4b9440ba81d3f9e331b6 < prev    next >
Encoding:
Text File  |  2004-06-01  |  2.3 KB  |  100 lines

  1. =head1 NAME
  2.  
  3. Tk::804delta - what is new for perl/Tk 804
  4.  
  5. =head1 DESCRIPTION
  6.  
  7. This document describes differences between the Tk800 series and the
  8. Tk804 series.
  9.  
  10. =head1 Incompatible Changes
  11.  
  12. Tk804 will only work with perl 5.8.0 and above. For older perl
  13. versions look for Tk800.025.
  14.  
  15. B<curselection> of B<Tk::Listbox> now returns an array reference in
  16. scalar context. This means you have to write
  17.  
  18.     my(@selected) = $listbox->curselection
  19.  
  20. or
  21.  
  22.     my(@selected) = @{ $listbox->curselection }
  23.  
  24. now.
  25.  
  26. The B<fontActual> method now returns the pixel value instead of the
  27. point value for B<-size>. Pixel values are expressed as negative
  28. numbers.
  29.  
  30. Some enhancements from the E<quot>dashE<quot> patches are lost for now
  31. (i.e. B<-tile>, B<-troughtile> ...).
  32.  
  33. The B<-state> option is not available anymore for B<Tk::Text> tags.
  34. Use B<-elide> instead.
  35.  
  36. =head1 Enhancements
  37.  
  38. Tk804 is Unicode-aware.
  39.  
  40. It is possible to build Tk with Xft support on X11. This is strongly
  41. recommened if you are planning to make use of Unicode rendering
  42. capabilities of Tk. It also gives anti-aliased fonts for regular text
  43. (if you have TrueType or Type1 fonts and they are in your fontconfig
  44. config file).
  45.  
  46. The new method B<chooseDirectory> is available as a standard directory
  47. selector.
  48.  
  49. B<Tk::PNG> and B<Tk::JPEG> are bundled now with the perl/Tk
  50. distribution, providing support for the image formats B<png> and
  51. B<jpeg>.
  52.  
  53. Improvements to B<Tk::Listbox>: new option B<-activestyle>, new
  54. methods B<itemconfigure> and B<itemcget>, new virtual event B<<<
  55. <<ListboxSelect>> >>>.
  56.  
  57. More tests.
  58.  
  59. =head1 New Widgets
  60.  
  61. =over
  62.  
  63. =item Tk::Labelframe
  64.  
  65. An alternative to B<Tk::LabFrame>.
  66.  
  67. =item Tk::Panedwindow
  68.  
  69. An alternative to B<Tk::Adjuster>.
  70.  
  71. =item Tk::Spinbox
  72.  
  73. An alternative to the CPAN module B<Tk::NumEntry>.
  74.  
  75. =back
  76.  
  77. =head1 Selected Bug Fixes
  78.  
  79. =head1 Changed Internals
  80.  
  81. =head1 Platform Specific Problems
  82.  
  83. =head1 Future Directions
  84.  
  85. =head1 Reporting Bugs
  86.  
  87. If you find what you think is a bug, you might check the articles
  88. recently posted to the comp.lang.perl.tk newsgroup.
  89.  
  90. If you believe you have an unreported bug, please send a mail to <ptk@lists.stanford.edu> and/or <nick@ing-simmons.net>.  Be sure to trim your bug down
  91. to a tiny but sufficient test case.
  92.  
  93. =head1 SEE ALSO
  94.  
  95. L<Tk>.
  96.  
  97. =cut
  98.  
  99.  
  100.