GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
QFitModelWidget.h
Go to the documentation of this file.
1// $Id$
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 fuer 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
19class QLabel;
20class QSpinBox;
21class QCheckBox;
22
23#ifdef __GO4DESIGNER__
24#include <QtDesigner/QDesignerExportWidget>
25class QDESIGNER_WIDGET_EXPORT QFitModelWidget : public QFitNamedWidget {
26#else
28#endif
29
30 Q_OBJECT
31
32 public:
33 QFitModelWidget(QWidget *parent = nullptr, const char *name = nullptr);
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(QWidget *parent=nullptr, const char *name=nullptr)
QSpinBox * GroupSpin
virtual void AmplChk_toggled(bool chk)
virtual void BuffersChk_toggled(bool chk)
virtual void GroupSpin_valueChanged(int)
QCheckBox * BuffersChk
QCheckBox * AmplChk
QFitNamedWidget(QWidget *parent=nullptr, const char *name=nullptr)