summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/plabel.pm
blob: bc557b5ecacef0f01d66315416cfeccd415e5ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105

&::PukeSendMessage($PUKE_WIDGET_LOAD, 
		   $::PUKE_CONTROLLER, 
		   $PWIDGET_LABEL,
		   "plabel.so",
		   sub { my %ARG = %{shift()};
			 if($ARG{'iArg'} == 1){
			   print "*E* PLabel Load failed!\n";
			 }
		       }
		  );

package PLabel;
@ISA = qw(PFrame);
use strict;

sub new {
  my $class = shift;
  my $self = $class->SUPER::new($class, @_);

  $self->{widgetType} = $::PWIDGET_LABEL;

  if($class eq 'PLabel'){
    $self->create();
  }

  return $self;

}

sub setText {
  my $self = shift;
  
  my $text = shift;
  
  $self->{text} = $text;

  # Don't need the ouput since GET_TEXT_ACK will be called and
  # we'll set it there
  $self->sendMessage('iCommand' => $::PUKE_LABEL_SETTEXT,
                     'iArg' => 0,
		     'cArg' => $text,
		     'CallBack' => sub {});

}

sub setPixmap {
  my $self = shift;
  
  my $text = shift;
  
  $self->{text} = "***PIXMAP***" . $text;

  # Don't need the ouput since GET_TEXT_ACK will be called and
  # we'll set it there
  $self->sendMessage('iCommand' => $::PUKE_LABEL_SETPIXMAP,
		     'cArg' => $text,
		     'CallBack' => sub {});

}

sub setMovie {
  my $self = shift;
  
  my $text = shift;
  
  $self->{text} = "***MOVIE***" . $text;

  # Don't need the ouput since GET_TEXT_ACK will be called and
  # we'll set it there
  $self->sendMessage('iCommand' => $::PUKE_LABEL_SETMOVIE,
		     'cArg' => $text,
		     'CallBack' => sub {});

}


sub text {
  my $self = shift;

  return $self->{text};
}



sub setAlignment {
  my $self = shift;
  
  my $align = shift;

  
  $self->{align} = $align;

  # Don't need the ouput since GET_TEXT_ACK will be called and
  # we'll set it there
  $self->sendMessage('iCommand' => $::PUKE_LABEL_SETALIGNMENT,
		     'iArg' => $align,
		     'CallBack' => sub {});

}



package main;