blob: c764b5ae76d0f025899545960cc1433ecf8748a7 (
plain)
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
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This is basically a replacement for QProcess, where all process/terminal outputs
// are redirected and not just the standard input/output channels. This allows it
// to be used for terminal-like apps (shells) which directly modify the terminal output
// rather than stick to input/output channels for communication.
//===========================================
#ifndef _LUMINA_DESKTOP_UTILITIES_TERMINAL_TTY_PROCESS_WIDGET_H
#define _LUMINA_DESKTOP_UTILITIES_TERMINAL_TTY_PROCESS_WIDGET_H
#include <QSerialPort>
#include <QDebug>
class TTYProcess : public QSerialPort{
Q_OBJECT
public:
TTYProcess(QObject *parent = 0);
~TTYProcess();
bool start(QString prog, QStringList args = QStringList());
private:
pid_t childProc;
//====================================
// C Library function for setting up the PTY
// Inputs:
// int &fd: (output) file descriptor for the master PTY (positive integer if valid)
// char *prog: program to run
// char **args: program arguments
// Returns:
// -1 for errors, child process PID (positive integer) if successful
//====================================
static pid_t LaunchProcess(int& fd, char *prog, char **child_args);
};
#endif
|