*** empty log message ***
authorroot <root>
Wed, 18 Jan 2006 17:58:36 +0000 (17:58 +0000)
committerroot <root>
Wed, 18 Jan 2006 17:58:36 +0000 (17:58 +0000)
Changes
MANIFEST
src/perl/automove-background [new file with mode: 0644]

diff --git a/Changes b/Changes
index e1a804bc8883b9b618cb6af6ce307dbf05f5168d..4412e1cced55312d9cdde0f1ed5f8ce3338a0ade 100644 (file)
--- a/Changes
+++ b/Changes
@@ -32,7 +32,6 @@ TODO: distributed clipboard example
           span the whole screen, as long as it starts at row 0. Helps
           for programs displaying a status line at the bottom.
        - selection popup now shows selection in dec/hex/oct.
-        - some fixes to xpm offste and scaling code.
         - perl/selection: matching on unicode characters in the selection
           code was O(n²), which equals infinity in some degenerate cases
           :-> Matching is now done on UTF-8, which makes it almost instant.
@@ -50,6 +49,7 @@ TODO: distributed clipboard example
           anymore.
         - removed all traces of SMOOTH_REFRESH.
         - nuked QNX support.
+        - made some fixes to xpm offset and scaling code.
         - perl-overlays and refresh hooks were not applied in correct order.
         - changed coordinate-system of view_start/nsaved to be top to bottom.
 
index be7f266d1712a56159166c16a12f6a40a0aaa84f..e51980ef302827e4f38f9ec0f1b829b2aefe66b8 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -167,6 +167,7 @@ src/perl/selection-popup
 src/perl/selection-autotransform
 src/perl/selection-pastebin
 src/perl/searchable-scrollback
+src/perl/automove-background
 src/perl/mark-urls
 src/perl/example-refresh-hooks
 src/perl/block-graphics-to-ascii
diff --git a/src/perl/automove-background b/src/perl/automove-background
new file mode 100644 (file)
index 0000000..6426c4e
--- /dev/null
@@ -0,0 +1,7 @@
+#! perl
+
+sub on_configure_notify {
+   my ($self, $event) = @_;
+
+   $self->cmd_parse ("\033]20;;=+$event->{x}+$event->{y}\007");
+}