This file is indexed.

/usr/share/perl5/Debconf/Element/Kde.pm is in debconf 1.5.49.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/perl -w
# This file was preprocessed, do not edit!


package Debconf::Element::Kde::ElementWidget;
use QtCore4;
use QtCore4::isa @ISA = qw(Qt::Widget);
use QtGui4;


sub NEW {
	shift->SUPER::NEW ($_[0]);
	this->{mytop} = undef;
}


sub settop {
    this->{mytop} = shift;
}


sub init {
	this->{toplayout} =  Qt::VBoxLayout(this);
	this->{mytop} = Qt::Widget(this);
	this->{toplayout}->addWidget (this->{mytop});
	this->{layout} = Qt::VBoxLayout();
	this->{mytop}->setLayout(this->{layout});
}


sub destroy {
	this->{toplayout} -> removeWidget (this->{mytop});
	undef this->{mytop};
}


sub top {
    return this->{mytop};
}


sub addwidget {
    this->{layout}->addWidget(@_);
}


sub addlayout {
    this->{layout}->addLayout (@_);
}






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


sub create {
	my $this=shift;
	$this->parent(shift);
	$this->top(Debconf::Element::Kde::ElementWidget($this->parent, undef,
	                                                undef, undef));
	$this->top->init;
	$this->top->show;
}


sub destroy {
	my $this=shift;
	$this->top(undef);
}


sub addwidget {
	my $this=shift;
	my $widget=shift;
	$this->cur->addwidget($widget);
}


sub description {
	my $this=shift;
	my $label=Qt::Label($this->cur->top);
	$label->setText("<b>".to_Unicode($this->question->description."</b>"));
	$label->show;
	return $label;
}


sub startsect {
	my $this = shift;
	my $ew = Debconf::Element::Kde::ElementWidget($this->top);
	$ew->init;
	$this->cur($ew);
	$this->top->addwidget($ew);
	$ew->show;
}


sub endsect {
	my $this = shift;
	$this->cur($this->top);
}


sub adddescription {
	my $this=shift;
	my $label=$this->description;
	$this->addwidget($label);
}


sub addhelp {
	my $this=shift;
    
	my $help=to_Unicode($this->question->extended_description);
	return unless length $help;
	my $label=Qt::Label($this->cur->top);
	$label->setText($help);
	$label->setWordWrap(1);
	$this->addwidget($label); # line1
	$label->setMargin(5);
	$label->show;
}


sub value {
	my $this=shift;
	return '';
}


1