--- rxvt-unicode/doc/rxvtperl.3.html 2006/01/08 06:35:38 1.16 +++ rxvt-unicode/doc/rxvtperl.3.html 2006/01/09 07:17:24 1.18 @@ -105,10 +105,17 @@
option-popup (enabled by default)
-Binds a popup menu to Ctrl-Button3 that lets you toggle (some) options at +Binds a popup menu to Ctrl-Button2 that lets you toggle (some) options at runtime.

+
selection-popup (enabled by default)
+
+
+Binds a popup menu to Ctrl-Button3 that lets you convert the selection +text into various other formats/action. +
+

digital-clock
@@ -271,12 +278,6 @@ number of lines that will be in the scrollback buffer.

-
on_tty_activity $term *NYI*
-
-
-Called whenever the program(s) running in the urxvt window send output. -
-

on_osc_seq $term, $string
@@ -434,6 +435,14 @@ correct place, e.g. on stderr of the connecting urxvtc client.

+
$is_safe = urxvt::safe
+
+
+Returns true when it is safe to do potentially unsafe things, such as +evaluating perl code specified by the user. This is true when urxvt was +started setuid or setgid. +
+

$time = urxvt::NOW
@@ -850,7 +859,7 @@ characters.

-

The methods $term->special_encode and $term->special_decode +

The methods $term->special_encode and $term->special_decode can be used to convert normal strings into this encoding and vice versa.

@@ -932,8 +941,7 @@ Translates a string offset into terminal coordinates again.

-
($row, $col) = $line->coord_of ($offset) -=item $text = $term->special_encode $string
+
$text = $term->special_encode $string
Converts a perl string into the special encoding used by rxvt-unicode, @@ -947,6 +955,46 @@ Converts rxvt-unicodes text reprsentation into a perl string. See $term->ROW_t for details.
+

+
$success = $term->grab_button ($button, $modifiermask)
+
+
+Registers a synchronous button grab. See the XGrabButton manpage. +
+

+
$success = $term->grab ($eventtime[, $sync])
+
+
+Calls XGrabPointer and XGrabKeyboard in asynchronous (default) or +synchronous ($sync is true). Also remembers the grab timestampe. +
+

+
$term->allow_events_async
+
+
+Calls XAllowEvents with AsyncBoth for the most recent grab. +
+

+
$term->allow_events_sync
+
+
+Calls XAllowEvents with SyncBoth for the most recent grab. +
+

+
$term->allow_events_replay
+
+
+Calls XAllowEvents with both ReplayPointer and ReplayKeyboard for the most +recent grab. +
+

+
$term->ungrab
+
+
+Calls XUngrab for the most recent grab. Is called automatically on +evaluation errors, as it is better to lose the grab in the error case as +the session. +

@@ -1083,11 +1131,11 @@

This variable controls the verbosity level of the perl extension. Higher numbers indicate more verbose output.

-
=0 - only fatal messages
+
== 0 - fatal messages
-
=3 - script loading and management
+
>= 3 - script loading and management
-
=10 - all events received
+
>=10 - all events received