diff --git a/src/backends/octave/octavebackend.cpp b/src/backends/octave/octavebackend.cpp index 2914fe12..6dd31a35 100644 --- a/src/backends/octave/octavebackend.cpp +++ b/src/backends/octave/octavebackend.cpp @@ -1,120 +1,120 @@ /* Copyright (C) 2010 Miha Čančula This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "octavebackend.h" #include "octavesession.h" #include "octaveextensions.h" #include "settings.h" #include "cantor_macros.h" #include #include #include "ui_settings.h" OctaveBackend::OctaveBackend(QObject* parent, const QList& args): Backend(parent, args) { new OctaveHistoryExtension(this); new OctaveScriptExtension(this); new OctavePlotExtension(this); new OctaveLinearAlgebraExtension(this); new OctaveVariableManagementExtension(this); new OctavePackagingExtension(this); } QString OctaveBackend::id() const { return QLatin1String("octave"); } QString OctaveBackend::version() const { - return QLatin1String("4.0 and 4.2"); + return QLatin1String("5.0 and 5.1"); } Cantor::Backend::Capabilities OctaveBackend::capabilities() const { Cantor::Backend::Capabilities cap= SyntaxHighlighting| Completion | SyntaxHelp; if (OctaveSettings::self()->variableManagement()) cap |= VariableManagement; return cap; } Cantor::Session* OctaveBackend::createSession() { return new OctaveSession(this); } bool OctaveBackend::requirementsFullfilled(QString* const reason) const { const QString& replPath = OctaveSettings::path().toLocalFile(); if (replPath.isEmpty()) { if (reason) *reason = i18n("Octave backend needs installed Octave programming language. The backend often automatically finds needed Octave binary file, but not in this case. Please, go to Cantor settings and set path to Octave binary file with command line interface (CLI)"); return false; } QFileInfo info(replPath); if (info.isExecutable()) return true; else { if (reason) *reason = i18n("In Octave backend settings a path to Octave binary file set as %1, but this file not executable. Are you sure, that this is correct path to Octave? Change this path in Cantor settings, if no.").arg(replPath); return false; } } QUrl OctaveBackend::helpUrl() const { const QUrl& localDoc = OctaveSettings::self()->localDoc(); if (!localDoc.isEmpty()) return localDoc; else return QUrl(i18nc("the url to the documentation of Octave, please check if there is a translated version (currently Czech and Japanese) and use the correct url", "http://www.gnu.org/software/octave/doc/interpreter/")); } QString OctaveBackend::description() const { return i18n("GNU Octave is a high-level language, primarily intended for numerical computations.
" "It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab."); } QWidget* OctaveBackend::settingsWidget(QWidget* parent) const { QWidget* widget = new QWidget(parent); Ui::OctaveSettingsBase ui; ui.setupUi(widget); return widget; } KConfigSkeleton* OctaveBackend::config() const { return OctaveSettings::self(); } K_PLUGIN_FACTORY_WITH_JSON(octavebackend, "octavebackend.json", registerPlugin();) #include "octavebackend.moc"