blob: 464065aa37d70544270da5103b860afa5f0c1a5e (
plain) (
blame)
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
|
#include <QHBoxLayout>
#include <QKeyEvent>
#include <QLineEdit>
#include <QVBoxLayout>
#include <QWidget>
#include <QWindow>
#include "widgets/CommandInput.hpp"
CommandInput::CommandInput(QString defaultInput, QWidget *parentNode)
: QWidget(parentNode) {
setContentsMargins(0, 0, 0, 0);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
setStyleSheet("background-color: #000; color: #fff; border-radius: 0;");
auto layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
input = new QLineEdit(defaultInput, this);
input->setFocusPolicy(Qt::StrongFocus);
layout->addWidget(input);
setFixedHeight(input->sizeHint().height());
}
void CommandInput::emitSubmit() { emit submitted(getInputCommand()); }
void CommandInput::keyPressEvent(QKeyEvent *event) {
auto combo = event->keyCombination();
auto ctrlL = combo.key() == Qt::Key_L &&
combo.keyboardModifiers().testFlag(Qt::ControlModifier);
auto esc = combo.key() == Qt::Key_Escape;
auto enter = combo.key() == Qt::Key_Return || combo.key() == Qt::Key_Enter;
if (esc || ctrlL)
emit cancelled();
else if (enter)
emitSubmit();
}
void CommandInput::setInputText(QString text) { input->setText(text); }
bool CommandInput::isInputFocussed() { return input->hasFocus(); }
void CommandInput::setInputFocus(bool focussed) {
if (focussed)
input->setFocus(Qt::PopupFocusReason);
else
input->clearFocus();
}
QString CommandInput::getInputCommand() { return input->text(); }
|