feat: add sendKeyEvent() api

This commit is contained in:
Gary Wang
2019-08-03 12:52:38 +08:00
committed by Alf Gaida
parent e9df291361
commit b4b11ae719
4 changed files with 15 additions and 0 deletions
+5
View File
@@ -568,6 +568,11 @@ void Session::sendText(const QString & text) const
_emulation->sendText(text);
}
void Session::sendKeyEvent(QKeyEvent* e) const
{
_emulation->sendKeyEvent(e);
}
Session::~Session()
{
delete _emulation;