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 / FrontEnd / Kde /
server ip : 104.21.89.46

your ip : 172.69.130.125

H O M E


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


package Debconf::FrontEnd::Kde::Wizard;
use strict;
use utf8;
use Debconf::Log ':all';
use QtCore4;
use QtGui4;
use QtCore4::isa qw(Qt::Widget Debconf::FrontEnd::Kde::Ui_DebconfWizard);
use QtCore4::slots 'goNext' => [], 'goBack' => [], 'goBye' => [];
use Debconf::FrontEnd::Kde::Ui_DebconfWizard;

use Data::Dumper;
sub NEW {

my ( $class, $parent ) = @_;
$class->SUPER::NEW($parent );
this->{frontend} = $_[3];

my $ui = this->{ui} = $class->setupUi(this);

my $bNext = $ui->{bNext};
my $bBack = $ui->{bBack};
my $bCancel = $ui->{bCancel};
this->setObjectName("Wizard");
this->connect($bNext, SIGNAL 'clicked ()', SLOT 'goNext ()');
this->connect($bBack, SIGNAL 'clicked ()', SLOT 'goBack ()');
this->connect($bCancel, SIGNAL 'clicked ()', SLOT 'goBye ()');

this->{ui}->mainFrame->setObjectName("mainFrame");;
}


sub setTitle {
this->{ui}->{title}->setText($_[0]);
}


sub setNextEnabled {
this->{ui}->{bNext}->setEnabled(shift);
}


sub setBackEnabled {
this->{ui}->{bBack}->setEnabled(shift);
}


sub goNext {
debug frontend => "QTF: -- LEAVE EVENTLOOP --------";
this->{frontend}->goback(0);
this->{frontend}->win->close;
}


sub goBack {
debug frontend => "QTF: -- LEAVE EVENTLOOP --------";
this->{frontend}->goback(1);
this->{frontend}->win->close;
}

sub setMainFrameLayout {
debug frontend => "QTF: -- SET MAIN LAYOUT --------";
if(this->{ui}->mainFrame->layout) {
this->{ui}->mainFrame->layout->DESTROY;
}
this->{ui}->mainFrame->setLayout(shift);
}


sub goBye {
debug developer => "QTF: -- LEAVE EVENTLOOP --------";
this->{frontend}->cancelled(1);
this->{frontend}->win->close;
}


1;