|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "chatinputtext.h"
chatInputText::chatInputText(QWidget *parent) :
QTextEdit(parent)
{
}
void chatInputText::keyPressEvent(QKeyEvent *ke)
{
if(ke->key() == Qt::Key_Return || ke->key() == Qt::Key_Enter)
{
emit msgReady();
return;
}
QTextEdit::keyPressEvent(ke);
}
|