Emit signal on receiving escape sequence for changing terminal size

This is just one needed prerequisite for supporting the resizing
escape sequence. I still have no clear clue of adding the support
correctly
This commit is contained in:
Jekyll Wu
2012-03-09 15:16:42 +08:00
parent 8f3a1c1e07
commit 507619dff2
3 changed files with 11 additions and 1 deletions

View File

@@ -141,6 +141,8 @@ Session::Session(QObject* parent) :
SLOT(onPrimaryScreenInUse(bool)));
connect(_emulation, SIGNAL(selectedText(QString)), this,
SLOT(onSelectedText(QString)));
connect( _emulation, SIGNAL(imageResizeRequest(QSize)) , this,
SIGNAL(resizeRequest(QSize)) );
//create new teletype for I/O with shell process
openTeletype(-1);