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.
30 lines
667 B
30 lines
667 B
#include <ntqradiobutton.h>
|
|
#include <ntqspinbox.h>
|
|
#include "receiver.h"
|
|
|
|
void Receiver::setParent( TQDialog *parent )
|
|
{
|
|
p = parent;
|
|
setAmount();
|
|
}
|
|
|
|
void Receiver::setAmount()
|
|
{
|
|
TQSpinBox *amount =
|
|
(TQSpinBox *) p->child( "amountSpinBox", "TQSpinBox" );
|
|
|
|
TQRadioButton *radio =
|
|
(TQRadioButton *) p->child( "stdRadioButton", "TQRadioButton" );
|
|
if ( radio && radio->isChecked() ) {
|
|
if ( amount )
|
|
amount->setValue( amount->maxValue() / 2 );
|
|
return;
|
|
}
|
|
|
|
radio =
|
|
(TQRadioButton *) p->child( "noneRadioButton", "TQRadioButton" );
|
|
if ( radio && radio->isChecked() )
|
|
if ( amount )
|
|
amount->setValue( amount->minValue() );
|
|
}
|