blob: 96b86bda12c90ccfeedcbeac45c723dbf119aa28 (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "TerminalWidget.h"
#include <QProcessEnvironment>
#include <QDebug>
#include <QApplication>
#include <QScrollBar>
TerminalWidget::TerminalWidget(QWidget *parent, QString dir) : QTextEdit(parent){
//Setup the text widget
this->setLineWrapMode(QTextEdit::WidgetWidth);
//this->setReadOnly(true); //the key event catch will do the process/widget forwarding
//this->setPlainText("WARNING: This utility is still incomplete and does not function properly yet");
//Create/open the TTY port
PROC = new TTYProcess(this);
qDebug() << "Open new TTY";
//int fd;
bool ok = PROC->startTTY( QProcessEnvironment::systemEnvironment().value("SHELL","/bin/sh") );
qDebug() << " - opened:" << ok;
this->setEnabled(PROC->isOpen());
//Connect the signals/slots
connect(PROC, SIGNAL(readyRead()), this, SLOT(UpdateText()) );
connect(PROC, SIGNAL(processClosed()), this, SLOT(ShellClosed()) );
}
TerminalWidget::~TerminalWidget(){
aboutToClose();
}
void TerminalWidget::aboutToClose(){
if(PROC->isOpen()){ PROC->closeTTY(); } //TTY PORT
}
// ==================
// PRIVATE SLOTS
// ==================
void TerminalWidget::UpdateText(){
//read the data from the process
//qDebug() << "UpdateText";
if(!PROC->isOpen()){ return; }
QByteArray buffer = PROC->readTTY();
QString text = QString(buffer);
text.replace("\r\n","\n");
this->insertPlainText(text);
//adjust the scrollbar as needed
this->verticalScrollBar()->setValue(this->verticalScrollBar()->maximum());
}
void TerminalWidget::ShellClosed(){
emit ProcessClosed(this->whatsThis());
}
// ==================
// PROTECTED
// ==================
void TerminalWidget::keyPressEvent(QKeyEvent *ev){
if(ev->text().isEmpty() || ev->text()=="\b" ){
PROC->writeQtKey(ev->key());
}else{
QByteArray ba; ba.append(ev->text()); //avoid any byte conversions
PROC->writeTTY(ba);
}
ev->ignore();
}
void TerminalWidget::mousePressEvent(QMouseEvent *ev){
this->setFocus();
Q_UNUSED(ev);
}
void TerminalWidget::mouseDoubleClickEvent(QMouseEvent *ev){
Q_UNUSED(ev);
}
void TerminalWidget::contextMenuEvent(QContextMenuEvent *ev){
Q_UNUSED(ev);
}
|