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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
|
//===========================================
// 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>
#include <QTextBlock>
#include <LuminaXDG.h>
#define DEBUG 0
//Special control code ending symbols (aside from letters)
TerminalWidget::TerminalWidget(QWidget *parent, QString dir) : QTextEdit(parent){
//Setup the text widget
closing = false;
QPalette P = this->palette();
P.setColor(QPalette::Base, Qt::black);
P.setColor(QPalette::Text, Qt::white);
this->setPalette(P);
this->setLineWrapMode(QTextEdit::WidgetWidth);
this->setAcceptRichText(false);
this->setOverwriteMode(true);
this->setFocusPolicy(Qt::StrongFocus);
this->setTabStopWidth( 8 * this->fontMetrics().horizontalAdvance(" ") ); //8 character spaces per tab (UNIX standard)
this->setTabChangesFocus(false);
//this->setWordWrapMode(QTextOption::NoWrap);
this->setContextMenuPolicy(Qt::CustomContextMenu);
resizeTimer = new QTimer(this);
resizeTimer->setInterval(20);
resizeTimer->setSingleShot(true);
connect(resizeTimer, SIGNAL(timeout()), this, SLOT(updateTermSize()) );
DEFFMT = this->textCursor().charFormat(); //save the default structure for later
DEFFMT.setForeground(Qt::white);
CFMT = DEFFMT; //current format
selCursor = this->textCursor(); //used for keeping track of selections
lastCursor = this->textCursor();
startrow = endrow = -1;
altkeypad = false;
QFontDatabase FDB;
QStringList fonts = FDB.families(QFontDatabase::Latin);
for(int i=0; i<fonts.length(); i++){
if(FDB.isFixedPitch(fonts[i]) && FDB.isSmoothlyScalable(fonts[i]) ){ this->setFont(QFont(fonts[i])); qDebug() << "Using Font:" << fonts[i]; break; }
//if(FDB.isSmoothlyScalable(fonts[i]) ){ this->setFont(QFont(fonts[i])); qDebug() << "Using Font:" << fonts[i]; break; }
}
//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"), QStringList(), dir);
//qDebug() << " - opened:" << ok;
this->setEnabled(false);
contextMenu = new QMenu(this);
copyA = contextMenu->addAction(LXDG::findIcon("edit-copy"), tr("Copy Selection"), this, SLOT(copySelection()) );
pasteA = contextMenu->addAction(LXDG::findIcon("edit-paste"), tr("Paste"), this, SLOT(pasteSelection()) );
//Connect the signals/slots
connect(PROC, SIGNAL(readyRead()), this, SLOT(UpdateText()) );
connect(PROC, SIGNAL(processClosed()), this, SLOT(ShellClosed()) );
}
TerminalWidget::~TerminalWidget(){
aboutToClose();
}
void TerminalWidget::setTerminalFont(QFont font){
this->setFont(font);
}
void TerminalWidget::aboutToClose(){
closing = true;
if(PROC->isOpen()){ PROC->closeTTY(); } //TTY PORT
}
// ==================
// PRIVATE
// ==================
void TerminalWidget::InsertText(QString txt){
if(txt.isEmpty()){ return; }
//qDebug() << "Insert Text:" << txt << "Cursor Pos:" << this->textCursor().position() << "Column:" << this->textCursor().columnNumber();
QTextCursor cur = this->textCursor();
cur.setCharFormat(CFMT);
this->setTextCursor(cur); //ensure the current cursor has the proper format
this->insertPlainText(txt);
/*cur.setPosition( this->textCursor().position(), QTextCursor::KeepAnchor);
//cur.setCharFormat(CFMT);
//Now make sure the new characters are the right color
QList<QTextEdit::ExtraSelection> sels = this->extraSelections();
QTextEdit::ExtraSelection sel;
sel.format = CFMT;
sel.cursor = cur;
sels << sel;
this->setExtraSelections(sels);*/
if(DEBUG){
qDebug() << "Insert Text:"<< txt << "Font Color:" << CFMT.foreground() << "Background Color:" << CFMT.background() << "Font Weight:" << CFMT.fontWeight();
}
}
void TerminalWidget::applyData(QByteArray data){
this->setEnabled(true);
if(DEBUG){ qDebug() << "Got Data: " << data; }
//Make sure the current cursor is the right cursor
if(this->textCursor()==selCursor){ this->setTextCursor(lastCursor); }
//Iterate through the data and apply it when possible
QByteArray chars;
//qDebug() << "Data:" << data;
for(int i=0; i<data.size(); i++){
if( data.at(i)=='\b' ){
//Backspace
if(!chars.isEmpty()){ chars.chop(1); }
else{
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::Left, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}
//}else if( data.at(i)=='\t' ){
//chars.append(" ");
}else if( data.at(i)=='\x1B' ){
//Flush current text buffer to widget
if(!chars.isEmpty()){ InsertText(chars); chars.clear(); }
//ANSI Control Code start
//Look for the end of the code
int end = -1;
for(int j=1; j<(data.size()-i) && end<0; j++){
if(QChar(data.at(i+j)).isLetter() || (QChar(data.at(i+j)).isSymbol() && data.at(i+j)!=';') ){ end = j; }
else if(data.at(i+j)=='\x1B'){ end = j-1; } //start of the next control code
}
if(end<0){ return; } //skip everything else - no end to code found
applyANSI(data.mid(i+1, end));
//qDebug() << "Code:" << data.mid(i+1, end) << "Next Char:" << data[i+end+2];
i+=end; //move the final loop along - already handled these bytes
}else if( data.at(i) == '\r' ){
//Move cursor to end of line
//qDebug() << "Got a return char";
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::EndOfLine, QTextCursor::MoveAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}else{
chars.append(data.at(i)); //Add the character to the buffer
}
} //end loop over data
if(!chars.isEmpty()){ InsertText(chars); }
}
void TerminalWidget::applyANSI(QByteArray code){
//Note: the first byte is often the "[" character
//qDebug() << "Handle ANSI:" << code;
if(code.length()==1){
//KEYPAD MODES
if(code.at(0)=='='){ altkeypad = true; }
else if(code.at(0)=='>'){ altkeypad = false; }
else if(code.at(0)=='H'){ InsertText("\t"); }
else{
qDebug() << "Unhandled ANSI Code:" << code;
}
}else if(code.startsWith("[") && code.contains("@")){
code = code.remove(0, code.indexOf("@")+1);
InsertText(code); //insert character (cursor position already accounted for with other systems)
}else if(code.startsWith("[")){
// VT100 ESCAPE CODES
//CURSOR MOVEMENT
if( code.endsWith("A") ){ //Move Up
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor Up:" << num;
cur.movePosition(QTextCursor::Up, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("B")){ //Move Down
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor Down:" << num;
for(int i=1; i<num; i++){
if(!cur.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor, 1)){
//Need to add a new line(row) to the editor
this->document()->setPlainText(this->document()->toPlainText()+"\n");
cur.movePosition(QTextCursor::End, QTextCursor::MoveAnchor); //now move the cursor down to the new line
}
}
//cur.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("C")){ //Move Forward
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor Forward:" << num;
for(int i=1; i<num; i++){
if(!cur.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, 1)){
//Need to add a new line(row) to the editor
this->document()->setPlainText(this->document()->toPlainText()+" ");
cur.movePosition(QTextCursor::End, QTextCursor::MoveAnchor); //now move the cursor down to the new line
}
}
//cur.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("D")){ //Move Back
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor Back:" << num;
cur.movePosition(QTextCursor::Left, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("E")){ //Move Next/down Lines (go toward end)
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor NextRow:" << num;
cur.movePosition(QTextCursor::NextRow, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("F")){ //Move Previous/up Lines (go to beginning)
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor PrevRow:" << num;
cur.movePosition(QTextCursor::PreviousRow, QTextCursor::MoveAnchor, num);
this->setTextCursor(cur);
}else if(code.endsWith("G")){ //Move to specific column
int num = 1;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
QTextCursor cur = this->textCursor();
qDebug() << "Move Cursor To Column:" << num;
cur.setPosition(num);
this->setTextCursor(cur);
}else if(code.endsWith("H") || code.endsWith("f") ){ //Move to specific position (row/column)
int mid = code.indexOf(";");
if(mid>1){
int numR, numC; numR = numC = 1;
if(mid >=2){ numR = code.mid(1,mid-1).toInt(); }
if(mid < code.size()-1){ numC = code.mid(mid+1,code.size()-mid-2).toInt(); }
//qDebug() << "NumR:" << numR << startrow << endrow << this->document()->lineCount() -1;
//qDebug() << "NumC:" << numC;
if(startrow>=0 && endrow>=0){
if(numR == startrow){ numR = 0;}
else if(numR==endrow){ numR = this->document()->lineCount()-1; }
}
//qDebug() << "Set Text Position (absolute):" << "Code:" << code << "Row:" << numR << "Col:" << numC;
//qDebug() << " - Current Pos:" << this->textCursor().position() << "Line Count:" << this->document()->lineCount();
//if(!this->textCursor().movePosition(QTextCursor::Start, QTextCursor::MoveAnchor,1) ){ qDebug() << "Could not go to start"; }
QTextCursor cur(this->textCursor());
cur.setPosition(QTextCursor::Start, QTextCursor::MoveAnchor); //go to start of document
//qDebug() << " - Pos After Start Move:" << cur.position();
for(int i=1; i<numR; i++){
if(!cur.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor, 1)){
//Need to add a new line(row) to the editor
this->document()->setPlainText(this->document()->toPlainText()+"\n");
cur.movePosition(QTextCursor::End, QTextCursor::MoveAnchor); //now move the cursor down to the new line
}
}
//if( !cur.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor, numR) ){ qDebug() << "Could not go to row:" << numR; }
//qDebug() << " - Pos After Down Move:" << cur.position();
for(int i=1; i<numC; i++){
if(!cur.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, 1)){
//Need to add a new line(row) to the editor
this->document()->setPlainText(this->document()->toPlainText()+" ");
cur.movePosition(QTextCursor::End, QTextCursor::MoveAnchor); //now move the cursor down to the new line
}
}
//if( !cur.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, numC) ){ qDebug() << "Could not go to col:" << numC; }
/*this->textCursor().setPosition( this->document()->findBlockByLineNumber(numR).position() );
qDebug() << " - Pos After Row Move:" << this->textCursor().position();
if( !this->textCursor().movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, numC) ){ qDebug() << "Could not go to col:" << numC; }*/
//qDebug() << " - Ending Pos:" << cur.position();
this->setTextCursor(cur);
}else{
//Go to home position
this->moveCursor(QTextCursor::Start);
}
// CURSOR MANAGEMENT
}else if(code.endsWith("r")){ //Tag top/bottom lines as perticular numbers
int mid = code.indexOf(";");
qDebug() << "New Row Codes:" << code << "midpoint:" << mid;
if(mid>1){
if(mid >=2){ startrow = code.mid(1,mid-1).toInt(); }
if(mid < code.size()-1){ endrow = code.mid(mid+1,code.size()-mid-2).toInt(); }
}
qDebug() << "New Row Codes:" << startrow << endrow;
// DISPLAY CLEAR CODES
}else if(code.endsWith("J")){ //ED - Erase Display
int num = 0;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
//qDebug() << "Erase Display:" << num;
if(num==1){
//Clear from cursor to beginning of screen
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::Start, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}else if(num==2){
//Clear the whole screen
qDebug() << "Clear Screen:" << this->document()->lineCount();
this->clear();
}else{
//Clear from cursor to end of screen
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::End, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}
}else if(code.endsWith("K")){ //EL - Erase in Line
int num = 0;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
//qDebug() << "Erase Number" << num;
//Now determine what should be cleared based on code
if(num==1){
//Clear from current cursor to beginning of line
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::StartOfLine, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}else if(num==2){
//Clear the entire line
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::StartOfLine, QTextCursor::MoveAnchor, 1);
cur.movePosition(QTextCursor::EndOfLine, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}else{
//Clear from current cursor to end of line
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::EndOfLine, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}
}else if(code.endsWith("g")){
//Tab Clear codes (0 or 3 only)
int num = 0;
if(code.size()>2){ num = code.mid(1, code.size()-2).toInt(); } //everything in the middle
if(num==0){ //clear current column (delete key analogue)
QTextCursor cur = this->textCursor();
cur.movePosition(QTextCursor::Right, QTextCursor::KeepAnchor, 1);
cur.removeSelectedText();
this->setTextCursor(cur);
}else if(num==3){ //clear all
this->clear();
}
//SCROLL MOVEMENT CODES
//}else if(code.endsWith("S")){ // SU - Scroll Up
//qDebug() << "Scroll Up:" << code;
//}else if(code.endsWith("T")){ // SD - Scroll Down
//qDebug() << "Scroll Down:" << code;
// GRAPHICS RENDERING
}else if(code.endsWith("m")){
//Format: "[<number>;<number>m" (no limit to sections separated by ";")
//qDebug() << "Got Graphics Code:" << code;
code.chop(1); //chop the "m" off the end
int start = 1;
int end = code.indexOf(";");
while(end>start){
//qDebug() << "Color Code:" << code << start << end << code.mid(start, end-start);
applyANSIColor(code.mid(start, end-start).toInt());
//Now update the iterators and try again
start = end;
end = code.indexOf(";",start); //go to the next one
//qDebug() << "Next end:" << end;
}
//Need the last section as well
end = code.size();
if(start>1){ start ++; }
//qDebug() << "Color Code:" << code << start << end << code.mid(start, end-start);
if(end>start){ applyANSIColor(code.mid(start, end-start).toInt());}
else{ applyANSIColor(0); }
// GRAPHICS MODES
//}else if(code.endsWith("h")){
//}else if(code.endsWith("l")){
}else{
qDebug() << "Unhandled Control Code:" << code;
}
} //End VT100 control codes
else{
qDebug() << "Unhandled Control Code:" << code;
}
}
void TerminalWidget::applyANSIColor(int code){
//qDebug() << "Apply Color code:" << code;
if(code <=0){ CFMT = DEFFMT; } //Reset back to default
else if(code==1){ CFMT.setFontWeight(75); } //BOLD font
else if(code==2){ CFMT.setFontWeight(25); } //Faint font (smaller than normal by a bit)
else if(code==3){ CFMT.setFontWeight(75); } //Italic font
else if(code==4){ CFMT.setFontUnderline(true); } //Underline
//5-6: Blink text (unsupported)
//7: Reverse foreground/background (unsupported)
//8: Conceal (unsupported)
else if(code==9){ CFMT.setFontStrikeOut(true); } //Crossed out
//10-19: Change font family (unsupported)
//20: Fraktur Font (unsupported)
//21: Bold:off or Underline:Double (unsupported)
else if(code==22){ CFMT.setFontWeight(50); } //Normal weight
//23: Reset font (unsupported)
else if(code==24){ CFMT.setFontUnderline(false); } //disable underline
//25: Disable blinking (unsupported)
//26: Reserved
//27: Reset reversal (7) (unsupported)
//28: Reveal (cancel 8) (unsupported)
else if(code==29){ CFMT.setFontStrikeOut(false); } //Not Crossed out
else if(code>=30 && code<=39){
//Set the font color
QColor color;
if(code==30){color=QColor(Qt::black); }
else if(code==31){ color=QColor(Qt::red); }
else if(code==32){ color=QColor(Qt::green); }
else if(code==33){ color=QColor(Qt::yellow); }
else if(code==34){ color=QColor(Qt::blue); }
else if(code==35){ color=QColor(Qt::magenta); }
else if(code==36){ color=QColor(Qt::cyan); }
else if(code==37){ color=QColor(Qt::white); }
//48: Special extended color setting (unsupported)
else if(code==39){ color= DEFFMT.foreground().color(); } //reset to default color
QBrush brush = CFMT.foreground();
color.setAlpha(255); //fully opaque
brush.setColor(color);
CFMT.setForeground( brush );
//this->setTextColor(color); //just in case the format is not used
}
else if(code>=40 && code<=49){
//Set the font color
QColor color;
if(code==40){color=QColor(Qt::black); }
else if(code==41){ color=QColor(Qt::red); }
else if(code==42){ color=QColor(Qt::green); }
else if(code==43){ color=QColor(Qt::yellow); }
else if(code==44){ color=QColor(Qt::blue); }
else if(code==45){ color=QColor(Qt::magenta); }
else if(code==46){ color=QColor(Qt::cyan); }
else if(code==47){ color=QColor(Qt::white); }
//48: Special extended color setting (unsupported)
else if(code==49){ color= DEFFMT.background().color(); } //reset to default color
QBrush brush = CFMT.background();
color.setAlpha(255); //fully opaque
brush.setColor(color);
CFMT.setBackground( brush );
}
//50: Reserved
//51: Framed
//52: Encircled
else if(code==53){ CFMT.setFontOverline(true); } //enable overline
//54: Not framed/circled (51/52)
else if(code==55){ CFMT.setFontOverline(false); } //disable overline
//56-59: Reserved
//60+: Not generally supported (special code for particular terminals such as aixterm)
else{ qDebug() << "Unknown Color Code:" << code; }
}
//Outgoing Data parsing
void TerminalWidget::sendKeyPress(int key){
QByteArray ba;
//if(this->textCursor()==selCursor){ this->setTextCursor(lastCursor); }
//int fromEnd = this->document()->characterCount() - this->textCursor().position();
//Check for special keys
switch(key){
case Qt::Key_Delete:
ba.append("\e[3~");
break;
case Qt::Key_Backspace:
ba.append("\x08");
break;
case Qt::Key_Left:
if(altkeypad){ ba.append("^[D"); }
else{ ba.append("\x1b[D"); }
break;
case Qt::Key_Right:
if(altkeypad){ ba.append("^[C"); }
else{ ba.append("\x1b[C"); }
break;
case Qt::Key_Up:
if(altkeypad){ ba.append("^[A"); }
else{ ba.append("\x1b[A"); }
break;
case Qt::Key_Down:
if(altkeypad){ ba.append("^[B"); }
else{ ba.append("\x1b[B"); }
break;
case Qt::Key_Home:
ba.append("\x1b[H");
break;
case Qt::Key_End:
ba.append("\x1b[F");
break;
}
//qDebug() << "Forward Input:" << ba;
if(!ba.isEmpty()){ PROC->writeTTY(ba); }
}
// ==================
// PRIVATE SLOTS
// ==================
void TerminalWidget::UpdateText(){
//read the data from the process
//qDebug() << "UpdateText";
if(!PROC->isOpen()){ return; }
applyData(PROC->readTTY());
//adjust the scrollbar as needed
this->ensureCursorVisible();
}
void TerminalWidget::ShellClosed(){
if(!closing){
emit ProcessClosed(this->whatsThis());
}
}
void TerminalWidget::copySelection(){
QApplication::clipboard()->setText( selCursor.selectedText() );
}
void TerminalWidget::pasteSelection(){
QString text = QApplication::clipboard()->text();
if(!text.isEmpty()){
QByteArray ba; ba.append(text); //avoid any byte conversions
PROC->writeTTY(ba);
}
}
void TerminalWidget::updateTermSize(){
if(!PROC->isOpen()){ return; }
QSize pix = this->size(); //pixels
QSize chars;
chars.setWidth( pix.width()/this->fontMetrics().horizontalAdvance("W") );
chars.setHeight( pix.height()/this->fontMetrics().lineSpacing() );
//qDebug() << "Set Terminal Size:" << chars << pix;
if(chars.width() <2 || chars.height() <2){ return; } //skip this - cannot go less than 2 characters wide/high
PROC->setTerminalSize(chars,pix);
}
// ==================
// PROTECTED
// ==================
void TerminalWidget::keyPressEvent(QKeyEvent *ev){
if(ev->text().isEmpty() || ev->text()=="\b" ){
sendKeyPress(ev->key());
}else{
QByteArray ba; ba.append(ev->text()); //avoid any byte conversions
//qDebug() << "Forward Input:" << ba;
PROC->writeTTY(ba);
}
ev->ignore();
}
void TerminalWidget::mousePressEvent(QMouseEvent *ev){
this->setFocus();
this->activateWindow();
if(ev->button()==Qt::RightButton){
QTextEdit::mousePressEvent(ev);
}else if(ev->button()==Qt::MiddleButton){
pasteSelection();
}else if(ev->button()==Qt::LeftButton){
if(this->textCursor()!=selCursor){ lastCursor = this->textCursor(); }
selCursor = this->cursorForPosition(ev->pos());
}
Q_UNUSED(ev);
}
void TerminalWidget::mouseMoveEvent(QMouseEvent *ev){
//qDebug() << "MouseMove Event" << ev->button() << ev->buttons() << Qt::LeftButton;
if(ev->buttons().testFlag(Qt::LeftButton) ){
selCursor.setPosition(this->cursorForPosition(ev->pos()).position(), QTextCursor::KeepAnchor);
if(selCursor.hasSelection()){ this->setTextCursor(selCursor); }
//qDebug() << "Mouse Movement:" << selCursor.hasSelection();
}else{
QTextEdit::mouseMoveEvent(ev);
}
}
void TerminalWidget::mouseReleaseEvent(QMouseEvent *ev){
if(ev->button()==Qt::LeftButton){
selCursor.setPosition(this->cursorForPosition(ev->pos()).position(), QTextCursor::KeepAnchor);
if(selCursor.hasSelection()){ this->setTextCursor(selCursor); }
else{ this->setTextCursor(lastCursor); }
}else if(ev->button()==Qt::RightButton){
copyA->setEnabled( selCursor.hasSelection() );
pasteA->setEnabled( !QApplication::clipboard()->text().isEmpty() );
contextMenu->popup( this->mapToGlobal(ev->pos()) );
}
Q_UNUSED(ev);
}
void TerminalWidget::mouseDoubleClickEvent(QMouseEvent *ev){
Q_UNUSED(ev);
}
void TerminalWidget::resizeEvent(QResizeEvent *ev){
if(resizeTimer->isActive()){ resizeTimer->stop(); }
resizeTimer->start();
QTextEdit::resizeEvent(ev);
}
|