]> git.etc.gen.nz Git - picture-display.git/commitdiff
Pass the image file and text file around instead of instantiated objects.
authorAndrew Ruthven <puck@catalyst.net.nz>
Thu, 12 Feb 2009 22:44:49 +0000 (11:44 +1300)
committerAndrew Ruthven <puck@dirk.wgtn.cat-it.co.nz>
Thu, 12 Feb 2009 22:44:49 +0000 (11:44 +1300)
lib/Display/Plugins/Asterisk.pm

index d9ae1f9890678dafab24a1f8f1556a04bbfb69fa..75752de61ecaf8e01bc28d305b770c3fc414d06b 100644 (file)
@@ -18,7 +18,7 @@ sub new {
 
   bless ($self, $class);
 
-  $self->{'logo'} = Clutter::Texture->new("$Bin/share/Asterisk.png");
+  $self->{'logo'} = "$Bin/share/Asterisk.png";
 
   $self->{'kernel'}->state('asterisk_delayed_start', $self, 'delayed_start');
 
@@ -48,9 +48,10 @@ sub new {
     },
 
     inline_states => {
-      # When we're connected to Asterisk, post back to the main session for the rest of
-      # our states to be setup in asterisk_start.  This is to make sure the states are
-      # created in the correct session with a reference to $self.
+      # When we're connected to Asterisk, post back to the main session for
+      # the rest of our states to be setup in asterisk_start.  This is to
+      # make sure the states are created in the correct session with a
+      # reference to $self.
       _connected => sub { $self->{'kernel'}->post('display' => 'asterisk_delayed_start') },
       asterisk_start => sub {
         my ($kernel, $self) = @_[KERNEL, ARG0];
@@ -92,6 +93,8 @@ sub input {
 
   print STDERR "Other input - $input->{Event}\n";
   print Dumper($input);
+
+#  $kernel->post('display', 'notifications_add', "Event: " . $input->{Event}, $self->{'logo'});
 }
 
 sub hangup {
@@ -104,9 +107,7 @@ sub dial {
   my $dest = $input->{Destination};
   $dest =~ s/(.*)-.*/$1/;
 
-  my $text = Clutter::Label->new('Sans 20', "Call from " . $input->{CallerIDName} . "\n    " . $input->{CallerID} . "\nFor $dest");
-  $text->set_color(Clutter::Color->parse('White'));
-  $text->set_ellipsize('end');
+  my $text = "Call from " . $input->{CallerIDName} . "\n    " . $input->{CallerID} . "\nFor $dest";
 
   $kernel->post('display', 'notifications_add', $text, $self->{'logo'});
 }