2011-03-03 18:09:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
copyright : (C) 2010 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
#include "octave_window.h"
|
|
|
|
#include "main.h"
|
|
|
|
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QSize>
|
|
|
|
#include <QColor>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QKeyEvent>
|
2014-01-26 12:44:28 +01:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QVBoxLayout>
|
2014-11-04 12:48:23 +08:00
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QMessageBox>
|
2014-01-26 12:44:28 +01:00
|
|
|
|
2022-02-14 15:37:11 +01:00
|
|
|
#include "misc.h"
|
|
|
|
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2013-06-28 21:30:18 +02:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#define executableSuffix ".exe"
|
|
|
|
#else
|
|
|
|
#define executableSuffix ""
|
|
|
|
#endif
|
|
|
|
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2014-05-15 23:27:45 +02:00
|
|
|
OctaveWindow::OctaveWindow(QDockWidget *parent_): QWidget()
|
2011-03-03 18:09:11 +00:00
|
|
|
{
|
2011-03-04 16:32:38 +00:00
|
|
|
QFont font;
|
|
|
|
font = QFont("Courier New");
|
|
|
|
font.setPointSize(QucsSettings.font.pointSize()-1);
|
|
|
|
font.setStyleHint(QFont::Courier);
|
|
|
|
font.setFixedPitch(true);
|
|
|
|
setFont(font);
|
|
|
|
|
2014-05-15 23:27:45 +02:00
|
|
|
QWidget *all = new QWidget();
|
2014-01-26 12:44:28 +01:00
|
|
|
QVBoxLayout *allLayout = new QVBoxLayout();
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2014-01-26 12:44:28 +01:00
|
|
|
output = new QTextEdit(this);
|
2011-03-03 18:09:11 +00:00
|
|
|
output->setReadOnly(true);
|
|
|
|
output->setUndoRedoEnabled(false);
|
2022-02-14 15:37:11 +01:00
|
|
|
output->toPlainText();
|
2014-01-26 12:44:28 +01:00
|
|
|
output->setLineWrapMode(QTextEdit::NoWrap);
|
2022-02-14 15:37:11 +01:00
|
|
|
misc::setWidgetBackgroundColor(output,QucsSettings.BGColor);
|
2014-01-26 12:44:28 +01:00
|
|
|
allLayout->addWidget(output);
|
2011-03-03 18:09:11 +00:00
|
|
|
|
|
|
|
input = new QLineEdit(this);
|
|
|
|
connect(input, SIGNAL(returnPressed()), SLOT(slotSendCommand()));
|
2014-01-26 12:44:28 +01:00
|
|
|
allLayout->addWidget(input);
|
|
|
|
all->setLayout(allLayout);
|
2011-03-03 18:09:11 +00:00
|
|
|
|
|
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
2014-01-26 12:44:28 +01:00
|
|
|
parent_->setWidget(all);
|
|
|
|
|
2013-03-06 20:46:08 +01:00
|
|
|
//parent_->setResizeEnabled(true);
|
|
|
|
//parent_->setHorizontallyStretchable(true);
|
2014-01-26 12:44:28 +01:00
|
|
|
histPosition = 0;
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2014-01-26 12:44:28 +01:00
|
|
|
input->installEventFilter(this);
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------
|
|
|
|
OctaveWindow::~OctaveWindow()
|
|
|
|
{
|
2013-06-28 20:18:35 +02:00
|
|
|
if(octProcess.state()==QProcess::Running)
|
2011-03-03 18:09:11 +00:00
|
|
|
octProcess.kill();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------
|
2014-10-28 14:13:05 +08:00
|
|
|
QSize OctaveWindow::sizeHint() const
|
2011-03-03 18:09:11 +00:00
|
|
|
{
|
|
|
|
QSize Size;
|
|
|
|
int w=0, h=0;
|
|
|
|
|
|
|
|
Size = output->sizeHint();
|
|
|
|
w = Size.width();
|
|
|
|
h = Size.height() + input->sizeHint().height();
|
|
|
|
return QSize(w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
bool OctaveWindow::startOctave()
|
|
|
|
{
|
2013-06-28 20:18:35 +02:00
|
|
|
if(octProcess.state()==QProcess::Running)
|
2011-03-03 18:09:11 +00:00
|
|
|
return true;
|
|
|
|
|
2013-06-28 21:30:18 +02:00
|
|
|
QString Program;
|
|
|
|
QStringList Arguments;
|
|
|
|
|
2016-06-14 16:57:48 +03:00
|
|
|
QString OctavePath = QDir::toNativeSeparators(QucsSettings.OctaveExecutable);
|
2013-06-28 21:30:18 +02:00
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// Override Octave path by environment variable if it is set
|
2016-06-14 16:57:48 +03:00
|
|
|
if (QucsSettings.QucsOctave.isEmpty()) Program = OctavePath;
|
|
|
|
else Program = QucsSettings.QucsOctave;
|
2014-05-15 17:13:44 +02:00
|
|
|
|
2013-06-28 21:30:18 +02:00
|
|
|
Arguments << "--no-history" << "-i" << "-f" << "-p"
|
|
|
|
<< QDir::toNativeSeparators(QucsSettings.OctaveDir); // m-files location
|
2011-03-03 18:09:11 +00:00
|
|
|
|
|
|
|
disconnect(&octProcess, 0, 0, 0);
|
2013-06-28 20:18:35 +02:00
|
|
|
connect(&octProcess, SIGNAL(readyReadStandardError()), SLOT(slotDisplayErr()));
|
|
|
|
connect(&octProcess, SIGNAL(readyReadStandardOutput()), SLOT(slotDisplayMsg()));
|
2013-06-28 21:30:18 +02:00
|
|
|
connect(&octProcess, SIGNAL(finished(int)), SLOT(slotOctaveEnded(int)));
|
2013-06-28 21:38:45 +02:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
QString sep(";"); // path separator
|
|
|
|
#else
|
|
|
|
QString sep(":");
|
|
|
|
#endif
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// append process PATH, otherwise Octave does not find gnuplot
|
2013-06-28 20:18:35 +02:00
|
|
|
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
2013-06-28 21:38:45 +02:00
|
|
|
env.insert("PATH", env.value("PATH") + sep + QucsSettings.BinDir );
|
2013-06-28 20:18:35 +02:00
|
|
|
octProcess.setProcessEnvironment(env);
|
2011-03-13 20:24:08 +00:00
|
|
|
output->clear();
|
2013-06-28 21:30:18 +02:00
|
|
|
|
2014-05-15 17:13:44 +02:00
|
|
|
qDebug() << "Command :" << Program << Arguments.join(" ");
|
2013-06-28 21:30:18 +02:00
|
|
|
octProcess.start(Program, Arguments);
|
2016-06-14 16:57:48 +03:00
|
|
|
octProcess.waitForStarted();
|
2011-03-13 20:24:08 +00:00
|
|
|
|
2016-06-14 16:57:48 +03:00
|
|
|
if(octProcess.state()!=QProcess::Running) {
|
2016-07-12 23:31:46 +01:00
|
|
|
output->setText(tr("ERROR: Failed to execute \"%1\"").arg(Program));
|
2011-03-03 18:09:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-04 17:05:16 +00:00
|
|
|
adjustDirectory();
|
2011-03-03 18:09:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
2011-03-04 17:05:16 +00:00
|
|
|
void OctaveWindow::adjustDirectory()
|
2011-03-03 18:09:11 +00:00
|
|
|
{
|
2022-02-14 15:37:11 +01:00
|
|
|
sendCommand("cd \"" + QucsSettings.QucsWorkDir.absolutePath() + "\"");
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
2011-03-04 17:05:16 +00:00
|
|
|
void OctaveWindow::sendCommand(const QString& cmd)
|
2011-03-03 18:09:11 +00:00
|
|
|
{
|
2014-01-26 12:44:28 +01:00
|
|
|
//int par = output->paragraphs() - 1;
|
|
|
|
//int idx = output->paragraphLength(par);
|
|
|
|
output->setTextColor(QColor(Qt::blue));
|
|
|
|
output->append(cmd);
|
2011-03-18 17:58:17 +00:00
|
|
|
QString cmdstr = cmd + "\n";
|
2022-02-14 15:37:11 +01:00
|
|
|
QByteArray ba = cmdstr.toLatin1();
|
|
|
|
const char *c_cmdstr = ba.data();
|
2014-01-26 12:44:28 +01:00
|
|
|
//output->insertAt(cmdstr, par, idx);
|
|
|
|
//output->scrollToBottom();
|
2022-02-14 15:37:11 +01:00
|
|
|
octProcess.write(c_cmdstr);
|
2011-03-04 17:05:16 +00:00
|
|
|
}
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2011-03-04 17:05:16 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
void OctaveWindow::runOctaveScript(const QString& name)
|
|
|
|
{
|
|
|
|
QFileInfo info(name);
|
2022-02-14 15:37:11 +01:00
|
|
|
sendCommand(info.baseName());
|
2011-03-04 17:05:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
void OctaveWindow::slotSendCommand()
|
|
|
|
{
|
|
|
|
sendCommand(input->text());
|
2014-11-23 12:24:05 +01:00
|
|
|
if(!input->text().trimmed().isEmpty())
|
2011-03-03 18:09:11 +00:00
|
|
|
cmdHistory.append(input->text());
|
2014-01-26 12:44:28 +01:00
|
|
|
//histIterator = cmdHistory.end();
|
2016-11-25 20:54:40 +01:00
|
|
|
histPosition = cmdHistory.length();
|
2011-03-03 18:09:11 +00:00
|
|
|
input->clear();
|
2014-01-26 12:44:28 +01:00
|
|
|
qDebug() << cmdHistory << histPosition;
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-26 12:44:28 +01:00
|
|
|
bool OctaveWindow::eventFilter(QObject *obj, QEvent *event) {
|
2015-01-20 13:29:48 +01:00
|
|
|
Q_UNUSED(obj);
|
|
|
|
|
2014-01-26 12:44:28 +01:00
|
|
|
if (event->type() == QEvent::KeyPress) {
|
|
|
|
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
|
|
|
|
if (keyEvent->key() == Qt::Key_PageUp) {
|
|
|
|
//if(histIterator == cmdHistory.begin())
|
|
|
|
if(histPosition == 0)
|
|
|
|
return false;
|
|
|
|
//histIterator--;
|
|
|
|
histPosition--;
|
|
|
|
input->setText(cmdHistory.at(histPosition));//*histIterator);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if(keyEvent->key() == Qt::Key_PageDown) {
|
|
|
|
//if(histIterator == cmdHistory.end())
|
2016-11-25 20:54:40 +01:00
|
|
|
if (histPosition >= cmdHistory.length()-1)
|
2014-01-26 12:44:28 +01:00
|
|
|
return false;
|
|
|
|
//histIterator++;
|
|
|
|
histPosition++;
|
|
|
|
input->setText(cmdHistory.at(histPosition));//*histIterator);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Is called when the process sends an output to stdout.
|
|
|
|
void OctaveWindow::slotDisplayMsg()
|
|
|
|
{
|
2014-01-26 12:44:28 +01:00
|
|
|
//int par = output->paragraphs() - 1;
|
|
|
|
//int idx = output->paragraphLength(par);
|
|
|
|
//output->insertAt(QString(octProcess.readAllStandardOutput()), par, idx);
|
|
|
|
//output->scrollToBottom();
|
|
|
|
output->setTextColor(QColor(Qt::black));
|
|
|
|
output->append(octProcess.readAllStandardOutput());
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Is called when the process sends an output to stderr.
|
|
|
|
void OctaveWindow::slotDisplayErr()
|
|
|
|
{
|
2014-01-26 12:44:28 +01:00
|
|
|
//if(!isVisible())
|
|
|
|
// ((Q3DockWindow*)parent())->show(); // always show an error
|
|
|
|
|
|
|
|
//int par = output->paragraphs() - 1;
|
|
|
|
//int idx = output->paragraphLength(par);
|
|
|
|
//output->insertAt(QString(octProcess.readAllStandardError()), par, idx);
|
|
|
|
//output->scrollToBottom();
|
|
|
|
output->setTextColor(QColor(Qt::red));
|
|
|
|
output->append(octProcess.readAllStandardError());
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Is called when the simulation process terminates.
|
2013-06-28 21:30:18 +02:00
|
|
|
void OctaveWindow::slotOctaveEnded(int status)
|
2011-03-03 18:09:11 +00:00
|
|
|
{
|
2013-06-28 21:30:18 +02:00
|
|
|
qDebug() << "Octave ended status" << status;
|
2011-03-03 18:09:11 +00:00
|
|
|
output->clear();
|
|
|
|
}
|