ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/digital-clock
Revision: 1.4
Committed: Tue Jan 3 01:29:55 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.3: +8 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3     # this creates a simple digital clock by overwriting the refresh hooks
4    
5     sub on_init {
6     my ($self) = @_;
7    
8 root 1.3 # force a refresh every second
9 root 1.1 $self->{digital_clock_refresh} = urxvt::timer
10     ->new
11     ->start (urxvt::NOW)
12     ->cb (sub {
13 root 1.2 $self->{digital_clock_refresh}->start ($self->{digital_clock_refresh}->at + 1);
14 root 1.1 $self->want_refresh;
15     });
16    
17     ()
18     }
19    
20 root 1.3 # before refreshing: replace upper right with the clock display
21 root 1.1 sub on_refresh_begin {
22     my ($self) = @_;
23    
24     my $time = sprintf "%2d:%02d:%02d", (localtime urxvt::NOW)[2, 1, 0];
25     my $xpos = $self->ncol - length $time;
26    
27 root 1.4 $xpos >= 0
28     or return;
29    
30 root 1.3 $self->{digital_clock_rend} = $self->ROW_r (0, [(urxvt::DEFAULT_RSTYLE) x length $time], $xpos);
31 root 1.1 $self->{digital_clock_text} = $self->ROW_t (0, $time, $xpos);
32    
33     ()
34     }
35    
36 root 1.3 # after refreshing: restore previous screen contents
37 root 1.1 sub on_refresh_end {
38     my ($self) = @_;
39    
40 root 1.4 exists $self->{digital_clock_text}
41     or return;
42    
43     $self->ROW_r (0, delete $self->{digital_clock_rend});
44     $self->ROW_t (0, delete $self->{digital_clock_text});
45 root 1.1
46     ()
47     }
48    
49