372 QGroupBox *checkBoxGroup =
new QGroupBox(tr(
"Advanced settings"));
376 " <div style=\"width: 300px;\">By default, VP1 simply exits at the end of the ATHENA job, which might be confusing to some. When this variable is set, VP1 will show an dialog, letting the user know that the end of the job has been reached.</div>"
379 #if defined BUILDVP1LIGHT
393 " <div style=\"width: 300px;\">By default, the VP1 algorithm simply tells ATHENA to end the job when VP1 is being closed. This means that ATHENA will shut down with its usual procedure, calling finalise on algorithms, generating summaries, etc. If this variable is set, then VP1 will make the process end immediately and abrubtly instead - saving the user some time.</div>"
396 #if defined BUILDVP1LIGHT
410 " <div style=\"width: 300px;\">Use to enable a few controls related to VP1 cruise-mode, which have presently been disabled.</div>"
413 #if defined BUILDVP1LIGHT
426 QGroupBox *directoryGroup =
new QGroupBox(tr(
"Directory settings"));
432 #if defined BUILDVP1LIGHT
435 m_lineEdit1->setText(QCoreApplication::applicationDirPath()+
"/../Frameworks");
437 m_lineEdit1->setText(QCoreApplication::applicationDirPath()+
"/../lib");
444 m_lineEdit1->setText(QCoreApplication::applicationDirPath()+
"/../lib");
449 m_lineEdit1->setToolTip( QApplication::translate(__FUNCTION__,
" <html>\n"
450 " <div style=\"width: 300px;\">Select the directory that contains the plugin libraries.</div>"
457 #if defined BUILDVP1LIGHT
462 m_lineEdit2->setToolTip( QApplication::translate(__FUNCTION__,
" <html>\n"
463 " <div style=\"width: 300px;\">By default, the various VP1 file selectors starts in the job run-directory. Setting this variable to a directory ensures that that directory is used by default instead.</div>"
470 #if defined BUILDVP1LIGHT
475 m_lineEdit3->setToolTip( QApplication::translate(__FUNCTION__,
" <html>\n"
476 " <div style=\"width: 300px;\">Enables creation of an authentication log file for VP1 live.</div>"
482 QVBoxLayout *checkBoxLayout =
new QVBoxLayout;
486 checkBoxGroup->setLayout(checkBoxLayout);
488 QGridLayout *gridLayout =
new QGridLayout(
this);
489 gridLayout->addWidget(
new QLabel(tr(
"Plugin path:")), 0, 0);
492 gridLayout->addWidget(
new QLabel(tr(
"File selection directory:")), 2, 0);
495 gridLayout->addWidget(
new QLabel(tr(
"Authentication log directory:")), 4, 0);
498 directoryGroup->setLayout(gridLayout);
500 QVBoxLayout *mainLayout =
new QVBoxLayout;
501 mainLayout->addWidget(checkBoxGroup);
502 mainLayout->addWidget(directoryGroup);
503 mainLayout->addStretch(1);
504 setLayout(mainLayout);