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