📄 testsuitechooser.cpp
字号:
/****************************************************************************** Form implementation generated from reading ui file 'testsuitechooser.ui'**** Created: Di 5. Okt 11:36:44 2004** by: The User Interface Compiler ($Id: qt/main.cpp 3.3.1 edited Nov 24 13:47 $)**** WARNING! All changes made in this file will be lost!****************************************************************************/#include "testsuitechooser.h"
#ifdef RL_TOOLBOX_USE_QT
#include <qvariant.h>#include <qlabel.h>#include <qcombobox.h>#include <qpushbutton.h>#include <qlayout.h>#include <qtooltip.h>#include <qwhatsthis.h>#include <qimage.h>#include <qpixmap.h>/* * Constructs a testSuiteChooser 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. */testSuiteChooser::testSuiteChooser( QWidget* parent, const char* name, bool modal, WFlags fl ) : QDialog( parent, name, modal, fl ){ if ( !name ) setName( "testSuiteChooser" ); textLabel4 = new QLabel( this, "textLabel4" ); textLabel4->setGeometry( QRect( 20, 30, 100, 20 ) ); textLabel5 = new QLabel( this, "textLabel5" ); textLabel5->setGeometry( QRect( 20, 90, 80, 20 ) ); algorithmCombo = new QComboBox( FALSE, this, "algorithmCombo" ); algorithmCombo->setGeometry( QRect( 100, 20, 230, 30 ) ); testsuiteCombo = new QComboBox( FALSE, this, "testsuiteCombo" ); testsuiteCombo->setGeometry( QRect( 100, 80, 230, 30 ) ); testSuiteChooserOKButton = new QPushButton( this, "testSuiteChooserOKButton" ); testSuiteChooserOKButton->setGeometry( QRect( 130, 130, 93, 29 ) ); testSuiteChooserOKButton->setAutoDefault( FALSE ); testSuiteChooserOKButton->setDefault( TRUE ); languageChange(); resize( QSize(338, 173).expandedTo(minimumSizeHint()) ); clearWState( WState_Polished );}/* * Destroys the object and frees any allocated resources */testSuiteChooser::~testSuiteChooser(){ // no need to delete child widgets, Qt does it all for us}/* * Sets the strings of the subwidgets using the current * language. */void testSuiteChooser::languageChange(){ setCaption( tr( "Testsuite" ) ); QToolTip::add( this, tr( "e" ) ); textLabel4->setText( tr( "Algorithms:" ) ); textLabel5->setText( tr( "TestSuite:" ) ); testSuiteChooserOKButton->setText( tr( "OK" ) );}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -