C++ (Qt)c = a * b;
C++ (Qt)void autogentest::createValAG(){ ValAGGroup = new QGroupBox(tr("Parameters Autogenerator")); ValAGGroup->setFixedSize(200,500); QLabel *Labell = new QLabel(tr("Enter a value l")); QSpinBox *SpinBoxl = new QSpinBox; //Значение этих двух SpinBox, нужно умножить SpinBoxl->setRange(-100, 100); SpinBoxl->setSingleStep(1); QLabel *LabelR = new QLabel(tr("Enter a value R")); QSpinBox *SpinBoxR = new QSpinBox; SpinBoxR->setRange(-100, 100); SpinBoxR->setSingleStep(1); SpinBoxR->setValue(0); } void autogentest::createEdit(){ EditGroup = new QGroupBox(tr("Resolt")); EditGroup->setFixedSize(500,500); LabelH = new QLabel; //а сюда вывести результат}
C++ (Qt)LabelH->setText(QString::number(SpinBoxl->value() * SpinBoxR->value()));
C++ (Qt)QLabel LabelH = new QLabel; void autogentest::createValAG(){ **** connect(SpinBoxl,SIGNAL(valueChanged(int)),this,SLOT(fun())) connect(SpinBoxR,SIGNAL(valueChanged(int)),this,SLOT(fun())) } void autogentest::createEdit(){ LabelH = new QLabel; } void autogentest::fun(){ LabelH->setText(QString::number(SpinBoxl->value() * SpinBoxR->value())); }
C++ (Qt)QLabel LabelH = new QLabel;
C++ (Qt)QLabel *laBel=new QLabel();