blob: 6fe660a7a4f8819cb15db916c7d77bbc16357643 (
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
44
45
46
47
48
49
50
51
52
53
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_DESKTOP_UTILITIES_TERMINAL_PROCESS_WIDGET_H
#define _LUMINA_DESKTOP_UTILITIES_TERMINAL_PROCESS_WIDGET_H
#include <QTextEdit>
#include <QKeyEvent>
#include <QResizeEvent>
#include <QSocketNotifier>
#include <QTimer>
#include "TtyProcess.h"
class TerminalWidget : public QTextEdit{
Q_OBJECT
public:
TerminalWidget(QWidget *parent =0, QString dir="");
~TerminalWidget();
void aboutToClose();
private:
TTYProcess *PROC;
QTextCharFormat DEFFMT, CFMT; //default/current text format
//Incoming Data parsing
void applyData(QByteArray data); //overall data parsing
void applyANSI(QByteArray code); //individual code application
void applyANSIColor(int code); //Add the designated color code to the CFMT structure
//Outgoing Data parsing
void sendKeyPress(int key);
private slots:
void UpdateText();
void ShellClosed();
signals:
void ProcessClosed(QString);
protected:
void keyPressEvent(QKeyEvent *ev);
void mousePressEvent(QMouseEvent *ev);
void mouseDoubleClickEvent(QMouseEvent *ev);
void contextMenuEvent(QContextMenuEvent *ev);
void resizeEvent(QResizeEvent *ev);
};
#endif
|