ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvtperl.3.html
(Generate patch)

Comparing rxvt-unicode/doc/rxvtperl.3.html (file contents):
Revision 1.4 by root, Mon Jan 2 20:35:39 2006 UTC vs.
Revision 1.10 by root, Tue Jan 3 23:41:37 2006 UTC

15 <li><a href="#name">NAME</a></li> 15 <li><a href="#name">NAME</a></li>
16 <li><a href="#synopsis">SYNOPSIS</a></li> 16 <li><a href="#synopsis">SYNOPSIS</a></li>
17 <li><a href="#description">DESCRIPTION</a></li> 17 <li><a href="#description">DESCRIPTION</a></li>
18 <ul> 18 <ul>
19 19
20 <li><a href="#prepackaged_extensions">Prepackaged Extensions</a></li>
20 <li><a href="#general_api_considerations">General API Considerations</a></li> 21 <li><a href="#general_api_considerations">General API Considerations</a></li>
21 <li><a href="#hooks">Hooks</a></li> 22 <li><a href="#hooks">Hooks</a></li>
23 <li><a href="#variables_in_the_urxvt_package">Variables in the <code>urxvt</code> Package</a></li>
22 <li><a href="#functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></li> 24 <li><a href="#functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></li>
25 <li><a href="#rendition">RENDITION</a></li>
23 <li><a href="#the_urxvt__term_class">The <code>urxvt::term</code> Class</a></li> 26 <li><a href="#the_urxvt__term_class">The <code>urxvt::term</code> Class</a></li>
24 <li><a href="#the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></li> 27 <li><a href="#the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></li>
25 <li><a href="#the_urxvt__iow_class">The <code>urxvt::iow</code> Class</a></li> 28 <li><a href="#the_urxvt__iow_class">The <code>urxvt::iow</code> Class</a></li>
26 </ul> 29 </ul>
27 30
36<!-- INDEX END --> 39<!-- INDEX END -->
37 40
38<hr /> 41<hr />
39<p> 42<p>
40</p> 43</p>
44<hr />
41<h1><a name="name">NAME</a></h1> 45<h1><a name="name">NAME</a></h1>
42<p>rxvtperl - rxvt-unicode's embedded perl interpreter</p> 46<p>rxvtperl - rxvt-unicode's embedded perl interpreter</p>
43<p> 47<p>
44</p> 48</p>
45<hr /> 49<hr />
46<h1><a name="synopsis">SYNOPSIS</a></h1> 50<h1><a name="synopsis">SYNOPSIS</a></h1>
47<p>* Put your scripts into <em>/opt/rxvt/lib/urxvt/perl-ext/</em>, they will be loaded automatically.</p> 51<pre>
48<p>* Scripts are evaluated in a 'use strict' and 'use utf8' environment, and 52 # create a file grab_test in $HOME:</pre>
49thus must be encoded as UTF-8.</p>
50<pre> 53<pre>
51 sub on_sel_grab { 54 sub on_sel_grab {
52 warn &quot;you selected &quot;, $_[0]-&gt;selection; 55 warn &quot;you selected &quot;, $_[0]-&gt;selection;
53 () 56 ()
54 }</pre> 57 }</pre>
55<pre> 58<pre>
56 1</pre> 59 # start a rxvt using it:</pre>
60<pre>
61 rxvt --perl-lib $HOME -pe grab_test</pre>
57<p> 62<p>
58</p> 63</p>
59<hr /> 64<hr />
60<h1><a name="description">DESCRIPTION</a></h1> 65<h1><a name="description">DESCRIPTION</a></h1>
61<p>Everytime a terminal object gets created, scripts specified via the 66<p>Everytime a terminal object gets created, scripts specified via the
62<code>perl</code> resource are associated with it.</p> 67<code>perl</code> resource are loaded and associated with it.</p>
68<p>Scripts are compiled in a 'use strict' and 'use utf8' environment, and
69thus must be encoded as UTF-8.</p>
63<p>Each script will only ever be loaded once, even in rxvtd, where 70<p>Each script will only ever be loaded once, even in rxvtd, where
64scripts will be shared (But not enabled) for all terminals.</p> 71scripts will be shared (but not enabled) for all terminals.</p>
72<p>
73</p>
74<h2><a name="prepackaged_extensions">Prepackaged Extensions</a></h2>
75<p>This section describes the extensiosn delivered with this version. You can
76find them in <em>/opt/rxvt/lib/urxvt/perl/</em>.</p>
77<p>You can activate them like this:</p>
78<pre>
79 rxvt -pe &lt;extensionname&gt;</pre>
80<dl>
81<dt><strong><a name="item_selection">selection</a></strong><br />
82</dt>
83<dd>
84Intelligent selection. This extension tries to be more intelligent when
85the user extends selections (double-click). Right now, it tries to select
86urls and complete shell-quoted arguments, which is very convenient, too,
87if your <em>ls</em> supports <code>--quoting-style=shell</code>.
88</dd>
89<dd>
90<p>It also offers the following bindable event:</p>
91</dd>
92<dl>
93<dt><strong><a name="item_rot13">rot13</a></strong><br />
94</dt>
95<dd>
96Rot-13 the selection when activated. Used via keyboard trigger:
97</dd>
98<dd>
99<pre>
100 URxvt.keysym.C-M-r: perl:selection:rot13</pre>
101</dd>
102<p></p></dl>
103<dt><strong><a name="item_digital_2dclock">digital-clock</a></strong><br />
104</dt>
105<dd>
106Displays a digital clock using the built-in overlay.
107</dd>
108<p></p>
109<dt><strong><a name="item_example_2drefresh_2dhooks">example-refresh-hooks</a></strong><br />
110</dt>
111<dd>
112Displays a very simple digital clock in the upper right corner of the
113window. Illustrates overwriting the refresh callbacks to create your own
114overlays or changes.
115</dd>
116<p></p></dl>
65<p> 117<p>
66</p> 118</p>
67<h2><a name="general_api_considerations">General API Considerations</a></h2> 119<h2><a name="general_api_considerations">General API Considerations</a></h2>
68<p>All objects (such as terminals, time watchers etc.) are typical 120<p>All objects (such as terminals, time watchers etc.) are typical
69reference-to-hash objects. The hash can be used to store anything you 121reference-to-hash objects. The hash can be used to store anything you
70like. All members starting with an underscore (such as <code>_ptr</code> or 122like. All members starting with an underscore (such as <code>_ptr</code> or
71<code>_hook</code>) are reserved for internal uses and must not be accessed or 123<code>_hook</code>) are reserved for internal uses and <strong>MUST NOT</strong> be accessed or
72modified).</p> 124modified).</p>
73<p>When objects are destroyed on the C++ side, the perl object hashes are 125<p>When objects are destroyed on the C++ side, the perl object hashes are
74emptied, so its best to store related objects such as time watchers and 126emptied, so its best to store related objects such as time watchers and
75the like inside the terminal object so they get destroyed as soon as the 127the like inside the terminal object so they get destroyed as soon as the
76terminal is destroyed.</p> 128terminal is destroyed.</p>
77<p> 129<p>
78</p> 130</p>
79<h2><a name="hooks">Hooks</a></h2> 131<h2><a name="hooks">Hooks</a></h2>
80<p>The following subroutines can be declared in loaded scripts, and will be called 132<p>The following subroutines can be declared in loaded scripts, and will be
81whenever the relevant event happens.</p> 133called whenever the relevant event happens.</p>
134<p>The first argument passed to them is an object private to each terminal
135and extension package. You can call all <code>urxvt::term</code> methods on it, but
136its not a real <code>urxvt::term</code> object. Instead, the real <code>urxvt::term</code>
137object that is shared between all packages is stored in the <code>term</code>
138member.</p>
82<p>All of them must return a boolean value. If it is true, then the event 139<p>All of them must return a boolean value. If it is true, then the event
83counts as being <em>consumed</em>, and the invocation of other hooks is skipped, 140counts as being <em>consumed</em>, and the invocation of other hooks is skipped,
84and the relevant action might not be carried out by the C++ code.</p> 141and the relevant action might not be carried out by the C++ code.</p>
85<p>When in doubt, return a false value (preferably <code>()</code>).</p> 142<p>When in doubt, return a false value (preferably <code>()</code>).</p>
86<dl> 143<dl>
127</dd> 184</dd>
128<dd> 185<dd>
129<p>Returning a true value aborts selection grabbing. It will still be hilighted.</p> 186<p>Returning a true value aborts selection grabbing. It will still be hilighted.</p>
130</dd> 187</dd>
131<p></p> 188<p></p>
189<dt><strong><a name="item_on_sel_extend__24term">on_sel_extend $term</a></strong><br />
190</dt>
191<dd>
192Called whenever the user tries to extend the selection (e.g. with a double
193click) and is either supposed to return false (normal operation), or
194should extend the selection itelf and return true to suppress the built-in
195processing.
196</dd>
197<dd>
198<p>See the <em>selection</em> example extension.</p>
199</dd>
200<p></p>
132<dt><strong><a name="item_on_focus_in__24term">on_focus_in $term</a></strong><br /> 201<dt><strong><a name="item_on_focus_in__24term">on_focus_in $term</a></strong><br />
133</dt> 202</dt>
134<dd> 203<dd>
135Called whenever the window gets the keyboard focus, before urxvt does 204Called whenever the window gets the keyboard focus, before urxvt does
136focus in processing. 205focus in processing.
182<dt><strong><a name="item_on_refresh_end__24term">on_refresh_end $term</a></strong><br /> 251<dt><strong><a name="item_on_refresh_end__24term">on_refresh_end $term</a></strong><br />
183</dt> 252</dt>
184<dd> 253<dd>
185Called just after the screen gets redrawn. See <code>on_refresh_begin</code>. 254Called just after the screen gets redrawn. See <code>on_refresh_begin</code>.
186</dd> 255</dd>
256<p></p>
257<dt><strong><a name="item_on_keyboard_command__24term_2c__24string">on_keyboard_command $term, $string</a></strong><br />
258</dt>
259<dd>
260Called whenever the user presses a key combination that has a
261<code>perl:string</code> action bound to it (see description of the <strong>keysym</strong>
262resource in the <code>rxvt(1)</code> manpage).
263</dd>
264<p></p></dl>
265<p>
266</p>
267<h2><a name="variables_in_the_urxvt_package">Variables in the <code>urxvt</code> Package</a></h2>
268<dl>
269<dt><strong><a name="item__24urxvt_3a_3aterm">$urxvt::TERM</a></strong><br />
270</dt>
271<dd>
272The current terminal. Whenever a callback/Hook is bein executed, this
273variable stores the current <code>urxvt::term</code> object.
274</dd>
187<p></p></dl> 275<p></p></dl>
188<p> 276<p>
189</p> 277</p>
190<h2><a name="functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></h2> 278<h2><a name="functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></h2>
191<dl> 279<dl>
211<p></p> 299<p></p>
212<dt><strong><a name="item__24time__3d_urxvt_3a_3anow">$time = urxvt::NOW</a></strong><br /> 300<dt><strong><a name="item__24time__3d_urxvt_3a_3anow">$time = urxvt::NOW</a></strong><br />
213</dt> 301</dt>
214<dd> 302<dd>
215Returns the ``current time'' (as per the event loop). 303Returns the ``current time'' (as per the event loop).
304</dd>
305<p></p></dl>
306<p>
307</p>
308<h2><a name="rendition">RENDITION</a></h2>
309<p>Rendition bitsets contain information about colour, font, font styles and
310similar information for each screen cell.</p>
311<p>The following ``macros'' deal with changes in rendition sets. You should
312never just create a bitset, you should always modify an existing one,
313as they contain important information required for correct operation of
314rxvt-unicode.</p>
315<dl>
316<dt><strong><a name="item__24rend__3d_urxvt_3a_3adefault_rstyle">$rend = urxvt::DEFAULT_RSTYLE</a></strong><br />
317</dt>
318<dd>
319Returns the default rendition, as used when the terminal is starting up or
320being reset. Useful as a base to start when creating renditions.
321</dd>
322<p></p>
323<dt><strong><a name="item__24rend__3d_urxvt_3a_3aoverlay_rstyle">$rend = urxvt::OVERLAY_RSTYLE</a></strong><br />
324</dt>
325<dd>
326Return the rendition mask used for overlays by default.
327</dd>
328<p></p>
329<dt><strong><a name="item__24rendbit__3d_urxvt_3a_3ars_bold_2c_rs_italic_2c_">$rendbit = urxvt::RS_Bold, RS_Italic, RS_Blink, RS_RVid, RS_Uline</a></strong><br />
330</dt>
331<dd>
332Return the bit that enabled bold, italic, blink, reverse-video and
333underline, respectively. To enable such a style, just logically OR it into
334the bitset.
335</dd>
336<p></p>
337<dt><strong><a name="item__24foreground__3d_urxvt_3a_3aget_basefg__24rend">$foreground = urxvt::GET_BASEFG $rend</a></strong><br />
338</dt>
339<dt><strong><a name="item__24background__3d_urxvt_3a_3aget_basebg__24rend">$background = urxvt::GET_BASEBG $rend</a></strong><br />
340</dt>
341<dd>
342Return the foreground/background colour index, respectively.
343</dd>
344<p></p>
345<dt><strong><a name="item_set_fgcolor">$rend = urxvt::SET_FGCOLOR ($rend, $new_colour)</a></strong><br />
346</dt>
347<dt><strong><a name="item_set_bgcolor">$rend = urxvt::SET_BGCOLOR ($rend, $new_colour)</a></strong><br />
348</dt>
349<dd>
350Replace the foreground/background colour in the rendition mask with the
351specified one.
352</dd>
353<p></p>
354<dt><strong><a name="item_get_custom">$value = urxvt::GET_CUSTOM ($rend)</a></strong><br />
355</dt>
356<dd>
357Return the ``custom'' value: Every rendition has 5 bits for use by
358extensions. They can be set and changed as you like and are initially
359zero.
360</dd>
361<p></p>
362<dt><strong><a name="item_set_custom">$rend = urxvt::SET_CUSTOM ($rend, $new_value)</a></strong><br />
363</dt>
364<dd>
365Change the custom value.
216</dd> 366</dd>
217<p></p></dl> 367<p></p></dl>
218<p> 368<p>
219</p> 369</p>
220<h2><a name="the_urxvt__term_class">The <code>urxvt::term</code> Class</a></h2> 370<h2><a name="the_urxvt__term_class">The <code>urxvt::term</code> Class</a></h2>
277<dd> 427<dd>
278Try to request the primary selection from the server (for example, as set 428Try to request the primary selection from the server (for example, as set
279by the next method). 429by the next method).
280</dd> 430</dd>
281<p></p> 431<p></p>
282<dt><strong><a name="item_selection">$oldtext = $term-&gt;selection ([$newtext])</a></strong><br /> 432<dt><strong>$oldtext = $term-&gt;selection ([$newtext])</strong><br />
283</dt> 433</dt>
284<dd> 434<dd>
285Return the current selection text and optionally replace it by <code>$newtext</code>. 435Return the current selection text and optionally replace it by <code>$newtext</code>.
286</dd> 436</dd>
287<p></p>
288<dt><strong><a name="item_scr_overlay">$term-&gt;scr_overlay ($x, $y, $text)</a></strong><br />
289</dt>
290<dd> 437<dd>
438<p>#=item $term-&gt;overlay ($x, $y, $text)
439#
291Create a simple multi-line overlay box. See the next method for details. 440#Create a simple multi-line overlay box. See the next method for details.
441#
442#=cut</p>
443</dd>
292</dd> 444<dd>
445<p>sub urxvt::term::scr_overlay {
446die;
447 my ($self, $x, $y, $text) = @_;</p>
448</dd>
449<dd>
450<pre>
451 my @lines = split /\n/, $text;</pre>
452</dd>
453<dd>
454<pre>
455 my $w = 0;
456 for (map $self-&gt;strwidth ($_), @lines) {
457 $w = $_ if $w &lt; $_;
458 }</pre>
459</dd>
460<dd>
461<pre>
462 $self-&gt;scr_overlay_new ($x, $y, $w, scalar @lines);
463 $self-&gt;scr_overlay_set (0, $_, $lines[$_]) for 0.. $#lines;
464}</pre>
465</dd>
293<p></p> 466<p></p>
294<dt><strong><a name="item_scr_overlay_new">$term-&gt;scr_overlay_new ($x, $y, $width, $height)</a></strong><br /> 467<dt><strong><a name="item_overlay">$term-&gt;overlay ($x, $y, $width, $height[, $rstyle[, $border]])</a></strong><br />
295</dt> 468</dt>
296<dd> 469<dd>
297Create a new (empty) overlay at the given position with the given 470Create a new (empty) overlay at the given position with the given
298width/height. A border will be put around the box. If either <code>$x</code> or 471width/height. <code>$rstyle</code> defines the initial rendition style
299<code>$y</code> is negative, then this is counted from the right/bottom side, 472(default: <code>OVERLAY_RSTYLE</code>).
300respectively.
301</dd>
302<p></p>
303<dt><strong><a name="item_scr_overlay_off">$term-&gt;scr_overlay_off</a></strong><br />
304</dt>
305<dd> 473</dd>
306Switch the overlay off again.
307</dd> 474<dd>
308<p></p> 475<p>If <code>$border</code> is <code>2</code> (default), then a decorative border will be put
309<dt><strong><a name="item_scr_overlay_set_char">$term-&gt;scr_overlay_set_char ($x, $y, $char, $rend = OVERLAY_RSTYLE)</a></strong><br /> 476around the box.</p>
310</dt>
311<dd> 477</dd>
312Put a single character (specified numerically) at the given overlay
313position.
314</dd> 478<dd>
315<p></p> 479<p>If either <code>$x</code> or <code>$y</code> is negative, then this is counted from the
316<dt><strong><a name="item_scr_overlay_set">$term-&gt;scr_overlay_set ($x, $y, $text)</a></strong><br /> 480right/bottom side, respectively.</p>
317</dt>
318<dd> 481</dd>
319Write a string at the given position into the overlay.
320</dd> 482<dd>
483<p>This method returns an urxvt::overlay object. The overlay will be visible
484as long as the perl object is referenced.</p>
485</dd>
486<dd>
487<p>The methods currently supported on <code>urxvt::overlay</code> objects are:</p>
488</dd>
489<dl>
490<dt><strong><a name="item_set">$overlay-&gt;set ($x, $y, $text, $rend)</a></strong><br />
491</dt>
492<dd>
493Similar to <a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> and <a href="#item_row_r"><code>$term-&gt;ROW_r</code></a> in that it puts
494text in rxvt-unicode's special encoding and an array of rendition values
495at a specific position inside the overlay.
496</dd>
321<p></p> 497<p></p>
498<dt><strong><a name="item_hide">$overlay-&gt;hide</a></strong><br />
499</dt>
500<dd>
501If visible, hide the overlay, but do not destroy it.
502</dd>
503<p></p>
504<dt><strong><a name="item_show">$overlay-&gt;show</a></strong><br />
505</dt>
506<dd>
507If hidden, display the overlay again.
508</dd>
509<p></p></dl>
322<dt><strong><a name="item_strwidth">$cellwidth = $term-&gt;strwidth $string</a></strong><br /> 510<dt><strong><a name="item_strwidth">$cellwidth = $term-&gt;strwidth $string</a></strong><br />
323</dt> 511</dt>
324<dd> 512<dd>
325Returns the number of screen-cells this string would need. Correctly 513Returns the number of screen-cells this string would need. Correctly
326accounts for wide and combining characters. 514accounts for wide and combining characters.
340<p></p> 528<p></p>
341<dt><strong><a name="item_tt_write">$term-&gt;tt_write ($octets)</a></strong><br /> 529<dt><strong><a name="item_tt_write">$term-&gt;tt_write ($octets)</a></strong><br />
342</dt> 530</dt>
343<dd> 531<dd>
344Write the octets given in <code>$data</code> to the tty (i.e. as program input). To 532Write the octets given in <code>$data</code> to the tty (i.e. as program input). To
345pass characters instead of octets, you should convetr you strings first to 533pass characters instead of octets, you should convert your strings first
346the locale-specific encoding using <a href="#item_locale_encode"><code>$term-&gt;locale_encode</code></a>. 534to the locale-specific encoding using <a href="#item_locale_encode"><code>$term-&gt;locale_encode</code></a>.
535</dd>
536<p></p>
537<dt><strong><a name="item_nrow">$nrow = $term-&gt;nrow</a></strong><br />
538</dt>
539<dt><strong><a name="item_ncol">$ncol = $term-&gt;ncol</a></strong><br />
540</dt>
541<dd>
542Return the number of rows/columns of the terminal window (i.e. as
543specified by <code>-geometry</code>, excluding any scrollback).
544</dd>
545<p></p>
546<dt><strong><a name="item_nsaved">$nsaved = $term-&gt;nsaved</a></strong><br />
547</dt>
548<dd>
549Returns the number of lines in the scrollback buffer.
550</dd>
551<p></p>
552<dt><strong><a name="item_view_start">$view_start = $term-&gt;view_start ([$newvalue])</a></strong><br />
553</dt>
554<dd>
555Returns the negative row number of the topmost line. Minimum value is
556<code>0</code>, which displays the normal terminal contents. Larger values scroll
557this many lines into the scrollback buffer.
558</dd>
559<p></p>
560<dt><strong><a name="item_want_refresh">$term-&gt;want_refresh</a></strong><br />
561</dt>
562<dd>
563Requests a screen refresh. At the next opportunity, rxvt-unicode will
564compare the on-screen display with its stored representation. If they
565differ, it redraws the differences.
566</dd>
567<dd>
568<p>Used after changing terminal contents to display them.</p>
569</dd>
570<p></p>
571<dt><strong><a name="item_row_t">$text = $term-&gt;ROW_t ($row_number[, $new_text[, $start_col]])</a></strong><br />
572</dt>
573<dd>
574Returns the text of the entire row with number <code>$row_number</code>. Row <code>0</code>
575is the topmost terminal line, row <code>$term-&gt;$ncol-1</code> is the bottommost
576terminal line. The scrollback buffer starts at line <code>-1</code> and extends to
577line <a href="#item_nsaved"><code>-$term-&gt;nsaved</code></a>. Nothing will be returned if a nonexistent line
578is requested.
579</dd>
580<dd>
581<p>If <code>$new_text</code> is specified, it will replace characters in the current
582line, starting at column <code>$start_col</code> (default <code>0</code>), which is useful
583to replace only parts of a line. The font index in the rendition will
584automatically be updated.</p>
585</dd>
586<dd>
587<p><code>$text</code> is in a special encoding: tabs and wide characters that use more
588than one cell when displayed are padded with urxvt::NOCHAR characters
589(<code>chr 65535</code>). Characters with combining characters and other characters
590that do not fit into the normal tetx encoding will be replaced with
591characters in the private use area.</p>
592</dd>
593<dd>
594<p>You have to obey this encoding when changing text. The advantage is
595that <code>substr</code> and similar functions work on screen cells and not on
596characters.</p>
597</dd>
598<dd>
599<p>The methods <code>$term-&gt;special_encode</code> and <a href="#item_special_decode"><code>$term-&gt;special_decode</code></a>
600can be used to convert normal strings into this encoding and vice versa.</p>
601</dd>
602<p></p>
603<dt><strong><a name="item_row_r">$rend = $term-&gt;ROW_r ($row_number[, $new_rend[, $start_col]])</a></strong><br />
604</dt>
605<dd>
606Like <a href="#item_row_t"><code>$term-&gt;ROW_t</code></a>, but returns an arrayref with rendition
607bitsets. Rendition bitsets contain information about colour, font, font
608styles and similar information. See also <a href="#item_row_t"><code>$term-&gt;ROW_t</code></a>.
609</dd>
610<dd>
611<p>When setting rendition, the font mask will be ignored.</p>
612</dd>
613<dd>
614<p>See the section on RENDITION, above.</p>
615</dd>
616<p></p>
617<dt><strong><a name="item_row_l">$length = $term-&gt;ROW_l ($row_number[, $new_length])</a></strong><br />
618</dt>
619<dd>
620Returns the number of screen cells that are in use (``the line
621length''). Unlike the urxvt core, this returns <a href="#item_ncol"><code>$term-&gt;ncol</code></a> if the
622line is joined with the following one.
623</dd>
624<p></p>
625<dt><strong><a name="item_is_longer">$bool = $term-&gt;is_longer ($row_number)</a></strong><br />
626</dt>
627<dd>
628Returns true if the row is part of a multiple-row logical ``line'' (i.e.
629joined with the following row), which means all characters are in use
630and it is continued on the next row (and possibly a continuation of the
631previous row(s)).
632</dd>
633<p></p>
634<dt><strong><a name="item_line">$line = $term-&gt;line ($row_number)</a></strong><br />
635</dt>
636<dd>
637Create and return a new <code>urxvt::line</code> object that stores information
638about the logical line that row <code>$row_number</code> is part of. It supports the
639following methods:
640</dd>
641<dl>
642<dt><strong><a name="item_t">$text = $line-&gt;t</a></strong><br />
643</dt>
644<dd>
645Returns the full text of the line, similar to <a href="#item_row_t"><code>ROW_t</code></a>
646</dd>
647<p></p>
648<dt><strong><a name="item_r">$rend = $line-&gt;r</a></strong><br />
649</dt>
650<dd>
651Returns the full rendition array of the line, similar to <a href="#item_row_r"><code>ROW_r</code></a>
652</dd>
653<p></p>
654<dt><strong><a name="item_l">$length = $line-&gt;l</a></strong><br />
655</dt>
656<dd>
657Returns the length of the line in cells, similar to <a href="#item_row_l"><code>ROW_l</code></a>.
658</dd>
659<p></p>
660<dt><strong><a name="item_beg">$rownum = $line-&gt;beg</a></strong><br />
661</dt>
662<dt><strong><a name="item_end">$rownum = $line-&gt;end</a></strong><br />
663</dt>
664<dd>
665Return the row number of the first/last row of the line, respectively.
666</dd>
667<p></p>
668<dt><strong><a name="item_offset_of">$offset = $line-&gt;offset_of ($row, $col)</a></strong><br />
669</dt>
670<dd>
671Returns the character offset of the given row|col pair within the logical
672line.
673</dd>
674<p></p>
675<dt><strong><a name="item_coord_of">($row, $col) = $line-&gt;coord_of ($offset)</a></strong><br />
676</dt>
677<dd>
678Translates a string offset into terminal coordinates again.
679</dd>
680<p></p></dl>
681<dt><strong>($row, $col) = $line-&gt;coord_of ($offset)
682=item $text = $term-&gt;special_encode $string</strong><br />
683</dt>
684<dd>
685Converts a perl string into the special encoding used by rxvt-unicode,
686where one character corresponds to one screen cell. See
687<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
688</dd>
689<p></p>
690<dt><strong><a name="item_special_decode">$string = $term-&gt;special_decode $text</a></strong><br />
691</dt>
692<dd>
693Converts rxvt-unicodes text reprsentation into a perl string. See
694<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
347</dd> 695</dd>
348<p></p></dl> 696<p></p></dl>
349<p> 697<p>
350</p> 698</p>
351<h2><a name="the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></h2> 699<h2><a name="the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></h2>
352<p>This class implements timer watchers/events. Time is represented as a 700<p>This class implements timer watchers/events. Time is represented as a
353fractional number of seconds since the epoch. Example:</p> 701fractional number of seconds since the epoch. Example:</p>
354<pre> 702<pre>
355 # create a digital clock display in upper right corner 703 $term-&gt;{overlay} = $term-&gt;overlay (-1, 0, 8, 1, urxvt::OVERLAY_RSTYLE, 0);
356 $term-&gt;{timer} = urxvt::timer 704 $term-&gt;{timer} = urxvt::timer
357 -&gt;new 705 -&gt;new
358 -&gt;start (urxvt::NOW) 706 -&gt;interval (1)
359 -&gt;cb (sub { 707 -&gt;cb (sub {
360 my ($timer) = @_;
361 my $time = $timer-&gt;at;
362 $timer-&gt;start ($time + 1);
363 $self-&gt;scr_overlay (-1, 0, 708 $term-&gt;{overlay}-&gt;set (0, 0,
364 POSIX::strftime &quot;%H:%M:%S&quot;, localtime $time); 709 sprintf &quot;%2d:%02d:%02d&quot;, (localtime urxvt::NOW)[2,1,0]);
365 });</pre> 710 });</pre>
366<dl> 711<dl>
367<dt><strong><a name="item__24timer__3d_new_urxvt_3a_3atimer">$timer = new urxvt::timer</a></strong><br /> 712<dt><strong><a name="item__24timer__3d_new_urxvt_3a_3atimer">$timer = new urxvt::timer</a></strong><br />
368</dt> 713</dt>
369<dd> 714<dd>
370Create a new timer object in stopped state. 715Create a new timer object in started state. It is scheduled to fire
716immediately.
371</dd> 717</dd>
372<p></p> 718<p></p>
373<dt><strong><a name="item_cb">$timer = $timer-&gt;cb (sub { my ($timer) = @_; ... })</a></strong><br /> 719<dt><strong><a name="item_cb">$timer = $timer-&gt;cb (sub { my ($timer) = @_; ... })</a></strong><br />
374</dt> 720</dt>
375<dd> 721<dd>
380</dt> 726</dt>
381<dd> 727<dd>
382Return the time this watcher will fire next. 728Return the time this watcher will fire next.
383</dd> 729</dd>
384<p></p> 730<p></p>
385<dt><strong><a name="item_set">$timer = $timer-&gt;set ($tstamp)</a></strong><br /> 731<dt><strong>$timer = $timer-&gt;set ($tstamp)</strong><br />
386</dt> 732</dt>
387<dd> 733<dd>
388Set the time the event is generated to $tstamp. 734Set the time the event is generated to $tstamp.
735</dd>
736<p></p>
737<dt><strong><a name="item_interval">$timer = $timer-&gt;interval ($interval)</a></strong><br />
738</dt>
739<dd>
740Normally (and when <code>$interval</code> is <code>0</code>), the timer will automatically
741stop after it has fired once. If <code>$interval</code> is non-zero, then the timer
742is automatically rescheduled at the given intervals.
389</dd> 743</dd>
390<p></p> 744<p></p>
391<dt><strong><a name="item_start">$timer = $timer-&gt;start</a></strong><br /> 745<dt><strong><a name="item_start">$timer = $timer-&gt;start</a></strong><br />
392</dt> 746</dt>
393<dd> 747<dd>
469<p> 823<p>
470</p> 824</p>
471<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2> 825<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2>
472<p>This variable controls the verbosity level of the perl extension. Higher 826<p>This variable controls the verbosity level of the perl extension. Higher
473numbers indicate more verbose output.</p> 827numbers indicate more verbose output.</p>
474<ol> 828<dl>
475<li><strong><a name="item__2d_only_fatal_messages">- only fatal messages</a></strong><br /> 829<dt><strong><a name="item__3d0__2d_only_fatal_messages">=0 - only fatal messages</a></strong><br />
476</li> 830</dt>
477<li><strong><a name="item__2d_script_loading_and_management">- script loading and management</a></strong><br /> 831<dt><strong><a name="item__3d3__2d_script_loading_and_management">=3 - script loading and management</a></strong><br />
478</li> 832</dt>
479<li><strong><a name="item__2d_all_events_received">- all events received</a></strong><br /> 833<dt><strong><a name="item__3d10__2d_all_events_received">=10 - all events received</a></strong><br />
834</dt>
480</li> 835</dl>
481</ol>
482<p> 836<p>
483</p> 837</p>
484<hr /> 838<hr />
485<h1><a name="author">AUTHOR</a></h1> 839<h1><a name="author">AUTHOR</a></h1>
486<pre> 840<pre>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines