blob: 6da8c2292be9c94e320b7f228ca1bf120b000592 (
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
|
&::PukeSendMessage($PUKE_WIDGET_LOAD,
$::PUKE_CONTROLLER,
$PWIDGET_KFILEDIALOG,
"pkfiledialog.so",
sub { my %ARG = %{shift()};
if($ARG{'iArg'} == 1){
print "*E* PKFileDialog Load failed!\n";
}
}
);
use strict;
package PKFileDialog;
use vars qw(@ISA);
@ISA = qw(PWidget);
sub new {
my $class = shift;
my $self = $class->SUPER::new($class, @_);
$self->{widgetType} = $::PWIDGET_KFILEDIALOG;
if($class eq 'PKFileDialog'){
$self->create();
}
$self->installHandler($::PUKE_KBFD_FILE_SELECTED_ACK, sub{$self->fileSelected(shift())});
return $self;
}
sub setDir {
my $self = shift;
my $dir = shift;
$self->sendMessage('iCommand' => $::PUKE_KBFD_SET_PATH,
'cArg' => $dir,
'CallBack' => sub{});
}
sub setFilter {
my $self = shift;
my $filter = shift;
$self->sendMessage('iCommand' => $::PUKE_KBFD_SET_FILTER,
'cArg' => $filter,
'CallBack' => sub{});
}
sub setSelected {
my $self = shift;
my $sel = shift;
$self->sendMessage('iCommand' => $::PUKE_KBFD_SET_SELECTION,
'cArg' => $sel,
'CallBack' => sub{});
}
sub fileSelected {
my $self = shift;
my $rargs = shift;
&::print("*I* File Selected: " . $rargs->{'cArg'});
}
package main;
|