Skip to content
Snippets Groups Projects
Commit eb9d3973 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

+ local var

parent 11c3e5f5
No related branches found
No related tags found
1 merge request!2082GUI various cleanup
......@@ -16,8 +16,8 @@
#include "GUI/Model/Beam/GrazingScanItem.h"
#include "GUI/Model/Descriptor/DistributionItems.h"
#include "GUI/View/Device/SphericalAxisForm.h"
#include "GUI/View/Instrument/DistributionSelector.h"
#include "GUI/View/Instrument/DistributionPlot.h"
#include "GUI/View/Instrument/DistributionSelector.h"
AlphaScanEditor::AlphaScanEditor(QWidget* parent, GrazingScanItem* item, bool allow_distr)
: CollapsibleGroupBox("Grazing angles (deg)", parent, item->expandGroupBox)
......
......@@ -155,15 +155,16 @@ DetectorEditor::DetectorEditor(QWidget* parent, GISASInstrumentItem* instrItem)
auto* aliLine = new QHBoxLayout;
layout->addLayout(aliLine);
QFormLayout* alignmentForm = new QFormLayout;
aliLine->addLayout(alignmentForm);
alignmentForm->addRow("Alignment:",
GUI::Util::createSafeComboBox(
[detectorItem] { return detectorItem->detectorAlignmentCombo(); },
[this, detectorItem](const QString& t) {
detectorItem->setDetectorAlignment(t);
emit dataChanged();
}));
auto* aliForm = new QFormLayout;
aliLine->addLayout(aliForm);
auto* aliCombo = GUI::Util::createSafeComboBox(
[detectorItem] { return detectorItem->detectorAlignmentCombo(); },
[this, detectorItem](const QString& t) {
detectorItem->setDetectorAlignment(t);
emit dataChanged();
});
aliForm->addRow("Alignment:", aliCombo);
auto* detposLayout = new QFormLayout;
aliLine->addLayout(detposLayout);
......
......@@ -15,8 +15,8 @@
#ifndef BORNAGAIN_GUI_VIEW_INSTRUMENT_DISTRIBUTIONEDITOR_H
#define BORNAGAIN_GUI_VIEW_INSTRUMENT_DISTRIBUTIONEDITOR_H
#include "GUI/View/Instrument/DistributionSelector.h" // MeanConfig
#include "GUI/Support/Data/ID.h"
#include "GUI/View/Instrument/DistributionSelector.h" // MeanConfig
#include "GUI/View/Widget/GroupBoxes.h"
#include <optional>
......
......@@ -16,8 +16,8 @@
#define BORNAGAIN_GUI_VIEW_INSTRUMENT_DISTRIBUTIONSELECTOR_H
#include "GUI/Support/Data/ID.h"
#include <optional>
#include <QWidget>
#include <optional>
class BeamDistributionItem;
class DistributionItem;
......
......@@ -46,9 +46,9 @@ ScanEditor::ScanEditor(QWidget* parent, ScanItem* item, InstrumentNotifier* ec,
auto* hLayout = new QHBoxLayout;
layout->addLayout(hLayout);
auto* wavelengthEditor =
new DistributionEditor("Wavelength (nm)", MeanConfig{true}, GUI::ID::Distributions::Symmetric,
this, item->wavelengthItem(), allow_distr);
auto* wavelengthEditor = new DistributionEditor("Wavelength (nm)", MeanConfig{true},
GUI::ID::Distributions::Symmetric, this,
item->wavelengthItem(), allow_distr);
hLayout->addWidget(wavelengthEditor);
auto* inclinationEditor = new AlphaScanEditor(this, item->grazingScanItem(), allow_distr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment