#include "simapi.h" /**************************************************************************** ** Form implementation generated from reading ui file './ontopcfgbase.ui' ** ** Created: Вск Мар 4 15:41:06 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 "ontopcfgbase.h" #include #include #include #include #include #include /* * Constructs a OnTopCfgBase as a child of 'parent', with the * name 'name' and widget flags set to 'f'. */ OnTopCfgBase::OnTopCfgBase( QWidget* parent, const char* name, WFlags fl ) : QWidget( parent, name, fl ) { if ( !name ) setName( "Form1" ); Form1Layout = new QVBoxLayout( this, 11, 6, "Form1Layout"); chkInTask = new QCheckBox( this, "chkInTask" ); Form1Layout->addWidget( chkInTask ); chkContainer = new QCheckBox( this, "chkContainer" ); Form1Layout->addWidget( chkContainer ); Spacer11 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding ); Form1Layout->addItem( Spacer11 ); languageChange(); resize( QSize(320, 140).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished ); } /* * Destroys the object and frees any allocated resources */ OnTopCfgBase::~OnTopCfgBase() { // no need to delete child widgets, Qt does it all for us } /* * Sets the strings of the subwidgets using the current * language. */ void OnTopCfgBase::languageChange() { setProperty( "caption", i18n( "Form1" ) ); chkInTask->setProperty( "text", i18n( "Show &main window in task manager" ) ); chkContainer->setProperty( "text", i18n( "&Container always on top" ) ); } #include "ontopcfgbase.moc"