#include "simapi.h" /**************************************************************************** ** Form implementation generated from reading ui file './infoproxybase.ui' ** ** Created: Вск Мар 4 15:40:55 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 "infoproxybase.h" #include #include #include #include #include #include /* * Constructs a InfoProxyBase as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ InfoProxyBase::InfoProxyBase( QWidget* parent, const char* name, WFlags fl ) : QWidget( parent, name, fl ) { if ( !name ) setName( "InfoProxy" ); InfoProxyLayout = new QVBoxLayout( this, 11, 6, "InfoProxyLayout"); tabInfo = new QTabWidget( this, "tabInfo" ); tab = new QWidget( tabInfo, "tab" ); tabInfo->insertTab( tab, QString::fromLatin1("") ); InfoProxyLayout->addWidget( tabInfo ); languageChange(); resize( QSize(429, 279).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished ); } /* * Destroys the object and frees any allocated resources */ InfoProxyBase::~InfoProxyBase() { // no need to delete child widgets, Qt does it all for us } /* * Sets the strings of the subwidgets using the current * language. */ void InfoProxyBase::languageChange() { setProperty( "caption", i18n( "Form1" ) ); tabInfo->changeTab( tab, QString::null ); } #include "infoproxybase.moc"