ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvtperl.3.txt
Revision: 1.38
Committed: Sun Jan 29 21:45:47 2006 UTC (18 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-7_5
Changes since 1.37: +14 -3 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 NAME
2 root 1.28 rxvtperl - rxvt-unicode's embedded perl interpreter
3 root 1.1
4     SYNOPSIS
5 root 1.3 # create a file grab_test in $HOME:
6 root 1.1
7     sub on_sel_grab {
8     warn "you selected ", $_[0]->selection;
9     ()
10     }
11    
12 root 1.28 # start a rxvt using it:
13 root 1.3
14 root 1.28 rxvt --perl-lib $HOME -pe grab_test
15 root 1.1
16     DESCRIPTION
17 root 1.13 Everytime a terminal object gets created, extension scripts specified
18     via the "perl" resource are loaded and associated with it.
19 root 1.3
20     Scripts are compiled in a 'use strict' and 'use utf8' environment, and
21     thus must be encoded as UTF-8.
22 root 1.1
23 root 1.28 Each script will only ever be loaded once, even in rxvtd, where scripts
24 root 1.5 will be shared (but not enabled) for all terminals.
25 root 1.1
26 root 1.18 PREPACKAGED EXTENSIONS
27     This section describes the extensions delivered with this release. You
28 root 1.28 can find them in /opt/rxvt/lib/urxvt/perl/.
29 root 1.4
30     You can activate them like this:
31    
32 root 1.28 rxvt -pe <extensionname>
33 root 1.4
34 root 1.32 Or by adding them to the resource for extensions loaded by default:
35    
36     URxvt.perl-ext-common: default,automove-background,selection-autotransform
37    
38 root 1.14 selection (enabled by default)
39 root 1.18 (More) intelligent selection. This extension tries to be more
40 root 1.23 intelligent when the user extends selections (double-click and
41     further clicks). Right now, it tries to select words, urls and
42     complete shell-quoted arguments, which is very convenient, too, if
43     your ls supports "--quoting-style=shell".
44    
45     A double-click usually selects the word under the cursor, further
46     clicks will enlarge the selection.
47 root 1.7
48 root 1.24 The selection works by trying to match a number of regexes and
49     displaying them in increasing order of length. You can add your own
50     regexes by specifying resources of the form:
51    
52     URxvt.selection.pattern-0: perl-regex
53     URxvt.selection.pattern-1: perl-regex
54     ...
55    
56     The index number (0, 1...) must not have any holes, and each regex
57     must contain at least one pair of capturing parentheses, which will
58     be used for the match. For example, the followign adds a regex that
59     matches everything between two vertical bars:
60    
61     URxvt.selection.pattern-0: \\|([^|]+)\\|
62    
63 root 1.36 Another example: Programs I use often output "absolute path: " at
64     the beginning of a line when they process multiple files. The
65     following pattern matches the filename (note, there is a single
66     space at the very end):
67    
68     URxvt.selection.pattern-0: ^(/[^:]+):\
69    
70 root 1.24 You can look at the source of the selection extension to see more
71     interesting uses, such as parsing a line from beginning to end.
72    
73 root 1.29 This extension also offers following bindable keyboard commands:
74 root 1.4
75     rot13
76     Rot-13 the selection when activated. Used via keyboard trigger:
77    
78     URxvt.keysym.C-M-r: perl:selection:rot13
79    
80 root 1.14 option-popup (enabled by default)
81 root 1.15 Binds a popup menu to Ctrl-Button2 that lets you toggle (some)
82 root 1.14 options at runtime.
83    
84 root 1.15 selection-popup (enabled by default)
85     Binds a popup menu to Ctrl-Button3 that lets you convert the
86 root 1.18 selection text into various other formats/action (such as uri
87 root 1.33 unescaping, perl evaluation, web-browser starting etc.), depending
88     on content.
89 root 1.15
90 root 1.31 Other extensions can extend this popup menu by pushing a code
91     reference onto "@{ $term-"{selection_popup_hook} }>, that is called
92     whenever the popup is displayed.
93    
94     It's sole argument is the popup menu, which can be modified. The
95     selection is in $_, which can be used to decide wether to add
96     something or not. It should either return nothing or a string and a
97     code reference. The string will be used as button text and the code
98     reference will be called when the button gets activated and should
99     transform $_.
100    
101     The following will add an entry "a to b" that transforms all "a"s in
102     the selection to "b"s, but only if the selection currently contains
103     any "a"s:
104    
105     push @{ $self->{term}{selection_popup_hook} }, sub {
106     /a/ ? ("a to be" => sub { s/a/b/g }
107     : ()
108     };
109    
110 root 1.17 searchable-scrollback<hotkey> (enabled by default)
111     Adds regex search functionality to the scrollback buffer, triggered
112 root 1.23 by a hotkey (default: "M-s"). While in search mode, normal terminal
113     input/output is suspended and a regex is displayed at the bottom of
114     the screen.
115    
116     Inputting characters appends them to the regex and continues
117     incremental search. "BackSpace" removes a character from the regex,
118     "Up" and "Down" search upwards/downwards in the scrollback buffer,
119     "End" jumps to the bottom. "Escape" leaves search mode and returns
120     to the point where search was started, while "Enter" or "Return"
121     stay at the current position and additionally stores the first match
122     in the current line into the primary selection.
123 root 1.17
124 root 1.34 readline (enabled by default)
125     A support package that tries to make editing with readline easier.
126     At the moment, it reacts to clicking with the left mouse button by
127     trying to move the text cursor to this position. It does so by
128     generating as many cursor-left or cursor-right keypresses as
129     required (the this only works for programs that correctly support
130     wide characters).
131    
132     To avoid too many false positives, this is only done when:
133    
134 root 1.35 - the tty is in ICANON state.
135     - the text cursor is visible.
136     - the primary screen is currently being displayed.
137 root 1.34 - the mouse is on the same (multi-row-) line as the text cursor.
138    
139     The normal selection mechanism isn't disabled, so quick successive
140     clicks might interfere with selection creation in harmless ways.
141    
142 root 1.24 selection-autotransform
143     This selection allows you to do automatic transforms on a selection
144     whenever a selection is made.
145    
146     It works by specifying perl snippets (most useful is a single "s///"
147     operator) that modify $_ as resources:
148    
149     URxvt.selection-autotransform.0: transform
150     URxvt.selection-autotransform.1: transform
151     ...
152    
153     For example, the following will transform selections of the form
154     "filename:number", often seen in compiler messages, into "vi
155     +$filename $word":
156    
157 root 1.27 URxvt.selection-autotransform.0: s/^([^:[:space:]]+):(\\d+):?$/vi +$2 \\Q$1\\E\\x0d/
158 root 1.24
159     And this example matches the same,but replaces it with vi-commands
160     you can paste directly into your (vi :) editor:
161    
162 root 1.31 URxvt.selection-autotransform.0: s/^([^:[:space:]]+(\\d+):?$/:e \\Q$1\\E\\x0d:$2\\x0d/
163 root 1.6
164 root 1.25 Of course, this can be modified to suit your needs and your editor
165     :)
166    
167 root 1.26 To expand the example above to typical perl error messages ("XXX at
168     FILENAME line YYY."), you need a slightly more elaborate solution:
169    
170 root 1.31 URxvt.selection.pattern-0: ( at .*? line \\d+[,.])
171     URxvt.selection-autotransform.0: s/^ at (.*?) line (\\d+)[,.]$/:e \\Q$1\E\\x0d:$2\\x0d/
172 root 1.26
173     The first line tells the selection code to treat the unchanging part
174     of every error message as a selection pattern, and the second line
175     transforms the message into vi commands to load the file.
176    
177 root 1.32 tabbed
178     This transforms the terminal into a tabbar with additional
179     terminals, that is, it implements what is commonly refered to as
180     "tabbed terminal". The topmost line displays a "[NEW]" button,
181     which, when clicked, will add a new tab, followed by one button per
182     tab.
183    
184     Clicking a button will activate that tab. Pressing Shift-Left and
185 root 1.33 Shift-Right will switch to the tab left or right of the current one,
186     while Shift-Down creates a new tab.
187 root 1.32
188 root 1.12 mark-urls
189 root 1.22 Uses per-line display filtering ("on_line_update") to underline urls
190 root 1.23 and make them clickable. When middle-clicked, the program specified
191     in the resource "urlLauncher" (default "x-www-browser") will be
192     started with the URL as first argument.
193 root 1.12
194 root 1.36 xim-onthespot
195     This (experimental) perl extension implements OnTheSpot editing. It
196     does not work perfectly, and some input methods don't seem to work
197     well with OnTheSpot editing in general, but it seems to work at
198     leats for SCIM and kinput2.
199    
200     You enable it by specifying this extension and a preedit style of
201     "OnTheSpot", i.e.:
202    
203     rxvt -pt OnTheSpot -pe xim-onthespot
204    
205 root 1.31 automove-background
206     This is basically a one-line extension that dynamically changes the
207     background pixmap offset to the window position, in effect creating
208     the same effect as pseudo transparency with a custom pixmap. No
209     scaling is supported in this mode. Exmaple:
210    
211     rxvt -pixmap background.xpm -pe automove-background
212    
213 root 1.12 block-graphics-to-ascii
214     A not very useful example of filtering all text output to the
215     terminal, by replacing all line-drawing characters (U+2500 ..
216     U+259F) by a similar-looking ascii character.
217    
218 root 1.24 digital-clock
219     Displays a digital clock using the built-in overlay.
220    
221 root 1.37 remote-clipboard
222     Somewhat of a misnomer, this extension adds two menu entries to the
223     selection popup that allows one ti run external commands to store
224     the selection somewhere and fetch it again.
225    
226     We use it to implement a "distributed selection mechanism", which
227     just means that one command uploads the file to a remote server, and
228     another reads it.
229    
230     The commands can be set using the "URxvt.remote-selection.store" and
231     "URxvt.remote-selection.fetch" resources. The first should read the
232     selection to store from STDIN (always in UTF-8), the second should
233     provide the selection data on STDOUT (also in UTF-8).
234    
235     The defaults (which are likely useless to you) use rsh and cat:
236    
237     URxvt.remote-selection.store: rsh ruth 'cat >/tmp/distributed-selection'
238     URxvt.remote-selection.fetch: rsh ruth 'cat /tmp/distributed-selection'
239 root 1.4
240 root 1.30 selection-pastebin
241     This is a little rarely useful extension that Uploads the selection
242     as textfile to a remote site (or does other things). (The
243     implementation is not currently secure for use in a multiuser
244     environment as it writes to /tmp directly.).
245    
246     It listens to the "selection-pastebin:remote-pastebin" keyboard
247     command, i.e.
248    
249     URxvt.keysym.C-M-e: perl:selection-pastebin:remote-pastebin
250    
251     Pressing this combination runs a command with "%" replaced by the
252     name of the textfile. This command can be set via a resource:
253    
254     URxvt.selection-pastebin.cmd: rsync -apP % ruth:/var/www/www.ta-sa.org/files/txt/.
255    
256     And the default is likely not useful to anybody but the few people
257     around here :)
258    
259     The name of the textfile is the hex encoded md5 sum of the
260     selection, so the same content should lead to the same filename.
261    
262     After a successful upload the selection will be replaced by the text
263     given in the "selection-pastebin-url" resource (again, the % is the
264     placeholder for the filename):
265    
266     URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/%
267    
268 root 1.37 example-refresh-hooks
269     Displays a very simple digital clock in the upper right corner of
270     the window. Illustrates overwriting the refresh callbacks to create
271     your own overlays or changes.
272    
273 root 1.18 API DOCUMENTATION
274 root 1.1 General API Considerations
275     All objects (such as terminals, time watchers etc.) are typical
276     reference-to-hash objects. The hash can be used to store anything you
277     like. All members starting with an underscore (such as "_ptr" or
278 root 1.7 "_hook") are reserved for internal uses and MUST NOT be accessed or
279 root 1.1 modified).
280    
281     When objects are destroyed on the C++ side, the perl object hashes are
282     emptied, so its best to store related objects such as time watchers and
283     the like inside the terminal object so they get destroyed as soon as the
284     terminal is destroyed.
285    
286 root 1.12 Argument names also often indicate the type of a parameter. Here are
287     some hints on what they mean:
288    
289     $text
290     Rxvt-unicodes special way of encoding text, where one "unicode"
291 root 1.21 character always represents one screen cell. See ROW_t for a
292 root 1.12 discussion of this format.
293    
294     $string
295     A perl text string, with an emphasis on *text*. It can store all
296     unicode characters and is to be distinguished with text encoded in a
297     specific encoding (often locale-specific) and binary data.
298    
299     $octets
300     Either binary data or - more common - a text string encoded in a
301     locale-specific way.
302    
303 root 1.17 Extension Objects
304     Very perl extension is a perl class. A separate perl object is created
305     for each terminal and each extension and passed as the first parameter
306     to hooks. So extensions can use their $self object without having to
307     think about other extensions, with the exception of methods and members
308     that begin with an underscore character "_": these are reserved for
309     internal use.
310    
311     Although it isn't a "urxvt::term" object, you can call all methods of
312     the "urxvt::term" class on this object.
313    
314     It has the following methods and data members:
315    
316     $urxvt_term = $self->{term}
317     Returns the "urxvt::term" object associated with this instance of
318     the extension. This member *must not* be changed in any way.
319    
320     $self->enable ($hook_name => $cb, [$hook_name => $cb..])
321     Dynamically enable the given hooks (named without the "on_" prefix)
322     for this extension, replacing any previous hook. This is useful when
323     you want to overwrite time-critical hooks only temporarily.
324    
325     $self->disable ($hook_name[, $hook_name..])
326     Dynamically disable the given hooks.
327    
328 root 1.1 Hooks
329 root 1.12 The following subroutines can be declared in extension files, and will
330     be called whenever the relevant event happens.
331 root 1.1
332 root 1.17 The first argument passed to them is an extension oject as described in
333     the in the "Extension Objects" section.
334 root 1.7
335 root 1.32 All of these hooks must return a boolean value. If any of the called
336     hooks returns true, then the event counts as being *consumed*, and the
337     relevant action might not be carried out by the C++ code.
338 root 1.1
339 root 1.17 *When in doubt, return a false value (preferably "()").*
340 root 1.1
341     on_init $term
342     Called after a new terminal object has been initialized, but before
343 root 1.12 windows are created or the command gets run. Most methods are unsafe
344     to call or deliver senseless data, as terminal size and other
345     characteristics have not yet been determined. You can safely query
346 root 1.32 and change resources and options, though. For many purposes the
347     "on_start" hook is a better place.
348    
349     on_start $term
350     Called at the very end of initialisation of a new terminal, just
351     before trying to map (display) the toplevel and returning to the
352     mainloop.
353    
354     on_destroy $term
355 root 1.36 Called whenever something tries to destroy terminal, when the
356     terminal is still fully functional (not for long, though).
357 root 1.1
358     on_reset $term
359     Called after the screen is "reset" for any reason, such as resizing
360     or control sequences. Here is where you can react on changes to
361     size-related variables.
362    
363 root 1.31 on_child_start $term, $pid
364     Called just after the child process has been "fork"ed.
365    
366     on_child_exit $term, $status
367     Called just after the child process has exited. $status is the
368     status from "waitpid".
369    
370 root 1.1 on_sel_make $term, $eventtime
371     Called whenever a selection has been made by the user, but before
372     the selection text is copied, so changes to the beginning, end or
373     type of the selection will be honored.
374    
375     Returning a true value aborts selection making by urxvt, in which
376     case you have to make a selection yourself by calling
377     "$term->selection_grab".
378    
379     on_sel_grab $term, $eventtime
380     Called whenever a selection has been copied, but before the
381     selection is requested from the server. The selection text can be
382     queried and changed by calling "$term->selection".
383    
384     Returning a true value aborts selection grabbing. It will still be
385     hilighted.
386    
387 root 1.7 on_sel_extend $term
388     Called whenever the user tries to extend the selection (e.g. with a
389     double click) and is either supposed to return false (normal
390     operation), or should extend the selection itelf and return true to
391 root 1.23 suppress the built-in processing. This can happen multiple times, as
392     long as the callback returns true, it will be called on every
393     further click by the user and is supposed to enlarge the selection
394     more and more, if possible.
395 root 1.7
396     See the selection example extension.
397    
398 root 1.1 on_view_change $term, $offset
399     Called whenever the view offset changes, i..e the user or program
400     scrolls. Offset 0 means display the normal terminal, positive values
401     show this many lines of scrollback.
402    
403     on_scroll_back $term, $lines, $saved
404     Called whenever lines scroll out of the terminal area into the
405     scrollback buffer. $lines is the number of lines scrolled out and
406     may be larger than the scroll back buffer or the terminal.
407    
408     It is called before lines are scrolled out (so rows 0 .. min ($lines
409     - 1, $nrow - 1) represent the lines to be scrolled out). $saved is
410     the total number of lines that will be in the scrollback buffer.
411    
412 root 1.9 on_osc_seq $term, $string
413     Called whenever the ESC ] 777 ; string ST command sequence (OSC =
414     operating system command) is processed. Cursor position and other
415     state information is up-to-date when this happens. For
416     interoperability, the string should start with the extension name
417     and a colon, to distinguish it from commands for other extensions,
418     and this might be enforced in the future.
419    
420     Be careful not ever to trust (in a security sense) the data you
421     receive, as its source can not easily be controleld (e-mail content,
422     messages from other users on the same system etc.).
423    
424 root 1.12 on_add_lines $term, $string
425     Called whenever text is about to be output, with the text as
426     argument. You can filter/change and output the text yourself by
427     returning a true value and calling "$term->scr_add_lines" yourself.
428     Please note that this might be very slow, however, as your hook is
429     called for all text being output.
430    
431 root 1.17 on_tt_write $term, $octets
432     Called whenever some data is written to the tty/pty and can be used
433     to suppress or filter tty input.
434    
435 root 1.12 on_line_update $term, $row
436     Called whenever a line was updated or changed. Can be used to filter
437     screen output (e.g. underline urls or other useless stuff). Only
438     lines that are being shown will be filtered, and, due to performance
439     reasons, not always immediately.
440    
441     The row number is always the topmost row of the line if the line
442     spans multiple rows.
443    
444     Please note that, if you change the line, then the hook might get
445     called later with the already-modified line (e.g. if unrelated parts
446     change), so you cannot just toggle rendition bits, but only set
447     them.
448    
449 root 1.1 on_refresh_begin $term
450     Called just before the screen gets redrawn. Can be used for overlay
451     or similar effects by modify terminal contents in refresh_begin, and
452     restoring them in refresh_end. The built-in overlay and selection
453     display code is run after this hook, and takes precedence.
454    
455     on_refresh_end $term
456     Called just after the screen gets redrawn. See "on_refresh_begin".
457    
458 root 1.37 on_user_command $term, $string
459     Called whenever the a user-configured event is being activated (e.g.
460     via a "perl:string" action bound to a key, see description of the
461     keysym resource in the rxvt(1) manpage).
462    
463     The event is simply the action string. This interface is assumed to
464     change slightly in the future.
465 root 1.27
466     on_x_event $term, $event
467     Called on every X event received on the vt window (and possibly
468     other windows). Should only be used as a last resort. Most event
469     structure members are not passed.
470 root 1.3
471 root 1.13 on_focus_in $term
472     Called whenever the window gets the keyboard focus, before
473     rxvt-unicode does focus in processing.
474    
475     on_focus_out $term
476     Called wheneever the window loses keyboard focus, before
477     rxvt-unicode does focus out processing.
478    
479 root 1.31 on_configure_notify $term, $event
480 root 1.33 on_property_notify $term, $event
481 root 1.17 on_key_press $term, $event, $keysym, $octets
482     on_key_release $term, $event, $keysym
483 root 1.12 on_button_press $term, $event
484     on_button_release $term, $event
485     on_motion_notify $term, $event
486 root 1.13 on_map_notify $term, $event
487     on_unmap_notify $term, $event
488 root 1.12 Called whenever the corresponding X event is received for the
489     terminal If the hook returns true, then the even will be ignored by
490     rxvt-unicode.
491    
492     The event is a hash with most values as named by Xlib (see the
493     XEvent manpage), with the additional members "row" and "col", which
494 root 1.33 are the (real, not screen-based) row and column under the mouse
495     cursor.
496 root 1.12
497     "on_key_press" additionally receives the string rxvt-unicode would
498     output, if any, in locale-specific encoding.
499    
500     subwindow.
501    
502 root 1.32 on_client_message $term, $event
503     on_wm_protocols $term, $event
504     on_wm_delete_window $term, $event
505     Called when various types of ClientMessage events are received (all
506     with format=32, WM_PROTOCOLS or WM_PROTOCOLS:WM_DELETE_WINDOW).
507    
508 root 1.7 Variables in the "urxvt" Package
509 root 1.19 $urxvt::LIBDIR
510     The rxvt-unicode library directory, where, among other things, the
511     perl modules and scripts are stored.
512    
513     $urxvt::RESCLASS, $urxvt::RESCLASS
514     The resource class and name rxvt-unicode uses to look up X
515     resources.
516    
517     $urxvt::RXVTNAME
518     The basename of the installed binaries, usually "urxvt".
519    
520 root 1.7 $urxvt::TERM
521 root 1.12 The current terminal. This variable stores the current "urxvt::term"
522     object, whenever a callback/hook is executing.
523 root 1.7
524 root 1.32 @urxvt::TERM_INIT
525     All coderefs in this array will be called as methods of the next
526     newly created "urxvt::term" object (during the "on_init" phase). The
527     array gets cleared before the codereferences that were in it are
528     being executed, so coderefs can push themselves onto it again if
529     they so desire.
530    
531     This complements to the perl-eval commandline option, but gets
532     executed first.
533    
534     @urxvt::TERM_EXT
535     Works similar to @TERM_INIT, but contains perl package/class names,
536     which get registered as normal extensions after calling the hooks in
537     @TERM_INIT but before other extensions. Gets cleared just like
538     @TERM_INIT.
539    
540 root 1.1 Functions in the "urxvt" Package
541     urxvt::fatal $errormessage
542     Fatally aborts execution with the given error message. Avoid at all
543     costs! The only time this is acceptable is when the terminal process
544     starts up.
545    
546     urxvt::warn $string
547     Calls "rxvt_warn" with the given string which should not include a
548     newline. The module also overwrites the "warn" builtin with a
549     function that calls this function.
550    
551     Using this function has the advantage that its output ends up in the
552     correct place, e.g. on stderr of the connecting urxvtc client.
553    
554 root 1.20 Messages have a size limit of 1023 bytes currently.
555    
556 root 1.38 @terms = urxvt::termlist
557     Returns all urxvt::term objects that exist in this process,
558     regardless of wether they are started, being destroyed etc., so be
559     careful. Only term objects that have perl extensions attached will
560     be returned (because there is no urxvt::term objet associated with
561     others).
562    
563 root 1.1 $time = urxvt::NOW
564     Returns the "current time" (as per the event loop).
565    
566 root 1.13 urxvt::CurrentTime
567     urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask,
568     Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask,
569     Button5Mask, AnyModifier
570 root 1.27 urxvt::NoEventMask, KeyPressMask, KeyReleaseMask, ButtonPressMask,
571     ButtonReleaseMask, EnterWindowMask, LeaveWindowMask, PointerMotionMask,
572     PointerMotionHintMask, Button1MotionMask, Button2MotionMask,
573     Button3MotionMask, Button4MotionMask, Button5MotionMask,
574     ButtonMotionMask, KeymapStateMask, ExposureMask, VisibilityChangeMask,
575     StructureNotifyMask, ResizeRedirectMask, SubstructureNotifyMask,
576     SubstructureRedirectMask, FocusChangeMask, PropertyChangeMask,
577     ColormapChangeMask, OwnerGrabButtonMask
578     urxvt::KeyPress, KeyRelease, ButtonPress, ButtonRelease, MotionNotify,
579     EnterNotify, LeaveNotify, FocusIn, FocusOut, KeymapNotify, Expose,
580     GraphicsExpose, NoExpose, VisibilityNotify, CreateNotify, DestroyNotify,
581     UnmapNotify, MapNotify, MapRequest, ReparentNotify, ConfigureNotify,
582     ConfigureRequest, GravityNotify, ResizeRequest, CirculateNotify,
583     CirculateRequest, PropertyNotify, SelectionClear, SelectionRequest,
584     SelectionNotify, ColormapNotify, ClientMessage, MappingNotify
585 root 1.14 Various constants for use in X calls and event processing.
586 root 1.13
587 root 1.6 RENDITION
588     Rendition bitsets contain information about colour, font, font styles
589     and similar information for each screen cell.
590    
591     The following "macros" deal with changes in rendition sets. You should
592     never just create a bitset, you should always modify an existing one, as
593     they contain important information required for correct operation of
594     rxvt-unicode.
595    
596     $rend = urxvt::DEFAULT_RSTYLE
597     Returns the default rendition, as used when the terminal is starting
598     up or being reset. Useful as a base to start when creating
599     renditions.
600    
601     $rend = urxvt::OVERLAY_RSTYLE
602     Return the rendition mask used for overlays by default.
603    
604     $rendbit = urxvt::RS_Bold, RS_Italic, RS_Blink, RS_RVid, RS_Uline
605     Return the bit that enabled bold, italic, blink, reverse-video and
606     underline, respectively. To enable such a style, just logically OR
607     it into the bitset.
608    
609     $foreground = urxvt::GET_BASEFG $rend
610     $background = urxvt::GET_BASEBG $rend
611     Return the foreground/background colour index, respectively.
612    
613 root 1.19 $rend = urxvt::SET_FGCOLOR $rend, $new_colour
614     $rend = urxvt::SET_BGCOLOR $rend, $new_colour
615 root 1.6 Replace the foreground/background colour in the rendition mask with
616     the specified one.
617    
618 root 1.19 $value = urxvt::GET_CUSTOM $rend
619 root 1.6 Return the "custom" value: Every rendition has 5 bits for use by
620     extensions. They can be set and changed as you like and are
621     initially zero.
622    
623 root 1.19 $rend = urxvt::SET_CUSTOM $rend, $new_value
624 root 1.6 Change the custom value.
625    
626 root 1.14 The "urxvt::anyevent" Class
627     The sole purpose of this class is to deliver an interface to the
628     "AnyEvent" module - any module using it will work inside urxvt without
629 root 1.19 further programming. The only exception is that you cannot wait on
630     condition variables, but non-blocking condvar use is ok. What this means
631     is that you cannot use blocking APIs, but the non-blocking variant
632     should work.
633 root 1.14
634 root 1.1 The "urxvt::term" Class
635 root 1.20 $term = new urxvt::term $envhashref, $rxvtname, [arg...]
636     Creates a new terminal, very similar as if you had started it with
637     system "$rxvtname, arg...". $envhashref must be a reference to a
638 root 1.21 %ENV-like hash which defines the environment of the new terminal.
639 root 1.20
640 root 1.21 Croaks (and probably outputs an error message) if the new instance
641 root 1.20 couldn't be created. Returns "undef" if the new instance didn't
642     initialise perl, and the terminal object otherwise. The "init" and
643 root 1.38 "start" hooks will be called before this call returns, and are free
644     to refer to global data (which is race free).
645 root 1.20
646 root 1.12 $term->destroy
647     Destroy the terminal object (close the window, free resources etc.).
648 root 1.28 Please note that rxvt will not exit as long as any event watchers
649 root 1.19 (timers, io watchers) are still active.
650 root 1.12
651 root 1.31 $term->exec_async ($cmd[, @args])
652     Works like the combination of the "fork"/"exec" builtins, which
653     executes ("starts") programs in the background. This function takes
654     care of setting the user environment before exec'ing the command
655     (e.g. "PATH") and should be preferred over explicit calls to "exec"
656     or "system".
657    
658     Returns the pid of the subprocess or "undef" on error.
659    
660 root 1.13 $isset = $term->option ($optval[, $set])
661     Returns true if the option specified by $optval is enabled, and
662     optionally change it. All option values are stored by name in the
663     hash %urxvt::OPTION. Options not enabled in this binary are not in
664     the hash.
665    
666     Here is a a likely non-exhaustive list of option names, please see
667     the source file /src/optinc.h to see the actual list:
668    
669     borderLess console cursorBlink cursorUnderline hold iconic insecure
670     intensityStyles jumpScroll loginShell mapAlert meta8 mouseWheelScrollPage
671 root 1.31 override-redirect pastableTabs pointerBlank reverseVideo scrollBar
672     scrollBar_floating scrollBar_right scrollTtyKeypress scrollTtyOutput
673     scrollWithBuffer secondaryScreen secondaryScroll skipBuiltinGlyphs
674     transparent tripleclickwords utmpInhibit visualBell
675 root 1.13
676 root 1.1 $value = $term->resource ($name[, $newval])
677     Returns the current resource value associated with a given name and
678     optionally sets a new value. Setting values is most useful in the
679     "init" hook. Unset resources are returned and accepted as "undef".
680    
681     The new value must be properly encoded to a suitable character
682     encoding before passing it to this method. Similarly, the returned
683     value may need to be converted from the used encoding to text.
684    
685     Resource names are as defined in src/rsinc.h. Colours can be
686     specified as resource names of the form "color+<index>", e.g.
687     "color+5". (will likely change).
688    
689     Please note that resource strings will currently only be freed when
690     the terminal is destroyed, so changing options frequently will eat
691     memory.
692    
693     Here is a a likely non-exhaustive list of resource names, not all of
694 root 1.13 which are supported in every build, please see the source file
695     /src/rsinc.h to see the actual list:
696 root 1.1
697     answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
698     borderLess color cursorBlink cursorUnderline cutchars delete_key
699     display_name embed ext_bwidth fade font geometry hold iconName
700     imFont imLocale inputMethod insecure int_bwidth intensityStyles
701 root 1.31 italicFont jumpScroll lineSpace loginShell mapAlert meta8 modifier
702     mouseWheelScrollPage name override_redirect pastableTabs path perl_eval
703     perl_ext_1 perl_ext_2 perl_lib pointerBlank pointerBlankDelay
704     preeditType print_pipe pty_fd reverseVideo saveLines scrollBar
705     scrollBar_align scrollBar_floating scrollBar_right scrollBar_thickness
706     scrollTtyKeypress scrollTtyOutput scrollWithBuffer scrollstyle
707     secondaryScreen secondaryScroll selectstyle shade term_name title
708     transient_for transparent transparent_all tripleclickwords utmpInhibit
709     visualBell
710 root 1.1
711 root 1.22 $value = $term->x_resource ($pattern)
712     Returns the X-Resource for the given pattern, excluding the program
713     or class name, i.e. "$term->x_resource ("boldFont")" should return
714     the same value as used by this instance of rxvt-unicode. Returns
715     "undef" if no resource with that pattern exists.
716    
717     This method should only be called during the "on_start" hook, as
718     there is only one resource database per display, and later
719     invocations might return the wrong resources.
720    
721 root 1.17 $success = $term->parse_keysym ($keysym_spec, $command_string)
722     Adds a keymap translation exactly as specified via a resource. See
723 root 1.28 the "keysym" resource in the rxvt(1) manpage.
724 root 1.17
725 root 1.12 $rend = $term->rstyle ([$new_rstyle])
726     Return and optionally change the current rendition. Text that is
727     output by the terminal application will use this style.
728 root 1.11
729     ($row, $col) = $term->screen_cur ([$row, $col])
730     Return the current coordinates of the text cursor position and
731     optionally set it (which is usually bad as applications don't expect
732     that).
733    
734 root 1.1 ($row, $col) = $term->selection_mark ([$row, $col])
735     ($row, $col) = $term->selection_beg ([$row, $col])
736     ($row, $col) = $term->selection_end ([$row, $col])
737     Return the current values of the selection mark, begin or end
738     positions, and optionally set them to new values.
739    
740 root 1.23 $term->selection_make ($eventtime[, $rectangular])
741     Tries to make a selection as set by "selection_beg" and
742     "selection_end". If $rectangular is true (default: false), a
743     rectangular selection will be made. This is the prefered function to
744     make a selection.
745    
746 root 1.1 $success = $term->selection_grab ($eventtime)
747 root 1.23 Try to request the primary selection text from the server (for
748     example, as set by the next method). No visual feedback will be
749     given. This function is mostly useful from within "on_sel_grab"
750     hooks.
751 root 1.1
752     $oldtext = $term->selection ([$newtext])
753     Return the current selection text and optionally replace it by
754     $newtext.
755    
756 root 1.17 $term->overlay_simple ($x, $y, $text)
757     Create a simple multi-line overlay box. See the next method for
758     details.
759 root 1.6
760     $term->overlay ($x, $y, $width, $height[, $rstyle[, $border]])
761 root 1.1 Create a new (empty) overlay at the given position with the given
762 root 1.6 width/height. $rstyle defines the initial rendition style (default:
763     "OVERLAY_RSTYLE").
764    
765     If $border is 2 (default), then a decorative border will be put
766     around the box.
767    
768     If either $x or $y is negative, then this is counted from the
769     right/bottom side, respectively.
770    
771     This method returns an urxvt::overlay object. The overlay will be
772     visible as long as the perl object is referenced.
773 root 1.1
774 root 1.7 The methods currently supported on "urxvt::overlay" objects are:
775 root 1.6
776 root 1.7 $overlay->set ($x, $y, $text, $rend)
777     Similar to "$term->ROW_t" and "$term->ROW_r" in that it puts
778     text in rxvt-unicode's special encoding and an array of
779     rendition values at a specific position inside the overlay.
780    
781     $overlay->hide
782     If visible, hide the overlay, but do not destroy it.
783    
784     $overlay->show
785     If hidden, display the overlay again.
786 root 1.1
787 root 1.13 $popup = $term->popup ($event)
788     Creates a new "urxvt::popup" object that implements a popup menu.
789     The $event *must* be the event causing the menu to pop up (a button
790     event, currently).
791    
792 root 1.12 $cellwidth = $term->strwidth ($string)
793 root 1.1 Returns the number of screen-cells this string would need. Correctly
794     accounts for wide and combining characters.
795    
796 root 1.12 $octets = $term->locale_encode ($string)
797 root 1.1 Convert the given text string into the corresponding locale
798     encoding.
799    
800 root 1.12 $string = $term->locale_decode ($octets)
801 root 1.1 Convert the given locale-encoded octets into a perl string.
802    
803 root 1.17 $term->scr_xor_span ($beg_row, $beg_col, $end_row, $end_col[, $rstyle])
804     XORs the rendition values in the given span with the provided value
805 root 1.23 (default: "RS_RVid"), which *MUST NOT* contain font styles. Useful
806     in refresh hooks to provide effects similar to the selection.
807 root 1.17
808     $term->scr_xor_rect ($beg_row, $beg_col, $end_row, $end_col[, $rstyle1[,
809     $rstyle2]])
810     Similar to "scr_xor_span", but xors a rectangle instead. Trailing
811     whitespace will additionally be xored with the $rstyle2, which
812     defaults to "RS_RVid | RS_Uline", which removes reverse video again
813 root 1.23 and underlines it instead. Both styles *MUST NOT* contain font
814     styles.
815 root 1.17
816     $term->scr_bell
817     Ring the bell!
818    
819 root 1.12 $term->scr_add_lines ($string)
820     Write the given text string to the screen, as if output by the
821     application running inside the terminal. It may not contain command
822     sequences (escape codes), but is free to use line feeds, carriage
823     returns and tabs. The string is a normal text string, not in
824     locale-dependent encoding.
825    
826     Normally its not a good idea to use this function, as programs might
827     be confused by changes in cursor position or scrolling. Its useful
828     inside a "on_add_lines" hook, though.
829    
830 root 1.33 $term->scr_change_screen ($screen)
831     Switch to given screen - 0 primary, 1 secondary.
832    
833 root 1.12 $term->cmd_parse ($octets)
834     Similar to "scr_add_lines", but the argument must be in the
835     locale-specific encoding of the terminal and can contain command
836     sequences (escape codes) that will be interpreted.
837    
838 root 1.1 $term->tt_write ($octets)
839     Write the octets given in $data to the tty (i.e. as program input).
840 root 1.4 To pass characters instead of octets, you should convert your
841     strings first to the locale-specific encoding using
842     "$term->locale_encode".
843    
844 root 1.17 $old_events = $term->pty_ev_events ([$new_events])
845     Replaces the event mask of the pty watcher by the given event mask.
846     Can be used to suppress input and output handling to the pty/tty.
847     See the description of "urxvt::timer->events". Make sure to always
848     restore the previous value.
849    
850 root 1.35 $fd = $term->pty_fd
851     Returns the master file descriptor for the pty in use, or -1 if no
852     pty is used.
853    
854 root 1.12 $windowid = $term->parent
855     Return the window id of the toplevel window.
856    
857     $windowid = $term->vt
858     Return the window id of the terminal window.
859    
860 root 1.27 $term->vt_emask_add ($x_event_mask)
861     Adds the specified events to the vt event mask. Useful e.g. when you
862     want to receive pointer events all the times:
863    
864     $term->vt_emask_add (urxvt::PointerMotionMask);
865    
866 root 1.11 $window_width = $term->width
867     $window_height = $term->height
868     $font_width = $term->fwidth
869     $font_height = $term->fheight
870     $font_ascent = $term->fbase
871     $terminal_rows = $term->nrow
872     $terminal_columns = $term->ncol
873     $has_focus = $term->focus
874     $is_mapped = $term->mapped
875     $max_scrollback = $term->saveLines
876     $nrow_plus_saveLines = $term->total_rows
877 root 1.28 $topmost_scrollback_row = $term->top_row
878 root 1.11 Return various integers describing terminal characteristics.
879 root 1.4
880 root 1.20 $x_display = $term->display_id
881     Return the DISPLAY used by rxvt-unicode.
882    
883 root 1.17 $lc_ctype = $term->locale
884     Returns the LC_CTYPE category string used by this rxvt-unicode.
885    
886 root 1.20 $env = $term->env
887     Returns a copy of the environment in effect for the terminal as a
888     hashref similar to "\%ENV".
889 root 1.17
890 root 1.13 $modifiermask = $term->ModLevel3Mask
891     $modifiermask = $term->ModMetaMask
892     $modifiermask = $term->ModNumLockMask
893     Return the modifier masks corresponding to the "ISO Level 3 Shift"
894     (often AltGr), the meta key (often Alt) and the num lock key, if
895     applicable.
896    
897 root 1.33 $screen = $term->current_screen
898     Returns the currently displayed screen (0 primary, 1 secondary).
899    
900 root 1.34 $cursor_is_hidden = $term->hidden_cursor
901     Returns wether the cursor is currently hidden or not.
902    
903 root 1.4 $view_start = $term->view_start ([$newvalue])
904 root 1.28 Returns the row number of the topmost displayed line. Maximum value
905     is 0, which displays the normal terminal contents. Lower values
906 root 1.4 scroll this many lines into the scrollback buffer.
907    
908     $term->want_refresh
909     Requests a screen refresh. At the next opportunity, rxvt-unicode
910     will compare the on-screen display with its stored representation.
911     If they differ, it redraws the differences.
912    
913     Used after changing terminal contents to display them.
914    
915     $text = $term->ROW_t ($row_number[, $new_text[, $start_col]])
916     Returns the text of the entire row with number $row_number. Row 0 is
917     the topmost terminal line, row "$term->$ncol-1" is the bottommost
918     terminal line. The scrollback buffer starts at line -1 and extends
919 root 1.7 to line "-$term->nsaved". Nothing will be returned if a nonexistent
920     line is requested.
921 root 1.4
922     If $new_text is specified, it will replace characters in the current
923     line, starting at column $start_col (default 0), which is useful to
924 root 1.6 replace only parts of a line. The font index in the rendition will
925 root 1.4 automatically be updated.
926    
927     $text is in a special encoding: tabs and wide characters that use
928 root 1.33 more than one cell when displayed are padded with $urxvt::NOCHAR
929 root 1.35 (chr 65535) characters. Characters with combining characters and
930     other characters that do not fit into the normal tetx encoding will
931     be replaced with characters in the private use area.
932 root 1.4
933     You have to obey this encoding when changing text. The advantage is
934     that "substr" and similar functions work on screen cells and not on
935     characters.
936    
937     The methods "$term->special_encode" and "$term->special_decode" can
938     be used to convert normal strings into this encoding and vice versa.
939    
940     $rend = $term->ROW_r ($row_number[, $new_rend[, $start_col]])
941     Like "$term->ROW_t", but returns an arrayref with rendition bitsets.
942     Rendition bitsets contain information about colour, font, font
943     styles and similar information. See also "$term->ROW_t".
944    
945     When setting rendition, the font mask will be ignored.
946    
947 root 1.6 See the section on RENDITION, above.
948 root 1.4
949     $length = $term->ROW_l ($row_number[, $new_length])
950     Returns the number of screen cells that are in use ("the line
951 root 1.7 length"). Unlike the urxvt core, this returns "$term->ncol" if the
952     line is joined with the following one.
953    
954     $bool = $term->is_longer ($row_number)
955     Returns true if the row is part of a multiple-row logical "line"
956     (i.e. joined with the following row), which means all characters are
957     in use and it is continued on the next row (and possibly a
958     continuation of the previous row(s)).
959    
960     $line = $term->line ($row_number)
961     Create and return a new "urxvt::line" object that stores information
962     about the logical line that row $row_number is part of. It supports
963     the following methods:
964    
965 root 1.12 $text = $line->t ([$new_text])
966     Returns or replaces the full text of the line, similar to
967     "ROW_t"
968    
969     $rend = $line->r ([$new_rend])
970     Returns or replaces the full rendition array of the line,
971     similar to "ROW_r"
972 root 1.7
973     $length = $line->l
974     Returns the length of the line in cells, similar to "ROW_l".
975    
976     $rownum = $line->beg
977     $rownum = $line->end
978     Return the row number of the first/last row of the line,
979     respectively.
980    
981     $offset = $line->offset_of ($row, $col)
982     Returns the character offset of the given row|col pair within
983 root 1.23 the logical line. Works for rows outside the line, too, and
984     returns corresponding offsets outside the string.
985 root 1.7
986     ($row, $col) = $line->coord_of ($offset)
987     Translates a string offset into terminal coordinates again.
988 root 1.4
989 root 1.15 $text = $term->special_encode $string
990 root 1.4 Converts a perl string into the special encoding used by
991     rxvt-unicode, where one character corresponds to one screen cell.
992     See "$term->ROW_t" for details.
993    
994     $string = $term->special_decode $text
995     Converts rxvt-unicodes text reprsentation into a perl string. See
996     "$term->ROW_t" for details.
997    
998 root 1.38 $success = $term->grab_button ($button, $modifiermask[, $window =
999     $term->vt])
1000     $term->ungrab_button ($button, $modifiermask[, $window = $term->vt])
1001     Register/unregister a synchronous button grab. See the XGrabButton
1002     manpage.
1003 root 1.15
1004     $success = $term->grab ($eventtime[, $sync])
1005     Calls XGrabPointer and XGrabKeyboard in asynchronous (default) or
1006     synchronous ($sync is true). Also remembers the grab timestampe.
1007    
1008     $term->allow_events_async
1009     Calls XAllowEvents with AsyncBoth for the most recent grab.
1010    
1011     $term->allow_events_sync
1012     Calls XAllowEvents with SyncBoth for the most recent grab.
1013    
1014     $term->allow_events_replay
1015     Calls XAllowEvents with both ReplayPointer and ReplayKeyboard for
1016     the most recent grab.
1017    
1018     $term->ungrab
1019     Calls XUngrab for the most recent grab. Is called automatically on
1020     evaluation errors, as it is better to lose the grab in the error
1021     case as the session.
1022    
1023 root 1.33 $atom = $term->XInternAtom ($atom_name[, $only_if_exists])
1024     $atom_name = $term->XGetAtomName ($atom)
1025     @atoms = $term->XListProperties ($window)
1026     ($type,$format,$octets) = $term->XGetWindowProperty ($window, $property)
1027     $term->XChangeWindowProperty ($window, $property, $type, $format,
1028     $octets)
1029     $term->XDeleteProperty ($window, $property)
1030     $window = $term->DefaultRootWindow
1031     $term->XReparentWindow ($window, $parent, [$x, $y])
1032     $term->XMapWindow ($window)
1033     $term->XUnmapWindow ($window)
1034     $term->XMoveResizeWindow ($window, $x, $y, $width, $height)
1035     ($x, $y, $child_window) = $term->XTranslateCoordinates ($src, $dst, $x,
1036     $y)
1037     $term->XChangeInput ($window, $add_events[, $del_events])
1038     Various X or X-related functions. The $term object only serves as
1039     the source of the display, otherwise those functions map
1040     more-or-less directory onto the X functions of the same name.
1041    
1042 root 1.13 The "urxvt::popup" Class
1043 root 1.19 $popup->add_title ($title)
1044     Adds a non-clickable title to the popup.
1045    
1046     $popup->add_separator ([$sepchr])
1047     Creates a separator, optionally using the character given as
1048     $sepchr.
1049    
1050     $popup->add_button ($text, $cb)
1051     Adds a clickable button to the popup. $cb is called whenever it is
1052     selected.
1053    
1054     $popup->add_toggle ($text, $cb, $initial_value)
1055     Adds a toggle/checkbox item to the popup. Teh callback gets called
1056     whenever it gets toggled, with a boolean indicating its value as its
1057     first argument.
1058    
1059     $popup->show
1060     Displays the popup (which is initially hidden).
1061    
1062 root 1.1 The "urxvt::timer" Class
1063 root 1.21 This class implements timer watchers/events. Time is represented as a
1064     fractional number of seconds since the epoch. Example:
1065 root 1.1
1066 root 1.21 $term->{overlay} = $term->overlay (-1, 0, 8, 1, urxvt::OVERLAY_RSTYLE, 0);
1067     $term->{timer} = urxvt::timer
1068     ->new
1069     ->interval (1)
1070     ->cb (sub {
1071     $term->{overlay}->set (0, 0,
1072     sprintf "%2d:%02d:%02d", (localtime urxvt::NOW)[2,1,0]);
1073     });
1074    
1075     $timer = new urxvt::timer
1076     Create a new timer object in started state. It is scheduled to fire
1077     immediately.
1078    
1079     $timer = $timer->cb (sub { my ($timer) = @_; ... })
1080     Set the callback to be called when the timer triggers.
1081    
1082     $tstamp = $timer->at
1083     Return the time this watcher will fire next.
1084    
1085     $timer = $timer->set ($tstamp)
1086     Set the time the event is generated to $tstamp.
1087    
1088     $timer = $timer->interval ($interval)
1089     Normally (and when $interval is 0), the timer will automatically
1090     stop after it has fired once. If $interval is non-zero, then the
1091     timer is automatically rescheduled at the given intervals.
1092 root 1.6
1093 root 1.21 $timer = $timer->start
1094     Start the timer.
1095 root 1.1
1096 root 1.21 $timer = $timer->start ($tstamp)
1097     Set the event trigger time to $tstamp and start the timer.
1098 root 1.1
1099 root 1.31 $timer = $timer->after ($delay)
1100     Like "start", but sets the expiry timer to c<urxvt::NOW + $delay>.
1101    
1102 root 1.21 $timer = $timer->stop
1103     Stop the timer.
1104 root 1.1
1105     The "urxvt::iow" Class
1106 root 1.21 This class implements io watchers/events. Example:
1107 root 1.1
1108 root 1.21 $term->{socket} = ...
1109     $term->{iow} = urxvt::iow
1110     ->new
1111     ->fd (fileno $term->{socket})
1112     ->events (urxvt::EVENT_READ)
1113     ->start
1114     ->cb (sub {
1115     my ($iow, $revents) = @_;
1116     # $revents must be 1 here, no need to check
1117     sysread $term->{socket}, my $buf, 8192
1118     or end-of-file;
1119     });
1120    
1121     $iow = new urxvt::iow
1122     Create a new io watcher object in stopped state.
1123    
1124     $iow = $iow->cb (sub { my ($iow, $reventmask) = @_; ... })
1125     Set the callback to be called when io events are triggered.
1126     $reventmask is a bitset as described in the "events" method.
1127    
1128     $iow = $iow->fd ($fd)
1129     Set the filedescriptor (not handle) to watch.
1130    
1131     $iow = $iow->events ($eventmask)
1132     Set the event mask to watch. The only allowed values are
1133     "urxvt::EVENT_READ" and "urxvt::EVENT_WRITE", which might be ORed
1134     together, or "urxvt::EVENT_NONE".
1135 root 1.1
1136 root 1.21 $iow = $iow->start
1137     Start watching for requested events on the given handle.
1138 root 1.1
1139 root 1.21 $iow = $iow->stop
1140     Stop watching for events on the given filehandle.
1141 root 1.1
1142 root 1.32 The "urxvt::iw" Class
1143     This class implements idle watchers, that get called automatically when
1144     the process is idle. They should return as fast as possible, after doing
1145     some useful work.
1146    
1147     $iw = new urxvt::iw
1148     Create a new idle watcher object in stopped state.
1149    
1150     $iw = $iw->cb (sub { my ($iw) = @_; ... })
1151     Set the callback to be called when the watcher triggers.
1152    
1153     $timer = $timer->start
1154     Start the watcher.
1155    
1156     $timer = $timer->stop
1157     Stop the watcher.
1158    
1159     The "urxvt::pw" Class
1160     This class implements process watchers. They create an event whenever a
1161     process exits, after which they stop automatically.
1162    
1163     my $pid = fork;
1164     ...
1165     $term->{pw} = urxvt::pw
1166     ->new
1167     ->start ($pid)
1168     ->cb (sub {
1169     my ($pw, $exit_status) = @_;
1170     ...
1171     });
1172    
1173     $pw = new urxvt::pw
1174     Create a new process watcher in stopped state.
1175    
1176     $pw = $pw->cb (sub { my ($pw, $exit_status) = @_; ... })
1177     Set the callback to be called when the timer triggers.
1178    
1179     $pw = $timer->start ($pid)
1180     Tells the wqtcher to start watching for process $pid.
1181    
1182     $pw = $pw->stop
1183     Stop the watcher.
1184    
1185 root 1.1 ENVIRONMENT
1186     URXVT_PERL_VERBOSITY
1187 root 1.21 This variable controls the verbosity level of the perl extension. Higher
1188     numbers indicate more verbose output.
1189 root 1.1
1190 root 1.21 == 0 - fatal messages
1191     >= 3 - script loading and management
1192 root 1.23 >=10 - all called hooks
1193     >=11 - hook reutrn values
1194 root 1.1
1195     AUTHOR
1196 root 1.21 Marc Lehmann <pcg@goof.com>
1197     http://software.schmorp.de/pkg/rxvt-unicode
1198 root 1.1