Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > d38b97c69a3fd47b351add70f89a7ab5 > files > 658

perl-qt4-examples-4.14.3-1.mga5.noarch.rpm

###############################################################################
# 
###############################################################################

#################################################################################
## Form generated from reading UI file 'chatdialog.ui'
##
## Created: Wed Dec 3 23:12:51 2014
##      by: Qt User Interface Compiler version 4.8.6
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################

package Ui_ChatDialog;

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

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

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

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

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

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

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

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


sub setupUi {
    my ( $class, $chatDialog ) = @_;
    my $self = bless {}, $class;
    if ( !defined $chatDialog->objectName() ) {
        $chatDialog->setObjectName( "chatDialog" );
    }
    $chatDialog->resize( 513, 349 );
    my $vboxLayout = Qt::VBoxLayout( $chatDialog );
    $self->{vboxLayout} = $vboxLayout;
    $vboxLayout->setSpacing( 6 );
    $vboxLayout->setMargin( 9 );
    $vboxLayout->setObjectName( "vboxLayout" );
    my $hboxLayout = Qt::HBoxLayout(  );
    $self->{hboxLayout} = $hboxLayout;
    $hboxLayout->setSpacing( 6 );
    $hboxLayout->setMargin( 0 );
    $hboxLayout->setObjectName( "hboxLayout" );
    my $textEdit = Qt::TextEdit( $chatDialog );
    $self->{textEdit} = $textEdit;
    $textEdit->setObjectName( "textEdit" );
    $textEdit->setFocusPolicy( Qt::NoFocus() );
    $textEdit->setReadOnly( 1 );

    $hboxLayout->addWidget( $textEdit );

    my $listWidget = Qt::ListWidget( $chatDialog );
    $self->{listWidget} = $listWidget;
    $listWidget->setObjectName( "listWidget" );
    $listWidget->setMaximumSize( Qt::Size(180, 16777215) );
    $listWidget->setFocusPolicy( Qt::NoFocus() );

    $hboxLayout->addWidget( $listWidget );


    $vboxLayout->addLayout( $hboxLayout );

    my $hboxLayout1 = Qt::HBoxLayout(  );
    $self->{hboxLayout1} = $hboxLayout1;
    $hboxLayout1->setSpacing( 6 );
    $hboxLayout1->setMargin( 0 );
    $hboxLayout1->setObjectName( "hboxLayout1" );
    my $label = Qt::Label( $chatDialog );
    $self->{label} = $label;
    $label->setObjectName( "label" );

    $hboxLayout1->addWidget( $label );

    my $lineEdit = Qt::LineEdit( $chatDialog );
    $self->{lineEdit} = $lineEdit;
    $lineEdit->setObjectName( "lineEdit" );

    $hboxLayout1->addWidget( $lineEdit );


    $vboxLayout->addLayout( $hboxLayout1 );


    $self->retranslateUi( $chatDialog );

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

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

sub retranslateUi {
    my ( $self, $chatDialog ) = @_;
    $chatDialog->setWindowTitle( Qt::Application::translate( 'ChatDialog', "Chat", undef, Qt::Application::UnicodeUTF8() ) );
    $self->{label}->setText( Qt::Application::translate( 'ChatDialog', "Message:", undef, Qt::Application::UnicodeUTF8() ) );
} # retranslateUi

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

1;