home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _b2692c616fa7ee8ad770c42a76e5e2ee < prev    next >
Text File  |  2000-03-23  |  5KB  |  129 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::callbacks - Specifying code for Tk to call.</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::callbacks - Specifying code for Tk to call.</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>Tk::callbacks - Specifying code for Tk to call.</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <P>One can specify a callback in one of the following ways:</P>
  46. <P>Without arguments:</P>
  47. <PRE>
  48.     ... => \&subname, ...
  49.     ... => sub { ... }, ...
  50.     ... => 'methodname', ...</PRE>
  51. <P>or with arguments:</P>
  52. <PRE>
  53.     ... => [ \&subname ?, args ...? ], ...
  54.     ... => [ sub { ... } ?, args...? ], ...
  55.     ... => [ 'methodname' ?, args...?], ...</PRE>
  56. <P>
  57. <HR>
  58. <H1><A NAME="description">DESCRIPTION</A></H1>
  59. <P>Perl/Tk has a callback, where Tcl/Tk has a command string (i.e. a fragment of
  60. Tcl to be executed).  A perl/Tk callback can take one of the following
  61. basic forms:</P>
  62. <UL>
  63. <LI><STRONG><A NAME="item_Reference_to_a_subroutine_%5C%26subname">Reference to a subroutine <CODE>\&subname</CODE></A></STRONG><BR>
  64.  
  65. <LI><STRONG><A NAME="item_subroutine">Anonymous subroutine (closure) <A HREF="../../../lib/Pod/perlfunc.html#item_sub"><CODE>sub { ... }</CODE></A></A></STRONG><BR>
  66.  
  67. <LI><STRONG><A NAME="item_A_method_name_%27methodname%27">A method name <CODE>'methodname'</CODE></A></STRONG><BR>
  68.  
  69. </UL>
  70. <P>Any of these can be provided with arguments by enclosing them and the
  71. arguments in <STRONG>[]</STRONG>. Here are some examples:</P>
  72. <P><EM>$mw</EM>-><STRONG>bind</STRONG>(<EM>$class,</EM> <STRONG>``<Delete>'' => 'Delete'</STRONG>);</P>
  73. <P>This will call <EM>$widget</EM>-><STRONG>Delete</STRONG>, the <EM>$widget</EM> being provided (by bind) as
  74. the one where the Delete key was pressed.</P>
  75. <P>While having bind provide a widget object for you is ideal in many cases
  76. it can be irritating in others. Using the list form this behaviour
  77. can be modified:</P>
  78. <P><EM>$a</EM>-><STRONG>bind</STRONG>(<STRONG>``<Delete>''</STRONG>,[<EM>$b</EM> => 'Delete']);</P>
  79. <P>because the first element <EM>$b</EM> is an object bind
  80. will call <EM>$b</EM>-><STRONG>Delete</STRONG>.</P>
  81. <P>Note that method/object ordering only matters for <A HREF="../../../lib/Pod/perlfunc.html#item_bind"><CODE>bind</CODE></A> callbacks,
  82. the auto-quoting in perl5.001 makes the first of these a little more readable:</P>
  83. <P>$w->configure(-yscrollcommand => [ set => $ysb]);</P>
  84. <P>$w->configure(-yscrollcommand => [ $ysb => 'set' ]);</P>
  85. <P>but both will call <CODE>$ysb</CODE>->set(args provided by Tk)</P>
  86. <P>Another use of arguments allows you to write generalized methods which are
  87. easier to re-use:</P>
  88. <P>$a->bind(``<Next>'',['Next','Page']);</P>
  89. <P>$a->bind(``<Down>'',['Next','Line']);</P>
  90. <P>This will call <CODE>$a</CODE>-><EM>Next</EM>('Page') or <CODE>$a</CODE>-><EM>Next</EM>('Line') respectively.</P>
  91. <P>Note that the contents of the <CODE>[]</CODE> are evaluated by perl when the
  92. callback is created. It is often desirable for the arguments provided
  93. to the callback to depend on the details of the event which caused
  94. it to be executed. To allow for this callbacks can be nested using the
  95. <CODE>Ev(...)</CODE> ``constructor''.
  96. <CODE>Ev(...)</CODE> inserts callback objects into the
  97. argument list. When perl/Tk glue code is preparing the argument list for
  98. the callback it is about to call it spots these special objects and
  99. recursively applies the callback process to them.</P>
  100. <P>
  101. <HR>
  102. <H1><A NAME="examples">EXAMPLES</A></H1>
  103. <PRE>
  104.     $entry->bind('<Return>' => [$w , 'validate', Ev(['get'])]);</PRE>
  105. <PRE>
  106.     $toplevel->bind('all', '<Visibility>', [\&unobscure, Ev('s')]);</PRE>
  107. <PRE>
  108.     $mw->bind($class, '<Down>', ['SetCursor', Ev('UpDownLine',1)]);</PRE>
  109. <P>
  110. <HR>
  111. <H1><A NAME="see also">SEE ALSO</A></H1>
  112. <P><A HREF="../../../site/lib/Tk/bind.html">Tk::bind</A>
  113. <A HREF="../../../Tk/after.html">Tk::after</A>
  114. <A HREF="../../../site/lib/Tk/options.html">Tk::options</A>
  115. <A HREF="../../../site/lib/Tk/fileevent.html">Tk::fileevent</A></P>
  116. <P>
  117. <HR>
  118. <H1><A NAME="keywords">KEYWORDS</A></H1>
  119. <P>callback, closure, anonymous subroutine, bind</P>
  120. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  121. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  122. <STRONG><P CLASS=block> Tk::callbacks - Specifying code for Tk to call.</P></STRONG>
  123. </TD></TR>
  124. </TABLE>
  125.  
  126. </BODY>
  127.  
  128. </HTML>
  129.