K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / perl5 / Debconf / Element / Kde /
server ip : 172.67.156.115

your ip : 172.69.214.80

H O M E


Filename/usr/share/perl5/Debconf/Element/Kde/Multiselect.pm
Size1.21 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:50
Last modified23-Feb-2014 22:30
Last accessed06-Jul-2025 21:13
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


package Debconf::Element::Kde::Multiselect;
use strict;
use QtCore4;
use QtGui4;
use base qw(Debconf::Element::Kde Debconf::Element::Multiselect);
use Debconf::Encoding qw(to_Unicode);


sub create {
my $this=shift;

my @choices = $this->question->choices_split;
my %default = map { $_ => 1 } $this->translate_default;

$this->SUPER::create(@_);
$this->startsect;
$this->adddescription;
$this->addhelp;

my @buttons;
for (my $i=0; $i <= $#choices; $i++) {
$buttons[$i] = Qt::CheckBox($this->cur->top);
$buttons[$i]->setText(to_Unicode($choices[$i]));
$buttons[$i]->show;
$buttons[$i]->setChecked($default{$choices[$i]} ? 1 : 0);
$this->addwidget($buttons[$i]);
}

$this->buttons(\@buttons);
$this->endsect;
}


sub value {
my $this = shift;
my @buttons = @{$this->buttons};
my ($ret, $val);
my @vals;
$this->question->template->i18n('');
my @choices=$this->question->choices_split;
$this->question->template->i18n(1);

for (my $i = 0; $i <= $#choices; $i++) {
if ($buttons [$i] -> isChecked()) {
push @vals, $choices[$i];
}
}
return join(', ', $this->order_values(@vals));
}

*visible = \&Debconf::Element::Multiselect::visible;


1