#include "simapi.h" /**************************************************************************** ** Form implementation generated from reading ui file './cfgdlgbase.ui' ** ** Created: Вск Мар 4 15:40:33 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 "cfgdlgbase.h" #include #include #include #include #include #include #include #include "qwidgetstack.h" /* * Constructs a ConfigureDialogBase as a child of 'parent', with the * name 'name' and widget flags set to 'f'. * * The dialog will by default be modeless, unless you set 'modal' to * TRUE to construct a modal dialog. */ ConfigureDialogBase::ConfigureDialogBase( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ) { if ( !name ) setName( "ConfigureDialog" ); setProperty( "sizeGripEnabled", QVariant( TRUE, 0 ) ); ConfigureDialogLayout = new QVBoxLayout( this, 11, 6, "ConfigureDialogLayout"); Layout3 = new QHBoxLayout( 0, 0, 6, "Layout3"); lstBox = new QListView( this, "lstBox" ); lstBox->addColumn( QString::null ); lstBox->setProperty( "sizePolicy", QSizePolicy( (QSizePolicy::SizeType)5, (QSizePolicy::SizeType)7, 0, 0, lstBox->sizePolicy().hasHeightForWidth() ) ); Layout3->addWidget( lstBox ); wnd = new QWidgetStack( this, "wnd" ); Layout3->addWidget( wnd ); ConfigureDialogLayout->addLayout( Layout3 ); Layout3_2 = new QHBoxLayout( 0, 0, 6, "Layout3_2"); btnUpdate = new QPushButton( this, "btnUpdate" ); Layout3_2->addWidget( btnUpdate ); Horizontal_Spacing2 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum ); Layout3_2->addItem( Horizontal_Spacing2 ); buttonApply = new QPushButton( this, "buttonApply" ); buttonApply->setProperty( "autoDefault", QVariant( TRUE, 0 ) ); Layout3_2->addWidget( buttonApply ); buttonOk = new QPushButton( this, "buttonOk" ); buttonOk->setProperty( "autoDefault", QVariant( TRUE, 0 ) ); buttonOk->setProperty( "default", QVariant( TRUE, 0 ) ); Layout3_2->addWidget( buttonOk ); buttonCancel = new QPushButton( this, "buttonCancel" ); buttonCancel->setProperty( "autoDefault", QVariant( TRUE, 0 ) ); Layout3_2->addWidget( buttonCancel ); ConfigureDialogLayout->addLayout( Layout3_2 ); languageChange(); resize( QSize(503, 385).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished ); // signals and slots connections connect( buttonOk, SIGNAL( clicked() ), this, SLOT( accept() ) ); connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( reject() ) ); } /* * Destroys the object and frees any allocated resources */ ConfigureDialogBase::~ConfigureDialogBase() { // no need to delete child widgets, Qt does it all for us } /* * Sets the strings of the subwidgets using the current * language. */ void ConfigureDialogBase::languageChange() { setProperty( "caption", i18n( "Setup" ) ); lstBox->header()->setLabel( 0, QString::null ); btnUpdate->setProperty( "text", i18n( "&Update" ) ); buttonApply->setProperty( "text", i18n( "&Apply" ) ); buttonOk->setProperty( "text", i18n( "&OK" ) ); buttonCancel->setProperty( "text", i18n( "&Cancel" ) ); } #include "cfgdlgbase.moc"