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.5 by root, Mon Jan 2 21:41:51 2006 UTC vs.
Revision 1.13 by root, Wed Jan 4 21:37:55 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 />
62<p>Everytime a terminal object gets created, scripts specified via the 66<p>Everytime a terminal object gets created, scripts specified via the
63<code>perl</code> resource are loaded and associated with it.</p> 67<code>perl</code> resource are loaded and associated with it.</p>
64<p>Scripts are compiled in a 'use strict' and 'use utf8' environment, and 68<p>Scripts are compiled in a 'use strict' and 'use utf8' environment, and
65thus must be encoded as UTF-8.</p> 69thus must be encoded as UTF-8.</p>
66<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
67scripts 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>
68<p> 117<p>
69</p> 118</p>
70<h2><a name="general_api_considerations">General API Considerations</a></h2> 119<h2><a name="general_api_considerations">General API Considerations</a></h2>
71<p>All objects (such as terminals, time watchers etc.) are typical 120<p>All objects (such as terminals, time watchers etc.) are typical
72reference-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
73like. 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
74<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
75modified).</p> 124modified).</p>
76<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
77emptied, 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
78the 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
79terminal is destroyed.</p> 128terminal is destroyed.</p>
80<p> 129<p>
81</p> 130</p>
82<h2><a name="hooks">Hooks</a></h2> 131<h2><a name="hooks">Hooks</a></h2>
83<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
84whenever 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>
85<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
86counts 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,
87and 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>
88<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>
89<dl> 143<dl>
130</dd> 184</dd>
131<dd> 185<dd>
132<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>
133</dd> 187</dd>
134<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>
135<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 />
136</dt> 202</dt>
137<dd> 203<dd>
138Called whenever the window gets the keyboard focus, before urxvt does 204Called whenever the window gets the keyboard focus, before urxvt does
139focus in processing. 205focus in processing.
169<p></p> 235<p></p>
170<dt><strong><a name="item_on_tty_activity__24term__2anyi_2a">on_tty_activity $term *NYI*</a></strong><br /> 236<dt><strong><a name="item_on_tty_activity__24term__2anyi_2a">on_tty_activity $term *NYI*</a></strong><br />
171</dt> 237</dt>
172<dd> 238<dd>
173Called whenever the <code>program(s)</code> running in the urxvt window send output. 239Called whenever the <code>program(s)</code> running in the urxvt window send output.
240</dd>
241<p></p>
242<dt><strong><a name="item_on_osc_seq__24term_2c__24string">on_osc_seq $term, $string</a></strong><br />
243</dt>
244<dd>
245Called whenever the <strong>ESC ] 777 ; string ST</strong> command sequence (OSC =
246operating system command) is processed. Cursor position and other state
247information is up-to-date when this happens. For interoperability, the
248string should start with the extension name and a colon, to distinguish
249it from commands for other extensions, and this might be enforced in the
250future.
251</dd>
252<dd>
253<p>Be careful not ever to trust (in a security sense) the data you receive,
254as its source can not easily be controleld (e-mail content, messages from
255other users on the same system etc.).</p>
174</dd> 256</dd>
175<p></p> 257<p></p>
176<dt><strong><a name="item_on_refresh_begin__24term">on_refresh_begin $term</a></strong><br /> 258<dt><strong><a name="item_on_refresh_begin__24term">on_refresh_begin $term</a></strong><br />
177</dt> 259</dt>
178<dd> 260<dd>
196resource in the <code>rxvt(1)</code> manpage). 278resource in the <code>rxvt(1)</code> manpage).
197</dd> 279</dd>
198<p></p></dl> 280<p></p></dl>
199<p> 281<p>
200</p> 282</p>
283<h2><a name="variables_in_the_urxvt_package">Variables in the <code>urxvt</code> Package</a></h2>
284<dl>
285<dt><strong><a name="item__24urxvt_3a_3aterm">$urxvt::TERM</a></strong><br />
286</dt>
287<dd>
288The current terminal. Whenever a callback/Hook is bein executed, this
289variable stores the current <code>urxvt::term</code> object.
290</dd>
291<p></p></dl>
292<p>
293</p>
201<h2><a name="functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></h2> 294<h2><a name="functions_in_the_urxvt_package">Functions in the <code>urxvt</code> Package</a></h2>
202<dl> 295<dl>
203<dt><strong><a name="item_urxvt_3a_3afatal__24errormessage">urxvt::fatal $errormessage</a></strong><br /> 296<dt><strong><a name="item_urxvt_3a_3afatal__24errormessage">urxvt::fatal $errormessage</a></strong><br />
204</dt> 297</dt>
205<dd> 298<dd>
222<p></p> 315<p></p>
223<dt><strong><a name="item__24time__3d_urxvt_3a_3anow">$time = urxvt::NOW</a></strong><br /> 316<dt><strong><a name="item__24time__3d_urxvt_3a_3anow">$time = urxvt::NOW</a></strong><br />
224</dt> 317</dt>
225<dd> 318<dd>
226Returns the ``current time'' (as per the event loop). 319Returns the ``current time'' (as per the event loop).
320</dd>
321<p></p></dl>
322<p>
323</p>
324<h2><a name="rendition">RENDITION</a></h2>
325<p>Rendition bitsets contain information about colour, font, font styles and
326similar information for each screen cell.</p>
327<p>The following ``macros'' deal with changes in rendition sets. You should
328never just create a bitset, you should always modify an existing one,
329as they contain important information required for correct operation of
330rxvt-unicode.</p>
331<dl>
332<dt><strong><a name="item__24rend__3d_urxvt_3a_3adefault_rstyle">$rend = urxvt::DEFAULT_RSTYLE</a></strong><br />
333</dt>
334<dd>
335Returns the default rendition, as used when the terminal is starting up or
336being reset. Useful as a base to start when creating renditions.
337</dd>
338<p></p>
339<dt><strong><a name="item__24rend__3d_urxvt_3a_3aoverlay_rstyle">$rend = urxvt::OVERLAY_RSTYLE</a></strong><br />
340</dt>
341<dd>
342Return the rendition mask used for overlays by default.
343</dd>
344<p></p>
345<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 />
346</dt>
347<dd>
348Return the bit that enabled bold, italic, blink, reverse-video and
349underline, respectively. To enable such a style, just logically OR it into
350the bitset.
351</dd>
352<p></p>
353<dt><strong><a name="item__24foreground__3d_urxvt_3a_3aget_basefg__24rend">$foreground = urxvt::GET_BASEFG $rend</a></strong><br />
354</dt>
355<dt><strong><a name="item__24background__3d_urxvt_3a_3aget_basebg__24rend">$background = urxvt::GET_BASEBG $rend</a></strong><br />
356</dt>
357<dd>
358Return the foreground/background colour index, respectively.
359</dd>
360<p></p>
361<dt><strong><a name="item_set_fgcolor">$rend = urxvt::SET_FGCOLOR ($rend, $new_colour)</a></strong><br />
362</dt>
363<dt><strong><a name="item_set_bgcolor">$rend = urxvt::SET_BGCOLOR ($rend, $new_colour)</a></strong><br />
364</dt>
365<dd>
366Replace the foreground/background colour in the rendition mask with the
367specified one.
368</dd>
369<p></p>
370<dt><strong><a name="item_get_custom">$value = urxvt::GET_CUSTOM ($rend)</a></strong><br />
371</dt>
372<dd>
373Return the ``custom'' value: Every rendition has 5 bits for use by
374extensions. They can be set and changed as you like and are initially
375zero.
376</dd>
377<p></p>
378<dt><strong><a name="item_set_custom">$rend = urxvt::SET_CUSTOM ($rend, $new_value)</a></strong><br />
379</dt>
380<dd>
381Change the custom value.
227</dd> 382</dd>
228<p></p></dl> 383<p></p></dl>
229<p> 384<p>
230</p> 385</p>
231<h2><a name="the_urxvt__term_class">The <code>urxvt::term</code> Class</a></h2> 386<h2><a name="the_urxvt__term_class">The <code>urxvt::term</code> Class</a></h2>
261 answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont 416 answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
262 borderLess color cursorBlink cursorUnderline cutchars delete_key 417 borderLess color cursorBlink cursorUnderline cutchars delete_key
263 display_name embed ext_bwidth fade font geometry hold iconName 418 display_name embed ext_bwidth fade font geometry hold iconName
264 imFont imLocale inputMethod insecure int_bwidth intensityStyles 419 imFont imLocale inputMethod insecure int_bwidth intensityStyles
265 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier 420 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier
266 mouseWheelScrollPage name pastableTabs path perl_eval perl_ext 421 mouseWheelScrollPage name pastableTabs path perl_eval perl_ext_1 perl_ext_2
267 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd 422 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd
268 reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating 423 reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating
269 scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput 424 scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput
270 scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle 425 scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle
271 shade term_name title transparent transparent_all tripleclickwords 426 shade term_name title transparent transparent_all tripleclickwords
272 utmpInhibit visualBell</pre> 427 utmpInhibit visualBell</pre>
273</dd> 428</dd>
274<p></p> 429<p></p>
430<dt><strong><a name="item_screen_rstyle">$rend = $term-&gt;screen_rstyle ([$new_rstyle])</a></strong><br />
431</dt>
432<dd>
433Return and optionally change the current rendition. Text thta is output by
434the temrianl application will use this style.
435</dd>
436<p></p>
437<dt><strong><a name="item_screen_cur">($row, $col) = $term-&gt;screen_cur ([$row, $col])</a></strong><br />
438</dt>
439<dd>
440Return the current coordinates of the text cursor position and optionally
441set it (which is usually bad as applications don't expect that).
442</dd>
443<p></p>
275<dt><strong><a name="item_selection_mark">($row, $col) = $term-&gt;selection_mark ([$row, $col])</a></strong><br /> 444<dt><strong><a name="item_selection_mark">($row, $col) = $term-&gt;selection_mark ([$row, $col])</a></strong><br />
276</dt> 445</dt>
277<dt><strong><a name="item_selection_beg">($row, $col) = $term-&gt;selection_beg ([$row, $col])</a></strong><br /> 446<dt><strong><a name="item_selection_beg">($row, $col) = $term-&gt;selection_beg ([$row, $col])</a></strong><br />
278</dt> 447</dt>
279<dt><strong><a name="item_selection_end">($row, $col) = $term-&gt;selection_end ([$row, $col])</a></strong><br /> 448<dt><strong><a name="item_selection_end">($row, $col) = $term-&gt;selection_end ([$row, $col])</a></strong><br />
288<dd> 457<dd>
289Try to request the primary selection from the server (for example, as set 458Try to request the primary selection from the server (for example, as set
290by the next method). 459by the next method).
291</dd> 460</dd>
292<p></p> 461<p></p>
293<dt><strong><a name="item_selection">$oldtext = $term-&gt;selection ([$newtext])</a></strong><br /> 462<dt><strong>$oldtext = $term-&gt;selection ([$newtext])</strong><br />
294</dt> 463</dt>
295<dd> 464<dd>
296Return the current selection text and optionally replace it by <code>$newtext</code>. 465Return the current selection text and optionally replace it by <code>$newtext</code>.
297</dd> 466</dd>
298<p></p>
299<dt><strong><a name="item_scr_overlay">$term-&gt;scr_overlay ($x, $y, $text)</a></strong><br />
300</dt>
301<dd> 467<dd>
468<p>#=item $term-&gt;overlay ($x, $y, $text)
469#
302Create a simple multi-line overlay box. See the next method for details. 470#Create a simple multi-line overlay box. See the next method for details.
471#
472#=cut</p>
473</dd>
303</dd> 474<dd>
475<p>sub urxvt::term::scr_overlay {
476die;
477 my ($self, $x, $y, $text) = @_;</p>
478</dd>
479<dd>
480<pre>
481 my @lines = split /\n/, $text;</pre>
482</dd>
483<dd>
484<pre>
485 my $w = 0;
486 for (map $self-&gt;strwidth ($_), @lines) {
487 $w = $_ if $w &lt; $_;
488 }</pre>
489</dd>
490<dd>
491<pre>
492 $self-&gt;scr_overlay_new ($x, $y, $w, scalar @lines);
493 $self-&gt;scr_overlay_set (0, $_, $lines[$_]) for 0.. $#lines;
494}</pre>
495</dd>
304<p></p> 496<p></p>
305<dt><strong><a name="item_scr_overlay_new">$term-&gt;scr_overlay_new ($x, $y, $width, $height)</a></strong><br /> 497<dt><strong><a name="item_overlay">$term-&gt;overlay ($x, $y, $width, $height[, $rstyle[, $border]])</a></strong><br />
306</dt> 498</dt>
307<dd> 499<dd>
308Create a new (empty) overlay at the given position with the given 500Create a new (empty) overlay at the given position with the given
309width/height. A border will be put around the box. If either <code>$x</code> or 501width/height. <code>$rstyle</code> defines the initial rendition style
310<code>$y</code> is negative, then this is counted from the right/bottom side, 502(default: <code>OVERLAY_RSTYLE</code>).
311respectively.
312</dd>
313<p></p>
314<dt><strong><a name="item_scr_overlay_off">$term-&gt;scr_overlay_off</a></strong><br />
315</dt>
316<dd> 503</dd>
317Switch the overlay off again.
318</dd> 504<dd>
319<p></p> 505<p>If <code>$border</code> is <code>2</code> (default), then a decorative border will be put
320<dt><strong><a name="item_scr_overlay_set_char">$term-&gt;scr_overlay_set_char ($x, $y, $char, $rend = OVERLAY_RSTYLE)</a></strong><br /> 506around the box.</p>
321</dt>
322<dd> 507</dd>
323Put a single character (specified numerically) at the given overlay
324position.
325</dd> 508<dd>
326<p></p> 509<p>If either <code>$x</code> or <code>$y</code> is negative, then this is counted from the
327<dt><strong><a name="item_scr_overlay_set">$term-&gt;scr_overlay_set ($x, $y, $text)</a></strong><br /> 510right/bottom side, respectively.</p>
328</dt>
329<dd> 511</dd>
330Write a string at the given position into the overlay.
331</dd> 512<dd>
513<p>This method returns an urxvt::overlay object. The overlay will be visible
514as long as the perl object is referenced.</p>
515</dd>
516<dd>
517<p>The methods currently supported on <code>urxvt::overlay</code> objects are:</p>
518</dd>
519<dl>
520<dt><strong><a name="item_set">$overlay-&gt;set ($x, $y, $text, $rend)</a></strong><br />
521</dt>
522<dd>
523Similar 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
524text in rxvt-unicode's special encoding and an array of rendition values
525at a specific position inside the overlay.
526</dd>
332<p></p> 527<p></p>
528<dt><strong><a name="item_hide">$overlay-&gt;hide</a></strong><br />
529</dt>
530<dd>
531If visible, hide the overlay, but do not destroy it.
532</dd>
533<p></p>
534<dt><strong><a name="item_show">$overlay-&gt;show</a></strong><br />
535</dt>
536<dd>
537If hidden, display the overlay again.
538</dd>
539<p></p></dl>
333<dt><strong><a name="item_strwidth">$cellwidth = $term-&gt;strwidth $string</a></strong><br /> 540<dt><strong><a name="item_strwidth">$cellwidth = $term-&gt;strwidth $string</a></strong><br />
334</dt> 541</dt>
335<dd> 542<dd>
336Returns the number of screen-cells this string would need. Correctly 543Returns the number of screen-cells this string would need. Correctly
337accounts for wide and combining characters. 544accounts for wide and combining characters.
351<p></p> 558<p></p>
352<dt><strong><a name="item_tt_write">$term-&gt;tt_write ($octets)</a></strong><br /> 559<dt><strong><a name="item_tt_write">$term-&gt;tt_write ($octets)</a></strong><br />
353</dt> 560</dt>
354<dd> 561<dd>
355Write the octets given in <code>$data</code> to the tty (i.e. as program input). To 562Write the octets given in <code>$data</code> to the tty (i.e. as program input). To
356pass characters instead of octets, you should convetr you strings first to 563pass characters instead of octets, you should convert your strings first
357the locale-specific encoding using <a href="#item_locale_encode"><code>$term-&gt;locale_encode</code></a>. 564to the locale-specific encoding using <a href="#item_locale_encode"><code>$term-&gt;locale_encode</code></a>.
565</dd>
566<p></p>
567<dt><strong><a name="item_width">$window_width = $term-&gt;width</a></strong><br />
568</dt>
569<dt><strong><a name="item_height">$window_height = $term-&gt;height</a></strong><br />
570</dt>
571<dt><strong><a name="item_fwidth">$font_width = $term-&gt;fwidth</a></strong><br />
572</dt>
573<dt><strong><a name="item_fheight">$font_height = $term-&gt;fheight</a></strong><br />
574</dt>
575<dt><strong><a name="item_fbase">$font_ascent = $term-&gt;fbase</a></strong><br />
576</dt>
577<dt><strong><a name="item_nrow">$terminal_rows = $term-&gt;nrow</a></strong><br />
578</dt>
579<dt><strong><a name="item_ncol">$terminal_columns = $term-&gt;ncol</a></strong><br />
580</dt>
581<dt><strong><a name="item_focus">$has_focus = $term-&gt;focus</a></strong><br />
582</dt>
583<dt><strong><a name="item_mapped">$is_mapped = $term-&gt;mapped</a></strong><br />
584</dt>
585<dt><strong><a name="item_savelines">$max_scrollback = $term-&gt;saveLines</a></strong><br />
586</dt>
587<dt><strong><a name="item_total_rows">$nrow_plus_saveLines = $term-&gt;total_rows</a></strong><br />
588</dt>
589<dt><strong><a name="item_nsaved">$lines_in_scrollback = $term-&gt;nsaved</a></strong><br />
590</dt>
591<dd>
592Return various integers describing terminal characteristics.
593</dd>
594<p></p>
595<dt><strong><a name="item_view_start">$view_start = $term-&gt;view_start ([$newvalue])</a></strong><br />
596</dt>
597<dd>
598Returns the negative row number of the topmost line. Minimum value is
599<code>0</code>, which displays the normal terminal contents. Larger values scroll
600this many lines into the scrollback buffer.
601</dd>
602<p></p>
603<dt><strong><a name="item_want_refresh">$term-&gt;want_refresh</a></strong><br />
604</dt>
605<dd>
606Requests a screen refresh. At the next opportunity, rxvt-unicode will
607compare the on-screen display with its stored representation. If they
608differ, it redraws the differences.
609</dd>
610<dd>
611<p>Used after changing terminal contents to display them.</p>
612</dd>
613<p></p>
614<dt><strong><a name="item_row_t">$text = $term-&gt;ROW_t ($row_number[, $new_text[, $start_col]])</a></strong><br />
615</dt>
616<dd>
617Returns the text of the entire row with number <code>$row_number</code>. Row <code>0</code>
618is the topmost terminal line, row <code>$term-&gt;$ncol-1</code> is the bottommost
619terminal line. The scrollback buffer starts at line <code>-1</code> and extends to
620line <a href="#item_nsaved"><code>-$term-&gt;nsaved</code></a>. Nothing will be returned if a nonexistent line
621is requested.
622</dd>
623<dd>
624<p>If <code>$new_text</code> is specified, it will replace characters in the current
625line, starting at column <code>$start_col</code> (default <code>0</code>), which is useful
626to replace only parts of a line. The font index in the rendition will
627automatically be updated.</p>
628</dd>
629<dd>
630<p><code>$text</code> is in a special encoding: tabs and wide characters that use more
631than one cell when displayed are padded with urxvt::NOCHAR characters
632(<code>chr 65535</code>). Characters with combining characters and other characters
633that do not fit into the normal tetx encoding will be replaced with
634characters in the private use area.</p>
635</dd>
636<dd>
637<p>You have to obey this encoding when changing text. The advantage is
638that <code>substr</code> and similar functions work on screen cells and not on
639characters.</p>
640</dd>
641<dd>
642<p>The methods <code>$term-&gt;special_encode</code> and <a href="#item_special_decode"><code>$term-&gt;special_decode</code></a>
643can be used to convert normal strings into this encoding and vice versa.</p>
644</dd>
645<p></p>
646<dt><strong><a name="item_row_r">$rend = $term-&gt;ROW_r ($row_number[, $new_rend[, $start_col]])</a></strong><br />
647</dt>
648<dd>
649Like <a href="#item_row_t"><code>$term-&gt;ROW_t</code></a>, but returns an arrayref with rendition
650bitsets. Rendition bitsets contain information about colour, font, font
651styles and similar information. See also <a href="#item_row_t"><code>$term-&gt;ROW_t</code></a>.
652</dd>
653<dd>
654<p>When setting rendition, the font mask will be ignored.</p>
655</dd>
656<dd>
657<p>See the section on RENDITION, above.</p>
658</dd>
659<p></p>
660<dt><strong><a name="item_row_l">$length = $term-&gt;ROW_l ($row_number[, $new_length])</a></strong><br />
661</dt>
662<dd>
663Returns the number of screen cells that are in use (``the line
664length''). Unlike the urxvt core, this returns <a href="#item_ncol"><code>$term-&gt;ncol</code></a> if the
665line is joined with the following one.
666</dd>
667<p></p>
668<dt><strong><a name="item_is_longer">$bool = $term-&gt;is_longer ($row_number)</a></strong><br />
669</dt>
670<dd>
671Returns true if the row is part of a multiple-row logical ``line'' (i.e.
672joined with the following row), which means all characters are in use
673and it is continued on the next row (and possibly a continuation of the
674previous row(s)).
675</dd>
676<p></p>
677<dt><strong><a name="item_line">$line = $term-&gt;line ($row_number)</a></strong><br />
678</dt>
679<dd>
680Create and return a new <code>urxvt::line</code> object that stores information
681about the logical line that row <code>$row_number</code> is part of. It supports the
682following methods:
683</dd>
684<dl>
685<dt><strong><a name="item_t">$text = $line-&gt;t</a></strong><br />
686</dt>
687<dd>
688Returns the full text of the line, similar to <a href="#item_row_t"><code>ROW_t</code></a>
689</dd>
690<p></p>
691<dt><strong><a name="item_r">$rend = $line-&gt;r</a></strong><br />
692</dt>
693<dd>
694Returns the full rendition array of the line, similar to <a href="#item_row_r"><code>ROW_r</code></a>
695</dd>
696<p></p>
697<dt><strong><a name="item_l">$length = $line-&gt;l</a></strong><br />
698</dt>
699<dd>
700Returns the length of the line in cells, similar to <a href="#item_row_l"><code>ROW_l</code></a>.
701</dd>
702<p></p>
703<dt><strong><a name="item_beg">$rownum = $line-&gt;beg</a></strong><br />
704</dt>
705<dt><strong><a name="item_end">$rownum = $line-&gt;end</a></strong><br />
706</dt>
707<dd>
708Return the row number of the first/last row of the line, respectively.
709</dd>
710<p></p>
711<dt><strong><a name="item_offset_of">$offset = $line-&gt;offset_of ($row, $col)</a></strong><br />
712</dt>
713<dd>
714Returns the character offset of the given row|col pair within the logical
715line.
716</dd>
717<p></p>
718<dt><strong><a name="item_coord_of">($row, $col) = $line-&gt;coord_of ($offset)</a></strong><br />
719</dt>
720<dd>
721Translates a string offset into terminal coordinates again.
722</dd>
723<p></p></dl>
724<dt><strong>($row, $col) = $line-&gt;coord_of ($offset)
725=item $text = $term-&gt;special_encode $string</strong><br />
726</dt>
727<dd>
728Converts a perl string into the special encoding used by rxvt-unicode,
729where one character corresponds to one screen cell. See
730<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
731</dd>
732<p></p>
733<dt><strong><a name="item_special_decode">$string = $term-&gt;special_decode $text</a></strong><br />
734</dt>
735<dd>
736Converts rxvt-unicodes text reprsentation into a perl string. See
737<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
358</dd> 738</dd>
359<p></p></dl> 739<p></p></dl>
360<p> 740<p>
361</p> 741</p>
362<h2><a name="the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></h2> 742<h2><a name="the_urxvt__timer_class">The <code>urxvt::timer</code> Class</a></h2>
363<p>This class implements timer watchers/events. Time is represented as a 743<p>This class implements timer watchers/events. Time is represented as a
364fractional number of seconds since the epoch. Example:</p> 744fractional number of seconds since the epoch. Example:</p>
365<pre> 745<pre>
366 # create a digital clock display in upper right corner 746 $term-&gt;{overlay} = $term-&gt;overlay (-1, 0, 8, 1, urxvt::OVERLAY_RSTYLE, 0);
367 $term-&gt;{timer} = urxvt::timer 747 $term-&gt;{timer} = urxvt::timer
368 -&gt;new 748 -&gt;new
369 -&gt;start (urxvt::NOW) 749 -&gt;interval (1)
370 -&gt;cb (sub { 750 -&gt;cb (sub {
371 my ($timer) = @_;
372 my $time = $timer-&gt;at;
373 $timer-&gt;start ($time + 1);
374 $self-&gt;scr_overlay (-1, 0, 751 $term-&gt;{overlay}-&gt;set (0, 0,
375 POSIX::strftime &quot;%H:%M:%S&quot;, localtime $time); 752 sprintf &quot;%2d:%02d:%02d&quot;, (localtime urxvt::NOW)[2,1,0]);
376 });</pre> 753 });</pre>
377<dl> 754<dl>
378<dt><strong><a name="item__24timer__3d_new_urxvt_3a_3atimer">$timer = new urxvt::timer</a></strong><br /> 755<dt><strong><a name="item__24timer__3d_new_urxvt_3a_3atimer">$timer = new urxvt::timer</a></strong><br />
379</dt> 756</dt>
380<dd> 757<dd>
381Create a new timer object in stopped state. 758Create a new timer object in started state. It is scheduled to fire
759immediately.
382</dd> 760</dd>
383<p></p> 761<p></p>
384<dt><strong><a name="item_cb">$timer = $timer-&gt;cb (sub { my ($timer) = @_; ... })</a></strong><br /> 762<dt><strong><a name="item_cb">$timer = $timer-&gt;cb (sub { my ($timer) = @_; ... })</a></strong><br />
385</dt> 763</dt>
386<dd> 764<dd>
391</dt> 769</dt>
392<dd> 770<dd>
393Return the time this watcher will fire next. 771Return the time this watcher will fire next.
394</dd> 772</dd>
395<p></p> 773<p></p>
396<dt><strong><a name="item_set">$timer = $timer-&gt;set ($tstamp)</a></strong><br /> 774<dt><strong>$timer = $timer-&gt;set ($tstamp)</strong><br />
397</dt> 775</dt>
398<dd> 776<dd>
399Set the time the event is generated to $tstamp. 777Set the time the event is generated to $tstamp.
778</dd>
779<p></p>
780<dt><strong><a name="item_interval">$timer = $timer-&gt;interval ($interval)</a></strong><br />
781</dt>
782<dd>
783Normally (and when <code>$interval</code> is <code>0</code>), the timer will automatically
784stop after it has fired once. If <code>$interval</code> is non-zero, then the timer
785is automatically rescheduled at the given intervals.
400</dd> 786</dd>
401<p></p> 787<p></p>
402<dt><strong><a name="item_start">$timer = $timer-&gt;start</a></strong><br /> 788<dt><strong><a name="item_start">$timer = $timer-&gt;start</a></strong><br />
403</dt> 789</dt>
404<dd> 790<dd>
480<p> 866<p>
481</p> 867</p>
482<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2> 868<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2>
483<p>This variable controls the verbosity level of the perl extension. Higher 869<p>This variable controls the verbosity level of the perl extension. Higher
484numbers indicate more verbose output.</p> 870numbers indicate more verbose output.</p>
485<ol> 871<dl>
486<li><strong><a name="item__2d_only_fatal_messages">- only fatal messages</a></strong><br /> 872<dt><strong><a name="item__3d0__2d_only_fatal_messages">=0 - only fatal messages</a></strong><br />
487</li> 873</dt>
488<li><strong><a name="item__2d_script_loading_and_management">- script loading and management</a></strong><br /> 874<dt><strong><a name="item__3d3__2d_script_loading_and_management">=3 - script loading and management</a></strong><br />
489</li> 875</dt>
490<li><strong><a name="item__2d_all_events_received">- all events received</a></strong><br /> 876<dt><strong><a name="item__3d10__2d_all_events_received">=10 - all events received</a></strong><br />
877</dt>
491</li> 878</dl>
492</ol>
493<p> 879<p>
494</p> 880</p>
495<hr /> 881<hr />
496<h1><a name="author">AUTHOR</a></h1> 882<h1><a name="author">AUTHOR</a></h1>
497<pre> 883<pre>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines