diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-20 12:34:06 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-20 12:35:43 +0200 |
commit | 6d2f058f678761e90fc451af48f4e0ed0f504603 (patch) | |
tree | b10cae980644e156eea3b6b1e1ab5e666c267400 /gui/pythontab.h | |
parent | 5ca4663294aff1f4af45e9abfffa20c1e44ea017 (diff) | |
download | nextpnr-6d2f058f678761e90fc451af48f4e0ed0f504603.tar.gz nextpnr-6d2f058f678761e90fc451af48f4e0ed0f504603.tar.bz2 nextpnr-6d2f058f678761e90fc451af48f4e0ed0f504603.zip |
Added context menus for python and info tab
Diffstat (limited to 'gui/pythontab.h')
-rw-r--r-- | gui/pythontab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/pythontab.h b/gui/pythontab.h index 3876b3df..5aed8b0b 100644 --- a/gui/pythontab.h +++ b/gui/pythontab.h @@ -2,6 +2,7 @@ #define PYTHONTAB_H
#include <QLineEdit>
+#include <QMenu>
#include <QPlainTextEdit>
#include "emb.h"
#include "line_editor.h"
@@ -22,10 +23,13 @@ class PythonTab : public QWidget int executePython(std::string &command);
private Q_SLOTS:
void editLineReturnPressed(QString text);
+ void showContextMenu(const QPoint &pt);
+ void clearBuffer();
private:
QPlainTextEdit *plainTextEdit;
LineEditor *lineEdit;
+ QMenu *contextMenu;
emb::stdout_write_type write;
};
|