~ubuntu-branches/ubuntu/dapper/rxvt-unicode/dapper

« back to all changes in this revision

Viewing changes to doc/rxvtperl.3.man.in

  • Committer: Bazaar Package Importer
  • Author(s): Eduard Bloch
  • Date: 2006-01-16 16:51:28 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20060116165128-dmz1wi3x3e17gu43
Tags: 7.0-1
* New upstream release
  + autodetection of (incorrect) Latin1 in pure UTF-8 environment works
    again (closes: #347718)
* removed the font name preset, automatic selection works acceptably well

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
.\" ========================================================================
130
130
.\"
131
131
.IX Title "rxvt 3"
132
 
.TH rxvt 3 "2006-01-04" "6.3" "RXVT-UNICODE"
 
132
.TH rxvt 3 "2006-01-13" "7.0" "RXVT-UNICODE"
133
133
.SH "NAME"
134
134
@@RXVT_NAME@@perl \- rxvt\-unicode's embedded perl interpreter
135
135
.SH "SYNOPSIS"
154
154
.Ve
155
155
.SH "DESCRIPTION"
156
156
.IX Header "DESCRIPTION"
157
 
Everytime a terminal object gets created, scripts specified via the
158
 
\&\f(CW\*(C`perl\*(C'\fR resource are loaded and associated with it.
 
157
Everytime a terminal object gets created, extension scripts specified via
 
158
the \f(CW\*(C`perl\*(C'\fR resource are loaded and associated with it.
159
159
.PP
160
160
Scripts are compiled in a 'use strict' and 'use utf8' environment, and
161
161
thus must be encoded as \s-1UTF\-8\s0.
162
162
.PP
163
163
Each script will only ever be loaded once, even in @@RXVT_NAME@@d, where
164
164
scripts will be shared (but not enabled) for all terminals.
165
 
.Sh "Prepackaged Extensions"
166
 
.IX Subsection "Prepackaged Extensions"
167
 
This section describes the extensiosn delivered with this version. You can
 
165
.SH "PREPACKAGED EXTENSIONS"
 
166
.IX Header "PREPACKAGED EXTENSIONS"
 
167
This section describes the extensions delivered with this release. You can
168
168
find them in \fI@@RXVT_LIBDIR@@/urxvt/perl/\fR.
169
169
.PP
170
170
You can activate them like this:
172
172
.Vb 1
173
173
\&  @@RXVT_NAME@@ -pe <extensionname>
174
174
.Ve
175
 
.IP "selection" 4
176
 
.IX Item "selection"
177
 
Intelligent selection. This extension tries to be more intelligent when
178
 
the user extends selections (double\-click). Right now, it tries to select
179
 
urls and complete shell-quoted arguments, which is very convenient, too,
180
 
if your \fIls\fR supports \f(CW\*(C`\-\-quoting\-style=shell\*(C'\fR.
181
 
.Sp
182
 
It also offers the following bindable event:
 
175
.IP "selection (enabled by default)" 4
 
176
.IX Item "selection (enabled by default)"
 
177
(More) intelligent selection. This extension tries to be more intelligent
 
178
when the user extends selections (double\-click and further clicks). Right
 
179
now, it tries to select words, urls and complete shell-quoted
 
180
arguments, which is very convenient, too, if your \fIls\fR supports
 
181
\&\f(CW\*(C`\-\-quoting\-style=shell\*(C'\fR.
 
182
.Sp
 
183
A double-click usually selects the word under the cursor, further clicks
 
184
will enlarge the selection.
 
185
.Sp
 
186
The selection works by trying to match a number of regexes and displaying
 
187
them in increasing order of length. You can add your own regexes by
 
188
specifying resources of the form:
 
189
.Sp
 
190
.Vb 3
 
191
\&   URxvt.selection.pattern-0: perl-regex
 
192
\&   URxvt.selection.pattern-1: perl-regex
 
193
\&   ...
 
194
.Ve
 
195
.Sp
 
196
The index number (0, 1...) must not have any holes, and each regex must
 
197
contain at least one pair of capturing parentheses, which will be used for
 
198
the match. For example, the followign adds a regex that matches everything
 
199
between two vertical bars:
 
200
.Sp
 
201
.Vb 1
 
202
\&   URxvt.selection.pattern-0: \e\e|([^|]+)\e\e|
 
203
.Ve
 
204
.Sp
 
205
You can look at the source of the selection extension to see more
 
206
interesting uses, such as parsing a line from beginning to end.
 
207
.Sp
 
208
This extension also offers the following bindable keyboard command:
183
209
.RS 4
184
210
.IP "rot13" 4
185
211
.IX Item "rot13"
191
217
.RE
192
218
.RS 4
193
219
.RE
 
220
.IP "option-popup (enabled by default)" 4
 
221
.IX Item "option-popup (enabled by default)"
 
222
Binds a popup menu to Ctrl\-Button2 that lets you toggle (some) options at
 
223
runtime.
 
224
.IP "selection-popup (enabled by default)" 4
 
225
.IX Item "selection-popup (enabled by default)"
 
226
Binds a popup menu to Ctrl\-Button3 that lets you convert the selection
 
227
text into various other formats/action (such as uri unescaping, perl
 
228
evalution, web-browser starting etc.), depending on content.
 
229
.IP "searchable\-scrollback<hotkey> (enabled by default)" 4
 
230
.IX Item "searchable-scrollback<hotkey> (enabled by default)"
 
231
Adds regex search functionality to the scrollback buffer, triggered
 
232
by a hotkey (default: \f(CW\*(C`M\-s\*(C'\fR). While in search mode, normal terminal
 
233
input/output is suspended and a regex is displayed at the bottom of the
 
234
screen.
 
235
.Sp
 
236
Inputting characters appends them to the regex and continues incremental
 
237
search. \f(CW\*(C`BackSpace\*(C'\fR removes a character from the regex, \f(CW\*(C`Up\*(C'\fR and \f(CW\*(C`Down\*(C'\fR
 
238
search upwards/downwards in the scrollback buffer, \f(CW\*(C`End\*(C'\fR jumps to the
 
239
bottom. \f(CW\*(C`Escape\*(C'\fR leaves search mode and returns to the point where search
 
240
was started, while \f(CW\*(C`Enter\*(C'\fR or \f(CW\*(C`Return\*(C'\fR stay at the current position and
 
241
additionally stores the first match in the current line into the primary
 
242
selection.
 
243
.IP "selection-autotransform" 4
 
244
.IX Item "selection-autotransform"
 
245
This selection allows you to do automatic transforms on a selection
 
246
whenever a selection is made.
 
247
.Sp
 
248
It works by specifying perl snippets (most useful is a single \f(CW\*(C`s///\*(C'\fR
 
249
operator) that modify \f(CW$_\fR as resources:
 
250
.Sp
 
251
.Vb 3
 
252
\&   URxvt.selection-autotransform.0: transform
 
253
\&   URxvt.selection-autotransform.1: transform
 
254
\&   ...
 
255
.Ve
 
256
.Sp
 
257
For example, the following will transform selections of the form
 
258
\&\f(CW\*(C`filename:number\*(C'\fR, often seen in compiler messages, into \f(CW\*(C`vi +$filename
 
259
$word\*(C'\fR:
 
260
.Sp
 
261
.Vb 1
 
262
\&   URxvt.selection-autotransform.0: s/^([^:[:space:]]+):(\e\ed+):?$/vi +$2 \e\eQ$1\e\eE\e\ex0d/
 
263
.Ve
 
264
.Sp
 
265
And this example matches the same,but replaces it with vi-commands you can
 
266
paste directly into your (vi :) editor:
 
267
.Sp
 
268
.Vb 1
 
269
\&   URxvt.selection-autotransform.0: s/^([^:[:space:]]+(\e\ed+):?$/\e\ex1b:e \e\eQ$1\e\eE\e\ex0d:$2\e\ex0d/
 
270
.Ve
 
271
.Sp
 
272
Of course, this can be modified to suit your needs and your editor :)
 
273
.Sp
 
274
To expand the example above to typical perl error messages (\*(L"\s-1XXX\s0 at
 
275
\&\s-1FILENAME\s0 line \s-1YYY\s0.\*(R"), you need a slightly more elaborate solution:
 
276
.Sp
 
277
.Vb 2
 
278
\&   URxvt.selection.pattern-0: ( at .*? line \e\ed+\e\e.)
 
279
\&   URxvt.selection-autotransform.0: s/^ at (.*?) line (\e\ed+)\e\e.$/\ex1b:e \e\eQ$1\eE\e\ex0d:$2\e\ex0d/
 
280
.Ve
 
281
.Sp
 
282
The first line tells the selection code to treat the unchanging part of
 
283
every error message as a selection pattern, and the second line transforms
 
284
the message into vi commands to load the file.
 
285
.IP "mark-urls" 4
 
286
.IX Item "mark-urls"
 
287
Uses per-line display filtering (\f(CW\*(C`on_line_update\*(C'\fR) to underline urls and
 
288
make them clickable. When middle\-clicked, the program specified in the
 
289
resource \f(CW\*(C`urlLauncher\*(C'\fR (default \f(CW\*(C`x\-www\-browser\*(C'\fR) will be started with
 
290
the \s-1URL\s0 as first argument.
 
291
.IP "block-graphics-to-ascii" 4
 
292
.IX Item "block-graphics-to-ascii"
 
293
A not very useful example of filtering all text output to the terminal,
 
294
by replacing all line-drawing characters (U+2500 .. U+259F) by a
 
295
similar-looking ascii character.
194
296
.IP "digital-clock" 4
195
297
.IX Item "digital-clock"
196
298
Displays a digital clock using the built-in overlay.
199
301
Displays a very simple digital clock in the upper right corner of the
200
302
window. Illustrates overwriting the refresh callbacks to create your own
201
303
overlays or changes.
 
304
.SH "API DOCUMENTATION"
 
305
.IX Header "API DOCUMENTATION"
202
306
.Sh "General \s-1API\s0 Considerations"
203
307
.IX Subsection "General API Considerations"
204
308
All objects (such as terminals, time watchers etc.) are typical
211
315
emptied, so its best to store related objects such as time watchers and
212
316
the like inside the terminal object so they get destroyed as soon as the
213
317
terminal is destroyed.
 
318
.PP
 
319
Argument names also often indicate the type of a parameter. Here are some
 
320
hints on what they mean:
 
321
.IP "$text" 4
 
322
.IX Item "$text"
 
323
Rxvt-unicodes special way of encoding text, where one \*(L"unicode\*(R" character
 
324
always represents one screen cell. See ROW_t for a discussion of this format.
 
325
.IP "$string" 4
 
326
.IX Item "$string"
 
327
A perl text string, with an emphasis on \fItext\fR. It can store all unicode
 
328
characters and is to be distinguished with text encoded in a specific
 
329
encoding (often locale\-specific) and binary data.
 
330
.IP "$octets" 4
 
331
.IX Item "$octets"
 
332
Either binary data or \- more common \- a text string encoded in a
 
333
locale-specific way.
 
334
.Sh "Extension Objects"
 
335
.IX Subsection "Extension Objects"
 
336
Very perl extension is a perl class. A separate perl object is created
 
337
for each terminal and each extension and passed as the first parameter to
 
338
hooks. So extensions can use their \f(CW$self\fR object without having to think
 
339
about other extensions, with the exception of methods and members that
 
340
begin with an underscore character \f(CW\*(C`_\*(C'\fR: these are reserved for internal
 
341
use.
 
342
.PP
 
343
Although it isn't a \f(CW\*(C`urxvt::term\*(C'\fR object, you can call all methods of the
 
344
\&\f(CW\*(C`urxvt::term\*(C'\fR class on this object.
 
345
.PP
 
346
It has the following methods and data members:
 
347
.ie n .IP "$urxvt_term = $self\->{term}" 4
 
348
.el .IP "$urxvt_term = \f(CW$self\fR\->{term}" 4
 
349
.IX Item "$urxvt_term = $self->{term}"
 
350
Returns the \f(CW\*(C`urxvt::term\*(C'\fR object associated with this instance of the
 
351
extension. This member \fImust not\fR be changed in any way.
 
352
.ie n .IP "$self\->enable ($hook_name => $cb\fR, [$hook_name => \f(CW$cb..])" 4
 
353
.el .IP "$self\->enable ($hook_name => \f(CW$cb\fR, [$hook_name => \f(CW$cb\fR..])" 4
 
354
.IX Item "$self->enable ($hook_name => $cb, [$hook_name => $cb..])"
 
355
Dynamically enable the given hooks (named without the \f(CW\*(C`on_\*(C'\fR prefix) for
 
356
this extension, replacing any previous hook. This is useful when you want
 
357
to overwrite time-critical hooks only temporarily.
 
358
.ie n .IP "$self\->disable ($hook_name[, $hook_name..])" 4
 
359
.el .IP "$self\->disable ($hook_name[, \f(CW$hook_name\fR..])" 4
 
360
.IX Item "$self->disable ($hook_name[, $hook_name..])"
 
361
Dynamically disable the given hooks.
214
362
.Sh "Hooks"
215
363
.IX Subsection "Hooks"
216
 
The following subroutines can be declared in loaded scripts, and will be
 
364
The following subroutines can be declared in extension files, and will be
217
365
called whenever the relevant event happens.
218
366
.PP
219
 
The first argument passed to them is an object private to each terminal
220
 
and extension package.  You can call all \f(CW\*(C`urxvt::term\*(C'\fR methods on it, but
221
 
its not a real \f(CW\*(C`urxvt::term\*(C'\fR object. Instead, the real \f(CW\*(C`urxvt::term\*(C'\fR
222
 
object that is shared between all packages is stored in the \f(CW\*(C`term\*(C'\fR
223
 
member.
224
 
.PP
225
 
All of them must return a boolean value. If it is true, then the event
226
 
counts as being \fIconsumed\fR, and the invocation of other hooks is skipped,
227
 
and the relevant action might not be carried out by the \*(C+ code.
228
 
.PP
229
 
When in doubt, return a false value (preferably \f(CW\*(C`()\*(C'\fR).
 
367
The first argument passed to them is an extension oject as described in
 
368
the in the \f(CW\*(C`Extension Objects\*(C'\fR section.
 
369
.PP
 
370
\&\fBAll\fR of these hooks must return a boolean value. If it is true, then the
 
371
event counts as being \fIconsumed\fR, and the invocation of other hooks is
 
372
skipped, and the relevant action might not be carried out by the \*(C+ code.
 
373
.PP
 
374
\&\fIWhen in doubt, return a false value (preferably \f(CI\*(C`()\*(C'\fI).\fR
230
375
.ie n .IP "on_init $term" 4
231
376
.el .IP "on_init \f(CW$term\fR" 4
232
377
.IX Item "on_init $term"
233
378
Called after a new terminal object has been initialized, but before
234
 
windows are created or the command gets run.
 
379
windows are created or the command gets run. Most methods are unsafe to
 
380
call or deliver senseless data, as terminal size and other characteristics
 
381
have not yet been determined. You can safely query and change resources,
 
382
though.
235
383
.ie n .IP "on_reset $term" 4
236
384
.el .IP "on_reset \f(CW$term\fR" 4
237
385
.IX Item "on_reset $term"
266
414
Called whenever the user tries to extend the selection (e.g. with a double
267
415
click) and is either supposed to return false (normal operation), or
268
416
should extend the selection itelf and return true to suppress the built-in
269
 
processing.
 
417
processing. This can happen multiple times, as long as the callback
 
418
returns true, it will be called on every further click by the user and is
 
419
supposed to enlarge the selection more and more, if possible.
270
420
.Sp
271
421
See the \fIselection\fR example extension.
272
 
.ie n .IP "on_focus_in $term" 4
273
 
.el .IP "on_focus_in \f(CW$term\fR" 4
274
 
.IX Item "on_focus_in $term"
275
 
Called whenever the window gets the keyboard focus, before urxvt does
276
 
focus in processing.
277
 
.ie n .IP "on_focus_out $term" 4
278
 
.el .IP "on_focus_out \f(CW$term\fR" 4
279
 
.IX Item "on_focus_out $term"
280
 
Called wheneever the window loses keyboard focus, before urxvt does focus
281
 
out processing.
282
422
.ie n .IP "on_view_change $term\fR, \f(CW$offset" 4
283
423
.el .IP "on_view_change \f(CW$term\fR, \f(CW$offset\fR" 4
284
424
.IX Item "on_view_change $term, $offset"
295
435
It is called before lines are scrolled out (so rows 0 .. min ($lines \- 1,
296
436
\&\f(CW$nrow\fR \- 1) represent the lines to be scrolled out). \f(CW$saved\fR is the total
297
437
number of lines that will be in the scrollback buffer.
298
 
.ie n .IP "on_tty_activity $term *NYI*" 4
299
 
.el .IP "on_tty_activity \f(CW$term\fR *NYI*" 4
300
 
.IX Item "on_tty_activity $term *NYI*"
301
 
Called whenever the program(s) running in the urxvt window send output.
302
438
.ie n .IP "on_osc_seq $term\fR, \f(CW$string" 4
303
439
.el .IP "on_osc_seq \f(CW$term\fR, \f(CW$string\fR" 4
304
440
.IX Item "on_osc_seq $term, $string"
312
448
Be careful not ever to trust (in a security sense) the data you receive,
313
449
as its source can not easily be controleld (e\-mail content, messages from
314
450
other users on the same system etc.).
 
451
.ie n .IP "on_add_lines $term\fR, \f(CW$string" 4
 
452
.el .IP "on_add_lines \f(CW$term\fR, \f(CW$string\fR" 4
 
453
.IX Item "on_add_lines $term, $string"
 
454
Called whenever text is about to be output, with the text as argument. You
 
455
can filter/change and output the text yourself by returning a true value
 
456
and calling \f(CW\*(C`$term\->scr_add_lines\*(C'\fR yourself. Please note that this
 
457
might be very slow, however, as your hook is called for \fBall\fR text being
 
458
output.
 
459
.ie n .IP "on_tt_write $term\fR, \f(CW$octets" 4
 
460
.el .IP "on_tt_write \f(CW$term\fR, \f(CW$octets\fR" 4
 
461
.IX Item "on_tt_write $term, $octets"
 
462
Called whenever some data is written to the tty/pty and can be used to
 
463
suppress or filter tty input.
 
464
.ie n .IP "on_line_update $term\fR, \f(CW$row" 4
 
465
.el .IP "on_line_update \f(CW$term\fR, \f(CW$row\fR" 4
 
466
.IX Item "on_line_update $term, $row"
 
467
Called whenever a line was updated or changed. Can be used to filter
 
468
screen output (e.g. underline urls or other useless stuff). Only lines
 
469
that are being shown will be filtered, and, due to performance reasons,
 
470
not always immediately.
 
471
.Sp
 
472
The row number is always the topmost row of the line if the line spans
 
473
multiple rows.
 
474
.Sp
 
475
Please note that, if you change the line, then the hook might get called
 
476
later with the already-modified line (e.g. if unrelated parts change), so
 
477
you cannot just toggle rendition bits, but only set them.
315
478
.ie n .IP "on_refresh_begin $term" 4
316
479
.el .IP "on_refresh_begin \f(CW$term\fR" 4
317
480
.IX Item "on_refresh_begin $term"
329
492
Called whenever the user presses a key combination that has a
330
493
\&\f(CW\*(C`perl:string\*(C'\fR action bound to it (see description of the \fBkeysym\fR
331
494
resource in the @@RXVT_NAME@@(1) manpage).
 
495
.ie n .IP "on_x_event $term\fR, \f(CW$event" 4
 
496
.el .IP "on_x_event \f(CW$term\fR, \f(CW$event\fR" 4
 
497
.IX Item "on_x_event $term, $event"
 
498
Called on every X event received on the vt window (and possibly other
 
499
windows). Should only be used as a last resort. Most event structure
 
500
members are not passed.
 
501
.ie n .IP "on_focus_in $term" 4
 
502
.el .IP "on_focus_in \f(CW$term\fR" 4
 
503
.IX Item "on_focus_in $term"
 
504
Called whenever the window gets the keyboard focus, before rxvt-unicode
 
505
does focus in processing.
 
506
.ie n .IP "on_focus_out $term" 4
 
507
.el .IP "on_focus_out \f(CW$term\fR" 4
 
508
.IX Item "on_focus_out $term"
 
509
Called wheneever the window loses keyboard focus, before rxvt-unicode does
 
510
focus out processing.
 
511
.ie n .IP "on_key_press $term\fR, \f(CW$event\fR, \f(CW$keysym\fR, \f(CW$octets" 4
 
512
.el .IP "on_key_press \f(CW$term\fR, \f(CW$event\fR, \f(CW$keysym\fR, \f(CW$octets\fR" 4
 
513
.IX Item "on_key_press $term, $event, $keysym, $octets"
 
514
.PD 0
 
515
.ie n .IP "on_key_release $term\fR, \f(CW$event\fR, \f(CW$keysym" 4
 
516
.el .IP "on_key_release \f(CW$term\fR, \f(CW$event\fR, \f(CW$keysym\fR" 4
 
517
.IX Item "on_key_release $term, $event, $keysym"
 
518
.ie n .IP "on_button_press $term\fR, \f(CW$event" 4
 
519
.el .IP "on_button_press \f(CW$term\fR, \f(CW$event\fR" 4
 
520
.IX Item "on_button_press $term, $event"
 
521
.ie n .IP "on_button_release $term\fR, \f(CW$event" 4
 
522
.el .IP "on_button_release \f(CW$term\fR, \f(CW$event\fR" 4
 
523
.IX Item "on_button_release $term, $event"
 
524
.ie n .IP "on_motion_notify $term\fR, \f(CW$event" 4
 
525
.el .IP "on_motion_notify \f(CW$term\fR, \f(CW$event\fR" 4
 
526
.IX Item "on_motion_notify $term, $event"
 
527
.ie n .IP "on_map_notify $term\fR, \f(CW$event" 4
 
528
.el .IP "on_map_notify \f(CW$term\fR, \f(CW$event\fR" 4
 
529
.IX Item "on_map_notify $term, $event"
 
530
.ie n .IP "on_unmap_notify $term\fR, \f(CW$event" 4
 
531
.el .IP "on_unmap_notify \f(CW$term\fR, \f(CW$event\fR" 4
 
532
.IX Item "on_unmap_notify $term, $event"
 
533
.PD
 
534
Called whenever the corresponding X event is received for the terminal If
 
535
the hook returns true, then the even will be ignored by rxvt\-unicode.
 
536
.Sp
 
537
The event is a hash with most values as named by Xlib (see the XEvent
 
538
manpage), with the additional members \f(CW\*(C`row\*(C'\fR and \f(CW\*(C`col\*(C'\fR, which are the row
 
539
and column under the mouse cursor.
 
540
.Sp
 
541
\&\f(CW\*(C`on_key_press\*(C'\fR additionally receives the string rxvt-unicode would
 
542
output, if any, in locale-specific encoding.
 
543
.Sp
 
544
subwindow.
332
545
.ie n .Sh "Variables in the ""urxvt"" Package"
333
546
.el .Sh "Variables in the \f(CWurxvt\fP Package"
334
547
.IX Subsection "Variables in the urxvt Package"
 
548
.IP "$urxvt::LIBDIR" 4
 
549
.IX Item "$urxvt::LIBDIR"
 
550
The rxvt-unicode library directory, where, among other things, the perl
 
551
modules and scripts are stored.
 
552
.ie n .IP "$urxvt::RESCLASS, $urxvt::RESCLASS" 4
 
553
.el .IP "$urxvt::RESCLASS, \f(CW$urxvt::RESCLASS\fR" 4
 
554
.IX Item "$urxvt::RESCLASS, $urxvt::RESCLASS"
 
555
The resource class and name rxvt-unicode uses to look up X resources.
 
556
.IP "$urxvt::RXVTNAME" 4
 
557
.IX Item "$urxvt::RXVTNAME"
 
558
The basename of the installed binaries, usually \f(CW\*(C`urxvt\*(C'\fR.
335
559
.IP "$urxvt::TERM" 4
336
560
.IX Item "$urxvt::TERM"
337
 
The current terminal. Whenever a callback/Hook is bein executed, this
338
 
variable stores the current \f(CW\*(C`urxvt::term\*(C'\fR object.
 
561
The current terminal. This variable stores the current \f(CW\*(C`urxvt::term\*(C'\fR
 
562
object, whenever a callback/hook is executing.
339
563
.ie n .Sh "Functions in the ""urxvt"" Package"
340
564
.el .Sh "Functions in the \f(CWurxvt\fP Package"
341
565
.IX Subsection "Functions in the urxvt Package"
354
578
.Sp
355
579
Using this function has the advantage that its output ends up in the
356
580
correct place, e.g. on stderr of the connecting urxvtc client.
 
581
.Sp
 
582
Messages have a size limit of 1023 bytes currently.
 
583
.IP "$is_safe = urxvt::safe" 4
 
584
.IX Item "$is_safe = urxvt::safe"
 
585
Returns true when it is safe to do potentially unsafe things, such as
 
586
evaluating perl code specified by the user. This is true when urxvt was
 
587
started setuid or setgid.
357
588
.IP "$time = urxvt::NOW" 4
358
589
.IX Item "$time = urxvt::NOW"
359
590
Returns the \*(L"current time\*(R" (as per the event loop).
 
591
.IP "urxvt::CurrentTime" 4
 
592
.IX Item "urxvt::CurrentTime"
 
593
.PD 0
 
594
.IP "urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask, Button5Mask, AnyModifier" 4
 
595
.IX Item "urxvt::ShiftMask, LockMask, ControlMask, Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask, Button1Mask, Button2Mask, Button3Mask, Button4Mask, Button5Mask, AnyModifier"
 
596
.IP "urxvt::NoEventMask, KeyPressMask, KeyReleaseMask, ButtonPressMask, ButtonReleaseMask, EnterWindowMask, LeaveWindowMask, PointerMotionMask, PointerMotionHintMask, Button1MotionMask, Button2MotionMask, Button3MotionMask, Button4MotionMask, Button5MotionMask, ButtonMotionMask, KeymapStateMask, ExposureMask, VisibilityChangeMask, StructureNotifyMask, ResizeRedirectMask, SubstructureNotifyMask, SubstructureRedirectMask, FocusChangeMask, PropertyChangeMask, ColormapChangeMask, OwnerGrabButtonMask" 4
 
597
.IX Item "urxvt::NoEventMask, KeyPressMask, KeyReleaseMask, ButtonPressMask, ButtonReleaseMask, EnterWindowMask, LeaveWindowMask, PointerMotionMask, PointerMotionHintMask, Button1MotionMask, Button2MotionMask, Button3MotionMask, Button4MotionMask, Button5MotionMask, ButtonMotionMask, KeymapStateMask, ExposureMask, VisibilityChangeMask, StructureNotifyMask, ResizeRedirectMask, SubstructureNotifyMask, SubstructureRedirectMask, FocusChangeMask, PropertyChangeMask, ColormapChangeMask, OwnerGrabButtonMask"
 
598
.IP "urxvt::KeyPress, KeyRelease, ButtonPress, ButtonRelease, MotionNotify, EnterNotify, LeaveNotify, FocusIn, FocusOut, KeymapNotify, Expose, GraphicsExpose, NoExpose, VisibilityNotify, CreateNotify, DestroyNotify, UnmapNotify, MapNotify, MapRequest, ReparentNotify, ConfigureNotify, ConfigureRequest, GravityNotify, ResizeRequest, CirculateNotify, CirculateRequest, PropertyNotify, SelectionClear, SelectionRequest, SelectionNotify, ColormapNotify, ClientMessage, MappingNotify" 4
 
599
.IX Item "urxvt::KeyPress, KeyRelease, ButtonPress, ButtonRelease, MotionNotify, EnterNotify, LeaveNotify, FocusIn, FocusOut, KeymapNotify, Expose, GraphicsExpose, NoExpose, VisibilityNotify, CreateNotify, DestroyNotify, UnmapNotify, MapNotify, MapRequest, ReparentNotify, ConfigureNotify, ConfigureRequest, GravityNotify, ResizeRequest, CirculateNotify, CirculateRequest, PropertyNotify, SelectionClear, SelectionRequest, SelectionNotify, ColormapNotify, ClientMessage, MappingNotify"
 
600
.PD
 
601
Various constants for use in X calls and event processing.
360
602
.Sh "\s-1RENDITION\s0"
361
603
.IX Subsection "RENDITION"
362
604
Rendition bitsets contain information about colour, font, font styles and
387
629
.IX Item "$background = urxvt::GET_BASEBG $rend"
388
630
.PD
389
631
Return the foreground/background colour index, respectively.
390
 
.ie n .IP "$rend = urxvt::SET_FGCOLOR ($rend, $new_colour)" 4
391
 
.el .IP "$rend = urxvt::SET_FGCOLOR ($rend, \f(CW$new_colour\fR)" 4
392
 
.IX Item "$rend = urxvt::SET_FGCOLOR ($rend, $new_colour)"
 
632
.ie n .IP "$rend = urxvt::SET_FGCOLOR $rend\fR, \f(CW$new_colour" 4
 
633
.el .IP "$rend = urxvt::SET_FGCOLOR \f(CW$rend\fR, \f(CW$new_colour\fR" 4
 
634
.IX Item "$rend = urxvt::SET_FGCOLOR $rend, $new_colour"
393
635
.PD 0
394
 
.ie n .IP "$rend = urxvt::SET_BGCOLOR ($rend, $new_colour)" 4
395
 
.el .IP "$rend = urxvt::SET_BGCOLOR ($rend, \f(CW$new_colour\fR)" 4
396
 
.IX Item "$rend = urxvt::SET_BGCOLOR ($rend, $new_colour)"
 
636
.ie n .IP "$rend = urxvt::SET_BGCOLOR $rend\fR, \f(CW$new_colour" 4
 
637
.el .IP "$rend = urxvt::SET_BGCOLOR \f(CW$rend\fR, \f(CW$new_colour\fR" 4
 
638
.IX Item "$rend = urxvt::SET_BGCOLOR $rend, $new_colour"
397
639
.PD
398
640
Replace the foreground/background colour in the rendition mask with the
399
641
specified one.
400
 
.IP "$value = urxvt::GET_CUSTOM ($rend)" 4
401
 
.IX Item "$value = urxvt::GET_CUSTOM ($rend)"
 
642
.ie n .IP "$value = urxvt::GET_CUSTOM $rend" 4
 
643
.el .IP "$value = urxvt::GET_CUSTOM \f(CW$rend\fR" 4
 
644
.IX Item "$value = urxvt::GET_CUSTOM $rend"
402
645
Return the \*(L"custom\*(R" value: Every rendition has 5 bits for use by
403
646
extensions. They can be set and changed as you like and are initially
404
647
zero.
405
 
.ie n .IP "$rend = urxvt::SET_CUSTOM ($rend, $new_value)" 4
406
 
.el .IP "$rend = urxvt::SET_CUSTOM ($rend, \f(CW$new_value\fR)" 4
407
 
.IX Item "$rend = urxvt::SET_CUSTOM ($rend, $new_value)"
 
648
.ie n .IP "$rend = urxvt::SET_CUSTOM $rend\fR, \f(CW$new_value" 4
 
649
.el .IP "$rend = urxvt::SET_CUSTOM \f(CW$rend\fR, \f(CW$new_value\fR" 4
 
650
.IX Item "$rend = urxvt::SET_CUSTOM $rend, $new_value"
408
651
Change the custom value.
 
652
.ie n .Sh "The ""urxvt::anyevent"" Class"
 
653
.el .Sh "The \f(CWurxvt::anyevent\fP Class"
 
654
.IX Subsection "The urxvt::anyevent Class"
 
655
The sole purpose of this class is to deliver an interface to the
 
656
\&\f(CW\*(C`AnyEvent\*(C'\fR module \- any module using it will work inside urxvt without
 
657
further programming. The only exception is that you cannot wait on
 
658
condition variables, but non-blocking condvar use is ok. What this means
 
659
is that you cannot use blocking APIs, but the non-blocking variant should
 
660
work.
409
661
.ie n .Sh "The ""urxvt::term"" Class"
410
662
.el .Sh "The \f(CWurxvt::term\fP Class"
411
663
.IX Subsection "The urxvt::term Class"
 
664
.ie n .IP "$term = new urxvt::term $envhashref\fR, \f(CW$rxvtname, [arg...]" 4
 
665
.el .IP "$term = new urxvt::term \f(CW$envhashref\fR, \f(CW$rxvtname\fR, [arg...]" 4
 
666
.IX Item "$term = new urxvt::term $envhashref, $rxvtname, [arg...]"
 
667
Creates a new terminal, very similar as if you had started it with system
 
668
\&\f(CW\*(C`$rxvtname, arg...\*(C'\fR. \f(CW$envhashref\fR must be a reference to a \f(CW%ENV\fR\-like
 
669
hash which defines the environment of the new terminal.
 
670
.Sp
 
671
Croaks (and probably outputs an error message) if the new instance
 
672
couldn't be created.  Returns \f(CW\*(C`undef\*(C'\fR if the new instance didn't
 
673
initialise perl, and the terminal object otherwise. The \f(CW\*(C`init\*(C'\fR and
 
674
\&\f(CW\*(C`start\*(C'\fR hooks will be called during this call.
 
675
.IP "$term\->destroy" 4
 
676
.IX Item "$term->destroy"
 
677
Destroy the terminal object (close the window, free resources
 
678
etc.). Please note that @@RXVT_NAME@@ will not exit as long as any event
 
679
watchers (timers, io watchers) are still active.
 
680
.ie n .IP "$isset = $term\fR\->option ($optval[, \f(CW$set])" 4
 
681
.el .IP "$isset = \f(CW$term\fR\->option ($optval[, \f(CW$set\fR])" 4
 
682
.IX Item "$isset = $term->option ($optval[, $set])"
 
683
Returns true if the option specified by \f(CW$optval\fR is enabled, and
 
684
optionally change it. All option values are stored by name in the hash
 
685
\&\f(CW%urxvt::OPTION\fR. Options not enabled in this binary are not in the hash.
 
686
.Sp
 
687
Here is a a likely non-exhaustive list of option names, please see the
 
688
source file \fI/src/optinc.h\fR to see the actual list:
 
689
.Sp
 
690
.Vb 6
 
691
\& borderLess console cursorBlink cursorUnderline hold iconic insecure
 
692
\& intensityStyles jumpScroll loginShell mapAlert meta8 mouseWheelScrollPage
 
693
\& pastableTabs pointerBlank reverseVideo scrollBar scrollBar_floating
 
694
\& scrollBar_right scrollTtyKeypress scrollTtyOutput scrollWithBuffer
 
695
\& secondaryScreen secondaryScroll skipBuiltinGlyphs transparent
 
696
\& tripleclickwords utmpInhibit visualBell
 
697
.Ve
412
698
.ie n .IP "$value = $term\fR\->resource ($name[, \f(CW$newval])" 4
413
699
.el .IP "$value = \f(CW$term\fR\->resource ($name[, \f(CW$newval\fR])" 4
414
700
.IX Item "$value = $term->resource ($name[, $newval])"
428
714
terminal is destroyed, so changing options frequently will eat memory.
429
715
.Sp
430
716
Here is a a likely non-exhaustive list of resource names, not all of which
431
 
are supported in every build, please see the source to see the actual
432
 
list:
 
717
are supported in every build, please see the source file \fI/src/rsinc.h\fR
 
718
to see the actual list:
433
719
.Sp
434
720
.Vb 12
435
721
\&  answerbackstring backgroundPixmap backspace_key boldFont boldItalicFont
445
731
\&  shade term_name title transparent transparent_all tripleclickwords
446
732
\&  utmpInhibit visualBell
447
733
.Ve
448
 
.ie n .IP "$rend = $term\->screen_rstyle ([$new_rstyle])" 4
449
 
.el .IP "$rend = \f(CW$term\fR\->screen_rstyle ([$new_rstyle])" 4
450
 
.IX Item "$rend = $term->screen_rstyle ([$new_rstyle])"
451
 
Return and optionally change the current rendition. Text thta is output by
452
 
the temrianl application will use this style.
 
734
.ie n .IP "$value = $term\->x_resource ($pattern)" 4
 
735
.el .IP "$value = \f(CW$term\fR\->x_resource ($pattern)" 4
 
736
.IX Item "$value = $term->x_resource ($pattern)"
 
737
Returns the X\-Resource for the given pattern, excluding the program or
 
738
class name, i.e.  \f(CW\*(C`$term\->x_resource ("boldFont")\*(C'\fR should return the
 
739
same value as used by this instance of rxvt\-unicode. Returns \f(CW\*(C`undef\*(C'\fR if no
 
740
resource with that pattern exists.
 
741
.Sp
 
742
This method should only be called during the \f(CW\*(C`on_start\*(C'\fR hook, as there is
 
743
only one resource database per display, and later invocations might return
 
744
the wrong resources.
 
745
.ie n .IP "$success = $term\fR\->parse_keysym ($keysym_spec, \f(CW$command_string)" 4
 
746
.el .IP "$success = \f(CW$term\fR\->parse_keysym ($keysym_spec, \f(CW$command_string\fR)" 4
 
747
.IX Item "$success = $term->parse_keysym ($keysym_spec, $command_string)"
 
748
Adds a keymap translation exactly as specified via a resource. See the
 
749
\&\f(CW\*(C`keysym\*(C'\fR resource in the @@RXVT_NAME@@(1) manpage.
 
750
.ie n .IP "$rend = $term\->rstyle ([$new_rstyle])" 4
 
751
.el .IP "$rend = \f(CW$term\fR\->rstyle ([$new_rstyle])" 4
 
752
.IX Item "$rend = $term->rstyle ([$new_rstyle])"
 
753
Return and optionally change the current rendition. Text that is output by
 
754
the terminal application will use this style.
453
755
.ie n .IP "($row, $col\fR) = \f(CW$term\fR\->screen_cur ([$row, \f(CW$col])" 4
454
756
.el .IP "($row, \f(CW$col\fR) = \f(CW$term\fR\->screen_cur ([$row, \f(CW$col\fR])" 4
455
757
.IX Item "($row, $col) = $term->screen_cur ([$row, $col])"
468
770
.PD
469
771
Return the current values of the selection mark, begin or end positions,
470
772
and optionally set them to new values.
 
773
.ie n .IP "$term\->selection_make ($eventtime[, $rectangular])" 4
 
774
.el .IP "$term\->selection_make ($eventtime[, \f(CW$rectangular\fR])" 4
 
775
.IX Item "$term->selection_make ($eventtime[, $rectangular])"
 
776
Tries to make a selection as set by \f(CW\*(C`selection_beg\*(C'\fR and
 
777
\&\f(CW\*(C`selection_end\*(C'\fR. If \f(CW$rectangular\fR is true (default: false), a
 
778
rectangular selection will be made. This is the prefered function to make
 
779
a selection.
471
780
.ie n .IP "$success = $term\->selection_grab ($eventtime)" 4
472
781
.el .IP "$success = \f(CW$term\fR\->selection_grab ($eventtime)" 4
473
782
.IX Item "$success = $term->selection_grab ($eventtime)"
474
 
Try to request the primary selection from the server (for example, as set
475
 
by the next method).
 
783
Try to request the primary selection text from the server (for example, as
 
784
set by the next method). No visual feedback will be given. This function
 
785
is mostly useful from within \f(CW\*(C`on_sel_grab\*(C'\fR hooks.
476
786
.ie n .IP "$oldtext = $term\->selection ([$newtext])" 4
477
787
.el .IP "$oldtext = \f(CW$term\fR\->selection ([$newtext])" 4
478
788
.IX Item "$oldtext = $term->selection ([$newtext])"
479
789
Return the current selection text and optionally replace it by \f(CW$newtext\fR.
480
 
.Sp
481
 
#=item \f(CW$term\fR\->overlay ($x, \f(CW$y\fR, \f(CW$text\fR)
482
 
#
483
 
#Create a simple multi-line overlay box. See the next method for details.
484
 
#
485
 
#=cut
486
 
.Sp
487
 
sub urxvt::term::scr_overlay {
488
 
die;
489
 
   my ($self, \f(CW$x\fR, \f(CW$y\fR, \f(CW$text\fR) = \f(CW@_\fR;
490
 
.Sp
491
 
.Vb 1
492
 
\&   my @lines = split /\en/, $text;
493
 
.Ve
494
 
.Sp
495
 
.Vb 4
496
 
\&   my $w = 0;
497
 
\&   for (map $self->strwidth ($_), @lines) {
498
 
\&      $w = $_ if $w < $_;
499
 
\&   }
500
 
.Ve
501
 
.Sp
502
 
.Vb 3
503
 
\&   $self->scr_overlay_new ($x, $y, $w, scalar @lines);
504
 
\&   $self->scr_overlay_set (0, $_, $lines[$_]) for 0.. $#lines;
505
 
\&}
506
 
.Ve
 
790
.ie n .IP "$term\->overlay_simple ($x, $y\fR, \f(CW$text)" 4
 
791
.el .IP "$term\->overlay_simple ($x, \f(CW$y\fR, \f(CW$text\fR)" 4
 
792
.IX Item "$term->overlay_simple ($x, $y, $text)"
 
793
Create a simple multi-line overlay box. See the next method for details.
507
794
.ie n .IP "$term\->overlay ($x, $y\fR, \f(CW$width\fR, \f(CW$height\fR[, \f(CW$rstyle\fR[, \f(CW$border]])" 4
508
795
.el .IP "$term\->overlay ($x, \f(CW$y\fR, \f(CW$width\fR, \f(CW$height\fR[, \f(CW$rstyle\fR[, \f(CW$border\fR]])" 4
509
796
.IX Item "$term->overlay ($x, $y, $width, $height[, $rstyle[, $border]])"
537
824
.RE
538
825
.RS 4
539
826
.RE
540
 
.ie n .IP "$cellwidth = $term\fR\->strwidth \f(CW$string" 4
541
 
.el .IP "$cellwidth = \f(CW$term\fR\->strwidth \f(CW$string\fR" 4
542
 
.IX Item "$cellwidth = $term->strwidth $string"
 
827
.ie n .IP "$popup = $term\->popup ($event)" 4
 
828
.el .IP "$popup = \f(CW$term\fR\->popup ($event)" 4
 
829
.IX Item "$popup = $term->popup ($event)"
 
830
Creates a new \f(CW\*(C`urxvt::popup\*(C'\fR object that implements a popup menu. The
 
831
\&\f(CW$event\fR \fImust\fR be the event causing the menu to pop up (a button event,
 
832
currently).
 
833
.ie n .IP "$cellwidth = $term\->strwidth ($string)" 4
 
834
.el .IP "$cellwidth = \f(CW$term\fR\->strwidth ($string)" 4
 
835
.IX Item "$cellwidth = $term->strwidth ($string)"
543
836
Returns the number of screen-cells this string would need. Correctly
544
837
accounts for wide and combining characters.
545
 
.ie n .IP "$octets = $term\fR\->locale_encode \f(CW$string" 4
546
 
.el .IP "$octets = \f(CW$term\fR\->locale_encode \f(CW$string\fR" 4
547
 
.IX Item "$octets = $term->locale_encode $string"
 
838
.ie n .IP "$octets = $term\->locale_encode ($string)" 4
 
839
.el .IP "$octets = \f(CW$term\fR\->locale_encode ($string)" 4
 
840
.IX Item "$octets = $term->locale_encode ($string)"
548
841
Convert the given text string into the corresponding locale encoding.
549
 
.ie n .IP "$string = $term\fR\->locale_decode \f(CW$octets" 4
550
 
.el .IP "$string = \f(CW$term\fR\->locale_decode \f(CW$octets\fR" 4
551
 
.IX Item "$string = $term->locale_decode $octets"
 
842
.ie n .IP "$string = $term\->locale_decode ($octets)" 4
 
843
.el .IP "$string = \f(CW$term\fR\->locale_decode ($octets)" 4
 
844
.IX Item "$string = $term->locale_decode ($octets)"
552
845
Convert the given locale-encoded octets into a perl string.
 
846
.ie n .IP "$term\->scr_xor_span ($beg_row, $beg_col\fR, \f(CW$end_row\fR, \f(CW$end_col\fR[, \f(CW$rstyle])" 4
 
847
.el .IP "$term\->scr_xor_span ($beg_row, \f(CW$beg_col\fR, \f(CW$end_row\fR, \f(CW$end_col\fR[, \f(CW$rstyle\fR])" 4
 
848
.IX Item "$term->scr_xor_span ($beg_row, $beg_col, $end_row, $end_col[, $rstyle])"
 
849
XORs the rendition values in the given span with the provided value
 
850
(default: \f(CW\*(C`RS_RVid\*(C'\fR), which \fI\s-1MUST\s0 \s-1NOT\s0\fR contain font styles. Useful in
 
851
refresh hooks to provide effects similar to the selection.
 
852
.ie n .IP "$term\->scr_xor_rect ($beg_row, $beg_col\fR, \f(CW$end_row\fR, \f(CW$end_col\fR[, \f(CW$rstyle1\fR[, \f(CW$rstyle2]])" 4
 
853
.el .IP "$term\->scr_xor_rect ($beg_row, \f(CW$beg_col\fR, \f(CW$end_row\fR, \f(CW$end_col\fR[, \f(CW$rstyle1\fR[, \f(CW$rstyle2\fR]])" 4
 
854
.IX Item "$term->scr_xor_rect ($beg_row, $beg_col, $end_row, $end_col[, $rstyle1[, $rstyle2]])"
 
855
Similar to \f(CW\*(C`scr_xor_span\*(C'\fR, but xors a rectangle instead. Trailing
 
856
whitespace will additionally be xored with the \f(CW$rstyle2\fR, which defaults
 
857
to \f(CW\*(C`RS_RVid | RS_Uline\*(C'\fR, which removes reverse video again and underlines
 
858
it instead. Both styles \fI\s-1MUST\s0 \s-1NOT\s0\fR contain font styles.
 
859
.IP "$term\->scr_bell" 4
 
860
.IX Item "$term->scr_bell"
 
861
Ring the bell!
 
862
.IP "$term\->scr_add_lines ($string)" 4
 
863
.IX Item "$term->scr_add_lines ($string)"
 
864
Write the given text string to the screen, as if output by the application
 
865
running inside the terminal. It may not contain command sequences (escape
 
866
codes), but is free to use line feeds, carriage returns and tabs. The
 
867
string is a normal text string, not in locale-dependent encoding.
 
868
.Sp
 
869
Normally its not a good idea to use this function, as programs might be
 
870
confused by changes in cursor position or scrolling. Its useful inside a
 
871
\&\f(CW\*(C`on_add_lines\*(C'\fR hook, though.
 
872
.IP "$term\->cmd_parse ($octets)" 4
 
873
.IX Item "$term->cmd_parse ($octets)"
 
874
Similar to \f(CW\*(C`scr_add_lines\*(C'\fR, but the argument must be in the
 
875
locale-specific encoding of the terminal and can contain command sequences
 
876
(escape codes) that will be interpreted.
553
877
.IP "$term\->tt_write ($octets)" 4
554
878
.IX Item "$term->tt_write ($octets)"
555
879
Write the octets given in \f(CW$data\fR to the tty (i.e. as program input). To
556
880
pass characters instead of octets, you should convert your strings first
557
881
to the locale-specific encoding using \f(CW\*(C`$term\->locale_encode\*(C'\fR.
 
882
.ie n .IP "$old_events = $term\->pty_ev_events ([$new_events])" 4
 
883
.el .IP "$old_events = \f(CW$term\fR\->pty_ev_events ([$new_events])" 4
 
884
.IX Item "$old_events = $term->pty_ev_events ([$new_events])"
 
885
Replaces the event mask of the pty watcher by the given event mask. Can
 
886
be used to suppress input and output handling to the pty/tty. See the
 
887
description of \f(CW\*(C`urxvt::timer\->events\*(C'\fR. Make sure to always restore
 
888
the previous value.
 
889
.ie n .IP "$windowid = $term\->parent" 4
 
890
.el .IP "$windowid = \f(CW$term\fR\->parent" 4
 
891
.IX Item "$windowid = $term->parent"
 
892
Return the window id of the toplevel window.
 
893
.ie n .IP "$windowid = $term\->vt" 4
 
894
.el .IP "$windowid = \f(CW$term\fR\->vt" 4
 
895
.IX Item "$windowid = $term->vt"
 
896
Return the window id of the terminal window.
 
897
.IP "$term\->vt_emask_add ($x_event_mask)" 4
 
898
.IX Item "$term->vt_emask_add ($x_event_mask)"
 
899
Adds the specified events to the vt event mask. Useful e.g. when you want
 
900
to receive pointer events all the times:
 
901
.Sp
 
902
.Vb 1
 
903
\&   $term->vt_emask_add (urxvt::PointerMotionMask);
 
904
.Ve
558
905
.ie n .IP "$window_width = $term\->width" 4
559
906
.el .IP "$window_width = \f(CW$term\fR\->width" 4
560
907
.IX Item "$window_width = $term->width"
594
941
.IX Item "$lines_in_scrollback = $term->nsaved"
595
942
.PD
596
943
Return various integers describing terminal characteristics.
 
944
.ie n .IP "$x_display = $term\->display_id" 4
 
945
.el .IP "$x_display = \f(CW$term\fR\->display_id" 4
 
946
.IX Item "$x_display = $term->display_id"
 
947
Return the \s-1DISPLAY\s0 used by rxvt\-unicode.
 
948
.ie n .IP "$lc_ctype = $term\->locale" 4
 
949
.el .IP "$lc_ctype = \f(CW$term\fR\->locale" 4
 
950
.IX Item "$lc_ctype = $term->locale"
 
951
Returns the \s-1LC_CTYPE\s0 category string used by this rxvt\-unicode.
 
952
.ie n .IP "$env = $term\->env" 4
 
953
.el .IP "$env = \f(CW$term\fR\->env" 4
 
954
.IX Item "$env = $term->env"
 
955
Returns a copy of the environment in effect for the terminal as a hashref
 
956
similar to \f(CW\*(C`\e%ENV\*(C'\fR.
 
957
.ie n .IP "$modifiermask = $term\->ModLevel3Mask" 4
 
958
.el .IP "$modifiermask = \f(CW$term\fR\->ModLevel3Mask" 4
 
959
.IX Item "$modifiermask = $term->ModLevel3Mask"
 
960
.PD 0
 
961
.ie n .IP "$modifiermask = $term\->ModMetaMask" 4
 
962
.el .IP "$modifiermask = \f(CW$term\fR\->ModMetaMask" 4
 
963
.IX Item "$modifiermask = $term->ModMetaMask"
 
964
.ie n .IP "$modifiermask = $term\->ModNumLockMask" 4
 
965
.el .IP "$modifiermask = \f(CW$term\fR\->ModNumLockMask" 4
 
966
.IX Item "$modifiermask = $term->ModNumLockMask"
 
967
.PD
 
968
Return the modifier masks corresponding to the \*(L"\s-1ISO\s0 Level 3 Shift\*(R" (often
 
969
AltGr), the meta key (often Alt) and the num lock key, if applicable.
597
970
.ie n .IP "$view_start = $term\->view_start ([$newvalue])" 4
598
971
.el .IP "$view_start = \f(CW$term\fR\->view_start ([$newvalue])" 4
599
972
.IX Item "$view_start = $term->view_start ([$newvalue])"
663
1036
about the logical line that row \f(CW$row_number\fR is part of. It supports the
664
1037
following methods:
665
1038
.RS 4
666
 
.ie n .IP "$text = $line\->t" 4
667
 
.el .IP "$text = \f(CW$line\fR\->t" 4
668
 
.IX Item "$text = $line->t"
669
 
Returns the full text of the line, similar to \f(CW\*(C`ROW_t\*(C'\fR
670
 
.ie n .IP "$rend = $line\->r" 4
671
 
.el .IP "$rend = \f(CW$line\fR\->r" 4
672
 
.IX Item "$rend = $line->r"
673
 
Returns the full rendition array of the line, similar to \f(CW\*(C`ROW_r\*(C'\fR
 
1039
.ie n .IP "$text = $line\->t ([$new_text])" 4
 
1040
.el .IP "$text = \f(CW$line\fR\->t ([$new_text])" 4
 
1041
.IX Item "$text = $line->t ([$new_text])"
 
1042
Returns or replaces the full text of the line, similar to \f(CW\*(C`ROW_t\*(C'\fR
 
1043
.ie n .IP "$rend = $line\->r ([$new_rend])" 4
 
1044
.el .IP "$rend = \f(CW$line\fR\->r ([$new_rend])" 4
 
1045
.IX Item "$rend = $line->r ([$new_rend])"
 
1046
Returns or replaces the full rendition array of the line, similar to \f(CW\*(C`ROW_r\*(C'\fR
674
1047
.ie n .IP "$length = $line\->l" 4
675
1048
.el .IP "$length = \f(CW$line\fR\->l" 4
676
1049
.IX Item "$length = $line->l"
688
1061
.el .IP "$offset = \f(CW$line\fR\->offset_of ($row, \f(CW$col\fR)" 4
689
1062
.IX Item "$offset = $line->offset_of ($row, $col)"
690
1063
Returns the character offset of the given row|col pair within the logical
691
 
line.
 
1064
line. Works for rows outside the line, too, and returns corresponding
 
1065
offsets outside the string.
692
1066
.ie n .IP "($row, $col\fR) = \f(CW$line\->coord_of ($offset)" 4
693
1067
.el .IP "($row, \f(CW$col\fR) = \f(CW$line\fR\->coord_of ($offset)" 4
694
1068
.IX Item "($row, $col) = $line->coord_of ($offset)"
696
1070
.RE
697
1071
.RS 4
698
1072
.RE
699
 
.ie n .IP "($row, $col\fR) = \f(CW$line\fR\->coord_of ($offset) =item \f(CW$text\fR = \f(CW$term\fR\->special_encode \f(CW$string" 4
700
 
.el .IP "($row, \f(CW$col\fR) = \f(CW$line\fR\->coord_of ($offset) =item \f(CW$text\fR = \f(CW$term\fR\->special_encode \f(CW$string\fR" 4
701
 
.IX Item "($row, $col) = $line->coord_of ($offset) =item $text = $term->special_encode $string"
 
1073
.ie n .IP "$text = $term\fR\->special_encode \f(CW$string" 4
 
1074
.el .IP "$text = \f(CW$term\fR\->special_encode \f(CW$string\fR" 4
 
1075
.IX Item "$text = $term->special_encode $string"
702
1076
Converts a perl string into the special encoding used by rxvt\-unicode,
703
1077
where one character corresponds to one screen cell. See
704
1078
\&\f(CW\*(C`$term\->ROW_t\*(C'\fR for details.
707
1081
.IX Item "$string = $term->special_decode $text"
708
1082
Converts rxvt-unicodes text reprsentation into a perl string. See
709
1083
\&\f(CW\*(C`$term\->ROW_t\*(C'\fR for details.
 
1084
.ie n .IP "$success = $term\fR\->grab_button ($button, \f(CW$modifiermask)" 4
 
1085
.el .IP "$success = \f(CW$term\fR\->grab_button ($button, \f(CW$modifiermask\fR)" 4
 
1086
.IX Item "$success = $term->grab_button ($button, $modifiermask)"
 
1087
Registers a synchronous button grab. See the XGrabButton manpage.
 
1088
.ie n .IP "$success = $term\fR\->grab ($eventtime[, \f(CW$sync])" 4
 
1089
.el .IP "$success = \f(CW$term\fR\->grab ($eventtime[, \f(CW$sync\fR])" 4
 
1090
.IX Item "$success = $term->grab ($eventtime[, $sync])"
 
1091
Calls XGrabPointer and XGrabKeyboard in asynchronous (default) or
 
1092
synchronous (\f(CW$sync\fR is true). Also remembers the grab timestampe.
 
1093
.IP "$term\->allow_events_async" 4
 
1094
.IX Item "$term->allow_events_async"
 
1095
Calls XAllowEvents with AsyncBoth for the most recent grab.
 
1096
.IP "$term\->allow_events_sync" 4
 
1097
.IX Item "$term->allow_events_sync"
 
1098
Calls XAllowEvents with SyncBoth for the most recent grab.
 
1099
.IP "$term\->allow_events_replay" 4
 
1100
.IX Item "$term->allow_events_replay"
 
1101
Calls XAllowEvents with both ReplayPointer and ReplayKeyboard for the most
 
1102
recent grab.
 
1103
.IP "$term\->ungrab" 4
 
1104
.IX Item "$term->ungrab"
 
1105
Calls XUngrab for the most recent grab. Is called automatically on
 
1106
evaluation errors, as it is better to lose the grab in the error case as
 
1107
the session.
 
1108
.ie n .Sh "The ""urxvt::popup"" Class"
 
1109
.el .Sh "The \f(CWurxvt::popup\fP Class"
 
1110
.IX Subsection "The urxvt::popup Class"
 
1111
.IP "$popup\->add_title ($title)" 4
 
1112
.IX Item "$popup->add_title ($title)"
 
1113
Adds a non-clickable title to the popup.
 
1114
.IP "$popup\->add_separator ([$sepchr])" 4
 
1115
.IX Item "$popup->add_separator ([$sepchr])"
 
1116
Creates a separator, optionally using the character given as \f(CW$sepchr\fR.
 
1117
.ie n .IP "$popup\->add_button ($text, $cb)" 4
 
1118
.el .IP "$popup\->add_button ($text, \f(CW$cb\fR)" 4
 
1119
.IX Item "$popup->add_button ($text, $cb)"
 
1120
Adds a clickable button to the popup. \f(CW$cb\fR is called whenever it is
 
1121
selected.
 
1122
.ie n .IP "$popup\->add_toggle ($text, $cb\fR, \f(CW$initial_value)" 4
 
1123
.el .IP "$popup\->add_toggle ($text, \f(CW$cb\fR, \f(CW$initial_value\fR)" 4
 
1124
.IX Item "$popup->add_toggle ($text, $cb, $initial_value)"
 
1125
Adds a toggle/checkbox item to the popup. Teh callback gets called
 
1126
whenever it gets toggled, with a boolean indicating its value as its first
 
1127
argument.
 
1128
.IP "$popup\->show" 4
 
1129
.IX Item "$popup->show"
 
1130
Displays the popup (which is initially hidden).
710
1131
.ie n .Sh "The ""urxvt::timer"" Class"
711
1132
.el .Sh "The \f(CWurxvt::timer\fP Class"
712
1133
.IX Subsection "The urxvt::timer Class"
767
1188
\&  $term->{iow} = urxvt::iow
768
1189
\&                 ->new
769
1190
\&                 ->fd (fileno $term->{socket})
770
 
\&                 ->events (1) # wait for read data
 
1191
\&                 ->events (urxvt::EVENT_READ)
771
1192
\&                 ->start
772
1193
\&                 ->cb (sub {
773
1194
\&                   my ($iow, $revents) = @_;
791
1212
.ie n .IP "$iow = $iow\->events ($eventmask)" 4
792
1213
.el .IP "$iow = \f(CW$iow\fR\->events ($eventmask)" 4
793
1214
.IX Item "$iow = $iow->events ($eventmask)"
794
 
Set the event mask to watch. Bit #0 (value \f(CW1\fR) enables watching for read
795
 
data, Bit #1 (value \f(CW2\fR) enables watching for write data.
 
1215
Set the event mask to watch. The only allowed values are
 
1216
\&\f(CW\*(C`urxvt::EVENT_READ\*(C'\fR and \f(CW\*(C`urxvt::EVENT_WRITE\*(C'\fR, which might be ORed
 
1217
together, or \f(CW\*(C`urxvt::EVENT_NONE\*(C'\fR.
796
1218
.ie n .IP "$iow = $iow\->start" 4
797
1219
.el .IP "$iow = \f(CW$iow\fR\->start" 4
798
1220
.IX Item "$iow = $iow->start"
807
1229
.IX Subsection "URXVT_PERL_VERBOSITY"
808
1230
This variable controls the verbosity level of the perl extension. Higher
809
1231
numbers indicate more verbose output.
810
 
.IP "=0 \- only fatal messages" 4
811
 
.IX Item "=0 - only fatal messages"
 
1232
.IP "== 0 \- fatal messages" 4
 
1233
.IX Item "== 0 - fatal messages"
812
1234
.PD 0
813
 
.IP "=3 \- script loading and management" 4
814
 
.IX Item "=3 - script loading and management"
815
 
.IP "=10 \- all events received" 4
816
 
.IX Item "=10 - all events received"
 
1235
.IP ">= 3 \- script loading and management" 4
 
1236
.IX Item ">= 3 - script loading and management"
 
1237
.IP ">=10 \- all called hooks" 4
 
1238
.IX Item ">=10 - all called hooks"
 
1239
.IP ">=11 \- hook reutrn values" 4
 
1240
.IX Item ">=11 - hook reutrn values"
817
1241
.PD
818
1242
.SH "AUTHOR"
819
1243
.IX Header "AUTHOR"