GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
QFitModelWidget.h
Go to the documentation of this file.
1 // $Id: QFitModelWidget.h 490 2009-11-04 12:30:14Z 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 #ifndef QFITMODELWIDGET_H
15 #define QFITMODELWIDGET_H
16 
17 #include "QFitNamedWidget.h"
18 
19 class QLabel;
20 class QSpinBox;
21 class QCheckBox;
22 
23 #ifdef WIN32
24 class QFitModelWidget : public QFitNamedWidget {
25 #else
26 #include <QtDesigner/QDesignerExportWidget>
27 class QDESIGNER_WIDGET_EXPORT QFitModelWidget : public QFitNamedWidget {
28 #endif
29 
30  Q_OBJECT
31 
32  public:
33  QFitModelWidget( QWidget* parent = 0, const char* name = 0 );
35 
36  QCheckBox* AmplChk;
37  QLabel* textLabel1;
38  QCheckBox* BuffersChk;
39  QSpinBox* GroupSpin;
40 
41  public slots:
42  virtual void AmplChk_toggled( bool chk );
43  virtual void BuffersChk_toggled( bool chk );
44  virtual void GroupSpin_valueChanged( int );
45 };
46 
47 #endif // QFITMODELWIDGET_H
QCheckBox * BuffersChk
QCheckBox * AmplChk
virtual void GroupSpin_valueChanged(int)
QFitModelWidget(QWidget *parent=0, const char *name=0)
QSpinBox * GroupSpin
virtual void BuffersChk_toggled(bool chk)
virtual void AmplChk_toggled(bool chk)