9 : QDialog(parent, Qt::Dialog | Qt::WindowTitleHint | Qt::WindowCloseButtonHint),
17 ui->labelCopyright->setText(
"Copyright (C) 2020-" + QString::number(
CompilationYear()) +
" " + QString(DYNEXP_AUTHORS));
18 ui->labelContributors->setText(
"Contributors: " + QString(DYNEXP_CONTRIBUTORS));
19 ui->labelQtVersion->setText(
"Using Qt " + QString(QT_VERSION_STR)
20 +
" under the terms of the GNU General Public License version 3.");
21 ui->labelGSLVersion->setText(
"Using the GNU Scientific Library " + QString(GSL_VERSION)
22 +
" under the terms of the GNU General Public License version 3.");
23 ui->labelgRPCVersion->setText(
"Using gRPC " + QString(grpc_version_string())
24 +
" under the terms of the <a href=\"http://www.apache.org/licenses/LICENSE-2.0\">Apache License, Version 2.0</a>.");
25 ui->labelPythonVersion->setText(
"Using Python " + QString(PY_VERSION)
26 +
" under the terms of the <a href=\"https://docs.python.org/3/license.html#psf-license\">Python Software Foundation License Agreement</a>.");
27 ui->labelpybind11Version->setText(
"Using pybind11 "
29 +
" under a <a href=\"https://github.com/pybind/pybind11/blob/master/LICENSE\">BSD-style license</a>.");
std::string ToStr(const T &Value, int Precision=-1)
Converts a (numeric) value of type T to a std::string using operator<< of std::stringstream.