00001 // $Id: QFitModelWidget.h 490 2009-11-04 12:30:14Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #ifndef QFITMODELWIDGET_H 00015 #define QFITMODELWIDGET_H 00016 00017 #include "QFitNamedWidget.h" 00018 00019 class QLabel; 00020 class QSpinBox; 00021 class QCheckBox; 00022 00023 #ifdef WIN32 00024 class QFitModelWidget : public QFitNamedWidget { 00025 #else 00026 #include <QtDesigner/QDesignerExportWidget> 00027 class QDESIGNER_WIDGET_EXPORT QFitModelWidget : public QFitNamedWidget { 00028 #endif 00029 00030 Q_OBJECT 00031 00032 public: 00033 QFitModelWidget( QWidget* parent = 0, const char* name = 0 ); 00034 ~QFitModelWidget(); 00035 00036 QCheckBox* AmplChk; 00037 QLabel* textLabel1; 00038 QCheckBox* BuffersChk; 00039 QSpinBox* GroupSpin; 00040 00041 public slots: 00042 virtual void AmplChk_toggled( bool chk ); 00043 virtual void BuffersChk_toggled( bool chk ); 00044 virtual void GroupSpin_valueChanged( int ); 00045 }; 00046 00047 #endif // QFITMODELWIDGET_H