mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Added arrow Up and Down cycling through past messages.
This commit is contained in:
parent
15c14c5008
commit
33a58903f0
2 changed files with 24 additions and 1 deletions
|
@ -59,10 +59,32 @@ ChatWidgetInput::ChatWidgetInput(ChatWidget *_chatWidget)
|
|||
}
|
||||
|
||||
c->sendMessage(textInput.toPlainText());
|
||||
prevMsg.append(textInput.toPlainText());
|
||||
event->accept();
|
||||
if(!(event->modifiers() == Qt::ControlModifier))
|
||||
{
|
||||
textInput.setText(QString());
|
||||
prevIndex = 0;
|
||||
}
|
||||
else if(textInput.toPlainText() == prevMsg.at(1))
|
||||
{
|
||||
prevMsg.removeFirst();
|
||||
}
|
||||
prevIndex = prevMsg.size();
|
||||
}
|
||||
else if(event->key() == Qt::Key_Up){
|
||||
if(prevMsg.size() && prevIndex){
|
||||
prevIndex--;
|
||||
textInput.setText(prevMsg.at(prevIndex));
|
||||
}
|
||||
}
|
||||
else if(event->key() == Qt::Key_Down){
|
||||
if(prevIndex != (prevMsg.size() - 1) && prevIndex != prevMsg.size()){
|
||||
prevIndex++;
|
||||
textInput.setText(prevMsg.at(prevIndex));
|
||||
} else {
|
||||
prevIndex = prevMsg.size();
|
||||
textInput.setText(QString());
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -38,7 +38,8 @@ private:
|
|||
ResizingTextEdit textInput;
|
||||
QLabel textLengthLabel;
|
||||
ChatWidgetHeaderButton emotesLabel;
|
||||
|
||||
QStringList prevMsg;
|
||||
unsigned int prevIndex = 0;
|
||||
virtual void refreshTheme() override;
|
||||
|
||||
private slots:
|
||||
|
|
Loading…
Reference in a new issue