71 if (strcmp(linkname,
"Status") == 0) {
72 parentWidget()->raise();
73 parentWidget()->show();
74 if (parentWidget()->isMinimized()) parentWidget()->showNormal();
79 anl->RefreshNamesList();
107 QWidget *w =
nullptr;
109 w = TabSteps->currentWidget();
111 TabSteps->removeTab(TabSteps->indexOf(w));
122 if (!status || !anl)
return;
124 SubmitPushButton->setEnabled(anl->CanSubmitObjects());
125 SubmitAndStartButton->setEnabled(anl->CanSubmitObjects());
129 QWidget *w =
nullptr;
131 w = TabSteps->currentWidget();
133 TabSteps->removeTab(TabSteps->indexOf(w));
138 for (
int i = 0; i < status->GetNumberOfSteps(); i++) {
140 if (!stepstatus)
continue;
141 QString StepName = stepstatus->GetName();
143 NewStep->
SetStepStatus(
this, stepstatus, status->GetNumberOfSteps() > 1 ? i : -1);
144 TabSteps->insertTab(i, NewStep, NewStep->
GetTabTitle());
147 TabSteps->setCurrentIndex(0);
148 TabSteps->adjustSize();
151 status->GetAutoSaveInterval(),
152 status->GetAutoSaveCompression(),
153 status->IsAutoSaveOn(),
154 status->IsAutoSaveOverwrite());
158 parentWidget()->showNormal();
159 parentWidget()->adjustSize();
195 anl->RequestAnalysisSettings();
201 "Select a configuration file",
203 " Configuration file (*.root)");
204 fd.setFileMode( QFileDialog::AnyFile);
205 if (fd.exec() != QDialog::Accepted)
return;
206 QStringList flst = fd.selectedFiles();
207 QString fileName = flst.isEmpty() ? QString() : flst[0];
209 if(!fileName.endsWith(
".root")) fileName.append(
".root");
210 ConfigFileName->setText(fileName);
215 QFileDialog fd(
this,
216 "Select file name for autosaving",
218 "Auto Save File (*.root)");
219 fd.setFileMode(QFileDialog::AnyFile);
220 fd.setAcceptMode(QFileDialog::AcceptSave);
221 if (fd.exec() != QDialog::Accepted)
return;
223 QStringList flst = fd.selectedFiles();
224 if (flst.isEmpty())
return;
226 QString fileName = flst[0];
228 if(!fileName.endsWith(
".root")) fileName.append(
".root");
229 AutoSaveFileName->setText(fileName);
235 QString fname = AutoSaveFileName->text().trimmed();
238 status->SetAutoFileName(fname.toLatin1().constData());
245 status->SetAutoSaveCompression(t);
250 QString fname = ConfigFileName->text().trimmed();
253 anl->LoadConfigFile(fname.toLatin1().constData());
259 QString fname = ConfigFileName->text().trimmed();
262 anl->SaveConfigFile(fname.toLatin1().constData());
273 parentWidget()->hide();
285 status->SetAutoSaveInterval(t);
292 status->SetAutoSaveOverwrite(overwrite);
301 anl->WriteAutoSave(status->GetAutoFileName(),
302 status->GetAutoSaveCompression(),
303 status->IsAutoSaveOverwrite());
310 status->SetAutoSaveOn(enabled);
311 AutoSaveInterval->setEnabled(enabled);
316 return TabSteps->count();
321 if ((n<0) || (n>=TabSteps->count()))
return nullptr;
342 AutoSaveFileName->setText(filename);
343 AutoSaveInterval->setValue(interval);
344 CompLevel->setValue(compression);
346 AutoSaveOverwrite->setChecked(overwrite);
347 AutoSaveEnable->setChecked(enabled);
349 AutoSaveInterval->setEnabled(enabled);
358 filename = AutoSaveFileName->text();
359 interval = AutoSaveInterval->value();
360 compression = CompLevel->value();
362 overwrite = AutoSaveOverwrite->isChecked();
363 enabled = AutoSaveEnable->isChecked();
368 ConfigFileName->setText(filename);
373 filename = ConfigFileName->text();
378 ServiceCall(
"DisplayMbsMonitor", (
void *) mbsname.toLatin1().constData());
384 QWidget *mdi = parentWidget();
void linkedObjectRemoved(const char *linkname) override
virtual void GetAnalysisConfigFile(QString &filename)
virtual void SetAutoSaveOverwrite(bool overwrite)
TGo4ConfigStep * GetStepConfig(int n)
void linkedObjectUpdated(const char *linkname, TObject *obj) override
virtual void EnableAutoSaveSlot(bool disabled)
void DropItem(const char *itemname, TClass *cl, int kind) override
virtual void FileDialog_ConfFile()
virtual void SetAutoSaveInterval(int t)
void ChangeTabTitle(TGo4ConfigStep *step, int number)
TGo4AnalysisConfiguration(QWidget *parent=nullptr, const char *name=nullptr)
virtual void LineEdit_AutoSaveFile(const QString &)
virtual void SaveConfiguration()
virtual void CloseAnalysis()
virtual void SetCompressionLevel(int t)
virtual void WriteAutoSave()
virtual void SubmitAndStart()
virtual void GetAutoSaveConfig(QString &filename, int &interval, int &compression, bool &enbaled, bool &overwrite)
void ResetWidget() override
bool IsAcceptDrag(const char *itemname, TClass *cl, int kind) override
virtual void SetAnalysisConfigFile(QString filename)
virtual void LoadConfiguration()
virtual void WorkWithAnalysis(TGo4ServerProxy *anal)
virtual void RefreshWidget()
void closeEvent(QCloseEvent *e) override
virtual void SubmitConfiguration()
virtual QString GetStorePath()
virtual void SetStorePath(const QString &v)
TGo4ConfigStep * FindStepConfig(QString name)
virtual void FileDialog_AutoSave()
virtual void RequestAnalysisStatus()
virtual void SetAutoSaveConfig(QString filename, int interval, int compression, bool enbaled, bool overwrite)
virtual void SetSourcePath(const QString &v)
virtual void DisplayMbsMonitor(const QString &mbsname)
virtual QString GetSourcePath()
Status object of one analysis step.
virtual void SetStepStatus(TGo4AnalysisConfiguration *panel, TGo4AnalysisStepStatus *StepStatus, int number=-1)
virtual QString GetStepName()
virtual QString GetTabTitle()
special base class for remote data servers like DABC, HTTP, hist server
TGo4Slot * SettingsSlot()