1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/FitControl/FitEditor.h
//! @brief Defines class FitEditor.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#ifndef BORNAGAIN_GUI_VIEW_FITCONTROL_FITEDITOR_H
#define BORNAGAIN_GUI_VIEW_FITCONTROL_FITEDITOR_H
#include <QLabel>
#include <QPushButton>
#include <QSlider>
#include <QWidget>
enum class JobStatus;
class CautionSign;
class FitSuiteItem;
class JobItem;
//! The FitEditor contains elements to start/stop fitting and to provide minimal
//! diagnostic. Part of FitSuiteWidget.
class FitEditor : public QWidget {
Q_OBJECT
public:
FitEditor();
void setJobItem(JobItem* job_item);
signals:
void startFittingPushed();
void stopFittingPushed();
void updFromTreePushed();
public slots:
void onFittingError(const QString& what);
private slots:
void onJobDestroyed();
private:
void onSliderValueChanged(int value);
int sliderUpdateInterval();
int sliderValueToUpdateInterval(int value);
int updateIntervalToSliderValue(int updInterval);
void initializeSlider();
void updateControlElements(JobStatus status);
FitSuiteItem* fitSuiteItem();
bool isValidJobItem();
void updateIterationsCountLabel(int iter);
QPushButton* m_start_button;
QPushButton* m_stop_button;
QPushButton* m_upd_button;
QSlider* m_interval_slider;
QLabel* m_update_interval_label;
QLabel* m_iterations_count_label;
CautionSign* m_caution_sign;
JobItem* m_job_item;
};
#endif // BORNAGAIN_GUI_VIEW_FITCONTROL_FITEDITOR_H
|