Server IP : 127.0.0.2 / Your IP : 18.226.104.194 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/Debconf/Element/ |
Upload File : |
#!/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