GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
QFitModelFormulaWidget.cpp
Go to the documentation of this file.
1 // $Id: QFitModelFormulaWidget.cpp 1134 2014-01-22 14:53:40Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #include "QFitModelFormulaWidget.h"
15 
16 #include "TGo4FitModelFormula.h"
17 #include "TGo4FitGuiTypes.h"
18 
19 QFitModelFormulaWidget::QFitModelFormulaWidget(QWidget *parent, const char* name)
20  : QFitModelWidget(parent, name)
21 {
22  setupUi(this);
23 }
24 
26 {
27  return dynamic_cast<TGo4FitModelFormula*> (GetObject());
28 }
29 
31 {
33  if (GetFormula()) {
34  NumParSpin->setValue(GetFormula()->GetNumberOfExprPar());
35  ExprEdt->setText(GetFormula()->GetExpression());
36  }
37 }
38 
40 {
41  if(!fbFillWidget && GetFormula())
42  GetFormula()->SetExpression(str.toLatin1().constData());
43 }
44 
46 {
47  if(!fbFillWidget && GetFormula())
48  if(GetFormula()->SetNumberOfExprPar(num))
50 }
void SetExpression(const char *expr)
QFitModelFormulaWidget(QWidget *parent=0, const char *name=0)
bool fbFillWidget
Definition: QFitWidget.h:64
virtual TGo4FitModelFormula * GetFormula()
virtual TObject * GetObject()
Definition: QFitWidget.cpp:53
virtual void ExprEdt_textChanged(const QString &)
virtual void FillSpecificData()
virtual void NumParSpin_valueChanged(int)
virtual void UpdateItemsOfType(int typ, bool allitems)
Definition: QFitWidget.cpp:103