mirror of https://github.com/procxx/kepka.git
InputField done by QTextEdit
This commit is contained in:
parent
86f0216447
commit
2dad73143d
|
@ -66,9 +66,9 @@ defaultInputField: InputField {
|
||||||
placeholderFg: #999;
|
placeholderFg: #999;
|
||||||
placeholderFgActive: #aaa;
|
placeholderFgActive: #aaa;
|
||||||
placeholderMargins: margins(2px, 0px, 2px, 0px);
|
placeholderMargins: margins(2px, 0px, 2px, 0px);
|
||||||
placeholderAlign: align(left);
|
placeholderAlign: align(topleft);
|
||||||
placeholderShift: 50px;
|
placeholderShift: 50px;
|
||||||
duration: 200;
|
duration: 100;
|
||||||
|
|
||||||
borderFg: #e0e0e0;
|
borderFg: #e0e0e0;
|
||||||
borderFgActive: #62c0f7;
|
borderFgActive: #62c0f7;
|
||||||
|
@ -83,7 +83,7 @@ defaultInputField: InputField {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
}
|
}
|
||||||
dialogsSearchField: InputField(defaultInputField) {
|
dialogsSearchField: InputField(defaultInputField) {
|
||||||
textMargins: margins(34px, 5px, 34px, 5px);
|
textMargins: margins(34px, 7px, 34px, 7px);
|
||||||
|
|
||||||
iconSprite: sprite(227px, 21px, 24px, 24px);
|
iconSprite: sprite(227px, 21px, 24px, 24px);
|
||||||
iconPosition: point(6px, 5px);
|
iconPosition: point(6px, 5px);
|
||||||
|
|
|
@ -42,7 +42,6 @@ namespace {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
InputStyle<FlatInput> _flatInputStyle;
|
InputStyle<FlatInput> _flatInputStyle;
|
||||||
InputStyle<InputField> _inputFieldStyle;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FlatInput::FlatInput(QWidget *parent, const style::flatInput &st, const QString &pholder, const QString &v) : QLineEdit(v, parent),
|
FlatInput::FlatInput(QWidget *parent, const style::flatInput &st, const QString &pholder, const QString &v) : QLineEdit(v, parent),
|
||||||
|
@ -384,7 +383,8 @@ void CountryCodeInput::correctValue(QKeyEvent *e, const QString &was) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
InputField::InputField(QWidget *parent, const style::InputField &st, const QString &ph, const QString &val) : QTextEdit(val, parent),
|
InputField::InputField(QWidget *parent, const style::InputField &st, const QString &ph, const QString &val) : TWidget(parent),
|
||||||
|
_inner(this, val),
|
||||||
_oldtext(val),
|
_oldtext(val),
|
||||||
_keyEvent(0),
|
_keyEvent(0),
|
||||||
|
|
||||||
|
@ -406,20 +406,22 @@ a_borderFg(st.borderFg->c),
|
||||||
a_borderOpacityActive(0),
|
a_borderOpacityActive(0),
|
||||||
_borderAnim(animFunc(this, &InputField::borderStep)),
|
_borderAnim(animFunc(this, &InputField::borderStep)),
|
||||||
|
|
||||||
|
_focused(false), _error(false),
|
||||||
|
|
||||||
_st(&st),
|
_st(&st),
|
||||||
|
|
||||||
_touchPress(false),
|
_touchPress(false),
|
||||||
_touchRightButton(false),
|
_touchRightButton(false),
|
||||||
_touchMove(false),
|
_touchMove(false),
|
||||||
_replacingEmojis(false) {
|
_replacingEmojis(false) {
|
||||||
setAcceptRichText(false);
|
_inner.setAcceptRichText(false);
|
||||||
resize(_st->width, _st->height);
|
resize(_st->width, _st->height);
|
||||||
|
|
||||||
setWordWrapMode(QTextOption::NoWrap);
|
_inner.setWordWrapMode(QTextOption::NoWrap);
|
||||||
setLineWrapMode(QTextEdit::NoWrap);
|
_inner.setLineWrapMode(QTextEdit::NoWrap);
|
||||||
|
|
||||||
setFont(_st->font->f);
|
_inner.setFont(_st->font->f);
|
||||||
setAlignment(cRtl() ? Qt::AlignRight : Qt::AlignLeft);
|
_inner.setAlignment(cRtl() ? Qt::AlignRight : Qt::AlignLeft);
|
||||||
|
|
||||||
_placeholder = _st->font->m.elidedText(_placeholderFull, Qt::ElideRight, width() - _st->textMargins.left() - _st->textMargins.right() - _st->placeholderMargins.left() - _st->placeholderMargins.right() - 1);
|
_placeholder = _st->font->m.elidedText(_placeholderFull, Qt::ElideRight, width() - _st->textMargins.left() - _st->textMargins.right() - _st->placeholderMargins.left() - _st->placeholderMargins.right() - 1);
|
||||||
|
|
||||||
|
@ -427,42 +429,39 @@ _replacingEmojis(false) {
|
||||||
p.setColor(QPalette::Text, _st->textFg->c);
|
p.setColor(QPalette::Text, _st->textFg->c);
|
||||||
setPalette(p);
|
setPalette(p);
|
||||||
|
|
||||||
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
_inner.setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
_inner.setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
|
|
||||||
setFrameStyle(QFrame::NoFrame | QFrame::Plain);
|
_inner.setFrameStyle(QFrame::NoFrame | QFrame::Plain);
|
||||||
viewport()->setAutoFillBackground(false);
|
_inner.viewport()->setAutoFillBackground(false);
|
||||||
|
|
||||||
setContentsMargins(0, 0, 0, 0);
|
_inner.setContentsMargins(0, 0, 0, 0);
|
||||||
|
_inner.document()->setDocumentMargin(0);
|
||||||
|
|
||||||
//switch (cScale()) {
|
setAttribute(Qt::WA_AcceptTouchEvents);
|
||||||
//case dbisOneAndQuarter: _fakeMargin = 1; break;
|
_inner.viewport()->setAttribute(Qt::WA_AcceptTouchEvents);
|
||||||
//case dbisOneAndHalf: _fakeMargin = 2; break;
|
|
||||||
//case dbisTwo: _fakeMargin = 4; break;
|
|
||||||
//}
|
|
||||||
//setStyleSheet(qsl("QTextEdit { margin: %1px; }").arg(_fakeMargin));
|
|
||||||
setStyleSheet(qsl("QTextEdit { padding: 2px 74px; }"));
|
|
||||||
|
|
||||||
viewport()->setAttribute(Qt::WA_AcceptTouchEvents);
|
|
||||||
_touchTimer.setSingleShot(true);
|
_touchTimer.setSingleShot(true);
|
||||||
connect(&_touchTimer, SIGNAL(timeout()), this, SLOT(onTouchTimer()));
|
connect(&_touchTimer, SIGNAL(timeout()), this, SLOT(onTouchTimer()));
|
||||||
|
|
||||||
connect(document(), SIGNAL(contentsChange(int, int, int)), this, SLOT(onDocumentContentsChange(int, int, int)));
|
connect(_inner.document(), SIGNAL(contentsChange(int, int, int)), this, SLOT(onDocumentContentsChange(int, int, int)));
|
||||||
connect(document(), SIGNAL(contentsChanged()), this, SLOT(onDocumentContentsChanged()));
|
connect(_inner.document(), SIGNAL(contentsChanged()), this, SLOT(onDocumentContentsChanged()));
|
||||||
connect(this, SIGNAL(undoAvailable(bool)), this, SLOT(onUndoAvailable(bool)));
|
connect(&_inner, SIGNAL(undoAvailable(bool)), this, SLOT(onUndoAvailable(bool)));
|
||||||
connect(this, SIGNAL(redoAvailable(bool)), this, SLOT(onRedoAvailable(bool)));
|
connect(&_inner, SIGNAL(redoAvailable(bool)), this, SLOT(onRedoAvailable(bool)));
|
||||||
if (App::wnd()) connect(this, SIGNAL(selectionChanged()), App::wnd(), SLOT(updateGlobalMenu()));
|
if (App::wnd()) connect(&_inner, SIGNAL(selectionChanged()), App::wnd(), SLOT(updateGlobalMenu()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::onTouchTimer() {
|
void InputField::onTouchTimer() {
|
||||||
_touchRightButton = true;
|
_touchRightButton = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool InputField::viewportEvent(QEvent *e) {
|
InputField::InputFieldInner::InputFieldInner(InputField *parent, const QString &val) : QTextEdit(val, parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InputField::InputFieldInner::viewportEvent(QEvent *e) {
|
||||||
if (e->type() == QEvent::TouchBegin || e->type() == QEvent::TouchUpdate || e->type() == QEvent::TouchEnd || e->type() == QEvent::TouchCancel) {
|
if (e->type() == QEvent::TouchBegin || e->type() == QEvent::TouchUpdate || e->type() == QEvent::TouchEnd || e->type() == QEvent::TouchCancel) {
|
||||||
QTouchEvent *ev = static_cast<QTouchEvent*>(e);
|
QTouchEvent *ev = static_cast<QTouchEvent*>(e);
|
||||||
if (ev->device()->type() == QTouchDevice::TouchScreen) {
|
if (ev->device()->type() == QTouchDevice::TouchScreen) {
|
||||||
touchEvent(ev);
|
qobject_cast<InputField*>(parentWidget())->touchEvent(ev);
|
||||||
return QTextEdit::viewportEvent(e);
|
return QTextEdit::viewportEvent(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -508,16 +507,12 @@ void InputField::touchEvent(QTouchEvent *e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QRect InputField::getTextRect() const {
|
|
||||||
return rect().marginsRemoved(_st->textMargins + st::textRectMargins);
|
|
||||||
}
|
|
||||||
|
|
||||||
int32 InputField::fakeMargin() const {
|
int32 InputField::fakeMargin() const {
|
||||||
return _fakeMargin;
|
return _fakeMargin;
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::paintEvent(QPaintEvent *e) {
|
void InputField::paintEvent(QPaintEvent *e) {
|
||||||
Painter p(viewport());
|
Painter p(this);
|
||||||
|
|
||||||
QRect r(rect().intersected(e->rect()));
|
QRect r(rect().intersected(e->rect()));
|
||||||
p.fillRect(r, st::white->b);
|
p.fillRect(r, st::white->b);
|
||||||
|
@ -552,37 +547,57 @@ void InputField::paintEvent(QPaintEvent *e) {
|
||||||
|
|
||||||
p.restore();
|
p.restore();
|
||||||
}
|
}
|
||||||
QTextEdit::paintEvent(e);
|
TWidget::paintEvent(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::focusInEvent(QFocusEvent *e) {
|
void InputField::focusInEvent(QFocusEvent *e) {
|
||||||
|
_inner.setFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputField::mousePressEvent(QMouseEvent *e) {
|
||||||
|
_inner.setFocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputField::contextMenuEvent(QContextMenuEvent *e) {
|
||||||
|
_inner.contextMenuEvent(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputField::InputFieldInner::focusInEvent(QFocusEvent *e) {
|
||||||
|
f()->focusInInner();
|
||||||
|
QTextEdit::focusInEvent(e);
|
||||||
|
emit f()->focused();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputField::focusInInner() {
|
||||||
if (!_focused) {
|
if (!_focused) {
|
||||||
_focused = true;
|
_focused = true;
|
||||||
|
|
||||||
a_placeholderFg.start(_st->placeholderFgActive->c);
|
a_placeholderFg.start(_st->placeholderFgActive->c);
|
||||||
_placeholderFgAnim.start();
|
_placeholderFgAnim.start();
|
||||||
|
|
||||||
a_borderFg.start((_error ? _st->borderFgError : _st->borderFgActive)->c);
|
a_borderFg.start((_error ? _st->borderFgError : _st->borderFgActive)->c);
|
||||||
a_borderOpacityActive.start(1);
|
a_borderOpacityActive.start(1);
|
||||||
_borderAnim.start();
|
_borderAnim.start();
|
||||||
}
|
}
|
||||||
QTextEdit::focusInEvent(e);
|
|
||||||
emit focused();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::focusOutEvent(QFocusEvent *e) {
|
void InputField::InputFieldInner::focusOutEvent(QFocusEvent *e) {
|
||||||
|
f()->focusOutInner();
|
||||||
|
QTextEdit::focusOutEvent(e);
|
||||||
|
emit f()->blurred();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InputField::focusOutInner() {
|
||||||
if (_focused) {
|
if (_focused) {
|
||||||
_focused = false;
|
_focused = false;
|
||||||
|
|
||||||
a_placeholderFg.start(_st->placeholderFg->c);
|
a_placeholderFg.start(_st->placeholderFg->c);
|
||||||
_placeholderFgAnim.start();
|
_placeholderFgAnim.start();
|
||||||
|
|
||||||
a_borderFg.start((_error ? _st->borderFgError : _st->borderFg)->c);
|
a_borderFg.start((_error ? _st->borderFgError : _st->borderFg)->c);
|
||||||
a_borderOpacityActive.start(_error ? 1 : 0);
|
a_borderOpacityActive.start(_error ? 1 : 0);
|
||||||
_borderAnim.start();
|
_borderAnim.start();
|
||||||
}
|
}
|
||||||
QTextEdit::focusOutEvent(e);
|
|
||||||
emit blurred();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize InputField::sizeHint() const {
|
QSize InputField::sizeHint() const {
|
||||||
|
@ -599,7 +614,7 @@ QString InputField::getText(int32 start, int32 end) const {
|
||||||
if (start < 0) start = 0;
|
if (start < 0) start = 0;
|
||||||
bool full = (start == 0) && (end < 0);
|
bool full = (start == 0) && (end < 0);
|
||||||
|
|
||||||
QTextDocument *doc(document());
|
QTextDocument *doc(_inner.document());
|
||||||
QTextBlock from = full ? doc->begin() : doc->findBlock(start), till = (end < 0) ? doc->end() : doc->findBlock(end);
|
QTextBlock from = full ? doc->begin() : doc->findBlock(start), till = (end < 0) ? doc->end() : doc->findBlock(end);
|
||||||
if (till.isValid()) till = till.next();
|
if (till.isValid()) till = till.next();
|
||||||
|
|
||||||
|
@ -671,7 +686,7 @@ QString InputField::getText(int32 start, int32 end) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool InputField::hasText() const {
|
bool InputField::hasText() const {
|
||||||
QTextDocument *doc(document());
|
QTextDocument *doc(_inner.document());
|
||||||
QTextBlock from = doc->begin(), till = doc->end();
|
QTextBlock from = doc->begin(), till = doc->end();
|
||||||
|
|
||||||
if (from == till) return false;
|
if (from == till) return false;
|
||||||
|
@ -704,11 +719,11 @@ void InputField::insertEmoji(EmojiPtr emoji, QTextCursor c) {
|
||||||
c.insertText(objectReplacement, imageFormat);
|
c.insertText(objectReplacement, imageFormat);
|
||||||
}
|
}
|
||||||
|
|
||||||
QVariant InputField::loadResource(int type, const QUrl &name) {
|
QVariant InputField::InputFieldInner::loadResource(int type, const QUrl &name) {
|
||||||
QString imageName = name.toDisplayString();
|
QString imageName = name.toDisplayString();
|
||||||
if (imageName.startsWith(qstr("emoji://e."))) {
|
if (imageName.startsWith(qstr("emoji://e."))) {
|
||||||
if (EmojiPtr emoji = emojiFromUrl(imageName)) {
|
if (EmojiPtr emoji = emojiFromUrl(imageName)) {
|
||||||
return QVariant(App::emojiSingle(emoji, _st->font->height));
|
return QVariant(App::emojiSingle(emoji, f()->_st->font->height));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
@ -718,8 +733,11 @@ void InputField::processDocumentContentsChange(int position, int charsAdded) {
|
||||||
int32 emojiPosition = 0, emojiLen = 0;
|
int32 emojiPosition = 0, emojiLen = 0;
|
||||||
const EmojiData *emoji = 0;
|
const EmojiData *emoji = 0;
|
||||||
|
|
||||||
QTextDocument *doc(document());
|
static QString space(' ');
|
||||||
|
|
||||||
|
QTextDocument *doc(_inner.document());
|
||||||
|
QTextCursor c(_inner.textCursor());
|
||||||
|
c.joinPreviousEditBlock();
|
||||||
while (true) {
|
while (true) {
|
||||||
int32 start = position, end = position + charsAdded;
|
int32 start = position, end = position + charsAdded;
|
||||||
QTextBlock from = doc->findBlock(start), till = doc->findBlock(end);
|
QTextBlock from = doc->findBlock(start), till = doc->findBlock(end);
|
||||||
|
@ -738,6 +756,19 @@ void InputField::processDocumentContentsChange(int position, int charsAdded) {
|
||||||
QString t(fragment.text());
|
QString t(fragment.text());
|
||||||
const QChar *ch = t.constData(), *e = ch + t.size();
|
const QChar *ch = t.constData(), *e = ch + t.size();
|
||||||
for (; ch != e; ++ch) {
|
for (; ch != e; ++ch) {
|
||||||
|
// QTextBeginningOfFrame // QTextEndOfFrame
|
||||||
|
if (ch->unicode() == 0xfdd0 || ch->unicode() == 0xfdd1 || ch->unicode() == QChar::ParagraphSeparator || ch->unicode() == QChar::LineSeparator || ch->unicode() == '\n' || ch->unicode() == '\r') {
|
||||||
|
if (!_inner.document()->pageSize().isNull()) {
|
||||||
|
_inner.document()->setPageSize(QSizeF(0, 0));
|
||||||
|
}
|
||||||
|
int32 nlPosition = fp + (ch - t.constData());
|
||||||
|
QTextCursor c(doc->docHandle(), nlPosition);
|
||||||
|
c.setPosition(nlPosition + 1, QTextCursor::KeepAnchor);
|
||||||
|
c.insertText(space);
|
||||||
|
position = nlPosition + 1;
|
||||||
|
emoji = TwoSymbolEmoji; // just a flag
|
||||||
|
break;
|
||||||
|
}
|
||||||
emoji = emojiFromText(ch, e, emojiLen);
|
emoji = emojiFromText(ch, e, emojiLen);
|
||||||
if (emoji) {
|
if (emoji) {
|
||||||
emojiPosition = fp + (ch - t.constData());
|
emojiPosition = fp + (ch - t.constData());
|
||||||
|
@ -748,10 +779,22 @@ void InputField::processDocumentContentsChange(int position, int charsAdded) {
|
||||||
if (emoji) break;
|
if (emoji) break;
|
||||||
}
|
}
|
||||||
if (emoji) break;
|
if (emoji) break;
|
||||||
|
if (b.next() != doc->end()) {
|
||||||
|
int32 nlPosition = b.next().position() - 1;
|
||||||
|
QTextCursor c(doc->docHandle(), nlPosition);
|
||||||
|
c.setPosition(nlPosition + 1, QTextCursor::KeepAnchor);
|
||||||
|
c.insertText(space);
|
||||||
|
position = nlPosition + 1;
|
||||||
|
emoji = TwoSymbolEmoji; // just a flag
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (emoji) {
|
if (emoji == TwoSymbolEmoji) { // just skip
|
||||||
if (!document()->pageSize().isNull()) {
|
emoji = 0;
|
||||||
document()->setPageSize(QSizeF(0, 0));
|
emojiPosition = 0;
|
||||||
|
} else if (emoji) {
|
||||||
|
if (!_inner.document()->pageSize().isNull()) {
|
||||||
|
_inner.document()->setPageSize(QSizeF(0, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTextCursor c(doc->docHandle(), emojiPosition);
|
QTextCursor c(doc->docHandle(), emojiPosition);
|
||||||
|
@ -780,12 +823,13 @@ void InputField::processDocumentContentsChange(int position, int charsAdded) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
c.endEditBlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::onDocumentContentsChange(int position, int charsRemoved, int charsAdded) {
|
void InputField::onDocumentContentsChange(int position, int charsRemoved, int charsAdded) {
|
||||||
if (_replacingEmojis) return;
|
if (_replacingEmojis) return;
|
||||||
|
|
||||||
if (document()->availableRedoSteps() > 0) return;
|
if (_inner.document()->availableRedoSteps() > 0) return;
|
||||||
|
|
||||||
const int takeBack = 3;
|
const int takeBack = 3;
|
||||||
|
|
||||||
|
@ -799,10 +843,10 @@ void InputField::onDocumentContentsChange(int position, int charsRemoved, int ch
|
||||||
|
|
||||||
// _insertions.push_back(Insertion(position, charsAdded));
|
// _insertions.push_back(Insertion(position, charsAdded));
|
||||||
_replacingEmojis = true;
|
_replacingEmojis = true;
|
||||||
QSizeF s = document()->pageSize();
|
QSizeF s = _inner.document()->pageSize();
|
||||||
processDocumentContentsChange(position, charsAdded);
|
processDocumentContentsChange(position, charsAdded);
|
||||||
if (document()->pageSize() != s) {
|
if (_inner.document()->pageSize() != s) {
|
||||||
document()->setPageSize(s);
|
_inner.document()->setPageSize(s);
|
||||||
}
|
}
|
||||||
_replacingEmojis = false;
|
_replacingEmojis = false;
|
||||||
}
|
}
|
||||||
|
@ -811,11 +855,11 @@ void InputField::onDocumentContentsChanged() {
|
||||||
if (_replacingEmojis) return;
|
if (_replacingEmojis) return;
|
||||||
|
|
||||||
if (!_insertions.isEmpty()) {
|
if (!_insertions.isEmpty()) {
|
||||||
if (document()->availableRedoSteps() > 0) {
|
if (_inner.document()->availableRedoSteps() > 0) {
|
||||||
_insertions.clear();
|
_insertions.clear();
|
||||||
} else {
|
} else {
|
||||||
_replacingEmojis = true;
|
_replacingEmojis = true;
|
||||||
QSizeF s = document()->pageSize();
|
QSizeF s = _inner.document()->pageSize();
|
||||||
|
|
||||||
do {
|
do {
|
||||||
Insertion i = _insertions.front();
|
Insertion i = _insertions.front();
|
||||||
|
@ -825,8 +869,8 @@ void InputField::onDocumentContentsChanged() {
|
||||||
}
|
}
|
||||||
} while (!_insertions.isEmpty());
|
} while (!_insertions.isEmpty());
|
||||||
|
|
||||||
if (document()->pageSize() != s) {
|
if (_inner.document()->pageSize() != s) {
|
||||||
document()->setPageSize(s);
|
_inner.document()->setPageSize(s);
|
||||||
}
|
}
|
||||||
_replacingEmojis = false;
|
_replacingEmojis = false;
|
||||||
}
|
}
|
||||||
|
@ -911,12 +955,12 @@ void InputField::updatePlaceholder() {
|
||||||
void InputField::correctValue(QKeyEvent *e, const QString &was) {
|
void InputField::correctValue(QKeyEvent *e, const QString &was) {
|
||||||
}
|
}
|
||||||
|
|
||||||
QMimeData *InputField::createMimeDataFromSelection() const {
|
QMimeData *InputField::InputFieldInner::createMimeDataFromSelection() const {
|
||||||
QMimeData *result = new QMimeData();
|
QMimeData *result = new QMimeData();
|
||||||
QTextCursor c(textCursor());
|
QTextCursor c(textCursor());
|
||||||
int32 start = c.selectionStart(), end = c.selectionEnd();
|
int32 start = c.selectionStart(), end = c.selectionEnd();
|
||||||
if (end > start) {
|
if (end > start) {
|
||||||
result->setText(getText(start, end));
|
result->setText(f()->getText(start, end));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -925,10 +969,10 @@ void InputField::customUpDown(bool custom) {
|
||||||
_customUpDown = custom;
|
_customUpDown = custom;
|
||||||
}
|
}
|
||||||
|
|
||||||
void InputField::keyPressEvent(QKeyEvent *e) {
|
void InputField::InputFieldInner::keyPressEvent(QKeyEvent *e) {
|
||||||
bool shift = e->modifiers().testFlag(Qt::ShiftModifier);
|
bool shift = e->modifiers().testFlag(Qt::ShiftModifier);
|
||||||
bool macmeta = (cPlatform() == dbipMac) && e->modifiers().testFlag(Qt::ControlModifier) && !e->modifiers().testFlag(Qt::MetaModifier) && !e->modifiers().testFlag(Qt::AltModifier);
|
bool macmeta = (cPlatform() == dbipMac) && e->modifiers().testFlag(Qt::ControlModifier) && !e->modifiers().testFlag(Qt::MetaModifier) && !e->modifiers().testFlag(Qt::AltModifier);
|
||||||
bool ctrl = e->modifiers().testFlag(Qt::ControlModifier) || e->modifiers().testFlag(Qt::MetaModifier), ctrlGood = (ctrl && cCtrlEnter()) || (!ctrl && !shift && !cCtrlEnter()) || (ctrl && shift);
|
bool ctrl = e->modifiers().testFlag(Qt::ControlModifier) || e->modifiers().testFlag(Qt::MetaModifier), ctrlGood = true;
|
||||||
bool enter = (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return);
|
bool enter = (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return);
|
||||||
|
|
||||||
if (macmeta && e->key() == Qt::Key_Backspace) {
|
if (macmeta && e->key() == Qt::Key_Backspace) {
|
||||||
|
@ -937,17 +981,19 @@ void InputField::keyPressEvent(QKeyEvent *e) {
|
||||||
tc.setPosition(start.position(), QTextCursor::KeepAnchor);
|
tc.setPosition(start.position(), QTextCursor::KeepAnchor);
|
||||||
tc.removeSelectedText();
|
tc.removeSelectedText();
|
||||||
} else if (enter && ctrlGood) {
|
} else if (enter && ctrlGood) {
|
||||||
emit submitted(ctrl && shift);
|
emit f()->submitted(ctrl && shift);
|
||||||
} else if (e->key() == Qt::Key_Escape) {
|
} else if (e->key() == Qt::Key_Escape) {
|
||||||
emit cancelled();
|
emit f()->cancelled();
|
||||||
} else if (e->key() == Qt::Key_Tab || (ctrl && e->key() == Qt::Key_Backtab)) {
|
} else if (e->key() == Qt::Key_Tab || (ctrl && e->key() == Qt::Key_Backtab)) {
|
||||||
if (ctrl) {
|
if (ctrl) {
|
||||||
e->ignore();
|
e->ignore();
|
||||||
} else {
|
} else {
|
||||||
emit tabbed();
|
emit f()->tabbed();
|
||||||
}
|
}
|
||||||
} else if (e->key() == Qt::Key_Search || e == QKeySequence::Find) {
|
} else if (e->key() == Qt::Key_Search || e == QKeySequence::Find) {
|
||||||
e->ignore();
|
e->ignore();
|
||||||
|
} else if (f()->_customUpDown && (e->key() == Qt::Key_Up || e->key() == Qt::Key_Down)) {
|
||||||
|
e->ignore();
|
||||||
} else {
|
} else {
|
||||||
QTextCursor tc(textCursor());
|
QTextCursor tc(textCursor());
|
||||||
if (enter && ctrl) {
|
if (enter && ctrl) {
|
||||||
|
@ -974,8 +1020,12 @@ void InputField::keyPressEvent(QKeyEvent *e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void InputField::InputFieldInner::paintEvent(QPaintEvent *e) {
|
||||||
|
return QTextEdit::paintEvent(e);
|
||||||
|
}
|
||||||
|
|
||||||
void InputField::resizeEvent(QResizeEvent *e) {
|
void InputField::resizeEvent(QResizeEvent *e) {
|
||||||
_placeholder = _st->font->m.elidedText(_placeholderFull, Qt::ElideRight, width() - _st->textMargins.left() - _st->textMargins.right() - _st->placeholderMargins.left() - _st->placeholderMargins.right() - 1);
|
_placeholder = _st->font->m.elidedText(_placeholderFull, Qt::ElideRight, width() - _st->textMargins.left() - _st->textMargins.right() - _st->placeholderMargins.left() - _st->placeholderMargins.right() - 1);
|
||||||
viewport()->setGeometry(rect().marginsRemoved(_st->textMargins));
|
_inner.setGeometry(rect().marginsRemoved(_st->textMargins));
|
||||||
QTextEdit::resizeEvent(e);
|
TWidget::resizeEvent(e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -127,129 +127,24 @@ private:
|
||||||
bool _nosignal;
|
bool _nosignal;
|
||||||
|
|
||||||
};
|
};
|
||||||
//
|
|
||||||
//class InputField : public QTextEdit {
|
|
||||||
// Q_OBJECT
|
|
||||||
//
|
|
||||||
//public:
|
|
||||||
//
|
|
||||||
// InputField(QWidget *parent, const style::InputField &st, const QString &ph = QString(), const QString &val = QString());
|
|
||||||
//
|
|
||||||
// bool event(QEvent *e);
|
|
||||||
// void touchEvent(QTouchEvent *e);
|
|
||||||
// void paintEvent(QPaintEvent *e);
|
|
||||||
// void focusInEvent(QFocusEvent *e);
|
|
||||||
// void focusOutEvent(QFocusEvent *e);
|
|
||||||
// void keyPressEvent(QKeyEvent *e);
|
|
||||||
// void resizeEvent(QResizeEvent *e);
|
|
||||||
//
|
|
||||||
// void setError(bool error);
|
|
||||||
//
|
|
||||||
// void updatePlaceholder();
|
|
||||||
//
|
|
||||||
// QRect getTextRect() const;
|
|
||||||
//
|
|
||||||
// bool placeholderFgStep(float64 ms);
|
|
||||||
// bool placeholderShiftStep(float64 ms);
|
|
||||||
// bool borderStep(float64 ms);
|
|
||||||
//
|
|
||||||
// QSize sizeHint() const;
|
|
||||||
// QSize minimumSizeHint() const;
|
|
||||||
//
|
|
||||||
// void setCustomUpDown(bool customUpDown);
|
|
||||||
//
|
|
||||||
//public slots:
|
|
||||||
//
|
|
||||||
// void onTextChange(const QString &text);
|
|
||||||
// void onTextEdited();
|
|
||||||
//
|
|
||||||
// void onTouchTimer();
|
|
||||||
//
|
|
||||||
// void onDocumentContentsChange(int position, int charsRemoved, int charsAdded);
|
|
||||||
// void onDocumentContentsChanged();
|
|
||||||
//
|
|
||||||
// void onUndoAvailable(bool avail);
|
|
||||||
// void onRedoAvailable(bool avail);
|
|
||||||
//
|
|
||||||
//signals:
|
|
||||||
//
|
|
||||||
// void changed();
|
|
||||||
// void cancelled();
|
|
||||||
// void accepted();
|
|
||||||
// void focused();
|
|
||||||
// void blurred();
|
|
||||||
//
|
|
||||||
//protected:
|
|
||||||
//
|
|
||||||
// virtual void correctValue(QKeyEvent *e, const QString &was);
|
|
||||||
//
|
|
||||||
// void insertEmoji(EmojiPtr emoji, QTextCursor c);
|
|
||||||
// TWidget *tparent() {
|
|
||||||
// return qobject_cast<TWidget*>(parentWidget());
|
|
||||||
// }
|
|
||||||
// const TWidget *tparent() const {
|
|
||||||
// return qobject_cast<const TWidget*>(parentWidget());
|
|
||||||
// }
|
|
||||||
// void enterEvent(QEvent *e) {
|
|
||||||
// TWidget *p(tparent());
|
|
||||||
// if (p) p->leaveToChildEvent(e);
|
|
||||||
// return QTextEdit::enterEvent(e);
|
|
||||||
// }
|
|
||||||
// void leaveEvent(QEvent *e) {
|
|
||||||
// TWidget *p(tparent());
|
|
||||||
// if (p) p->enterFromChildEvent(e);
|
|
||||||
// return QTextEdit::leaveEvent(e);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// QVariant loadResource(int type, const QUrl &name);
|
|
||||||
//
|
|
||||||
//private:
|
|
||||||
//
|
|
||||||
// QString _lastText;
|
|
||||||
// QKeyEvent *_keyEvent;
|
|
||||||
//
|
|
||||||
// bool _customUpDown;
|
|
||||||
//
|
|
||||||
// QString _placeholder, _placeholderFull;
|
|
||||||
// bool _placeholderVisible;
|
|
||||||
// anim::ivalue a_placeholderLeft;
|
|
||||||
// anim::fvalue a_placeholderOpacity;
|
|
||||||
// anim::cvalue a_placeholderFg;
|
|
||||||
// Animation _placeholderFgAnim, _placeholderShiftAnim;
|
|
||||||
//
|
|
||||||
// anim::fvalue a_borderOpacityActive;
|
|
||||||
// anim::cvalue a_borderFg;
|
|
||||||
// Animation _borderAnim;
|
|
||||||
//
|
|
||||||
// bool _focused, _error;
|
|
||||||
//
|
|
||||||
// const style::InputField *_st;
|
|
||||||
//
|
|
||||||
// QTimer _touchTimer;
|
|
||||||
// bool _touchPress, _touchRightButton, _touchMove;
|
|
||||||
// QPoint _touchStart;
|
|
||||||
//};
|
|
||||||
|
|
||||||
|
class InputField : public TWidget {
|
||||||
class InputField : public QTextEdit {
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
InputField(QWidget *parent, const style::InputField &st, const QString &ph = QString(), const QString &val = QString());
|
InputField(QWidget *parent, const style::InputField &st, const QString &ph = QString(), const QString &val = QString());
|
||||||
|
|
||||||
bool viewportEvent(QEvent *e);
|
|
||||||
void touchEvent(QTouchEvent *e);
|
void touchEvent(QTouchEvent *e);
|
||||||
void paintEvent(QPaintEvent *e);
|
void paintEvent(QPaintEvent *e);
|
||||||
void focusInEvent(QFocusEvent *e);
|
void focusInEvent(QFocusEvent *e);
|
||||||
void focusOutEvent(QFocusEvent *e);
|
void mousePressEvent(QMouseEvent *e);
|
||||||
void keyPressEvent(QKeyEvent *e);
|
void contextMenuEvent(QContextMenuEvent *e);
|
||||||
void resizeEvent(QResizeEvent *e);
|
void resizeEvent(QResizeEvent *e);
|
||||||
|
|
||||||
const QString &getLastText() const;
|
const QString &getLastText() const;
|
||||||
void updatePlaceholder();
|
void updatePlaceholder();
|
||||||
|
|
||||||
QRect getTextRect() const;
|
|
||||||
int32 fakeMargin() const;
|
int32 fakeMargin() const;
|
||||||
|
|
||||||
bool placeholderFgStep(float64 ms);
|
bool placeholderFgStep(float64 ms);
|
||||||
|
@ -265,10 +160,22 @@ public:
|
||||||
bool isUndoAvailable() const;
|
bool isUndoAvailable() const;
|
||||||
bool isRedoAvailable() const;
|
bool isRedoAvailable() const;
|
||||||
|
|
||||||
QMimeData *createMimeDataFromSelection() const;
|
|
||||||
|
|
||||||
void customUpDown(bool isCustom);
|
void customUpDown(bool isCustom);
|
||||||
|
|
||||||
|
void setTextCursor(const QTextCursor &cursor) {
|
||||||
|
return _inner.setTextCursor(cursor);
|
||||||
|
}
|
||||||
|
QTextCursor textCursor() const {
|
||||||
|
return _inner.textCursor();
|
||||||
|
}
|
||||||
|
void setText(const QString &text) {
|
||||||
|
return _inner.setText(text);
|
||||||
|
}
|
||||||
|
void clear() {
|
||||||
|
return _inner.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
void onTouchTimer();
|
void onTouchTimer();
|
||||||
|
@ -300,21 +207,35 @@ protected:
|
||||||
const TWidget *tparent() const {
|
const TWidget *tparent() const {
|
||||||
return qobject_cast<const TWidget*>(parentWidget());
|
return qobject_cast<const TWidget*>(parentWidget());
|
||||||
}
|
}
|
||||||
void enterEvent(QEvent *e) {
|
|
||||||
TWidget *p(tparent());
|
|
||||||
if (p) p->leaveToChildEvent(e);
|
|
||||||
return QTextEdit::enterEvent(e);
|
|
||||||
}
|
|
||||||
void leaveEvent(QEvent *e) {
|
|
||||||
TWidget *p(tparent());
|
|
||||||
if (p) p->enterFromChildEvent(e);
|
|
||||||
return QTextEdit::leaveEvent(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant loadResource(int type, const QUrl &name);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
friend class InputFieldInner;
|
||||||
|
class InputFieldInner : public QTextEdit {
|
||||||
|
public:
|
||||||
|
InputFieldInner(InputField *parent, const QString &val = QString());
|
||||||
|
|
||||||
|
bool viewportEvent(QEvent *e);
|
||||||
|
void focusInEvent(QFocusEvent *e);
|
||||||
|
void focusOutEvent(QFocusEvent *e);
|
||||||
|
void keyPressEvent(QKeyEvent *e);
|
||||||
|
void paintEvent(QPaintEvent *e);
|
||||||
|
|
||||||
|
QMimeData *createMimeDataFromSelection() const;
|
||||||
|
|
||||||
|
QVariant loadResource(int type, const QUrl &name);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
InputField *f() const {
|
||||||
|
return static_cast<InputField*>(parentWidget());
|
||||||
|
}
|
||||||
|
friend class InputField;
|
||||||
|
};
|
||||||
|
InputFieldInner _inner;
|
||||||
|
void focusInInner();
|
||||||
|
void focusOutInner();
|
||||||
|
|
||||||
void processDocumentContentsChange(int position, int charsAdded);
|
void processDocumentContentsChange(int position, int charsAdded);
|
||||||
|
|
||||||
QString _oldtext;
|
QString _oldtext;
|
||||||
|
|
Loading…
Reference in New Issue