-
Wuttke, Joachim authoredWuttke, Joachim authored
JobRealTimeToolBar.h 1.10 KiB
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/View/Fit/JobRealTimeToolBar.h
//! @brief Defines class JobRealTimeToolBar
//!
//! @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_FIT_JOBREALTIMETOOLBAR_H
#define BORNAGAIN_GUI_VIEW_FIT_JOBREALTIMETOOLBAR_H
#include "GUI/View/Common/StyledToolBar.h"
class QToolButton;
//! Represents a toolbar with buttons for ParameterTuningWidget.
class JobRealTimeToolBar : public StyledToolBar {
Q_OBJECT
public:
explicit JobRealTimeToolBar(QWidget* parent = nullptr);
signals:
void resetParameters();
private:
QToolButton* m_resetParametersButton;
};
#endif // BORNAGAIN_GUI_VIEW_FIT_JOBREALTIMETOOLBAR_H