This file is indexed.

/usr/share/perl5/Debconf/FrontEnd/Kde/Ui_DebconfWizard.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
142
143
144
145
146
147
148
149
150
151
152
153
package Debconf::FrontEnd::Kde::Ui_DebconfWizard;

use strict;
use warnings;
use Qt3Support4;
use QtCore4;
use QtGui4;

sub vboxLayout {
    return shift->{vboxLayout};
}

sub title {
    return shift->{title};
}

sub line1 {
    return shift->{line1};
}

sub mainFrame {
    return shift->{mainFrame};
}

sub hboxLayout {
    return shift->{hboxLayout};
}

sub bHelp {
    return shift->{bHelp};
}

sub spacer1 {
    return shift->{spacer1};
}

sub bBack {
    return shift->{bBack};
}

sub bNext {
    return shift->{bNext};
}

sub bCancel {
    return shift->{bCancel};
}


sub setupUi {
    my ( $class, $debconfWizard ) = @_;
    my $self = bless {}, $class;
    if ( !defined $debconfWizard->objectName() ) {
        $debconfWizard->setObjectName( "debconfWizard" );
    }
    $debconfWizard->resize( 660, 460 );
    my $vboxLayout = Qt::VBoxLayout( $debconfWizard );
    $self->{vboxLayout} = $vboxLayout;
    $vboxLayout->setSpacing( 6 );
    $vboxLayout->setMargin( 11 );
    $vboxLayout->setObjectName( "vboxLayout" );
    my $title = Qt::Label( $debconfWizard );
    $self->{title} = $title;
    $title->setObjectName( "title" );
    my $sizePolicy = Qt::SizePolicy( Qt::SizePolicy::Preferred(), Qt::SizePolicy::Fixed() );
    $self->{$sizePolicy} = $sizePolicy;
    $sizePolicy->setHorizontalStretch( 0 );
    $sizePolicy->setVerticalStretch( 0 );
    $sizePolicy->setHeightForWidth( $title->sizePolicy()->hasHeightForWidth() );
    $title->setSizePolicy( $sizePolicy );
    $title->setWordWrap( 0 );

    $vboxLayout->addWidget( $title );

    my $line1 = Qt::Frame( $debconfWizard );
    $self->{line1} = $line1;
    $line1->setObjectName( "line1" );
    $sizePolicy->setHeightForWidth( $line1->sizePolicy()->hasHeightForWidth() );
    $line1->setSizePolicy( $sizePolicy );
    $line1->setFrameShape( Qt::Frame::HLine() );
    $line1->setFrameShadow( Qt::Frame::Sunken() );

    $vboxLayout->addWidget( $line1 );

    my $mainFrame = Qt::Widget( $debconfWizard );
    $self->{mainFrame} = $mainFrame;
    $mainFrame->setObjectName( "mainFrame" );

    $vboxLayout->addWidget( $mainFrame );

    my $hboxLayout = Qt::HBoxLayout(  );
    $self->{hboxLayout} = $hboxLayout;
    $hboxLayout->setSpacing( 6 );
    $hboxLayout->setObjectName( "hboxLayout" );
    my $bHelp = Qt::PushButton( $debconfWizard );
    $self->{bHelp} = $bHelp;
    $bHelp->setObjectName( "bHelp" );

    $hboxLayout->addWidget( $bHelp );

    my $spacer1 = Qt::SpacerItem( 161, 20, Qt::SizePolicy::Expanding(), Qt::SizePolicy::Minimum() );

    $hboxLayout->addItem( $spacer1 );

    my $bBack = Qt::PushButton( $debconfWizard );
    $self->{bBack} = $bBack;
    $bBack->setObjectName( "bBack" );

    $hboxLayout->addWidget( $bBack );

    my $bNext = Qt::PushButton( $debconfWizard );
    $self->{bNext} = $bNext;
    $bNext->setObjectName( "bNext" );

    $hboxLayout->addWidget( $bNext );

    my $bCancel = Qt::PushButton( $debconfWizard );
    $self->{bCancel} = $bCancel;
    $bCancel->setObjectName( "bCancel" );

    $hboxLayout->addWidget( $bCancel );


    $vboxLayout->addLayout( $hboxLayout );


    $self->retranslateUi( $debconfWizard );

    Qt::MetaObject::connectSlotsByName( $debconfWizard );
    return $self;
} # setupUi

sub setup_ui {
    my ( $debconfWizard ) = @_;
    return setupUi( $debconfWizard );
}

sub retranslateUi {
    my ( $self, $debconfWizard ) = @_;
    $debconfWizard->setWindowTitle( Qt::Application::translate( 'DebconfWizard', "Debconf", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{title}->setText( Qt::Application::translate( 'DebconfWizard', "title", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{bhelp}->setText( Qt::Application::translate( 'DebconfWizard', "Help", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{bback}->setText( Qt::Application::translate( 'DebconfWizard', "< Back", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{bnext}->setText( Qt::Application::translate( 'DebconfWizard', "Next >", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{bcancel}->setText( Qt::Application::translate( 'DebconfWizard', "Cancel", undef, Qt::Application::UnicodeUTF8() ) );
} # retranslateUi

sub retranslate_ui {
    my ( $debconfWizard ) = @_;
    retranslateUi( $debconfWizard );
}

1;