ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/urxvt.pm
(Generate patch)

Comparing rxvt-unicode/src/urxvt.pm (file contents):
Revision 1.127 by root, Wed Jan 25 00:42:21 2006 UTC vs.
Revision 1.131 by root, Sun Jan 29 20:51:28 2006 UTC

212Uses per-line display filtering (C<on_line_update>) to underline urls and 212Uses per-line display filtering (C<on_line_update>) to underline urls and
213make them clickable. When middle-clicked, the program specified in the 213make them clickable. When middle-clicked, the program specified in the
214resource C<urlLauncher> (default C<x-www-browser>) will be started with 214resource C<urlLauncher> (default C<x-www-browser>) will be started with
215the URL as first argument. 215the URL as first argument.
216 216
217=item xim-onthespot
218
219This (experimental) perl extension implements OnTheSpot editing. It does
220not work perfectly, and some input methods don't seem to work well with
221OnTheSpot editing in general, but it seems to work at leats for SCIM and
222kinput2.
223
224You enable it by specifying this extension and a preedit style of
225C<OnTheSpot>, i.e.:
226
227 @@RXVT_NAME@@ -pt OnTheSpot -pe xim-onthespot
228
217=item automove-background 229=item automove-background
218 230
219This is basically a one-line extension that dynamically changes the background pixmap offset 231This is basically a one-line extension that dynamically changes the background pixmap offset
220to the window position, in effect creating the same effect as pseudo transparency with 232to the window position, in effect creating the same effect as pseudo transparency with
221a custom pixmap. No scaling is supported in this mode. Exmaple: 233a custom pixmap. No scaling is supported in this mode. Exmaple:
230 242
231=item digital-clock 243=item digital-clock
232 244
233Displays a digital clock using the built-in overlay. 245Displays a digital clock using the built-in overlay.
234 246
235=item example-refresh-hooks 247=item remote-clipboard
236 248
237Displays a very simple digital clock in the upper right corner of the 249Somewhat of a misnomer, this extension adds two menu entries to the
238window. Illustrates overwriting the refresh callbacks to create your own 250selection popup that allows one ti run external commands to store the
239overlays or changes. 251selection somewhere and fetch it again.
252
253We use it to implement a "distributed selection mechanism", which just
254means that one command uploads the file to a remote server, and another
255reads it.
256
257The commands can be set using the C<URxvt.remote-selection.store> and
258C<URxvt.remote-selection.fetch> resources. The first should read the
259selection to store from STDIN (always in UTF-8), the second should provide
260the selection data on STDOUT (also in UTF-8).
261
262The defaults (which are likely useless to you) use rsh and cat:
263
264 URxvt.remote-selection.store: rsh ruth 'cat >/tmp/distributed-selection'
265 URxvt.remote-selection.fetch: rsh ruth 'cat /tmp/distributed-selection'
240 266
241=item selection-pastebin 267=item selection-pastebin
242 268
243This is a little rarely useful extension that Uploads the selection as 269This is a little rarely useful extension that Uploads the selection as
244textfile to a remote site (or does other things). (The implementation is 270textfile to a remote site (or does other things). (The implementation is
264After a successful upload the selection will be replaced by the text given 290After a successful upload the selection will be replaced by the text given
265in the C<selection-pastebin-url> resource (again, the % is the placeholder 291in the C<selection-pastebin-url> resource (again, the % is the placeholder
266for the filename): 292for the filename):
267 293
268 URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/% 294 URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/%
295
296=item example-refresh-hooks
297
298Displays a very simple digital clock in the upper right corner of the
299window. Illustrates overwriting the refresh callbacks to create your own
300overlays or changes.
269 301
270=back 302=back
271 303
272=head1 API DOCUMENTATION 304=head1 API DOCUMENTATION
273 305
483 515
484=item on_refresh_end $term 516=item on_refresh_end $term
485 517
486Called just after the screen gets redrawn. See C<on_refresh_begin>. 518Called just after the screen gets redrawn. See C<on_refresh_begin>.
487 519
488=item on_keyboard_command $term, $string 520=item on_user_command $term, $string
489 521
490Called whenever the user presses a key combination that has a 522Called whenever the a user-configured event is being activated (e.g. via
491C<perl:string> action bound to it (see description of the B<keysym> 523a C<perl:string> action bound to a key, see description of the B<keysym>
492resource in the @@RXVT_NAME@@(1) manpage). 524resource in the @@RXVT_NAME@@(1) manpage).
525
526The event is simply the action string. This interface is assumed to change
527slightly in the future.
493 528
494=item on_x_event $term, $event 529=item on_x_event $term, $event
495 530
496Called on every X event received on the vt window (and possibly other 531Called on every X event received on the vt window (and possibly other
497windows). Should only be used as a last resort. Most event structure 532windows). Should only be used as a last resort. Most event structure
631 666
632Using this function has the advantage that its output ends up in the 667Using this function has the advantage that its output ends up in the
633correct place, e.g. on stderr of the connecting urxvtc client. 668correct place, e.g. on stderr of the connecting urxvtc client.
634 669
635Messages have a size limit of 1023 bytes currently. 670Messages have a size limit of 1023 bytes currently.
671
672=item @terms = urxvt::termlist
673
674Returns all urxvt::term objects that exist in this process, regardless of
675wether they are started, being destroyed etc., so be careful. Only term
676objects that have perl extensions attached will be returned (because there
677is no urxvt::term objet associated with others).
636 678
637=item $time = urxvt::NOW 679=item $time = urxvt::NOW
638 680
639Returns the "current time" (as per the event loop). 681Returns the "current time" (as per the event loop).
640 682
1021hash which defines the environment of the new terminal. 1063hash which defines the environment of the new terminal.
1022 1064
1023Croaks (and probably outputs an error message) if the new instance 1065Croaks (and probably outputs an error message) if the new instance
1024couldn't be created. Returns C<undef> if the new instance didn't 1066couldn't be created. Returns C<undef> if the new instance didn't
1025initialise perl, and the terminal object otherwise. The C<init> and 1067initialise perl, and the terminal object otherwise. The C<init> and
1026C<start> hooks will be called during this call. 1068C<start> hooks will be called before this call returns, and are free to
1069refer to global data (which is race free).
1027 1070
1028=cut 1071=cut
1029 1072
1030sub new { 1073sub new {
1031 my ($class, $env, @args) = @_; 1074 my ($class, $env, @args) = @_;
1032 1075
1076 $env or Carp::croak "environment hash missing in call to urxvt::term->new";
1077 @args or Carp::croak "name argument missing in call to urxvt::term->new";
1078
1033 _new ([ map "$_=$env->{$_}", keys %$env ], @args); 1079 _new ([ map "$_=$env->{$_}", keys %$env ], \@args);
1034} 1080}
1035 1081
1036=item $term->destroy 1082=item $term->destroy
1037 1083
1038Destroy the terminal object (close the window, free resources 1084Destroy the terminal object (close the window, free resources
1592=item $string = $term->special_decode $text 1638=item $string = $term->special_decode $text
1593 1639
1594Converts rxvt-unicodes text reprsentation into a perl string. See 1640Converts rxvt-unicodes text reprsentation into a perl string. See
1595C<< $term->ROW_t >> for details. 1641C<< $term->ROW_t >> for details.
1596 1642
1597=item $success = $term->grab_button ($button, $modifiermask) 1643=item $success = $term->grab_button ($button, $modifiermask[, $window = $term->vt])
1598 1644
1645=item $term->ungrab_button ($button, $modifiermask[, $window = $term->vt])
1646
1599Registers a synchronous button grab. See the XGrabButton manpage. 1647Register/unregister a synchronous button grab. See the XGrabButton
1648manpage.
1600 1649
1601=item $success = $term->grab ($eventtime[, $sync]) 1650=item $success = $term->grab ($eventtime[, $sync])
1602 1651
1603Calls XGrabPointer and XGrabKeyboard in asynchronous (default) or 1652Calls XGrabPointer and XGrabKeyboard in asynchronous (default) or
1604synchronous (C<$sync> is true). Also remembers the grab timestampe. 1653synchronous (C<$sync> is true). Also remembers the grab timestampe.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines