Skip to content
Snippets Groups Projects
Commit 696de11d authored by Mikhail Svechnikov's avatar Mikhail Svechnikov
Browse files

adjust instrument layout

parent a75794c2
No related branches found
No related tags found
1 merge request!2749Adjust layouts and widget sizes in InstrumentView and SampleView
......@@ -32,6 +32,7 @@ ScanEditor::ScanEditor(QWidget* parent, InstrumentItem* instr_item, ScanItem* it
: CollapsibleGroupBox("Beam and scan parameters", parent, item->expandBeamParameters)
{
auto* layout = new QGridLayout(body());
layout->setAlignment(Qt::AlignTop);
//... Intensity
......
......@@ -32,7 +32,7 @@ DepthprobeInstrumentEditor::DepthprobeInstrumentEditor(DepthprobeInstrumentItem*
"Number of points in scan across sample bulk");
layout->addWidget(depthAxisEditor);
layout->addStretch();
layout->addStretch(1);
connect(scanEditor, &ScanEditor::dataChanged, this, &IComponentEditor::dataChanged);
connect(depthAxisEditor, &AxisForm::dataChanged, this, &IComponentEditor::dataChanged);
......
......@@ -34,7 +34,7 @@ OffspecInstrumentEditor::OffspecInstrumentEditor(OffspecInstrumentItem* instrume
auto* polMatricesAnalysisEditor = new PolarizationAnalysisEditor(this, instrument);
layout->addWidget(polMatricesAnalysisEditor);
layout->addStretch();
layout->addStretch(1);
connect(scanEditor, &ScanEditor::dataChanged, this, &IComponentEditor::dataChanged);
connect(detectorEditor, &OffspecDetectorEditor::dataChanged, this,
......
......@@ -34,7 +34,7 @@ SpecularInstrumentEditor::SpecularInstrumentEditor(SpecularInstrumentItem* instr
auto* backgroundForm = new BackgroundForm(this, instrument);
layout->addWidget(backgroundForm);
layout->addStretch();
layout->addStretch(1);
connect(scanEditor, &ScanEditor::dataChanged, this, &IComponentEditor::dataChanged);
connect(polMatricesAnalysisEditor, &PolarizationAnalysisEditor::dataChanged, this,
......
......@@ -60,7 +60,7 @@ InstrumentView::InstrumentView()
hLayout->addWidget(m_scroll_area);
m_scroll_area->setWidgetResizable(true);
m_scroll_area->setMinimumWidth(1000);
m_scroll_area->setMinimumWidth(950);
m_scroll_area->setWidget(new QWidget(m_scroll_area)); // initial state: blank widget
hLayout->addStretch(1);
......
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