SXRMBPersistentView::SXRMBPersistentView(QWidget *parent) : QWidget(parent) { beamOnAction_ = 0; //NULL beamOffAction_ = 0; //NULL // create persistent view component container mainVL_ = new QVBoxLayout(); mainVL_->setContentsMargins(4, 2, 4, 2); layoutBeamlineStatus(); layoutBeamlineEnergy(); layoutMotorGroup(); layoutScalers(); layoutHVControls(); // add stretch for display purpose mainVL_->addStretch(); mainGroupBox_ = new QGroupBox("SXRMB Beamline"); mainGroupBox_->setLayout(mainVL_); mainGroupBoxVL_ = new QVBoxLayout(); mainGroupBoxVL_->addWidget(mainGroupBox_); setLayout(mainGroupBoxVL_); setFixedWidth(350); // connect to signals connect(beamOnButton_, SIGNAL(clicked()), this, SLOT(onBeamOnButtonClicked())); connect(beamOffButton_, SIGNAL(clicked()), this, SLOT(onBeamOffButtonClicked())); connect(SXRMBBeamline::sxrmb(), SIGNAL(endstationChanged(SXRMB::Endstation, SXRMB::Endstation)), this, SLOT(onBeamlineEndstationChanged(SXRMB::Endstation, SXRMB::Endstation))); onBeamlineEndstationChanged(SXRMBBeamline::sxrmb()->currentEndstation(), SXRMBBeamline::sxrmb()->currentEndstation()); }
SXRMBEXAFSScanConfigurationView::SXRMBEXAFSScanConfigurationView(SXRMBEXAFSScanConfiguration *configuration, QWidget *parent) : SXRMBScanConfigurationView(parent) { SXRMBBeamline *sxrmbBL = SXRMBBeamline::sxrmb(); configuration_ = configuration; regionsView_ = new AMEXAFSScanAxisView("SXRMB Region Configuration", configuration_); autoRegionButton_ = new QPushButton("Auto Set XANES Regions"); connect(autoRegionButton_, SIGNAL(clicked()), this, SLOT(setupDefaultXANESScanRegions())); pseudoXAFSButton_ = new QPushButton("Auto Set EXAFS Regions"); connect(pseudoXAFSButton_, SIGNAL(clicked()), this, SLOT(setupDefaultEXAFSScanRegions())); // Energy (Eo) selection energy_ = new QDoubleSpinBox; energy_->setSuffix(" eV"); energy_->setMinimum(0); energy_->setMaximum(10000); connect(energy_, SIGNAL(editingFinished()), this, SLOT(setEnergy())); elementChoice_ = new QToolButton; connect(elementChoice_, SIGNAL(clicked()), this, SLOT(onElementChoiceClicked())); lineChoice_ = new QComboBox; connect(lineChoice_, SIGNAL(currentIndexChanged(int)), this, SLOT(onLinesComboBoxIndexChanged(int))); if (configuration_->edge().isEmpty()){ elementChoice_->setText("Cl"); fillLinesComboBox(AMPeriodicTable::table()->elementBySymbol("Cl")); lineChoice_->setCurrentIndex(0); } // Resets the view for the view to what it should be. Using the saved for the energy in case it is different from the original line energy. else { elementChoice_->setText(configuration_->edge().split(" ").first()); lineChoice_->blockSignals(true); fillLinesComboBox(AMPeriodicTable::table()->elementBySymbol(elementChoice_->text())); lineChoice_->setCurrentIndex(lineChoice_->findText(configuration_->edge(), Qt::MatchStartsWith | Qt::MatchCaseSensitive)); lineChoice_->blockSignals(false); energy_->setValue(configuration_->energy()); } connect(configuration_, SIGNAL(edgeChanged(QString)), this, SLOT(onEdgeChanged())); QFormLayout *energySetpointLayout = new QFormLayout; energySetpointLayout->addRow("Energy:", energy_); QHBoxLayout *energyLayout = new QHBoxLayout; energyLayout->addLayout(energySetpointLayout); energyLayout->addWidget(elementChoice_); energyLayout->addWidget(lineChoice_); QHBoxLayout *regionsHL = new QHBoxLayout(); regionsHL->addStretch(); regionsHL->addWidget(autoRegionButton_); regionsHL->addWidget(pseudoXAFSButton_); QVBoxLayout *scanRegionConfigurationBoxLayout = new QVBoxLayout; scanRegionConfigurationBoxLayout->addLayout(energyLayout); scanRegionConfigurationBoxLayout->addWidget(regionsView_); scanRegionConfigurationBoxLayout->addLayout(regionsHL); QGroupBox *scanRegionConfigurationGroupBox = new QGroupBox("Scan Region Configuration"); scanRegionConfigurationGroupBox->setLayout(scanRegionConfigurationBoxLayout); // Scan information: scan name selection scanName_ = new QLineEdit(configuration_->userScanName()); scanName_->setAlignment(Qt::AlignCenter); connect(scanName_, SIGNAL(editingFinished()), this, SLOT(onScanNameEdited())); connect(configuration_, SIGNAL(nameChanged(QString)), scanName_, SLOT(setText(QString))); onScanNameEdited(); QFormLayout *scanNameLayout = new QFormLayout; scanNameLayout->addRow("Scan Name:", scanName_); // Scan information: the estimated scan time. estimatedTime_ = new QLabel; connect(configuration_, SIGNAL(totalTimeChanged(double)), this, SLOT(onEstimatedTimeChanged())); onEstimatedTimeChanged(); QVBoxLayout *scanInfoBoxLayout = new QVBoxLayout; scanInfoBoxLayout->addLayout(scanNameLayout); scanInfoBoxLayout->addWidget(estimatedTime_); QGroupBox *scanInfoGroupBox = new QGroupBox("Scan Information"); scanInfoGroupBox->setLayout(scanInfoBoxLayout); // Beamline setting layout QGroupBox *beamlineSettingsGroupBox = createAndLayoutBeamlineSettings(); // Bruker detector setting QGroupBox *detectorSettingGroupBox = createAndLayoutDetectorSettings(configuration_); // layout the contents QGridLayout *contentLayout = new QGridLayout(); contentLayout->addWidget(scanRegionConfigurationGroupBox, 0, 0, 1, 1); contentLayout->addWidget(scanInfoGroupBox, 1, 0, 1, 1); contentLayout->addWidget(beamlineSettingsGroupBox, 0, 4, 1, 1); contentLayout->addWidget(detectorSettingGroupBox, 1, 4, 1, 1); contentLayout->setContentsMargins(20,0,0,20); contentLayout->setSpacing(1); setLayout(contentLayout); connect(configuration_->dbObject(), SIGNAL(xChanged(double)), this, SLOT(onScanConfigurationSampleStageXChanged(double))); connect(configuration_->dbObject(), SIGNAL(zChanged(double)), this, SLOT(onScanConfigurationSampleStageZChanged(double))); connect(configuration_->dbObject(), SIGNAL(yChanged(double)), this, SLOT(onScanConfigurationNormalChanged(double))); connect(configuration_->dbObject(), SIGNAL(rotationChanged(double)), this, SLOT(onScanConfigurationRotationChanged(double))); connect(sxrmbBL, SIGNAL(endstationChanged(SXRMB::Endstation, SXRMB::Endstation)), this, SLOT(onBeamlineEndstationChanged(SXRMB::Endstation, SXRMB::Endstation))); if(sxrmbBL->isConnected()) updateBeamlineSettingWarning(); }