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.11 by root, Wed Jan 4 00:12:12 2006 UTC vs.
Revision 1.13 by root, Wed Jan 4 21:37:55 2006 UTC

416 answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont 416 answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
417 borderLess color cursorBlink cursorUnderline cutchars delete_key 417 borderLess color cursorBlink cursorUnderline cutchars delete_key
418 display_name embed ext_bwidth fade font geometry hold iconName 418 display_name embed ext_bwidth fade font geometry hold iconName
419 imFont imLocale inputMethod insecure int_bwidth intensityStyles 419 imFont imLocale inputMethod insecure int_bwidth intensityStyles
420 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier 420 italicFont jumpScroll lineSpace loginShell mapAlert menu meta8 modifier
421 mouseWheelScrollPage name pastableTabs path perl_eval perl_ext 421 mouseWheelScrollPage name pastableTabs path perl_eval perl_ext_1 perl_ext_2
422 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd 422 perl_lib pointerBlank pointerBlankDelay preeditType print_pipe pty_fd
423 reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating 423 reverseVideo saveLines scrollBar scrollBar_align scrollBar_floating
424 scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput 424 scrollBar_right scrollBar_thickness scrollTtyKeypress scrollTtyOutput
425 scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle 425 scrollWithBuffer scrollstyle secondaryScreen secondaryScroll selectstyle
426 shade term_name title transparent transparent_all tripleclickwords 426 shade term_name title transparent transparent_all tripleclickwords
427 utmpInhibit visualBell</pre> 427 utmpInhibit visualBell</pre>
428</dd> 428</dd>
429<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>
430<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 />
431</dt> 445</dt>
432<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 />
433</dt> 447</dt>
434<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 />
548Write 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
549pass characters instead of octets, you should convert your strings first 563pass characters instead of octets, you should convert your strings first
550to the 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>.
551</dd> 565</dd>
552<p></p> 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>
553<dt><strong><a name="item_nrow">$nrow = $term-&gt;nrow</a></strong><br /> 577<dt><strong><a name="item_nrow">$terminal_rows = $term-&gt;nrow</a></strong><br />
554</dt> 578</dt>
555<dt><strong><a name="item_ncol">$ncol = $term-&gt;ncol</a></strong><br /> 579<dt><strong><a name="item_ncol">$terminal_columns = $term-&gt;ncol</a></strong><br />
556</dt>
557<dd>
558Return the number of rows/columns of the terminal window (i.e. as
559specified by <code>-geometry</code>, excluding any scrollback).
560</dd> 580</dt>
561<p></p> 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>
562<dt><strong><a name="item_nsaved">$nsaved = $term-&gt;nsaved</a></strong><br /> 589<dt><strong><a name="item_nsaved">$lines_in_scrollback = $term-&gt;nsaved</a></strong><br />
563</dt> 590</dt>
564<dd> 591<dd>
565Returns the number of lines in the scrollback buffer. 592Return various integers describing terminal characteristics.
566</dd> 593</dd>
567<p></p> 594<p></p>
568<dt><strong><a name="item_view_start">$view_start = $term-&gt;view_start ([$newvalue])</a></strong><br /> 595<dt><strong><a name="item_view_start">$view_start = $term-&gt;view_start ([$newvalue])</a></strong><br />
569</dt> 596</dt>
570<dd> 597<dd>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines