-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpythonpipe.h
62 lines (45 loc) · 998 Bytes
/
pythonpipe.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef _PYTHONPIPE
#define _PYTHONPIPE
#include<stdio.h>
#include<qobject.h>
#include<qprocess.h>
#include<qdialog.h>
#include<qtextedit.h>
#include<QVBoxLayout>
#include<QFileInfo>
class PythonPipe : public QObject {
Q_OBJECT
public:
PythonPipe();
int start(QString theFilename);
void stop();
void write(const char* data);
inline bool running() const {
return isRunning;
}
~PythonPipe() {
stop();
}
signals:
void pythonMessage(QString s);
private:
bool isRunning = false;
QProcess qprocess;
QFileInfo pythonScriptName;
};
class LogWindow : public QDialog {
public:
LogWindow(QWidget* parent) : QDialog(parent) {
QVBoxLayout *verticalLayout = new QVBoxLayout;
textedit = new QTextEdit;
verticalLayout->addWidget(textedit);
setLayout(verticalLayout);
setWindowTitle("Python console output");
}
void addText(QString t) {
textedit->append(t);
}
private:
QTextEdit *textedit;
};
#endif