You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
15 years ago
|
/****************************************************************************
|
||
|
** ui.h extension file, included from the uic-generated form implementation.
|
||
|
**
|
||
|
** If you want to add, delete, or rename functions or slots, use
|
||
14 years ago
|
** TQt Designer to update this file, preserving your code.
|
||
15 years ago
|
**
|
||
|
** You should not define a constructor or destructor in this file.
|
||
|
** Instead, write your code in functions called init() and destroy().
|
||
|
** These will automatically be called by the form's constructor and
|
||
|
** destructor.
|
||
|
*****************************************************************************/
|
||
|
|
||
|
|
||
|
void TesterWidget::init()
|
||
|
{
|
||
14 years ago
|
connect(m_pshRun, TQT_SIGNAL(clicked()), this, TQT_SIGNAL(run()));
|
||
15 years ago
|
}
|
||
|
|
||
14 years ago
|
TQListView * TesterWidget::resultList()
|
||
15 years ago
|
{
|
||
|
return m_lvResults;
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
TQTextEdit * TesterWidget::details()
|
||
15 years ago
|
{
|
||
|
return m_teDetails;
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
TQProgressBar * TesterWidget::progressBar()
|
||
15 years ago
|
{
|
||
|
return m_pbProgress;
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
TQLabel * TesterWidget::resultsLabel()
|
||
15 years ago
|
{
|
||
|
return m_lbResults;
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
TQComboBox * TesterWidget::selectCombo()
|
||
15 years ago
|
{
|
||
|
return m_cbSelect;
|
||
|
}
|