/****************************************************************************** * The MIT License (MIT) * * Copyright (c) 2017-2026 Baldur Karlsson * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. ******************************************************************************/ #pragma once #include #include #include "Code/Interface/QRDInterface.h" #include "scintilla/include/qt/ScintillaEdit.h" class PythonContext; class QTextEdit; class RDToolTip; class QTimer; class QCompleter; class QStringListModel; class QFileSystemWatcher; class RDTreeWidgetItem; namespace Ui { class PythonShell; } struct CaptureContextInvoker; class PythonShell; class EditorWrapper : public ScintillaEdit { Q_OBJECT PythonShell *m_PyShell; public: EditorWrapper(PythonShell *parent); public slots: bool checkAllowClose(); }; class PythonShell : public QFrame, public IPythonShell { Q_OBJECT Q_PROPERTY(QVariant persistData READ persistData WRITE setPersistData DESIGNABLE false SCRIPTABLE false) public: explicit PythonShell(ICaptureContext &ctx, QWidget *parent = 0); ~PythonShell(); // for UI-forwarding helper classes PythonContext *GetScriptContext(); // IPythonShell QWidget *Widget() override { return this; } bool CheckUnsavedChanges() override; bool LoadScriptFromFilename(rdcstr filename) override; void CreateNewScriptEditor(rdcstr name, rdcstr text) override; rdcstr GetScriptText() override; void RunScript() override { runScript(false); } void DebugScript() override { runScript(true); } void SetExtensionOutputFilter(const rdcstr &extensionName) override; void SetScriptOutputFilter() override; void RemoveOutputFilter() override; void ShowOutput() override; void ShowREPL() override; void ShowHelp() override; QVariant persistData(); void setPersistData(const QVariant &persistData); bool saveEditorAs(ScintillaEdit *editor); bool saveEditor(ScintillaEdit *editor, QString filename); private slots: // automatic slots void on_execute_clicked(); void on_clear_clicked(); void on_newScript_clicked(); void on_openScript_clicked(); void on_saveScript_clicked(); void on_saveAsScript_clicked(); void on_runScript_clicked(); void on_debugScript_clicked(); void on_abortRun_clicked(); void on_outputContext_currentIndexChanged(int idx); void on_projectExplorer_itemActivated(RDTreeWidgetItem *item, int column); bool checkAllowClose(); // manual slots void interactive_keypress(QKeyEvent *e); void helpSearch_keypress(QKeyEvent *e); void traceLine(const QString &file, int line); void exception(const QString &extension, const QString &type, const QString &value, int finalLine, QList frames); void textOutput(const QString &extension, bool isStdError, const QString &output); void extensionLoaded(const QString &extension); void editor_contextMenu(const QPoint &pos); void editorTab_Changed(int index); void doSyntaxCheck(); void openFileModified(const QString &path); void updateExtensionProjects(); void editorTab_Menu(const QPoint &pos); private: Ui::PythonShell *ui; ICaptureContext &m_Ctx; CaptureContextInvoker *m_ThreadCtx = NULL; ScintillaEdit *runningScriptEditor = NULL; RDToolTip *m_ToolTip; bool m_FuncTip = false; QWidget *m_FuncTipWidget = NULL; intptr_t m_FuncTipLine = 0; bool m_ContextMenuVisible = false; bool m_HelpPrinting = false; bool m_IgnoreRecovered = false; RDTreeWidgetItem *m_UIExtensions, *m_Examples, *m_RecentFiles; QFileSystemWatcher *m_Watcher = NULL; QTimer *m_SyntaxCheckTimer; QCompleter *m_InteractiveCompleter; QStringListModel *m_InteractiveCompletionModel; int m_InteractiveCompletionPrefix = 0; static const int CURRENT_MARKER = 0; PythonContext *interactiveContext = NULL, *scriptContext = NULL, *completionContext = NULL; QList history; int historyidx = -1; QString m_storedLines; struct ScriptOutputLine { QString extension; QString text; }; rdcarray loadedExtensions; rdcarray scriptOutputLines; size_t lastDisplayedLine = 0; QList m_Scintillas; void setupTabs(); ScintillaEdit *curEditor(); ScintillaEdit *makeEditor(rdcstr filename); void updateEditorCloseButton(); void addRecentFile(rdcstr filename); void updateRecentFiles(bool added); void addExtensionDirItems(RDTreeWidgetItem *root, QDir dir); bool eventFilter(QObject *watched, QEvent *event) override; void updateScriptOutput(bool fullRefresh); PythonContext *newContext(); void setGlobals(PythonContext *ret); void runScript(bool debugging); void doAutocomplete(ScintillaEdit *editor); void doFunccomplete(ScintillaEdit *editor); void hideFunccompleteTooltip(); void selectedHelp(QString word); void refreshCurrentHelp(); QString scriptHeader(); void appendText(QTextEdit *output, const QString &text); void enableButtons(bool enable); };