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.7 by root, Tue Jan 3 01:45:12 2006 UTC vs.
Revision 1.10 by root, Tue Jan 3 23:41:37 2006 UTC

18 <ul> 18 <ul>
19 19
20 <li><a href="#prepackaged_extensions">Prepackaged Extensions</a></li> 20 <li><a href="#prepackaged_extensions">Prepackaged Extensions</a></li>
21 <li><a href="#general_api_considerations">General API Considerations</a></li> 21 <li><a href="#general_api_considerations">General API Considerations</a></li>
22 <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>
23 <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>
24 <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>
25 <li><a href="#rendition">RENDITION</a></li>
26 <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>
27 <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>
28 </ul> 29 </ul>
29 30
30 <li><a href="#environment">ENVIRONMENT</a></li> 31 <li><a href="#environment">ENVIRONMENT</a></li>
78 rxvt -pe &lt;extensionname&gt;</pre> 79 rxvt -pe &lt;extensionname&gt;</pre>
79<dl> 80<dl>
80<dt><strong><a name="item_selection">selection</a></strong><br /> 81<dt><strong><a name="item_selection">selection</a></strong><br />
81</dt> 82</dt>
82<dd> 83<dd>
83Miscellaneous selection modifications. 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>
84</dd> 91</dd>
85<dl> 92<dl>
86<dt><strong><a name="item_rot13">rot13</a></strong><br /> 93<dt><strong><a name="item_rot13">rot13</a></strong><br />
87</dt> 94</dt>
88<dd> 95<dd>
92<pre> 99<pre>
93 URxvt.keysym.C-M-r: perl:selection:rot13</pre> 100 URxvt.keysym.C-M-r: perl:selection:rot13</pre>
94</dd> 101</dd>
95<p></p></dl> 102<p></p></dl>
96<dt><strong><a name="item_digital_2dclock">digital-clock</a></strong><br /> 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 />
97</dt> 110</dt>
98<dd> 111<dd>
99Displays a very simple digital clock in the upper right corner of the 112Displays a very simple digital clock in the upper right corner of the
100window. Illustrates overwriting the refresh callbacks to create your own 113window. Illustrates overwriting the refresh callbacks to create your own
101overlays or changes. 114overlays or changes.
102</dd>
103<p></p>
104<dt><strong><a name="item_simple_2doverlay_2dclock">simple-overlay-clock</a></strong><br />
105</dt>
106<dd>
107Displays a digital clock using the built-in overlay (colorful, useless).
108</dd> 115</dd>
109<p></p></dl> 116<p></p></dl>
110<p> 117<p>
111</p> 118</p>
112<h2><a name="general_api_considerations">General API Considerations</a></h2> 119<h2><a name="general_api_considerations">General API Considerations</a></h2>
113<p>All objects (such as terminals, time watchers etc.) are typical 120<p>All objects (such as terminals, time watchers etc.) are typical
114reference-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
115like. 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
116<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
117modified).</p> 124modified).</p>
118<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
119emptied, 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
120the 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
121terminal is destroyed.</p> 128terminal is destroyed.</p>
122<p> 129<p>
123</p> 130</p>
124<h2><a name="hooks">Hooks</a></h2> 131<h2><a name="hooks">Hooks</a></h2>
125<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
126whenever 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>
127<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
128counts 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,
129and 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>
130<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>
131<dl> 143<dl>
172</dd> 184</dd>
173<dd> 185<dd>
174<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>
175</dd> 187</dd>
176<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>
177<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 />
178</dt> 202</dt>
179<dd> 203<dd>
180Called whenever the window gets the keyboard focus, before urxvt does 204Called whenever the window gets the keyboard focus, before urxvt does
181focus in processing. 205focus in processing.
238resource in the <code>rxvt(1)</code> manpage). 262resource in the <code>rxvt(1)</code> manpage).
239</dd> 263</dd>
240<p></p></dl> 264<p></p></dl>
241<p> 265<p>
242</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>
275<p></p></dl>
276<p>
277</p>
243<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>
244<dl> 279<dl>
245<dt><strong><a name="item_urxvt_3a_3afatal__24errormessage">urxvt::fatal $errormessage</a></strong><br /> 280<dt><strong><a name="item_urxvt_3a_3afatal__24errormessage">urxvt::fatal $errormessage</a></strong><br />
246</dt> 281</dt>
247<dd> 282<dd>
264<p></p> 299<p></p>
265<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 />
266</dt> 301</dt>
267<dd> 302<dd>
268Returns 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.
269</dd> 366</dd>
270<p></p></dl> 367<p></p></dl>
271<p> 368<p>
272</p> 369</p>
273<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>
335<dt><strong>$oldtext = $term-&gt;selection ([$newtext])</strong><br /> 432<dt><strong>$oldtext = $term-&gt;selection ([$newtext])</strong><br />
336</dt> 433</dt>
337<dd> 434<dd>
338Return 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>.
339</dd> 436</dd>
340<p></p>
341<dt><strong><a name="item_scr_overlay">$term-&gt;scr_overlay ($x, $y, $text)</a></strong><br />
342</dt>
343<dd> 437<dd>
438<p>#=item $term-&gt;overlay ($x, $y, $text)
439#
344Create 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>
345</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>
346<p></p> 466<p></p>
347<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 />
348</dt> 468</dt>
349<dd> 469<dd>
350Create a new (empty) overlay at the given position with the given 470Create a new (empty) overlay at the given position with the given
351width/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
352<code>$y</code> is negative, then this is counted from the right/bottom side, 472(default: <code>OVERLAY_RSTYLE</code>).
353respectively.
354</dd>
355<p></p>
356<dt><strong><a name="item_scr_overlay_off">$term-&gt;scr_overlay_off</a></strong><br />
357</dt>
358<dd> 473</dd>
359Switch the overlay off again.
360</dd> 474<dd>
361<p></p> 475<p>If <code>$border</code> is <code>2</code> (default), then a decorative border will be put
362<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>
363</dt>
364<dd> 477</dd>
365Put a single character (specified numerically) at the given overlay
366position.
367</dd> 478<dd>
368<p></p> 479<p>If either <code>$x</code> or <code>$y</code> is negative, then this is counted from the
369<dt><strong><a name="item_scr_overlay_set">$term-&gt;scr_overlay_set ($x, $y, $text)</a></strong><br /> 480right/bottom side, respectively.</p>
370</dt>
371<dd> 481</dd>
372Write a string at the given position into the overlay.
373</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>
374<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>
375<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 />
376</dt> 511</dt>
377<dd> 512<dd>
378Returns the number of screen-cells this string would need. Correctly 513Returns the number of screen-cells this string would need. Correctly
379accounts for wide and combining characters. 514accounts for wide and combining characters.
437</dt> 572</dt>
438<dd> 573<dd>
439Returns the text of the entire row with number <code>$row_number</code>. Row <code>0</code> 574Returns the text of the entire row with number <code>$row_number</code>. Row <code>0</code>
440is the topmost terminal line, row <code>$term-&gt;$ncol-1</code> is the bottommost 575is the topmost terminal line, row <code>$term-&gt;$ncol-1</code> is the bottommost
441terminal line. The scrollback buffer starts at line <code>-1</code> and extends to 576terminal line. The scrollback buffer starts at line <code>-1</code> and extends to
442line <a href="#item_nsaved"><code>-$term-&gt;nsaved</code></a>. 577line <a href="#item_nsaved"><code>-$term-&gt;nsaved</code></a>. Nothing will be returned if a nonexistent line
578is requested.
443</dd> 579</dd>
444<dd> 580<dd>
445<p>If <code>$new_text</code> is specified, it will replace characters in the current 581<p>If <code>$new_text</code> is specified, it will replace characters in the current
446line, starting at column <code>$start_col</code> (default <code>0</code>), which is useful 582line, starting at column <code>$start_col</code> (default <code>0</code>), which is useful
447to replace only parts of a line. The font iindex in the rendition will 583to replace only parts of a line. The font index in the rendition will
448automatically be updated.</p> 584automatically be updated.</p>
449</dd> 585</dd>
450<dd> 586<dd>
451<p><code>$text</code> is in a special encoding: tabs and wide characters that use more 587<p><code>$text</code> is in a special encoding: tabs and wide characters that use more
452than one cell when displayed are padded with urxvt::NOCHAR characters 588than one cell when displayed are padded with urxvt::NOCHAR characters
458<p>You have to obey this encoding when changing text. The advantage is 594<p>You have to obey this encoding when changing text. The advantage is
459that <code>substr</code> and similar functions work on screen cells and not on 595that <code>substr</code> and similar functions work on screen cells and not on
460characters.</p> 596characters.</p>
461</dd> 597</dd>
462<dd> 598<dd>
463<p>The methods <a href="#item_special_encode"><code>$term-&gt;special_encode</code></a> and <a href="#item_special_decode"><code>$term-&gt;special_decode</code></a> 599<p>The methods <code>$term-&gt;special_encode</code> and <a href="#item_special_decode"><code>$term-&gt;special_decode</code></a>
464can be used to convert normal strings into this encoding and vice versa.</p> 600can be used to convert normal strings into this encoding and vice versa.</p>
465</dd> 601</dd>
466<p></p> 602<p></p>
467<dt><strong><a name="item_row_r">$rend = $term-&gt;ROW_r ($row_number[, $new_rend[, $start_col]])</a></strong><br /> 603<dt><strong><a name="item_row_r">$rend = $term-&gt;ROW_r ($row_number[, $new_rend[, $start_col]])</a></strong><br />
468</dt> 604</dt>
473</dd> 609</dd>
474<dd> 610<dd>
475<p>When setting rendition, the font mask will be ignored.</p> 611<p>When setting rendition, the font mask will be ignored.</p>
476</dd> 612</dd>
477<dd> 613<dd>
478<p>See the section on RENDITION, below.</p> 614<p>See the section on RENDITION, above.</p>
479</dd> 615</dd>
480<p></p> 616<p></p>
481<dt><strong><a name="item_row_l">$length = $term-&gt;ROW_l ($row_number[, $new_length])</a></strong><br /> 617<dt><strong><a name="item_row_l">$length = $term-&gt;ROW_l ($row_number[, $new_length])</a></strong><br />
482</dt> 618</dt>
483<dd> 619<dd>
484Returns the number of screen cells that are in use (``the line length''). If 620Returns the number of screen cells that are in use (``the line
485it is <code>-1</code>, then the line is part of a multiple-row logical ``line'', which 621length''). Unlike the urxvt core, this returns <a href="#item_ncol"><code>$term-&gt;ncol</code></a> if the
486means all characters are in use and it is continued on the next row. 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>
487</dd> 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>
488<p></p> 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>
489<dt><strong><a name="item_special_encode">$text = $term-&gt;special_encode $string</a></strong><br /> 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 />
490</dt> 683</dt>
491<dd> 684<dd>
492Converts a perl string into the special encoding used by rxvt-unicode, 685Converts a perl string into the special encoding used by rxvt-unicode,
493where one character corresponds to one screen cell. See 686where one character corresponds to one screen cell. See
494<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details. 687<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
501<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details. 694<a href="#item_row_t"><code>$term-&gt;ROW_t</code></a> for details.
502</dd> 695</dd>
503<p></p></dl> 696<p></p></dl>
504<p> 697<p>
505</p> 698</p>
506<h2><a name="rendition">RENDITION</a></h2>
507<p>Rendition bitsets contain information about colour, font, font styles and
508similar information for each screen cell.</p>
509<p>The following ``macros'' deal with changes in rendition sets. You should
510never just create a bitset, you should always modify an existing one,
511as they contain important information required for correct operation of
512rxvt-unicode.</p>
513<dl>
514<dt><strong><a name="item__24rend__3d_urxvt_3a_3adefault_rstyle">$rend = urxvt::DEFAULT_RSTYLE</a></strong><br />
515</dt>
516<dd>
517Returns the default rendition, as used when the terminal is starting up or
518being reset. Useful as a base
519</dd>
520<p></p></dl>
521<p>
522</p>
523<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>
524<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
525fractional number of seconds since the epoch. Example:</p> 701fractional number of seconds since the epoch. Example:</p>
526<pre> 702<pre>
527 # create a digital clock display in upper right corner 703 $term-&gt;{overlay} = $term-&gt;overlay (-1, 0, 8, 1, urxvt::OVERLAY_RSTYLE, 0);
528 $term-&gt;{timer} = urxvt::timer 704 $term-&gt;{timer} = urxvt::timer
529 -&gt;new 705 -&gt;new
530 -&gt;start (urxvt::NOW) 706 -&gt;interval (1)
531 -&gt;cb (sub { 707 -&gt;cb (sub {
532 my ($timer) = @_;
533 my $time = $timer-&gt;at;
534 $timer-&gt;start ($time + 1);
535 $self-&gt;scr_overlay (-1, 0, 708 $term-&gt;{overlay}-&gt;set (0, 0,
536 POSIX::strftime &quot;%H:%M:%S&quot;, localtime $time); 709 sprintf &quot;%2d:%02d:%02d&quot;, (localtime urxvt::NOW)[2,1,0]);
537 });</pre> 710 });</pre>
538<dl> 711<dl>
539<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 />
540</dt> 713</dt>
541<dd> 714<dd>
542Create a new timer object in stopped state. 715Create a new timer object in started state. It is scheduled to fire
716immediately.
543</dd> 717</dd>
544<p></p> 718<p></p>
545<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 />
546</dt> 720</dt>
547<dd> 721<dd>
552</dt> 726</dt>
553<dd> 727<dd>
554Return the time this watcher will fire next. 728Return the time this watcher will fire next.
555</dd> 729</dd>
556<p></p> 730<p></p>
557<dt><strong><a name="item_set">$timer = $timer-&gt;set ($tstamp)</a></strong><br /> 731<dt><strong>$timer = $timer-&gt;set ($tstamp)</strong><br />
558</dt> 732</dt>
559<dd> 733<dd>
560Set 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.
561</dd> 743</dd>
562<p></p> 744<p></p>
563<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 />
564</dt> 746</dt>
565<dd> 747<dd>
641<p> 823<p>
642</p> 824</p>
643<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2> 825<h2><a name="urxvt_perl_verbosity">URXVT_PERL_VERBOSITY</a></h2>
644<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
645numbers indicate more verbose output.</p> 827numbers indicate more verbose output.</p>
646<ol> 828<dl>
647<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 />
648</li> 830</dt>
649<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 />
650</li> 832</dt>
651<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>
652</li> 835</dl>
653</ol>
654<p> 836<p>
655</p> 837</p>
656<hr /> 838<hr />
657<h1><a name="author">AUTHOR</a></h1> 839<h1><a name="author">AUTHOR</a></h1>
658<pre> 840<pre>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines