#include "simapi.h" /**************************************************************************** ** Form implementation generated from reading ui file './proxyerrorbase.ui' ** ** Created: Вск Мар 4 15:40:58 2007 ** by: The User Interface Compiler ($Id: qt/main.cpp 3.3.7 edited Aug 31 2005 $) ** ** WARNING! All changes made in this file will be lost! ****************************************************************************/ #include "proxyerrorbase.h" #include #include #include #include #include #include /* * Constructs a ProxyErrorBase as a child of 'parent', with the * name 'name' and widget flags set to 'f'. * * The dialog will by default be modeless, unless you set 'modal' to * TRUE to construct a modal dialog. */ ProxyErrorBase::ProxyErrorBase( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ) { if ( !name ) setName( "ProxyError" ); setProperty( "sizeGripEnabled", QVariant( TRUE, 0 ) ); ProxyErrorLayout = new QVBoxLayout( this, 11, 6, "ProxyErrorLayout"); lblMessage = new QLabel( this, "lblMessage" ); lblMessage->setProperty( "sizePolicy", QSizePolicy( (QSizePolicy::SizeType)7, (QSizePolicy::SizeType)1, 0, 0, lblMessage->sizePolicy().hasHeightForWidth() ) ); QFont lblMessage_font( lblMessage->font() ); lblMessage_font.setBold( TRUE ); lblMessage->setFont( lblMessage_font ); ProxyErrorLayout->addWidget( lblMessage ); Layout1 = new QHBoxLayout( 0, 0, 6, "Layout1"); Horizontal_Spacing2 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ); Layout1->addItem( Horizontal_Spacing2 ); buttonOk = new QPushButton( this, "buttonOk" ); buttonOk->setProperty( "autoDefault", QVariant( TRUE, 0 ) ); buttonOk->setProperty( "default", QVariant( TRUE, 0 ) ); Layout1->addWidget( buttonOk ); buttonCancel = new QPushButton( this, "buttonCancel" ); buttonCancel->setProperty( "autoDefault", QVariant( TRUE, 0 ) ); Layout1->addWidget( buttonCancel ); ProxyErrorLayout->addLayout( Layout1 ); languageChange(); resize( QSize(515, 286).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished ); // signals and slots connections connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) ); connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) ); } /* * Destroys the object and frees any allocated resources */ ProxyErrorBase::~ProxyErrorBase() { // no need to delete child widgets, Qt does it all for us } /* * Sets the strings of the subwidgets using the current * language. */ void ProxyErrorBase::languageChange() { setProperty( "caption", i18n( "Proxy error" ) ); lblMessage->setProperty( "text", QString::null ); buttonOk->setProperty( "text", i18n( "&OK" ) ); buttonCancel->setProperty( "text", i18n( "&Cancel" ) ); } #include "proxyerrorbase.moc"