From 47b6e34a1892ffa173bc92dd7201f316253234cd Mon Sep 17 00:00:00 2001 From: Gennady Pospelov <g.pospelov@fz-juelich.de> Date: Tue, 27 Jan 2015 18:10:36 +0100 Subject: [PATCH] Common header --- .../Components/FitWidgets/FitParameterWidget.cpp | 15 +++++++++++++++ .../Components/FitWidgets/FitParameterWidget.h | 15 +++++++++++++++ .../Views/Components/FitWidgets/FitToolBar.cpp | 15 +++++++++++++++ .../Views/Components/FitWidgets/FitToolBar.h | 15 +++++++++++++++ .../Components/FitWidgets/RealDataWidget.cpp | 15 +++++++++++++++ .../Views/Components/FitWidgets/RealDataWidget.h | 15 +++++++++++++++ .../Views/Components/FitWidgets/RunFitWidget.cpp | 15 +++++++++++++++ .../Views/Components/FitWidgets/RunFitWidget.h | 15 +++++++++++++++ .../InstrumentWidgets/BeamEditorWidget.cpp | 15 +++++++++++++++ .../InstrumentWidgets/BeamEditorWidget.h | 15 +++++++++++++++ .../Components/InstrumentWidgets/ComboWidget.cpp | 15 +++++++++++++++ .../Components/InstrumentWidgets/ComboWidget.h | 15 +++++++++++++++ .../InstrumentWidgets/DetectorEditorWidget.cpp | 15 +++++++++++++++ .../InstrumentWidgets/DetectorEditorWidget.h | 15 +++++++++++++++ .../Components/InstrumentWidgets/GroupBox.cpp | 15 +++++++++++++++ .../Views/Components/InstrumentWidgets/GroupBox.h | 15 +++++++++++++++ .../InstrumentWidgets/InstrumentEditorWidget.cpp | 15 +++++++++++++++ .../InstrumentWidgets/InstrumentEditorWidget.h | 15 +++++++++++++++ .../InstrumentSelectorWidget.cpp | 15 +++++++++++++++ .../InstrumentWidgets/InstrumentSelectorWidget.h | 15 +++++++++++++++ .../Components/JobQueueWidgets/JobListToolBar.cpp | 15 +++++++++++++++ .../Components/JobQueueWidgets/JobListToolBar.h | 15 +++++++++++++++ .../JobQueueWidgets/JobListViewDelegate.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobListViewDelegate.h | 15 +++++++++++++++ .../Components/JobQueueWidgets/JobListWidget.cpp | 15 +++++++++++++++ .../Components/JobQueueWidgets/JobListWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/JobOutputDataToolBar.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobOutputDataToolBar.h | 15 +++++++++++++++ .../JobQueueWidgets/JobOutputDataWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobOutputDataWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/JobPropertiesWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobPropertiesWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/JobRealTimeToolBar.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobRealTimeToolBar.h | 15 +++++++++++++++ .../JobQueueWidgets/JobRealTimeWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobRealTimeWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/JobSelectorWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/JobSelectorWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/ModelTuningDelegate.cpp | 15 +++++++++++++++ .../JobQueueWidgets/ModelTuningDelegate.h | 15 +++++++++++++++ .../JobQueueWidgets/ModelTuningWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/ModelTuningWidget.h | 15 +++++++++++++++ .../JobQueueWidgets/SliderSettingsWidget.cpp | 15 +++++++++++++++ .../JobQueueWidgets/SliderSettingsWidget.h | 15 +++++++++++++++ .../Components/MaterialEditor/MaterialEditor.cpp | 15 +++++++++++++++ .../Components/MaterialEditor/MaterialEditor.h | 15 +++++++++++++++ .../MaterialEditor/MaterialEditorWidget.cpp | 15 +++++++++++++++ .../MaterialEditor/MaterialEditorWidget.h | 15 +++++++++++++++ .../MaterialEditor/MaterialProperty.cpp | 15 +++++++++++++++ .../Components/MaterialEditor/MaterialProperty.h | 15 +++++++++++++++ .../MaterialEditor/MaterialPropertyBrowser.cpp | 15 +++++++++++++++ .../MaterialEditor/MaterialPropertyBrowser.h | 15 +++++++++++++++ .../Components/MaterialEditor/MaterialUtils.cpp | 15 +++++++++++++++ .../Components/MaterialEditor/MaterialUtils.h | 15 +++++++++++++++ GUI/coregui/utils/GUIFunctionalTest.cpp | 15 +++++++++++++++ GUI/coregui/utils/GUIFunctionalTest.h | 15 +++++++++++++++ GUI/coregui/utils/GUIHelpers.cpp | 6 +++--- GUI/coregui/utils/GUIHelpers.h | 6 +++--- GUI/coregui/utils/PyScriptSyntaxHighlighter.cpp | 15 +++++++++++++++ GUI/coregui/utils/PyScriptSyntaxHighlighter.h | 15 +++++++++++++++ GUI/coregui/utils/hostosinfo.h | 15 +++++++++++++++ GUI/coregui/utils/stringutils.cpp | 15 +++++++++++++++ GUI/coregui/utils/stringutils.h | 15 +++++++++++++++ 63 files changed, 921 insertions(+), 6 deletions(-) diff --git a/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.cpp b/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.cpp index 02f0abe8d3b..aaff064c0a5 100644 --- a/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.cpp +++ b/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/FitParameterWidget.cpp +//! @brief Implements class FitParameterWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "FitParameterWidget.h" #include "FitParameterItem.h" #include <QDebug> diff --git a/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.h b/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.h index 215e9b46b30..de25dea91c0 100644 --- a/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.h +++ b/GUI/coregui/Views/Components/FitWidgets/FitParameterWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/FitParameterWidget.h +//! @brief Defines class FitParameterWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef FITPARAMETERWIDGET_H #define FITPARAMETERWIDGET_H diff --git a/GUI/coregui/Views/Components/FitWidgets/FitToolBar.cpp b/GUI/coregui/Views/Components/FitWidgets/FitToolBar.cpp index 6219b21d671..61f9018d9be 100644 --- a/GUI/coregui/Views/Components/FitWidgets/FitToolBar.cpp +++ b/GUI/coregui/Views/Components/FitWidgets/FitToolBar.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/FitToolBar.cpp +//! @brief Implements class FitToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "FitToolBar.h" #include "styledbar.h" diff --git a/GUI/coregui/Views/Components/FitWidgets/FitToolBar.h b/GUI/coregui/Views/Components/FitWidgets/FitToolBar.h index 9d2c3308df2..ad638612ee6 100644 --- a/GUI/coregui/Views/Components/FitWidgets/FitToolBar.h +++ b/GUI/coregui/Views/Components/FitWidgets/FitToolBar.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/FitToolBar.h +//! @brief Defines class FitToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef FITTOOLBAR_H #define FITTOOLBAR_H diff --git a/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.cpp b/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.cpp index c619d201f42..2f1aa327112 100644 --- a/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.cpp +++ b/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/RealDataWidget.cpp +//! @brief Implements class RealDataWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "RealDataWidget.h" #include <QDebug> #include <QVBoxLayout> diff --git a/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.h b/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.h index 55abe65ab05..41e72b2909b 100644 --- a/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.h +++ b/GUI/coregui/Views/Components/FitWidgets/RealDataWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/RealDataWidget.h +//! @brief Defines class RealDataWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef REALDATAWIDGET_H #define REALDATAWIDGET_H diff --git a/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.cpp b/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.cpp index 1f827060660..cb141cfa3a7 100644 --- a/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.cpp +++ b/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/RunFitWidget.cpp +//! @brief Implements class RunFitWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "RunFitWidget.h" #include <QDebug> #include <QVBoxLayout> diff --git a/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.h b/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.h index 3cca3b03c86..7944fa0ca46 100644 --- a/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.h +++ b/GUI/coregui/Views/Components/FitWidgets/RunFitWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/FitWidgets/RunFitWidget.h +//! @brief Defines class RunFitWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef RUNFITWIDGET_H #define RUNFITWIDGET_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.cpp index 1e17101288a..312d7d5a4c6 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.cpp +//! @brief Implements class BeamEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "BeamEditorWidget.h" #include "ComboProperty.h" #include "DetectorItems.h" diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.h b/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.h index def586f99a1..6a1794c75fc 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/BeamEditorWidget.h +//! @brief Defines class BeamEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef BEAM_EDITOR_WIDGET_H #define BEAM_EDITOR_WIDGET_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.cpp index f19c08505ca..90863a58be1 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/ComboWidget.cpp +//! @brief Implements class ComboWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "ComboWidget.h" #include "GUIHelpers.h" #include <QBoxLayout> diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.h b/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.h index 16a39bd0cd3..3b8ffb85301 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/ComboWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/ComboWidget.h +//! @brief Defines class ComboWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef COMBOWIDGET_H #define COMBOWIDGET_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.cpp index fa315c02e90..0d02950be03 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.cpp +//! @brief Implements class DetectorEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "DetectorEditorWidget.h" #include "FancyGroupProperty.h" #include "ComboProperty.h" diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.h b/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.h index afe57f2f835..d13a8432faa 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/DetectorEditorWidget.h +//! @brief Defines class DetectorEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef DETECTOR_EDITOR_WIDGET_H #define DETECTOR_EDITOR_WIDGET_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.cpp index 4118ef0420d..d088a6f47e2 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/GroupBox.cpp +//! @brief Implements class GroupBox +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "GroupBox.h" #include <QMouseEvent> diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.h b/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.h index 603e1cc0953..2d481b3f298 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/GroupBox.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/GroupBox.h +//! @brief Defines class GroupBox +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef GROUPBOX_H #define GROUPBOX_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.cpp index a5775a7e1b7..d48e65ff410 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.cpp +//! @brief Implements class InstrumentEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "InstrumentEditorWidget.h" #include "ParameterizedItem.h" #include "BeamItem.h" diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.h b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.h index a9ad5d97f4d..5c0b2189427 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/InstrumentEditorWidget.h +//! @brief Defines class InstrumentEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef INSTRUMENT_EDITOR_WIDGET_H #define INSTRUMENT_EDITOR_WIDGET_H diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.cpp b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.cpp index adf287ddefc..12c9f1d40da 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.cpp +++ b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.cpp +//! @brief Implements class InstrumentSelectorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "InstrumentSelectorWidget.h" #include "InstrumentModel.h" #include "ParameterizedItem.h" diff --git a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.h b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.h index ee5e20b308e..2bad7615edf 100644 --- a/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.h +++ b/GUI/coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/InstrumentWidgets/InstrumentSelectorWidget.h +//! @brief Defines class InstrumentSelectorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef INSTRUMENT_SELECTOR_WIDGET_H #define INSTRUMENT_SELECTOR_WIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp index cd175c8e076..91d5d44ef44 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp +//! @brief Implements class JobListToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobListToolBar.h" #include <QStyle> #include <QToolButton> diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.h index 4c124018832..a043401a7a9 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListToolBar.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListToolBar.cpp +//! @brief Implements class JobListToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBLISTTOOLBAR_H #define JOBLISTTOOLBAR_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.cpp index d8c241aac9b..85d6ff7eba2 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.cpp +//! @brief Implements class JobListViewDelegate +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobListViewDelegate.h" #include "JobQueueModel.h" #include "JobItem.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.h index 77ec66c48c7..8897f3b9a2e 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListViewDelegate.h +//! @brief Defines class JobListViewDelegate +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBLISTVIEWDELEGATE_H #define JOBLISTVIEWDELEGATE_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.cpp index 8fe2e384e16..20f86149b9f 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListWidget.cpp +//! @brief Implements class JobListWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobListWidget.h" #include "JobQueueModel.h" #include "JobItem.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.h index 0553437adf9..24112129c22 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobListWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobListWidget.h +//! @brief Defines class JobListWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBLISTWIDGET_H #define JOBLISTWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.cpp index c08b8f3fec5..b01341bc47f 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.cpp +//! @brief Implements class JobOutputDataToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobOutputDataToolBar.h" #include "JobView.h" #include <QIcon> diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.h index b4421aabfc7..32c6a1e890e 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobOutputDataToolBar.h +//! @brief Defines class JobOutputDataToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBOUTPUTDATATOOLBAR_H #define JOBOUTPUTDATATOOLBAR_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.cpp index 71755b41f91..7c30592d312 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.cpp +//! @brief Implements class JobOutputDataWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobOutputDataWidget.h" #include "JobQueueModel.h" #include "OutputDataWidget.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.h index 61263997f10..869ccbdcb6b 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobOutputDataWidget.h +//! @brief Defines class JobOutputDataWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBOUTPUTDATAWIDGET_H #define JOBOUTPUTDATAWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.cpp index edf0b457378..2ed01255527 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.cpp +//! @brief Implements class JobPropertiesWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobPropertiesWidget.h" #include "JobQueueModel.h" #include "JobItem.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.h index 4db5bd0c1e0..6dce0f891c7 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobPropertiesWidget.h +//! @brief Defines class JobPropertiesWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBPROPERTIESWIDGET_H #define JOBPROPERTIESWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.cpp index 620d48178f1..b58b5233808 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.cpp +//! @brief Implements class JobRealTimeToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobRealTimeToolBar.h" #include <QStyle> #include <QToolButton> diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.h index ccb52f9c2aa..97e35a8f7b8 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobRealTimeToolBar.h +//! @brief Defines class JobRealTimeToolBar +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBREALTIMETOOLBAR_H #define JOBREALTIMETOOLBAR_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.cpp index 8e3a4803446..6a060bfd338 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.cpp +//! @brief Implements class JobRealTimeWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobRealTimeWidget.h" #include "JobQueueModel.h" #include "ModelTuningWidget.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.h index 89f6fc79efc..1e5633d2596 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobRealTimeWidget.h +//! @brief Defines class JobRealTimeWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBREALTIMEWIDGET_H #define JOBREALTIMEWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.cpp index 6b9dc7983f2..b7e970028f6 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.cpp +//! @brief Implements class JobSelectorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "JobSelectorWidget.h" #include "JobQueueModel.h" #include "JobItem.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.h index 20ee2589aa7..5b2a5d73b0f 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/JobSelectorWidget.h +//! @brief Implements class JobSelectorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef JOBSELECTORWIDGET_H #define JOBSELECTORWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.cpp index 390b850f6c5..1ba1f27e851 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.cpp +//! @brief Implements class ModelTuningDelegate +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "ModelTuningDelegate.h" #include "ItemLink.h" #include "GUIHelpers.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.h b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.h index 772ac2524f3..96345e57abc 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/ModelTuningDelegate.h +//! @brief Defines class ModelTuningDelegate +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MODELTUNINGDELEGATE_H #define MODELTUNINGDELEGATE_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.cpp index e202f9cbfeb..1842889f1d1 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.cpp +//! @brief Implements class ModelTuningWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "ModelTuningWidget.h" #include "JobItem.h" #include "SliderSettingsWidget.h" diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.h index f7d9a51f35e..46e44ee781c 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/ModelTuningWidget.h +//! @brief Defines class ModelTuningWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MODELTUNINGWIDGET_H #define MODELTUNINGWIDGET_H diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.cpp b/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.cpp index e616d1d56dd..828623a3df5 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.cpp +++ b/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.cpp +//! @brief Implements class SliderSettingsWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "SliderSettingsWidget.h" #include <QDebug> diff --git a/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.h b/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.h index 2f2de366e18..20b3a444483 100644 --- a/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.h +++ b/GUI/coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/JobQueueWidgets/SliderSettingsWidget.h +//! @brief Defines class SliderSettingsWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef SLIDERSETTINGSWIDGET_H #define SLIDERSETTINGSWIDGET_H diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.cpp b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.cpp index 66bd68d5817..e5ada0ab4c6 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.cpp +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialEditor.cpp +//! @brief Implements class MaterialEditor +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "MaterialEditor.h" #include "MaterialEditorWidget.h" #include "MaterialModel.h" diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.h b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.h index cc3fcdd78d7..edfdabd49a5 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.h +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditor.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialEditor.h +//! @brief Defines class MaterialEditor +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MATERIALEDITOR_H #define MATERIALEDITOR_H diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.cpp b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.cpp index 7f24e4f87e1..0d4850a2873 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.cpp +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialEditorWidget.cpp +//! @brief Implements class MaterialEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "MaterialEditorWidget.h" #include "MaterialPropertyBrowser.h" #include "MaterialModel.h" diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.h b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.h index 990f36e9608..7961cd45e90 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.h +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialEditorWidget.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialEditorWidget.h +//! @brief Defines class MaterialEditorWidget +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MATERIALEDITORWIDGET_H #define MATERIALEDITORWIDGET_H diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.cpp b/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.cpp index afa3846f24b..ac2ecb898b1 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.cpp +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialProperty.cpp +//! @brief Implements class MaterialProperty +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "MaterialProperty.h" #include "MaterialItem.h" #include "MaterialEditor.h" diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.h b/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.h index e01b565d220..7ee30f32602 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.h +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialProperty.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialProperty.h +//! @brief Defines class MaterialProperty +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MATERIALPROPERTY_H #define MATERIALPROPERTY_H diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.cpp b/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.cpp index c663ad26e77..0d52558844b 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.cpp +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.cpp +//! @brief Implements class MaterialPropertyBrowser +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "MaterialPropertyBrowser.h" #include "MaterialModel.h" #include "MaterialItem.h" diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.h b/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.h index 33d4d4e6a04..ad04d38f266 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.h +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialPropertyBrowser.h +//! @brief Defines class MaterialPropertyBrowser +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MATERIALPROPERTYBROWER_H #define MATERIALPROPERTYBROWER_H diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.cpp b/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.cpp index 8611f60f044..11354605686 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.cpp +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialUtils.cpp +//! @brief Implements class MaterialUtils +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "MaterialUtils.h" #include "DesignerHelper.h" #include "GUIHelpers.h" diff --git a/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.h b/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.h index f122149542f..7cc29018d29 100644 --- a/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.h +++ b/GUI/coregui/Views/Components/MaterialEditor/MaterialUtils.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/Views/Components/MaterialEditor/MaterialUtils.h +//! @brief Defines class MaterialUtils +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef MATERIALUTILS_H #define MATERIALUTILS_H diff --git a/GUI/coregui/utils/GUIFunctionalTest.cpp b/GUI/coregui/utils/GUIFunctionalTest.cpp index 929e58a622c..a7c30f602be 100644 --- a/GUI/coregui/utils/GUIFunctionalTest.cpp +++ b/GUI/coregui/utils/GUIFunctionalTest.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/GUIFunctionalTest.cpp +//! @brief Implements class GUIFunctionalTest +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "GUIFunctionalTest.h" #include "SimulationRegistry.h" #include "GUIObjectBuilder.h" diff --git a/GUI/coregui/utils/GUIFunctionalTest.h b/GUI/coregui/utils/GUIFunctionalTest.h index 666648234bb..1be32f3a1be 100644 --- a/GUI/coregui/utils/GUIFunctionalTest.h +++ b/GUI/coregui/utils/GUIFunctionalTest.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/GUIFunctionalTest.h +//! @brief Defines class GUIFunctionalTest +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef GUIFUNCTIONALTEST_H #define GUIFUNCTIONALTEST_H diff --git a/GUI/coregui/utils/GUIHelpers.cpp b/GUI/coregui/utils/GUIHelpers.cpp index 052f439ed4c..aa7c4eb9504 100644 --- a/GUI/coregui/utils/GUIHelpers.cpp +++ b/GUI/coregui/utils/GUIHelpers.cpp @@ -2,10 +2,10 @@ // // BornAgain: simulate and fit scattering at grazing incidence // -//! @file utils/GUIHelpers.cpp -//! @brief Implements GUI helper functions. +//! @file coregui/utils/GUIHelpers.cpp +//! @brief Implements GUIHelpers functions //! -//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @homepage http://bornagainproject.org //! @license GNU General Public License v3 or higher (see COPYING) //! @copyright Forschungszentrum Jülich GmbH 2013 //! @authors Scientific Computing Group at MLZ Garching diff --git a/GUI/coregui/utils/GUIHelpers.h b/GUI/coregui/utils/GUIHelpers.h index b23c5f03991..dde7b88cc9b 100644 --- a/GUI/coregui/utils/GUIHelpers.h +++ b/GUI/coregui/utils/GUIHelpers.h @@ -2,10 +2,10 @@ // // BornAgain: simulate and fit scattering at grazing incidence // -//! @file utils/GUIHelpers.h -//! @brief Defines GUI helper functions. +//! @file coregui/utils/GUIHelpers.h +//! @brief Defines class GUIHelpers functions //! -//! @homepage http://apps.jcns.fz-juelich.de/BornAgain +//! @homepage http://bornagainproject.org //! @license GNU General Public License v3 or higher (see COPYING) //! @copyright Forschungszentrum Jülich GmbH 2013 //! @authors Scientific Computing Group at MLZ Garching diff --git a/GUI/coregui/utils/PyScriptSyntaxHighlighter.cpp b/GUI/coregui/utils/PyScriptSyntaxHighlighter.cpp index 2a8b47ed66b..9094b1f5976 100644 --- a/GUI/coregui/utils/PyScriptSyntaxHighlighter.cpp +++ b/GUI/coregui/utils/PyScriptSyntaxHighlighter.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/PyScriptSyntaxHighlighter.cpp +//! @brief Implements class PyScriptSyntaxHighlighter +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "PyScriptSyntaxHighlighter.h" PyScriptSyntaxHighlighter::PyScriptSyntaxHighlighter(QTextDocument *document) diff --git a/GUI/coregui/utils/PyScriptSyntaxHighlighter.h b/GUI/coregui/utils/PyScriptSyntaxHighlighter.h index f8bcc564636..bb2d2d4decc 100644 --- a/GUI/coregui/utils/PyScriptSyntaxHighlighter.h +++ b/GUI/coregui/utils/PyScriptSyntaxHighlighter.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/PyScriptSyntaxHighlighter.h +//! @brief Defines class PyScriptSyntaxHighlighter +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef PYSCRIPTSYNTAXHIGHLIGHTER_H #define PYSCRIPTSYNTAXHIGHLIGHTER_H diff --git a/GUI/coregui/utils/hostosinfo.h b/GUI/coregui/utils/hostosinfo.h index 73cc930af69..aa8b3259dda 100644 --- a/GUI/coregui/utils/hostosinfo.h +++ b/GUI/coregui/utils/hostosinfo.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/hostosinfo.h +//! @brief Defines Utils namespace +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef HOSTOSINFO_H #define HOSTOSINFO_H diff --git a/GUI/coregui/utils/stringutils.cpp b/GUI/coregui/utils/stringutils.cpp index 57706a7c0b0..d61e91b5698 100644 --- a/GUI/coregui/utils/stringutils.cpp +++ b/GUI/coregui/utils/stringutils.cpp @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/stringutils.cpp +//! @brief Implements functions from Utils namespace +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #include "stringutils.h" #include "hostosinfo.h" #include <QFileInfo> diff --git a/GUI/coregui/utils/stringutils.h b/GUI/coregui/utils/stringutils.h index caed4dfd4f1..df03baffd97 100644 --- a/GUI/coregui/utils/stringutils.h +++ b/GUI/coregui/utils/stringutils.h @@ -1,3 +1,18 @@ +// ************************************************************************** // +// +// BornAgain: simulate and fit scattering at grazing incidence +// +//! @file coregui/utils/stringutils.h +//! @brief Defines functions from Utils namespace +//! +//! @homepage http://bornagainproject.org +//! @license GNU General Public License v3 or higher (see COPYING) +//! @copyright Forschungszentrum Jülich GmbH 2013 +//! @authors Scientific Computing Group at MLZ Garching +//! @authors C. Durniak, G. Pospelov, W. Van Herck, J. Wuttke +// +// ************************************************************************** // + #ifndef STRINGUTILS_H #define STRINGUTILS_H -- GitLab