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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Selection - Manipulate the X selection</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::Selection - Manipulate the X selection</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="#keywords">KEYWORDS</A></LI>
  26. </UL>
  27. <!-- INDEX END -->
  28.  
  29. <HR>
  30. <P>
  31. <H1><A NAME="name">NAME</A></H1>
  32. <P>Tk::Selection - Manipulate the X selection</P>
  33. <P>
  34. <HR>
  35. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  36. <UL>
  37. <LI>Linux</LI>
  38. <LI>Solaris</LI>
  39. <LI>Windows</LI>
  40. </UL>
  41. <HR>
  42. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  43. <P><EM>$widget</EM>-><STRONG>Selection</STRONG><EM>Option</EM>?(<EM>args</EM>)?</P>
  44. <P>
  45. <HR>
  46. <H1><A NAME="description">DESCRIPTION</A></H1>
  47. <P>This command provides an interface to the X selection mechanism and
  48. implements the full selection functionality described in the
  49. X Inter-Client Communication Conventions Manual (ICCCM).</P>
  50. <P>The widget object used to invoke the methods below determines which
  51. display is used to access the selection.
  52. In order to avoid conflicts with <STRONG>selection</STRONG> methods of widget classes
  53. (e.g. <STRONG>Text</STRONG>) this set of methods uses the prefix <STRONG>Selection</STRONG>.
  54. The following methods are currently supported:</P>
  55. <DL>
  56. <DT><STRONG><A NAME="item_SelectionClear"><EM>$widget</EM>-><STRONG>SelectionClear</STRONG>?(<STRONG>-selection</STRONG>=><EM>selection</EM>)?</A></STRONG><BR>
  57. <DD>
  58. If <EM>selection</EM> exists anywhere on <EM>$widget</EM>'s display, clear it
  59. so that no window owns the selection anymore.  <EM>Selection</EM>
  60. specifies the X selection that should be cleared, and should be an
  61. atom name such as PRIMARY or CLIPBOARD; see the Inter-Client
  62. Communication Conventions Manual for complete details.
  63. <EM>Selection</EM> defaults to PRIMARY.
  64. Returns an empty string.
  65. <P></P>
  66. <DT><STRONG><A NAME="item_SelectionGet"><EM>$widget</EM>-><STRONG>SelectionGet</STRONG>?(?<STRONG>-selection</STRONG>=><EM>selection</EM>?,?<STRONG>-type</STRONG>=><EM>type</EM>?)?</A></STRONG><BR>
  67. <DD>
  68. Retrieves the value of <EM>selection</EM> from <EM>$widget</EM>'s display and
  69. returns it as a result.  <EM>Selection</EM> defaults to PRIMARY.
  70. <P><EM>Type</EM> specifies the form in which the selection is to be returned
  71. (the desired ``target'' for conversion, in ICCCM terminology), and
  72. should be an atom name such as STRING or FILE_NAME; see the
  73. Inter-Client Communication Conventions Manual for complete details.
  74. <EM>Type</EM> defaults to STRING.  The selection owner may choose to
  75. return the selection in any of several different representation
  76. formats, such as STRING, ATOM, INTEGER, etc. (this format is different
  77. than the selection type; see the ICCCM for all the confusing details).</P>
  78. <P>If <EM>format</EM> is not STRING then things get messy, the following
  79. description is from the Tcl/Tk man page as yet incompetely translated for
  80. the perl version - it is misleading at best.</P>
  81. <P>If the selection is returned in a non-string format, such as INTEGER
  82. or ATOM, the <STRONG>SelectionGet</STRONG> converts it to a list of perl
  83. values: atoms are converted to their
  84. textual names, and anything else is converted integers.</P>
  85. <P>A goal of the perl port is to provide better handling of different
  86. formats than Tcl/Tk does, which should be possible given perl's
  87. wider range of ``types''. Although some thought went into this
  88. in very early days of perl/Tk what exactly happens is still
  89. ``not quite right'' and subject to change.</P>
  90. <P></P>
  91. <DT><STRONG><A NAME="item_SelectionHandle"><EM>$widget</EM>-><STRONG>SelectionHandle</STRONG>(?<STRONG>-selection</STRONG>=><EM>selection</EM>?,?<STRONG>-type</STRONG>=><EM>type</EM>?,?<STRONG>-format</STRONG>=><EM>format</EM>? <EM>callback</EM>)</A></STRONG><BR>
  92. <DD>
  93. Creates a handler for selection requests, such that <EM>callback</EM> will
  94. be executed whenever <EM>selection</EM> is owned by <EM>$widget</EM> and
  95. someone attempts to retrieve it in the form given by <EM>type</EM>
  96. (e.g. <EM>type</EM> is specified in the <STRONG>selection get</STRONG> command).
  97. <EM>Selection</EM> defaults to PRIMARY, <EM>type</EM> defaults to STRING, and
  98. <EM>format</EM> defaults to STRING.  If <EM>callback</EM> is an empty string
  99. then any existing handler for <EM>$widget</EM>, <EM>type</EM>, and
  100. <EM>selection</EM> is removed.
  101. <P>When <EM>selection</EM> is requested, <EM>$widget</EM> is the selection owner,
  102. and <EM>type</EM> is the requested type, <EM>callback</EM> will be executed
  103. with two additional arguments.
  104. The two additional arguments
  105. are <EM>offset</EM> and <EM>maxBytes</EM>:  <EM>offset</EM> specifies a starting
  106. character position in the selection and <EM>maxBytes</EM> gives the maximum
  107. number of bytes to retrieve.  The command should return a value consisting
  108. of at most <EM>maxBytes</EM> of the selection, starting at position
  109. <EM>offset</EM>.  For very large selections (larger than <EM>maxBytes</EM>)
  110. the selection will be retrieved using several invocations of <EM>callback</EM>
  111. with increasing <EM>offset</EM> values.  If <EM>callback</EM> returns a string
  112. whose length is less than <EM>maxBytes</EM>, the return value is assumed to
  113. include all of the remainder of the selection;  if the length of
  114. <EM>callback</EM>'s result is equal to <EM>maxBytes</EM> then
  115. <EM>callback</EM> will be invoked again, until it eventually
  116. returns a result shorter than <EM>maxBytes</EM>.  The value of <EM>maxBytes</EM>
  117. will always be relatively large (thousands of bytes).</P>
  118. <P>If <EM>callback</EM> returns an error (e.g. via <STRONG>die</STRONG>)
  119. then the selection retrieval is rejected
  120. just as if the selection didn't exist at all.</P>
  121. <P>The <EM>format</EM> argument specifies the representation that should be
  122. used to transmit the selection to the requester (the second column of
  123. Table 2 of the ICCCM), and defaults to STRING.  If <EM>format</EM> is
  124. STRING, the selection is transmitted as 8-bit ASCII characters (i.e.
  125. just in the form returned by <EM>command</EM>).</P>
  126. <P>If <EM>format</EM> is not STRING then things get messy, the following
  127. description is from the Tcl/Tk man page as yet untranslated for
  128. the perl version - it is misleading at best.</P>
  129. <P>If <EM>format</EM> is
  130. ATOM, then the return value from <EM>command</EM> is divided into fields
  131. separated by white space;  each field is converted to its atom value,
  132. and the 32-bit atom value is transmitted instead of the atom name.
  133. For any other <EM>format</EM>, the return value from <EM>command</EM> is
  134. divided into fields separated by white space and each field is
  135. converted to a 32-bit integer;  an array of integers is transmitted
  136. to the selection requester.</P>
  137. <P>The <EM>format</EM> argument is needed only for compatibility with
  138. many selection requesters, except Tcl/Tk.  If Tcl/Tk is being
  139. used to retrieve the selection then the value is converted back to
  140. a string at the requesting end, so <EM>format</EM> is
  141. irrelevant.</P>
  142. <P>A goal of the perl port is to provide better handling of different
  143. formats than Tcl/Tk does, which should be possible given perl's
  144. wider range of ``types''. Although some thought went into this
  145. in very early days of perl/Tk what exactly happens is still
  146. ``not quite right'' and subject to change.</P>
  147. <DL>
  148. <DT><STRONG><A NAME="item_SelectionOwner"><EM>$widget</EM>-><STRONG>SelectionOwner</STRONG>?(<STRONG>-selection</STRONG>=><EM>selection</EM>)?</A></STRONG><BR>
  149. <DD>
  150. <STRONG>SelectionOwner</STRONG> returns the
  151. window in this application that owns <EM>selection</EM> on the display
  152. containing <EM>$widget</EM>, or an empty string if no window in this
  153. application owns the selection.  <EM>Selection</EM> defaults to PRIMARY.
  154. <P></P>
  155. <DT><STRONG><A NAME="item_SelectionOwn"><EM>$widget</EM>-><STRONG>SelectionOwn</STRONG>?(?<STRONG>-command</STRONG>=><EM>callback</EM>?,?<STRONG>-selection</STRONG>=><EM>selection</EM>?)?</A></STRONG><BR>
  156. <DD>
  157. <STRONG>SelectionOwn</STRONG> causes <EM>$widget</EM> to become
  158. the new owner of <EM>selection</EM> on <EM>$widget</EM>'s display, returning
  159. an empty string as result. The existing owner, if any, is notified
  160. that it has lost the selection.
  161. If <EM>callback</EM> is specified, it will be executed when
  162. some other window claims ownership of the selection away from
  163. <EM>$widget</EM>.  <EM>Selection</EM> defaults to PRIMARY.
  164. <P></P></DL>
  165. </DL>
  166. <P>
  167. <HR>
  168. <H1><A NAME="keywords">KEYWORDS</A></H1>
  169. <P>clear, format, handler, ICCCM, own, selection, target, type</P>
  170. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  171. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  172. <STRONG><P CLASS=block> Tk::Selection - Manipulate the X selection</P></STRONG>
  173. </TD></TR>
  174. </TABLE>
  175.  
  176. </BODY>
  177.  
  178. </HTML>
  179.