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