diff options
author | David Shah <davey1576@gmail.com> | 2018-06-29 12:02:44 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-29 12:02:44 +0200 |
commit | 17d6586189a8c1433b6ff6048b7e33f7d46afcf2 (patch) | |
tree | 03586b0af81f720e4d399e58dcf17591d3dfa9c0 /3rdparty | |
parent | c18b7b3f6ecb03cb264d83df6da4d85c16716737 (diff) | |
parent | a4f69fba199a035dc017dbe1a998013e2fce9d64 (diff) | |
download | nextpnr-17d6586189a8c1433b6ff6048b7e33f7d46afcf2.tar.gz nextpnr-17d6586189a8c1433b6ff6048b7e33f7d46afcf2.tar.bz2 nextpnr-17d6586189a8c1433b6ff6048b7e33f7d46afcf2.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/python-console/modified/pyconsole.cc | 30 | ||||
-rw-r--r-- | 3rdparty/python-console/modified/pyconsole.h | 3 |
2 files changed, 32 insertions, 1 deletions
diff --git a/3rdparty/python-console/modified/pyconsole.cc b/3rdparty/python-console/modified/pyconsole.cc index 35f3e930..186d74d2 100644 --- a/3rdparty/python-console/modified/pyconsole.cc +++ b/3rdparty/python-console/modified/pyconsole.cc @@ -52,7 +52,8 @@ void PythonConsole::keyPressEvent( QKeyEvent* e ) if ( ! canGoLeft( ) ) return; } - + if (!cursorIsOnInputLine()) return; + if (textCursor().columnNumber() < PythonConsole::PROMPT.size()) return; QTextEdit::keyPressEvent( e ); } @@ -292,3 +293,30 @@ void PythonConsole::moveCursorToEnd( ) cursor.movePosition( QTextCursor::End ); setTextCursor( cursor ); } + +void PythonConsole::insertFromMimeData(const QMimeData *src) +{ + if (src->hasText()) { + QStringList list = src->text().split("\n",QString::KeepEmptyParts); + bool lastends = src->text().endsWith("\n"); + for (int i=0;i<list.size();i++) + { + QString line = list.at(i); + displayString(line); + if (!lastends && (i==list.size()-1)) break; + + m_parseHelper.process( line.toStdString( ) ); + if ( m_parseHelper.buffered( ) ) + { + append(""); + displayPrompt( ); + } + if ( line.size( ) ) + { + m_historyBuffer.push_back( line.toStdString( ) ); + m_historyIt = m_historyBuffer.end(); + } + moveCursorToEnd( ); + } + } +}
\ No newline at end of file diff --git a/3rdparty/python-console/modified/pyconsole.h b/3rdparty/python-console/modified/pyconsole.h index eb2c98a4..adf4ce20 100644 --- a/3rdparty/python-console/modified/pyconsole.h +++ b/3rdparty/python-console/modified/pyconsole.h @@ -25,6 +25,7 @@ SOFTWARE. #define PYCONSOLE_H #include <QColor> #include <QTextEdit> +#include <QMimeData> #include "ParseHelper.h" #include "ParseListener.h" @@ -47,6 +48,8 @@ class PythonConsole : public QTextEdit, ParseListener virtual void handleReturnKeyPress(); + virtual void insertFromMimeData(const QMimeData *src); + /** Handle a compilable chunk of Python user input. */ |