#include "simapi.h" /**************************************************************************** ** Form implementation generated from reading ui file './smscfgbase.ui' ** ** Created: Вск Мар 4 15:40:38 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 "smscfgbase.h" #include #include #include #include #include #include #include /* * Constructs a SMSConfigBase as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ SMSConfigBase::SMSConfigBase( QWidget* parent, const char* name, WFlags fl ) : QWidget( parent, name, fl ) { if ( !name ) setName( "SMSConfig" ); SMSConfigLayout = new QVBoxLayout( this, 11, 6, "SMSConfigLayout"); TextLabel3 = new QLabel( this, "TextLabel3" ); TextLabel3->setProperty( "alignment", int( QLabel::AlignVCenter | QLabel::AlignLeft ) ); SMSConfigLayout->addWidget( TextLabel3 ); edtBefore = new QMultiLineEdit( this, "edtBefore" ); SMSConfigLayout->addWidget( edtBefore ); TextLabel4 = new QLabel( this, "TextLabel4" ); TextLabel4->setProperty( "alignment", int( QLabel::AlignVCenter | QLabel::AlignLeft ) ); SMSConfigLayout->addWidget( TextLabel4 ); edtAfter = new QMultiLineEdit( this, "edtAfter" ); SMSConfigLayout->addWidget( edtAfter ); languageChange(); resize( QSize(321, 274).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished ); } /* * Destroys the object and frees any allocated resources */ SMSConfigBase::~SMSConfigBase() { // no need to delete child widgets, Qt does it all for us } /* * Sets the strings of the subwidgets using the current * language. */ void SMSConfigBase::languageChange() { setProperty( "caption", i18n( "Form1" ) ); TextLabel3->setProperty( "text", i18n( "Text before cursor:" ) ); TextLabel4->setProperty( "text", i18n( "Text after cursor:" ) ); } #include "smscfgbase.moc"